/*
Theme Name:lexa-theme-child
Template:lexa-theme
Theme URI: https://lexa.co.jp
Author: Lexa inc.
Author URI: https://lexa.co.jp
Version: 1.0.0
*/
/**********************
- ROOT
- BASE
- GENERAL
  -- FONT
  -- ALIGN
  -- FLEX
  -- LIST
  -- OTHER
- HEADER
- BREADCRUMB
- CONTAINER
- HEADING
- BUTTON
- FOOTER
- ARCHIVE
- SINGLE
- CONTACT
- FRONT
- PAGE PARTS
- LOADING
- COLOR
- MARGIN
- ANIMATION
- RESPONSIVE
***********************/

/**********************
* ブレイクポイント
* 767px/960px
**********************/


/*********************
ROOT
**********************/
:root {
   --base: #E6EFEE;
   --bg-1: #FFF;
   --text-main: #222;
   --main-color-1: #535857;
   --sub-color-1: #C3C5C4;
   --sub-color-2: #ABB3B2;

   --font-jp: YakuHanJP, 'Zen Kaku Gothic New', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
   --font-en: 'Urbanist', YakuHanJP, 'Zen Kaku Gothic New', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
   --normal: 400;
   --medium: 500;
   --ls-main: .05em;
   --ls-sub: .1em;

   --container: calc(1920px + 7%);
   --container-side: 3.5%;
   --container-side-sp: 4%;
   --container-l: 1400px;
   --container-m: 800px;
   --container-s: 660px;

   --border-1: solid 1px var(--main-color-1);
   --border-2: solid 1px var(--base);
}


/*********************
BASE
*********************/
html {
   font-size: 62.5%;
}

body {
   background-color: var(--base);
   color: var(--text-main);
   font-family: var(--font-jp);
   font-weight: var(--normal);
   font-size: 1.5rem;
   letter-spacing: var(--ls-main);
   line-height: 1.7;
   display: flex;
   flex-direction: column;
}

body.checked {
   height: 100vh;
   overflow: hidden;
}

section {
   position: relative;
   width: 100%;
}

h1,
h2,
h3 {
   font-weight: var(--medium);
}

p {
   margin: 0 0 1em;
}

a {
   color: var(--main-color-1);
   transition: all 0.3s;
}

a:hover {
   opacity: 0.7;
}

img {
   height: auto;
   border: none;
   line-height: 0;
   vertical-align: bottom;
}

ol,
ul {
	padding: 0;
}

ol li {
   margin: 0 0 1em 1.5em;
}

ul li {
	margin: 0 0 1em 1.2em;
}

dl,
dt,
dd {
	margin: 0;
}



@media only screen and (max-width: 767px) {
   body {
      font-size: 1.4rem;
   }

}


/*********************
GENERAL
*********************/

/*FONT*/
.font-en {
   font-family: var(--font-en);
}

.small {
   font-size: .85em;
}

.large {
   font-size: 1.2em;
}

.strong {
   font-weight: var(--medium);
}

.uppercase {
	text-transform: uppercase;
}

.line-heighter,
.line-heighter * {
   line-height: 2.1;
}

.line-heighter p {
   margin: 0 0 2em;
}


/*ALIGN*/
.center {
   text-align: center;
}

.center > * {
   margin-left: auto;
   margin-right: auto;
}

.left {
   text-align: left;
}

.right {
   text-align: right;
}


/*IMAGE*/
.img-circle {
   border-radius: 50%;
}

.img-object {
  position: relative;
  overflow: hidden;
}

.img-object>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}


/*FLEX*/
.flex {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
}

.flex-reverse {
   flex-direction: row-reverse;
}

.nowrap {
   flex-wrap: nowrap;
}

.space-around {
   justify-content: space-around;
}

.justify-start {
   justify-content: flex-start;
}

.justify-end {
   justify-content: flex-end;
}

.items-center {
   align-items: center;
}

.cell {
   position: relative;
}

.cell img {
   display: block;
   width: 100%;
}

.cell > *:last-child {
   margin-bottom: 0;
}

.cell--1-2 {
   width: 47.5%;
}

.cell--1-3 {
   width: 30%;
}

.cell--2-3 {
   width: 66%;
}

@media only screen and (max-width: 960px) {
   .cell--1-2 {
      width: 48.5%;
   }
}

@media only screen and (max-width: 767px) {
   .flex {
      flex-direction: column;
   }

   .cell--1-2,
   .cell--1-3,
   .cell--2-3{
      width: 100%;
   }

   .order0 {
      order: 0;
   }

   .order1 {
      order: 1;
   }
}


/*LIST*/
.list-none {
   list-style: none;
   padding-left: 0;
   margin: 0;
}

.list-dot li {
	list-style: none;
	padding-left: 1em;
	text-indent: -1em;
	margin: 0 0 1em;
}

.list-dot li::before {
   content: '';
   background-color: var(--main-color-2);
   border-radius: 50%;
   display: inline-block;
   width: 9px;
   height: 9px;
   margin-right: .5em;
}

/*OTHER*/
.relative {
   position: relative;
}

.block {
   display: block;
}

.box {
   border: var(--border-1);
}

.box-deco {
   font-family: var(--font-en);
   font-size: 1.2rem;
   font-weight: var(--normal);
   letter-spacing: var(--ls-sub);
   line-height: 1;
   display: inline-block;
   padding: 0.5em 1em;
   border-right: var(--border-1);
   border-bottom: var(--border-1);
}

@media only screen and (max-width: 767px) {
   .box-deco {
      font-size: 1.1rem;
   }
}

/*********************
HEADER
*********************/
.header {
   background-color: var(--base);
   position: fixed;
   top: 0;
   width: 100%;
   z-index: 100;
}

.header-inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	max-width: var(--container);
   padding: 40px var(--container-side) 20px;
	margin: 0 auto;
   opacity: 1;
}

.header.DownMove .header-inner {
   animation: headerDownInner .6s forwards;
}

.header.UpMove .header-inner {
   animation: headerUpInner .6s forwards;
}

@keyframes headerDownInner {
   0% {
      align-items: flex-start;
      padding-top: 40px;
      opacity: 1;
   }
   40% {
      align-items: flex-start;
      padding-top: 40px;
      opacity: 0;
   }
   60% {
      align-items: center;
      padding-top: 20px;
      opacity: 0;
   }
   100% {
      align-items: center;
      padding-top: 20px;
      opacity: 1;
   }
}

@keyframes headerUpInner {
   0% {
      align-items: center;
      padding-top: 20px;
      opacity: 1;
   }
   40% {
      align-items: center;
      padding-top: 20px;
      opacity: 0;
   }
   60% {
      align-items: flex-start;
      padding-top: 40px;
      opacity: 0;
   }
   100% {
      align-items: flex-start;
      padding-top: 40px;
      opacity: 1;
   }
}

.header-title {
	margin: 0;
}

.header-title-link {
   display: block;
   width: 180px;
   height: 110px;
   background-image: url(img/logo-l-bk.svg);
   background-size: contain;
   background-repeat: no-repeat;
   background-position: 0 0;
   opacity: 1;
}

.header.DownMove .header-title-link {
   animation: headerTitle01 .6s forwards;
}

.header.UpMove .header-title-link {
   animation: headerTitle02 .6s forwards;
}

@keyframes headerTitle01 {
   0% {
      height: 110px;
      background-image: url(img/logo-l-bk.svg);
      opacity: 1;
   }
   40% {
      height: 110px;
      background-image: url(img/logo-l-bk.svg);
      opacity: 0;
   }
   60% {
      height: 40px;
      background-image: url(img/logo-s-bk.svg);
      opacity: 0;
   }
   100% {
      height: 40px;
      background-image: url(img/logo-s-bk.svg);
      opacity: 1;
   }
}

@keyframes headerTitle02 {
   0% {
      height: 40px;
      background-image: url(img/logo-s-bk.svg);
      opacity: 1;
   }
   40% {
      height: 40px;
      background-image: url(img/logo-s-bk.svg);
      opacity: 0;
   }
   60% {
      height: 110px;
      background-image: url(img/logo-l-bk.svg);
      opacity: 0;
   }
   100% {
      height: 110px;
      background-image: url(img/logo-l-bk.svg);
      opacity: 1;
   }
}

.header-title-text {
   clip: rect(0 0 0 0);
   clip-path: inset(50%);
   width: 1px;
   height: 1px;
   overflow: hidden;
   position: absolute;
   white-space: nowrap;
}

#drawer-input {
   display: none;
}

.header-nav-item {
   list-style: none;
}

.header-nav-link {
   color: var(--text-main);
   display: block;
   position: relative;
   text-decoration: none;
}


@media only screen and (min-width: 961px) {
   .header-nav-list {
      display: flex;
      margin: 0;
      padding: 0;
   }
	
   .header-nav-item {
		margin: 0 0 0 3em;
   }
	
   .header-nav-item:first-child {
      display: none;
   }
	
   .header-nav-item:nth-child(2) {
      margin-left: 0;
   }
}

@media only screen and (max-width: 960px) {
   #drawer-content {
		background: var(--main-color-1);
		visibility: hidden;
      clip-path: inset(0 0 100% 0);
		overflow: auto;
		position: fixed;
		top: 0;
		left: 0;
		height: 100%;
		width: 100%;
		z-index: -1;
   }

   #drawer-content.show {
      animation: showDrawer .6s forwards;
   }

   #drawer-content.hidden {
      animation: hiddenDrawer 1s forwards;
   }

   @keyframes showDrawer {
      0% {
         visibility: hidden;
         clip-path: inset(0 0 100% 0);
         z-index: -1;
      }
      5% {
         visibility: visible;
         clip-path: inset(0 0 100% 0);
         z-index: 999;
      }
      100% {
         visibility: visible;
         clip-path: inset(0 0 0 0);
         z-index: 999;
      }
   }

   @keyframes hiddenDrawer {
      0% {
         visibility: visible;
         clip-path: inset(0 0 0 0);
         z-index: 999;
      }
      50% {
         visibility: visible;
         clip-path: inset(0 0 0 0);
         z-index: 999;
      }
      95% {
         visibility: visible;
         clip-path: inset(0 0 100% 0);
         z-index: 999;
      }
      100% {
         visibility: hidden;
         clip-path: inset(0 0 100% 0);
         z-index: -1;
      }
   }
	
   #drawer-open {
      font-size: 1.5rem;
      text-align: right;
      cursor: pointer;
      display: flex;
      align-items: flex-start;
      justify-content: flex-end;
      position: absolute;
      top: 40px;
      right: var(--container-side);
      transform: translateY(0);
      height: 40px;
      width: 8rem;
      margin: 0;
      outline: none;
      z-index: 1000;
      transition: all .6s;
   }

   .header.DownMove #drawer-open {
      align-items: center;
      top: 50%;
      transform: translateY(-50%);
   }

   .header.UpMove #drawer-open {
      align-items: flex-start;
      top: 40px;
      transform: translateY(0);
   }

   #drawer-input:checked ~ #drawer-open {
      color: var(--base);
      align-items: flex-start;
      top: 40px;
      transform: translateY(0);
   }

   .logo-drawer {
      width: 180px;
      position: fixed;
      left: var(--container-side);
      top: 40px;
   }

   #drawer-content.show .header-nav {
      animation: showNav .8s forwards;
   }

   #drawer-content.hidden .header-nav {
      animation: hiddenNav .4s forwards;
   }

   @keyframes showNav {
      0% {
         clip-path: inset(0 100% 0 0);
      }
      50% {
         clip-path: inset(0 100% 0 0);
      }
      100% {
         clip-path: inset(0 0 0 0);
      }
   }

   @keyframes hiddenNav {
      0% {
         clip-path: inset(0 0 0 0);
      }
      100% {
         clip-path: inset(0 100% 0 0);
      }
   }
	
   .header-nav-list {
      margin: 0;
      padding: max(26vh, 240px) var(--container-side) 0;
   }
	
   .header-nav-item {
      border-bottom: solid 1px var(--sub-color-1);
      margin: 0;
   }
	
   .header-nav-link {
      color: var(--base);
      font-size: 2.4rem;
      width: 100%;
      padding: 1em 0;
   }
}

@media only screen and (max-width: 767px) {
   .header-title-link,
   .logo-drawer {
      width: 150px;
   }

   @keyframes headerTitle01 {
      0% {
         height: 92px;
         background-image: url(img/logo-l-bk.svg);
         opacity: 1;
      }
      40% {
         height: 92px;
         background-image: url(img/logo-l-bk.svg);
         opacity: 0;
      }
      60% {
         height: 34px;
         background-image: url(img/logo-s-bk.svg);
         opacity: 0;
      }
      100% {
         height: 34px;
         background-image: url(img/logo-s-bk.svg);
         opacity: 1;
      }
   }

   @keyframes headerTitle02 {
      0% {
         height: 34px;
         background-image: url(img/logo-s-bk.svg);
         opacity: 1;
      }
      40% {
         height: 34px;
         background-image: url(img/logo-s-bk.svg);
         opacity: 0;
      }
      60% {
         height: 92px;
         background-image: url(img/logo-l-bk.svg);
         opacity: 0;
      }
      100% {
         height: 92px;
         background-image: url(img/logo-l-bk.svg);
         opacity: 1;
      }
   }

   #drawer-open {
      font-size: 1.3rem;
      width: 6rem;
   }

   .header-nav-list {
      padding: max(23vh, 170px) var(--container-side) 0;
   }

   .header-nav-link {
      font-size: 2rem;
   }
}

/*********************
BREADCRUMBS
*********************/
#breadcrumb {
	padding: 25rem 0 5rem;
}

.main-single-post #breadcrumb {
   padding: 27rem 0 3rem;
}

.breadcrumb-list {
	padding: 0;
	max-width: var(--container);
	margin: 0 auto;
   text-align: right;
}

.main-single-post .breadcrumb-list {
	max-width: var(--container-l);
   text-align: left;
}

.breadcrumb-item {
	color: var(--main-color-1);
   font-family: var(--font-en);
   font-size: 1.2rem;
	line-height: 1;
	list-style: none;
	display: inline-block;
	margin: 0;
}

.breadcrumb-item:not(:last-of-type)::after {
	content: '｜';
	padding: 0 0.5em;
}

.breadcrumb-item a {
	color: inherit;
	text-decoration: none;
}

@media only screen and (max-width: 767px) {
   #breadcrumb {
      padding: 22rem 0 3.6rem;
   }

   .main-single-post #breadcrumb {
      padding: 24rem 0 2rem;
   }

   .breadcrumb-item {
      font-size: 1rem;
   }
}


/*********************
CONTAINER
*********************/
.site-content {
   flex: 1;
}

.section-wrap {
   padding-top: 100px;
   padding-bottom: 100px;
   position: relative;
}

.container {
   max-width: var(--container);
   padding-right: var(--container-side);
   padding-left:  var(--container-side);
   position: relative;
   margin: 0 auto;
   width: 100%;
}

.container-l {
   max-width: var(--container-l);
   margin: 0 auto;
}

.container-m {
   max-width: var(--container-m);
   margin: 0 auto;
}

.container-s {
   max-width: var(--container-s);
   margin: 0 auto;
}

@media only screen and (max-width: 767px) {
   .section-wrap {
      padding-top: 50px;
      padding-bottom: 50px;
   }

   .container {
      padding-right: var(--container-side-sp);
      padding-left: var(--container-side-sp);
   }

}

/*********************
HEADING
*********************/
.h1-page-wrap {
   display: flex;
   justify-content: flex-end;
   margin-bottom: 12rem;
   position: relative;
}

.h1-page-en>svg {
   width: auto;
   height: min(7vw,88px);
}

.h1-page-jp {
   font-size: 3.6rem;
   font-weight: var(--medium);
   letter-spacing: var(--ls-main);
   line-height: 1.4;
   margin: 0;
   position: absolute;
   right: 0;
   bottom: 0;
}

.h2-page-wrap {
   margin-bottom: 6rem;
}

.h2-page-en {
   font-family: var(--font-en);
   font-size: 1rem;
   letter-spacing: var(--ls-sub);
   line-height: 1;
   margin-bottom: .8em;
}

.h2-page-en::before,
.h2-page-en::after {
   font-size: 1.2em;
}

.h2-page-en::before {
   content: '(';
}

.h2-page-en::after {
   content: ')';
}

.h2-page-jp {
   font-size: 3rem;
   font-weight: var(--medium);
   line-height: 1.4;
   margin: 0;
}

.h3-page {
   font-size: 2.2rem;
   font-weight: var(--medium);
   line-height: 1.4;
}

@media only screen and (max-width: 960px) {
   .h1-page-en>svg {
      height: min(10vw, 88px);
   }
}


@media only screen and (max-width: 767px) {
   .h1-page-wrap {
      margin-bottom: 14rem;
   }

   .h1-page-en>svg {
      height: min(13vw, 72px);
   }

   .h1-page-jp {
      font-size: 3rem;
   }

   .h2-page-wrap {
      margin-bottom: 5rem;
   }

   .h2-page-jp {
      font-size: 2.6rem;
   }

   .h3-page {
      font-size: 1.8rem;
   }
}



/*********************
BUTTON
*********************/
.btn-wrap {
   margin-top: 2em;
   width: 100%;
}

.btn {
   color: var(--text-main);
   display: inline-block;
   font-size: 1em;
   font-weight: var(--medium);
   line-height: 1;
   text-decoration: none;
   position: relative;
   transition: all .3s;
   z-index: 1;
}

.btn-main {
   padding-right: 1.5em;
   padding-bottom: 0.5em;
}

.btn-main.btn-wh {
   color: var(--base);
}

.btn-main.btn-back {
   padding-right: 0;
   padding-left: 1.5em;
}

.btn-main::before {
   content: '';
   display: block;
   width: 100%;
   height: 1px;
   background: var(--text-main);
   position: absolute;
   right: 0;
   bottom: 0;
   transition: all .3s;
}

.btn-main.btn-wh::before {
   background: var(--base);
}

.btn-main.btn-back::before {
   right: unset;
   left: 0;
}

.btn-main::after {
   content: '';
   display: block;
   width: 1em;
   height: 1em;
   background-image: url(img/arrow-right-bk.svg);
   background-size: contain;
   background-repeat: no-repeat;
   background-position: center center;
   position: absolute;
   right: 0;
   top: 0;
}

.btn-main.btn-wh::after {
   background-image: url(img/arrow-right-wh.svg);
}

.btn-main.btn-back::after {
   background-image: url(img/arrow-left-bk.svg);
   right: unset;
   left: 0;
}

.btn-main.btn-wh.btn-back::after {
   background-image: url(img/arrow-left-wh.svg);
}

.btn-main.btn-exlink::after {
   background-image: url(img/arrow-ex-bk.svg);
}

.btn-main.btn-wh.btn-exlink::after {
   background-image: url(img/arrow-ex-wh.svg);
}

@media only screen and (min-width: 768px) {
   .btn:hover {
      opacity: 1;
   }

   .btn-main:hover::before {
      width: 0;
   }
}

/*********************
FOOTER
*********************/
#footer {
   background-color: var(--main-color-1);
   padding: 120px 0 100px;
   position: relative;
}

.footer-inner {
   display: flex;
   flex-direction: row-reverse;
   justify-content: space-between;
}

.footer-main {
   width: 60%;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}

.footer-logo {
	display: block;
	width: 180px;
}

.footer-main-list {
	padding: 0;
	margin: 0;
	justify-content: flex-start;
}

.footer-main-item {
	color: var(--base);
	list-style: none;
	margin: 0 2em 0 0;
}

.footer-main-item:last-of-type {
	margin: 0;
}

.footer-main-link {
	color: inherit;
	text-decoration: none;
}

.copyright{
	color: var(--base);
   font-family: var(--font-en);
	font-size: 1rem;
   margin: 4em 0 0;
}

.footer-cta {
   display: block;
	width: min(30%, 500px);
   color: var(--base);
   text-decoration: none;
   border-top: var(--border-2);
   border-bottom: var(--border-2);
}

.footer-cta-heading {
   width: 100%;
   padding: 2em 0;
   border-bottom: var(--border-2);
   overflow: hidden;
}

.footer-cta-heading-inner {
   display: flex;
   transition: opacity .3s;
}

.footer-cta-heading-inner>p {
   font-family: var(--font-en);
   font-weight: var(--medium);
   font-size: 4rem;
   letter-spacing: var(--ls-main);
   line-height: 1;
   text-transform: uppercase;
   white-space: nowrap;
   padding-right: 2rem;
   margin: 0;
   position: relative;
   animation: footerTextScroll 10s infinite linear both;
}

@keyframes footerTextScroll {
   0% {
      transform: translateX(0);
   }
   100% {
      transform: translateX(-100%);
   }
}

.footer-cta-heading-inner>p::after {
   content: '';
   display: inline-block;
   width: 0.8em;
   height: 0.8em;
   background-image: url(img/arrow-right-wh.svg);
   background-size: contain;
   background-repeat: no-repeat;
   background-position: center center;
   margin-left: 2rem;
}

.footer-cta-content {
   padding: 2em 0;
   transition: opacity .3s;
}

.footer-cta-content>p {
   margin: 1em 0 0;
}


@media only screen and (min-width:768px) {
   .footer-cta:hover {
      opacity: 1;
   }

   .footer-cta:hover .footer-cta-heading-inner,
   .footer-cta:hover .footer-cta-content {
      opacity: 0.7;
   }
}

@media only screen and (max-width:960px) {
   #footer {
      padding: 100px 0 60px;
   }

   .footer-inner {
      align-items: flex-end;
   }

   .footer-cta {
      width: 50%;
   }

   .footer-main {
      width: 40%;
   }

   .footer-logo {
      margin-bottom: 10rem;
   }

   .footer-main-list {
      flex-direction: column;
   }

   .footer-main-item {
      margin: 0 0 1em 0;
   }

   .copyright {
      margin-top: 6em;
   }
}

@media only screen and (max-width:767px) {
   #footer {
      padding: 120px 0 40px;
   }

	.footer-inner {
      display: block;
   }

   .footer-cta {
      width: min(100%, 500px);
      margin-bottom: 100px;
   }

   .footer-cta-heading-inner>p {
      font-size: 3rem;
      padding-right: 1rem;
   }

   .footer-cta-heading-inner>p::after {
      margin-left: 1rem;
   }

   .footer-main {
      width: 100%;
   }

   .footer-logo {
      width: 150px;
      margin-bottom: 4rem;
   }

   .copyright {
      margin-top: 8em;
   }
}


/*********************
ARCHIVE
*********************/
.archive-box-head {
   border-bottom: var(--border-1);
}

.archive-head-inner {
   padding: 2.4rem 4.8% 3.6rem;
   margin: 0;
   display: flex;
   justify-content: flex-start;
   flex-wrap: wrap;
   column-gap: 1.2rem;
   row-gap: 1.2rem;
}

.archive-head-item {
   list-style: none;
   margin: 0;
}

.archive-head-item a {
   color: var(--text-main);
   font-family: var(--font-en);
   letter-spacing: var(--ls-sub);
   line-height: 1;
   text-transform: uppercase;
   text-decoration: none;
   display: inline-block;
   padding: 0.4em 1.75em;
   border: dashed 1px var(--text-main);
   border-radius: 10em;
}

.archive-head-item a.current {
   color: var(--base);
   border: var(--border-1);
   background-color: var(--text-main);
}

.archive-box-body {
   padding: 6% 0;
}

/*card*/
.archive-wrap {
   display: flex;
   flex-wrap: wrap;
   row-gap: clamp(60px, 5.5vw, 90px);
}

.archive-card {
	width: 50%;
   padding: 0 4.8%;
}

.archive-card:nth-of-type(2n) {
	border-left: var(--border-1);
}

.archive-card a {
	display: block;
	width: 100%;
	height: 100%;
   text-decoration: none;
}

.image-archive {
   width: 100%;
   padding-top: 66.6%;
   position: relative;
   overflow: hidden;
}

.image-archive>img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   position: absolute;
   left: 0;
   top: 0;
}

.image-archive-filter {
   background: linear-gradient(to right, rgba(34,34,34,.5), rgba(83,88,87,.5));
   width: 100%;
   height: 100%;
   position: absolute;
   left: 0;
   top: 0;
   display: flex;
   justify-content: center;
   align-items: center;
   clip-path: inset(0 100% 0 0);
   transition: clip-path .4s;
}

.image-archive-filter>p {
   color: var(--bg-1);
   font-family: var(--font-en);
   font-size: 2.4rem;
   font-weight: var(--medium);
   letter-spacing: var(--ls-sub);
   line-height: 1;
   text-transform: uppercase;
   margin: 0;
}

.text-archive {
   margin-top: 2em;
}

.title-archive {
   color: var(--text-main);
   font-weight: var(--medium);
   font-size: 2rem;
   line-height: 1.4;
}

.meta-archive {
   color: var(--main-color-1);
   font-family: var(--font-en);
   font-size: 1.2rem;
   line-height: 1;
   margin: 1.5em 0 0;
   display: flex;
   flex-wrap: wrap;
   column-gap: .7em;
   row-gap: 0.5em;
}


/*PAGENATION*/

/* リンクの枠 */
.navigation.pagination {
	margin-top: 8rem;
}

/* 数字のリンク */
.pagination .page-numbers {
   color: var(--text-main);
	font-family: var(--font-en);
	font-weight: var(--normal);
	display: flex;
	justify-content: center;
   column-gap: .8em;
	margin: 0;
}

.pagination .page-numbers li {
	list-style: none;
   margin: 0;
   display: flex;
   justify-content: center;
   align-items: center;
}

.pagination .page-numbers a,
.page-numbers li .current {
	text-decoration: none;
   line-height: 2em;
   width: 2em;
   height: 2em;
   border: dashed 1px var(--text-main);
   border-radius: 20em;
   transition: all .3s;
}

/* 前へ、次へボタン */
.pagination .nav-links .prev,
.pagination .nav-links .next {
   background-size: .9em .9em;
   background-repeat: no-repeat;
   background-position: center center;
}

.pagination .nav-links .prev {
	background-image: url(img/arrow-left-bk.svg);
}

.pagination .nav-links .next {
	background-image: url(img/arrow-right-bk.svg);
}

/* ドット */
.pagination .nav-links .dots {

}

/* 現在のページ */
.pagination .nav-links .current {
	color: var(--base);
   background-color: var(--text-main);
   border-style: solid;
}

@media only screen and (min-width: 768px) {
   .archive-head-item a:hover {
      color: var(--base);
      border: var(--border-1);
      background-color: var(--text-main);
      opacity: 1;
   }

   .archive-head-item a.current:hover {
      color: var(--text-main);
      background-color: transparent;
   }

   .archive-card a:hover {
      opacity: 1;
   }

   .archive-card a:hover .image-archive-filter {
      clip-path: inset(0 0 0 0);
   }

   .pagination .page-numbers a:hover {
      color: var(--base);
      background-color: var(--text-main);
      border-style: solid;
      opacity: 1;
   }

   .pagination .nav-links .prev:hover {
      background-image: url(img/arrow-left-wh.svg);
   }

   .pagination .nav-links .next:hover {
      background-image: url(img/arrow-right-wh.svg);
   }
}

@media only screen and (max-width: 767px) {
   .archive-head-inner {
      padding: 2rem 5.5% 3rem;
   }

   .archive-box-body {
      padding: max(6%, 3rem) 5.5% 4rem;
   }

   .archive-wrap {
      display: block;
   }

   .archive-card {
      width: 100%;
      padding: 5rem 0;
      border-bottom: var(--border-1);
   }

   .archive-card:first-of-type {
      padding-top: 0;
   }

   .archive-card:nth-of-type(2n) {
      border-left: none;
   }

   .title-archive {
      font-size: 1.8rem;
   }

   .navigation.pagination {
      margin-top: 5rem;
   }
}



/*********************
SINGLE
*********************/
.title-single {
   font-size: 3rem;
   letter-spacing: var(--ls-main);
   line-height: 1.3;
   margin-bottom: 1.5em;
}

.info-single-wrap {
   padding-top: 80px;
   position: relative;
}

.info-single {
   display: flex;
}

.eyecatch-single {
   width: 63%;
}

.info-single-meta {
   width: 37%;
   padding: 0 5%;
   display: flex;
   justify-content: center;
   align-items: center;
}

.single-meta-heading {
   color: var(--main-color-1);
   margin-bottom: 0.5em;
}

.single-meta-content {
   font-family: var(--font-en);
   margin-bottom: 1.5em;
}

.single-meta-content:last-of-type {
   margin-bottom: 0;
}

.single-role-item:not(:last-child)::after {
   content: '/ ';
}

.single-meta-btn {
   margin-top: 3em;
}

.info-single-comment {
   width: 63%;
   margin-top: 80px;
}

.moodboard-single-wrap {
   margin-top: 80px;
   padding-top: 100px;
   position: relative;
}

.info-single-wrap::before,
.moodboard-single-wrap::before {
   content: '';
   display: block;
   width: 0;
   height: 1px;
   background-color: var(--main-color-1);
   position: absolute;
   top: 0;
   left: 0;
   transition: width .6s;
}

.info-single-wrap.is-active::before,
.moodboard-single-wrap.is-active::before {
   width: 100%;
}

.grid-works,
.grid-works-flex-inner {
   display: flex;
   flex-direction: column;
   row-gap: 12px;
}

.grid-works-flex {
   display: flex;
   justify-content: space-between;
   column-gap: 12px;
}

.grid-works-flex-inner {
   width: calc(64% - 8px);
}

.grid-item {
   position: relative;
   overflow: hidden;
}

.grid-item-1,
.grid-item-5,
.grid-item-6 {
   padding-top: 45%;
}

.grid-item-2,
.grid-item-3 {
   padding-top: 56.6%;
}

.grid-item-4 {
   padding-top: 72%;
   width: calc(36% - 4px);
}

.grid-item-7 {
   padding-top: 35%;
}

.grid-item>img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   position: absolute;
   left: 0;
   top: 0;
}

.single-btn-wrap {
   margin-top: 100px;
}

.text-single-post h2 {
	font-size: 1.75em;
}

.text-single-post h3 {
	font-size: 1.5em;
}

.text-single-post h4 {
	font-size: 1.1em;
}

.text-single-post h2,
.text-single-post h3,
.text-single-post h4 {
   font-weight: var(--medium);
	margin: 1em 0;
}

.text-single-post p+h2,
.text-single-post img+h2,
.text-single-post figure+h2,
.text-single-post table+h2 {
	margin-top: 3em;
}

.text-single-post p+h3,
.text-single-post img+h3,
.text-single-post figure+h3,
.text-single-post table+h3 {
	margin-top: 2em;
}

.text-single-post ul,
.text-single-post ol {
	margin: 2em 0;
}

.text-single-post figure,
.text-single-post img {
	display: block;
	max-width: 100%;
	margin: auto;
}

.text-single-post figure {
	margin-bottom: 2em;
}

.text-single-post figcaption {
	font-size: .8em;
	line-height: 1.7;
	margin-top: .5em;
}

.text-single-post table{
	border: solid 1px #DDD;
	border-collapse: collapse;
}

.text-single-post tr{
    border-bottom: solid 1px #DDD;
}

.text-single-post th,
.text-single-post td{
	padding: 1em;
	border-right: solid 1px #DDD;
}

@media only screen and (max-width: 960px) {
   .info-single {
      display: block;
   }

   .eyecatch-single {
      width: 100%;
   }

   .info-single-meta {
      display: block;
      width: 100%;
      padding: 0;
      margin-top: 60px;
   }

   .single-meta-inner {
      display: flex;
      justify-content: space-between;
   }

   .single-meta-text {
      width: calc(100% - 30rem);
   }

   .single-meta-btn {
      text-align: right;
      width: 30rem;
      margin: 0;
   }

   .info-single-comment {
      width: 80%;
   }
}

@media only screen and (max-width: 767px) {
   .title-single {
      font-size: 2.4rem;
   }

   .info-single-wrap {
      padding-top: 60px;
   }

   .info-single-meta {
      margin-top: 40px;
   }

   .single-meta-inner {
      display: block;
   }

   .single-meta-text {
      width: 100%;
   }

   .single-meta-heading {
      margin-bottom: 0.2em;
   }

   .single-meta-content {
      margin-bottom: 1em;
   }

   .single-meta-btn {
      text-align: left;
      width: 100%;
      margin-top: 1.5em;
   }

   .info-single-comment {
      width: 100%;
      margin-top: 60px;
   }

   .single-btn-wrap {
      margin-top: 80px;
   }

   .moodboard-single-wrap {
      margin-top: 60px;
      padding-top: 80px;
   }
}

/*********************
CONTACT
*********************/
input[type=email],
input[type=text],
input[type=tel],
input[type=file],
input[type=url],
input[type=number],
input[type=date],
select,
textarea {
	color: inherit;
	font-size: 1.6rem;
	display: inline-block;
	width:100%;
}

input[type=email],
input[type=text],
input[type=tel],
input[type=url],
input[type=number],
input[type=date],
select,
textarea {
	border: 1px solid var(--sub-color-1);
	border-radius: 0;
   background-color: var(--bg-1);
	line-height: 1.7;
	padding: 1rem .9rem;
}

input[type=number] {
   margin-right: .5rem;
   padding: .5rem 1rem;
   width: calc(4em + 2rem);
}

input[type=checkbox],
input[type=radio],
.wpcf7-list-item-label {
   vertical-align: middle;
}

input[type=submit] {
	color: var(--bg-1);
   font-size: 2.4rem;
	font-weight: var(--medium);
   letter-spacing: var(--ls-sub);
   line-height: 1;
   text-align: center;
	text-decoration: none;
	background-color: var(--main-color-1);
	border: var(--border-1);
	border-radius: 0;
	display: inline-block;
	padding: .5em 1em;
	transition: all .3s;
	width: min(400px, 100%);
}

input[type=submit]:hover{
   color: var(--main-color-1);
   background-color: var(--base);
}

.number-month,
.number-date {
   margin-left: 1em;
}

.wpcf7-list-item {
	margin: 0 1em .4em 0;
}

.wpcf7-list-item:last-child {
   margin: 0;
}

.item-form-contact:not(:last-child) {
   padding-bottom: 2em;
}

.heading-form-contact {
   font-size: 1.2em;
   font-weight: var(--medium);
   line-height: 1.4;
}

.detail-form-contact {
   padding-top: 1em;
}

.contact-label {
   color: var(--bg-1);
   font-size: 1.2rem;
   font-weight: var(--normal);
   line-height: 1;
   background-color: var(--main-color-1);
   display: inline-block;
   margin-left: 1.5rem;
   padding: .4em .6em;
   vertical-align: text-bottom;
}

::placeholder {
   color: var(--sub-color-1);
   font-size: 1.6rem;
   letter-spacing: var(--ls-main);
   line-height: 1.7;
}

.wpcf7-checkbox .wpcf7-list-item {
   display: block;
   margin-bottom: .5em;
}

.wpcf7-acceptance .wpcf7-list-item {
   margin: 0;
}

/*送信完了メッセージ*/
.wpcf7 form.sent .wpcf7-response-output {
   background-color: #fff;
   border-color: #4a84af;
   margin-top: 3em;
   padding: 2em; 
}

/*Google reCAPCHA*/
.reCAPTCHA {
	font-size: 1rem;
   margin: 0;
}


@media only screen and (max-width: 767px) {
   input[type=submit] {
      width: 100%;
      font-size: 2rem;
   }

	.contact-label {
      font-size: 1rem;
	}

	::placeholder {
      font-size: 1em;
	}

	.wpcf7-list-item {
      display: block;
      margin: 0 0 .4em;
   }
}

/*********************
FRONT
*********************/
.top-fv {
   height: 85vh;
   display: flex;
   justify-content: flex-end;
   align-items: flex-end;
}

.fv-text-wrap {
   width: 64%;
   display: flex;
   flex-direction: column;
}

.fv-text-sub {
   color: var(--main-color-1);
   font-family: var(--font-en);
   font-size: 2.4rem;
   line-height: 1;
   position: relative;
}

.fv-text-sub>span {
   display: inline-block;
   background-color: var(--base);
   padding-right: 1em;
}

.fv-text-sub::before {
   content: '';
   display: block;
   width: 100%;
   height: 2px;
   background-color: var(--main-color-1);
   position: absolute;
   left: 0;
   top: 50%;
   transform: scaleX(0);
   transform-origin: left;
   transition: transform .4s;
   transition-delay: .3s;
   z-index: -1;
}

.fv-text-sub.is-active::before {
   transform: scaleX(1);
}

.fv-text-main {
   width: 100%;
   height: auto;
   stroke-dasharray: 420;
   fill: var(--main-color-1);
   fill-opacity: 0;
   stroke: var(--main-color-1);
   stroke-width: 1px;
   stroke-linecap: round;
   opacity: 0;
}

.fv-text-main.is-active {
   animation: textStrokeFV 2.5s forwards;
}

@keyframes textStrokeFV {
   0% {
      stroke-dashoffset: 420;
      fill-opacity: 0;
      opacity: 0;
   }
   5% {
      stroke-dashoffset: 420;
      fill-opacity: 0;
      opacity: 1;
   }
   75% {
      stroke-dashoffset: 0;
      fill-opacity: 0;
      opacity: 1;
   }
   100% {
      stroke-dashoffset: 0;
      fill-opacity: 1;
      opacity: 1;
   }
}

.top-works {
   padding: max(120px,18vh) 0 140px;
}

.top-works-head {
   display: flex;
   justify-content: space-between;
   align-items: flex-end;
}

.top-works-head .h2-page-wrap {
   margin-bottom: 0;
}

.top-works .archive-wrap {
   border-right: var(--border-2);
   border-left: var(--border-2);
}

.top-works .archive-card:nth-of-type(2n) {
   border-left: var(--border-2);
}

.top-works .title-archive {
   color: var(--base);
}

.top-works .meta-archive {
   color: var(--sub-color-1);
}

.top-text-scroll {
   width: 100%;
   overflow: hidden;
}

.top-text-scroll-inner {
   display: flex;
   column-gap: 70px;
}

.top-text-scroll-item {
   animation: topTextScroll 50s infinite linear both;
}

@keyframes topTextScroll {
   0% {
      transform: translateX(70px);
   }
   100% {
      transform: translateX(-100%);
   }
}

.top-about-inner {
   display: flex;
}

.top-about-heading {
   width: calc(22rem + 10%);
}

.top-about-content {
   width: calc(90% - 22rem);
   padding-left: 10%;
   position: relative;
}

.top-about-content::before {
   content: '';
   display: block;
   width: 1px;
   height: 0;
   background-color: var(--main-color-1);
   position: absolute;
   left: 0;
   top: 0;
   transition: height .5s;
}

.top-about-content.is-active::before {
   height: 100%;
}

.top-about-text>p {
   max-width: 520px;
}

@media only screen and (max-width: 960px) {
   .fv-text-wrap {
      width: 85%;
   }

   .top-text-scroll-inner {
      column-gap: 50px;
   }

   @keyframes topTextScroll {
      0% {
         transform: translateX(50px);
      }
      100% {
         transform: translateX(-100%);
      }
   }

   .top-text-scroll-item>svg {
      width: 1900px;
      height: auto;
   }

   .top-about-inner {
      display: block;
   }

   .top-about-heading {
      width: 100%;
      margin-bottom: 3rem;
   }

   .top-about-content {
      width: 80%;
      padding: 6rem 0 0 0;
   }

   .top-about-content::before {
      width: 0;
      height: 1px;
      transition: width .5s;
   }

   .top-about-content.is-active::before {
      width: 100%;
      height: 1px;
   }
}

@media only screen and (max-width:767px) {
   .fv-text-wrap {
      width: 90%;
   }

   .fv-text-sub {
      font-size: 1.5rem;
      margin-bottom: 1.5em;
   }

   .fv-text-sub::before {
      height: 1px;
   }

   .top-works {
      padding-bottom: 100px;
   }

   .top-works .archive-wrap {
      padding: 5.5%;
   }

   .top-works .archive-card:nth-of-type(2n) {
      border-left: none;
   }

   .top-works .archive-card:not(:last-of-type) {
      border-bottom: var(--border-2);
   }

   .top-works .archive-card:last-of-type {
      padding-bottom: 0;
   }

   .top-works-btn {
      margin-top: 6rem;
   }

   .top-text-scroll-inner {
      column-gap: 7vw;
   }

   .top-text-scroll-item>svg {
      width: min(300vw, 1900px);
   }

   @keyframes topTextScroll {
      0% {
         transform: translateX(7vw);
      }
      100% {
         transform: translateX(-100%);
      }
   }

   .top-about-heading {
      margin-bottom: 2rem;
   }

   .top-about-content {
      width: 100%;
      padding-top: 4rem;
   }

}


/*********************
PAGE PARTS
*********************/
/* about */
.about-intro .h2-page-wrap {
   display: flex;
   flex-direction: row-reverse;
   justify-content: flex-end;
   align-items: flex-end;
}

.about-intro .h2-page-en {
   font-size: 1.8rem;
   margin: 0 0 .2em .6em;
}

.about-inner-content {
   position: relative;
}

.about-inner-inner {
   max-width: 700px;
   position: relative;
}

.about-inner-content::before,
.about-inner-inner::before {
   content: '';
   display: block;
   background-color: var(--main-color-1);
   position: absolute;
   left: 0;
   top: 0;
   transition: all .6s;
}

.about-inner-content::before {
   width: 1px;
   height: 0;
}

.about-inner-content.is-active::before {
   height: 100%;
}

.about-inner-inner::before {
   width: 0;
   height: 1px;
}

.about-inner-inner.is-active::before {
   width: 100%;
}

.about-inner-text {
   padding-top: 8%;
   padding-left: 10%;
}

.about-inner-text>p:last-child {
   margin-bottom: 0;
}

.about-career .h2-page-wrap {
   margin: 0;
}

.about-career-content {
   margin-right: 0;
   margin-left: auto;
}

.about-career-item {
   display: flex;
   padding: 2em 0 2em 2em;
   position: relative;
}

.about-career-item::before {
   content: '';
   display: block;
   width: 0.6em;
   height: 0.6em;
   background-color: var(--main-color-1);
   border-radius: 5em;
   position: absolute;
   left: -0.3em;
   top: 2.6em;
}

.about-career-item::after {
   content: '';
   display: block;
   width: 1px;
   height: 0;
   background-color: var(--main-color-1);
   position: absolute;
   left: 0;
   top: 0;
   transition: height .6s;
}

.about-career-item.is-active::after {
   height: 100%;
}

.about-career-item>h3 {
   font-family: var(--font-en);
   font-size: 2rem;
   font-weight: var(--medium);
   letter-spacing: var(--ls-sub);
   line-height: 1;
   width: 6em;
   padding-top: 0.2em;
}

.about-career-item>p {
   width: calc(100% - 8em);
   margin: 0;
}

.about-skill-item {
   padding: 4em 1em;
   position: relative;
}

.about-skill-item::before,
.about-skill-item:last-child::after {
   content: '';
   display: block;
   width: 0;
   height: 1px;
   background-color: var(--main-color-1);
   position: absolute;
   left: 0;
   transition: width .6s;
}

.about-skill-item::before {
   top: 0;
}

.about-skill-item:last-child::after {
   bottom: 0;
}

.about-skill-item.is-active::before,
.about-skill-item.is-active:last-child::after {
   width: 100%;
}

.about-skill-year {
   color: var(--main-color-1);
   margin: 1em 0 0;
}

.about-skill-content-inner {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
}

.about-skill-content-inner:not(:last-of-type) {
   margin-bottom: 2em;
}

.about-skill-content-inner>h4 {
   font-size: 1.2rem;
   font-weight: var(--normal);
   letter-spacing: var(--ls-sub);
   line-height: 1;
   text-align: center;
   width: 8em;
   padding: 0.5em;
   border: var(--border-1);
}

.about-skill-content-inner>p {
   width: calc(100% - 8em);
   margin: 0;
}

.about-skill-notice {
   color: var(--main-color-1);
   font-size: .8em;
   margin: 3em 0 0;
}

.about-likes-list {
   row-gap: min(4.5vw, 70px);
}

.about-likes-item {
   border: var(--border-1);
}

.about-likes-heading {
   padding: min(4.6%, 3rem) min(6.25%, 4rem);
   border-bottom: var(--border-1);
   display: flex;
   justify-content: space-between;
}

.about-likes-num {
   color: var(--main-color-1);
   font-family: var(--font-en);
   letter-spacing: var(--ls-sub);
   width: 3em;
   margin: 0;
}

.about-likes-heading>.h3-page {
   width: calc(100% - 5rem);
}

.about-likes-content {
   padding: min(6.25%, 4rem);
}

.about-likes-content>p {
   margin: min(6.25%, 4rem) 0 0;
}

@media only screen and (max-width: 960px) {
   .about-intro .h2-page-wrap {
      margin-bottom: 3rem;
   }

   .about-intro-inner {
      flex-direction: column;
   }

   .about-inner-img {
      width: min(30rem, 50%);
      margin-bottom: 6rem;
   }

   .about-inner-content {
      width: 100%;
   }

   .about-career .h2-page-wrap {
      margin-bottom: 4rem;
   }

   .about-career-content {
      width: 100%;
   }

   .about-skill-item {
      flex-direction: column;
      padding: 3em 1em 4em;
   }

   .about-skill-heading {
      width: 100%;
      display: flex;
      align-items: flex-end;
      margin-bottom: 3em;
   }

   .about-skill-content {
      width: 100%;
   }

   .about-skill-year {
      margin: 0 0 0 1em;
   }

   .about-likes-list {
      row-gap: 2.5vw;
   }

   .about-likes-content {
      padding: 7%;
   }

   .about-likes-content>p {
      margin-top: 7%;
   }
}

@media only screen and (max-width:767px) {
   .about-intro .h2-page-en {
      font-size: 1.5rem;
   }

   .about-inner-img {
      width: min(24rem, 100%);
   }

   .about-inner-text {
      padding-top: 10%;
   }

   .about-career-item {
      padding-left: 1.5em;
   }

   .about-career-item>h3 {
      font-size: 1.8rem;
      width: 4em;
   }

   .about-career-item>p {
      width: calc(100% - 4em);
   }

   .about-skill-item {
      padding-bottom: 3em;
   }

   .about-skill-heading {
      display: block;
   }

   .about-skill-year {
      margin: .5em 0 0;
   }

   .about-skill-content-inner {
      display: block;
   }

   .about-skill-content-inner>p {
      width: 100%;
      margin-top: 0.5em;
   }

   .about-likes-list {
      row-gap: 6vw;
   }
}
/* about end */

/* thanks */
@media only screen and (max-width:767px) {
   .main-thanks .h1-page-en>svg {
      height: min(11vw, 72px);
   }
}
/* thanks end */

/* privacy */
@media only screen and (max-width: 960px) {
   .main-privacy .h1-page-en {
      width: 80%;
   }

   .main-privacy .h1-page-en>svg {
      width: 100%;
      height: auto;
   }
}

@media only screen and (max-width:767px) {
   .main-privacy .h1-page-en {
      width: 100%;
   }
}
/* privacy end */

/*********************
LOADING
*********************/
#loading,
#loading_logo {
   display: none;
}

.home #loading {
	background-color: #fff;
	display: block;
	position: fixed;
	left: 0;
	text-align:center;
	width: 100%;
	height: 100%;
	z-index: 999;
}

.home #loading_logo {
   display: block;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate3d(-50%, -50%, 0);
}

#loading_logo img {
   width:210px;
}


/*********************
COLOR
**********************/
.bg-base {
   background-color: var(--base);
}

.bg-main-color-1 {
   background-color: var(--main-color-1);
}

.bg-text-main {
   background-color: var(--text-main);
}

.color-base {
   color: var(--base);
}

.color-main-1 {
   color: var(--main-color-1);
}

.color-text-main {
   color: var(--text-main);
}

/*********************
MARGIN
*********************/
.margin-1 {
   margin-bottom: 160px;
}
.margin-2 {
   margin-bottom: 120px;
}
.margin-3 {
   margin-bottom: 100px;
}
.margin-4 {
   margin-bottom: 80px;
}
.margin-5 {
   margin-bottom: 60px;
}

@media only screen and (max-width: 767px) {
   .margin-1{
      margin-bottom: 120px;
   }
   .margin-2 {
      margin-bottom: 100px;
   }
   .margin-3{
      margin-bottom: 80px;
   }
   .margin-4{
      margin-bottom: 60px;
   }
   .margin-5{
      margin-bottom: 40px;
   }
}


/*********************
ANIMATION
*********************/
.fadein {
   opacity: 0;
   transform: translateY(20px);
   transition-property: transform, opacity;
   transition-duration: 1s;
   transition-delay: 0s;
}

.fadein.is-active {
   opacity: 1;
   transform: translateY(0);
}

.fade {
   opacity: 0;
   transition: opacity 1s;
}

.fade.is-active {
   opacity: 1;
}

.text-stroke {
   stroke-dasharray: 640;
   fill: none;
   stroke: var(--sub-color-2);
   stroke-width: 1px;
   stroke-linecap: round;
   opacity: 0;
}

.text-stroke.is-active {
   animation: textStroke 2s forwards;
}

@keyframes textStroke {
   0% {
      stroke-dashoffset: 640;
      opacity: 0;
   }
   5% {
      stroke-dashoffset: 640;
      opacity: 1;
   }
   100% {
      stroke-dashoffset: 0;
      opacity: 1;
   }
}

.delay--2 {
   transition-delay: .3s;
}

.delay--3 {
   transition-delay: .6s;
}

.delay--4 {
   transition-delay: .9s;
}

@media only screen and (min-width: 768px) {

}

/*********************
RESPONSIVE
*********************/
@media only screen and (min-width: 961px) {
   .tb_only { display: none !important; }
   .sp_only { display: none !important; }
   .sp_tb { display: none !important; }
}

@media only screen and (min-width: 768px) and (max-width: 960px) {
   .pc_only { display: none !important; }
   .sp_only { display: none !important; }
   .sp_pc { display: none !important; }
}

@media only screen and (max-width: 767px) {
   .pc_only { display: none !important; }
   .tb_only { display: none !important; }
   .tb_pc { display:none!important; }
}

@media only screen and (max-width: 320px) {
   html { font-size: .58em; }
}