/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
video {
    display: block;
    filter: drop-shadow(0px 0px #000);
    width: 100%;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}


/* ==========================================================================
            Base
            ========================================================================== */

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-overflow-scrolling: touch;
    font-size: 67.5%;
    line-height: 1.5;
    overflow-x: hidden;
    background: var(--main-r);
    font-family: "Poppins-M", "Noto-sansJP-M", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
}

body {
    margin: 0;
    position: relative;
    z-index: 0;
    -webkit-font-smoothing: antialiased;
    color: var(--txt);
 animation-name: fadeIn;
 animation-duration: 1s;
 animation-timing-function: ease-in-out;
}

@keyframes fadeIn {
0% {
 opacity: 0;
 }
100% {
 opacity: 1;
 }
}

.image_container {
  position: relative;
  display: block;
  overflow:hidden;
	opacity:0;
transition: opacity 900ms, transform 1200ms;
transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image_container img {
  transform: scale(1.5);
  transform-origin: center;
    transition: transform 900ms;
    transition-timing-function:cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image_container.fadeIn img {
  transform: scale(1) !important;
}

.image_container.fadeIn {
	opacity:1;
}

span.smoothText {
  overflow: hidden;
    display: inline-block;
}

span.smoothTextTrigger {
  transition: .8s ease-in-out;
  transform: translate3d(0, 100%, 0);
  transform-origin: left;
  display: block;
}

span.smoothTextTrigger.smoothTextAppear {
  transform: translate3d(0, 0, 0);
}

span.smoothText, span.smoothTextTrigger {
  font-size: inherit;
  font-weight: inherit;
    line-height: 1.2;
}

/* ==========================================================================
              Links
              ========================================================================== */

a {
    background: transparent;
}

a:focus {
    outline: 0;
}

a:active,
a:hover {
    outline: 0;
}

a,
a:visited {
    color: inherit;
    transition: all 0.3s;
    text-decoration: none;
}

a:hover,
a:focus,
a:visited:hover,
a:visited:focus {
    opacity: 1;
}

a:link,
a:visited:link {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

.button {
    --w: 180px;
    --h: 50px;
    --icon-size: 15px;
    --text-color: rgb(210 210 240);
    --box-glow-color: transparent;
    --box-glow-blur: 20px;
    position: relative;
    width: var(--w);
    height: var(--h);
    border-radius: var(--h);
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    color: #fff!important;
    background: #555555;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 500ms ease;
    z-index: 2;
}

.button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(141 196 122 / 1);
    border-radius: var(--h);
    z-index: 1;
    transition: transform 500ms ease, box-shadow 500ms ease;
}

.text,
.icon {
    z-index: 2;
}

.text {
    transform: translateX(-50%);
    transition: transform 500ms ease;
}

.icon {
    position: absolute;
    width: 15px;
    height: 15px;
    left: 0;
    transform: translateX(calc((var(--w)) / 2 + 15px));
    transition: transform 500ms ease, color 500ms ease;
}

.button svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.button:hover::before,
.button:active::before {
    transform: translateX(72%);
    box-shadow: inset 0 0px 0px 0 transparent;
}

.button:hover .text,
.button:active .text {
    transform: translateX(-10%);
    animation-play-state: running;
}

.button:hover .icon,
.button:active .icon {
    transform: translateX(calc(var(--w) - var(--icon-size) - 19px));
    color: #fff;
}

.button:focus-visible {
    outline: none;
}

.circle-btn {
    cursor: pointer;
    position: relative;
    width: 100px;
    height: 100px;
    line-height: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-icon {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    font-size: 30px;
    width: 100%;
    height: 100%;
    color: #fe7f2d;
    text-align: center;
    line-height: 80px;
    transition: color .2s ease-in;
}

#next_area a:hover .circle-icon {
    color: #fcca46;
}

.circle-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.circle-btn.btn-1 .circle-bg {
    border-radius: 50%;
    transition: background .5s linear;
    border: 1px solid #fff;
    backface-visibility: hidden;
}

#next_area a:hover .circle-bg {
    border-color: transparent;
    background: transparent;
    animation: circleround cubic-bezier(0.17, 0.13, 0.28, 1) 1s;
    animation-fill-mode: forwards;
    border-right-color: #fff;
    border-bottom-color: #fff;
}

@keyframes circleround {
    0% {
        transform: rotate(-90deg);
        opacity: 1.0;
    }

    50% {
        opacity: 1.0;
    }

    100% {
        transform: rotate(360deg);
        opacity: 0;
    }
}

@keyframes arrowmove {
    0% {
        top: 2px;
    }

    100% {
        top: -3px;
    }
}

#next_area a {
position: relative;
    z-index: 5;
    color: var(--main-r);
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 45rem;
}

.circle-icon {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    position: relative;
    width: 15px;
    height: 2px;
    background: #fff;
}

.circle-icon::before {
    content: '';
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg);
    transform-origin: top right;
    position: absolute;
    top: 49%;
    right: -0.05em;
    box-sizing: border-box;
}

.circle-btn-wrap {
text-align: right;
    margin-top: 5rem;
}

.circle-btn-inner {
    display:inline-block;
}

/* ==========================================================================
              Typography
              ========================================================================== */

@font-face {
    font-family: "NotosansJP-B";
    src: url('../fonts/NotosansJP-B.ttf') format('truetype'),
        url('../fonts/NotosansJP-B.woff') format('woff');
}

@font-face {
    font-family: "Noto-sansJP-M";
    src: url('../fonts/Noto-sansJP-M.ttf') format('truetype'),
        url('../fonts/Noto-sansJP-M.woff') format('woff');
}

@font-face {
    font-family: "Poppins-M";
    src: url('../fonts/Poppins-M.ttf') format('truetype'),
        url('../fonts/Poppins-M.woff') format('woff');
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins-M", "Noto-sansJP-M", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
    font-weight: 400;
}

address {
    font-style: normal;
}


/* ==========================================================================
             Lists
           ========================================================================== */

dl,
ol,
ul {
    margin: 0;
}

dd {
    margin: 0;
}

ol,
ul {
    padding: 0;
    list-style-type: none;
}

nav ul,
nav ol {
    list-style: none;
    list-style-image: none;
}

ul,
li {
    list-style-type: none;
    padding-left: 0;
    margin-left: 0;
}


/* ==========================================================================
             Embedded content
           ========================================================================== */

img:not(.post-contents img) {
    width: 100%;
    height: 100%;
    border: 0;
    image-rendering: -webkit-optimize-contrast;
    display: block;
    object-fit: cover;
}

svg:not(:root) {
    overflow: hidden;
}


/* ==========================================================================
              Figures
              ========================================================================== */

figure {
    margin: 0;
}


/*********************
           GENERAL STYLES
           *********************/

:root {
    --main: #8DC47A;
    --main-r: #ffffff;
    --accent: #111111;
    --txt: #111111;
    --bg: #F7F7F7;
    --easing: cubic-bezier(.2, 1, .2, 1);
    --transition: .8s var(--easing);
    --sm: 1.2rem;
    --md: 1.4rem;
    --lg: 1.8rem;
    --x2: 2rem;
    --x25: 2.5rem;
    --x3: 3rem;
    --x35: 3.5rem;
    --x4: 4rem;
    --x5: 5rem;
    --en: "Montserrat", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
    --width: 1400;
    --bold: "Poppins-M", "NotosansJP-B", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
}

#container,
#main {
    background: var(--main-r);
}

/*html,
   body,
   a {
       cursor: none;
   }
   */

#cursor {
    pointer-events: none;
    position: fixed;
    top: -4px;
    left: -4px;
    width: 8px;
    height: 8px;
    background: rgb(16, 44, 168);
    transform: translate(-100px, -100px);
    border-radius: 50%;
    z-index: 999;
}

#stalker {
    pointer-events: none;
    position: fixed;
    top: -16px;
    left: -16px;
    width: 32px;
    height: 32px;
    background: rgba(88, 88, 88, 0.8);
    border-radius: 50%;
    transform: translate(-100px, -100px);
    transition: .15s;
    transition-timing-function: ease-out;
    z-index: 998;
}

#stalker.is-stalker {
    top: -40px;
    left: -40px;
    width: 80px;
    height: 80px;
    transition: .15s;
    background: rgba(88, 88, 88, 0.5);
}

/*
   慢性スクロールを行う記載
   #luxyは適用する大枠に設定
   .luxy-elはspanタグに設定
   */
#luxy {
    background: var(--main-r);
}

.luxy-el {
    display: block;
    width: 100%;
    height: 100%;
}

/*********************
           LAYOUT & GRID STYLES
           *********************/

.ib {
    display: inline-block;
}

.m-none {
    margin: 0 !important;
}

.pc-hide {
    display: none !important;
}

.l-lr {
    padding-right: 5rem;
    padding-left: 5rem;
}

.l-tb {
    margin-top: 10rem;
    margin-bottom: 10rem;
}

.l-tb-p {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.l-t {
    margin-top: 10rem;
}

.l-b {
    margin-bottom: 10rem;
}

.l-h {
    line-height: 2;
}

.border {
    border-radius: 30px;
    overflow: hidden;
}

.border-t {
    border-radius: 30px 30px 0 0;
    overflow: hidden;
}

.border-lt {
    border-radius: 30px 0 0 0;
    overflow: hidden;
}

.border-rt {
    border-radius: 0 30px 0 0;
    overflow: hidden;
}

.border-lb {
    border-radius: 0 0 0 30px;
    overflow: hidden;
}

.border-rb {
    border-radius: 0 0 30px 0;
    overflow: hidden;
}

.bg {
    background: var(--bg);
}

.accent-chenge {
    color: var(--accent);
}

.accent-bottom {
    border-bottom: 1px solid var(--accent);
    padding-bottom: 5px;
}

.align-c {
    text-align: center;
}

.align-l {
    text-align: left;
}

.align-r {
    text-align: right;
}

.overlay {
    position: relative;
    display: block;
}

.overlay:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(88, 88, 88, 0.5);
    z-index: 1;
}

.st-l,
.st-l span {
    font-size: 3rem;
}

.st-m,
.st-m span {
    font-size: 2rem;
}

.main-headline,
.main-headline span {
    font-size: 4rem;
    font-family: var(--en);
}

.l-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    align-items: center;
}

.align-t {
    align-items: initial;
}

.l-flex .flex-l,
.l-flex .flex-r {
    width: calc(100% / 2 - 2.5rem);
}

.l-flex .flex-r .btn-wrap a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.bg-main {
    background: var(--main);
    color: var(--main-r);
    padding-top: 20rem;
    padding-bottom: 20rem;
}

#header_title {
    margin-bottom: 5rem;
}

#header_title h2 {
    font-size: 4.5vw;
    line-height: 1;
    font-family: var(--bold);
}

.title-wrap,
.sec-text {
    margin-bottom: 3rem;
}

.sec-title,
.sec-title-en {
    line-height: 1;
}

.sec-title {
    font-size: 1.8rem;
    font-family: var(--bold);
    color: var(--main);
    position: relative;
    padding-left: 20px;
    margin-bottom: 1rem;
}

.sec-title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 30px;
}

.sec-title-en {
    font-size: 7rem;
}

.sm {
    font-size: 1.4rem;
}

.next-content .sec-title {
    font-size: 1.4rem;
    color: var(--main-r);
}

.sm-en,
.next-content .sec-title-en {
    font-size: 5rem;
}

.mb_s {
    margin-bottom: 1rem;
}

.mb_sm {
    margin-bottom: 2rem;
}

.mb_m {
    margin-bottom: 3rem;
}

.mb_mm {
    margin-bottom: 4rem;
}

.mb_l {
    margin-bottom: 5rem;
}

.mt_s {
    margin-top: 1rem;
}

.mt_sm {
    margin-top: 2rem;
}

.mt_m {
    margin-top: 3rem;
}

.mt_mm {
    margin-top: 4rem;
}

.mt_l {
    margin-top: 5rem;
}


/******************************************************************
           TYPOGRAPHY STYLES
           ******************************************************************/

h1,
h2,
h3,
h4,
h5 {
    text-rendering: optimizelegibility;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
    text-decoration: none;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
p span {
    font-size: inherit;
}

h1 {
    font-size: 2.5rem;
    line-height: 1;
}

h2 {
    font-size: 2rem;
    line-height: 1.5;
}

h3 {
    font-size: 1.8rem;
    line-height: 1.5;
}

h4 {
    font-size: 1.6rem;
    line-height: 1.5;
}

h5 {
    font-size: 1.6rem;
    line-height: 1.5;
}

p,
a,
span,
td,
th,
li,
address,
dt,
dd {
    font-size: 1.4rem;
    font-weight: 400;
}


/*********************
           HEADER STYLES
           *********************/

.logo-wrap {
    width: 180px;
}

.logo-wrap a {
    display: block;
    position: relative;
    z-index: 9999;
}

.logo-wrap .logo-g {
    fill: var(--main-r);
}

.logo-wrap .logo-g:not(.home .logo-wrap .logo-g),
.is-top .logo-wrap .logo-g {
    fill: var(--main);
}

.logo-wrap p {
    font-size: 1.2rem;
    line-height: 1;
}

#logo {
    margin: 0;
    width: 180px;
    height: auto;
    line-height: 1;
}

#header {
    max-width: 100%;
    width: 100%;
    z-index: 10;
    box-sizing: border-box;
    top: 0;
    position: fixed;
    transition: all 0.3s ease-out;
    background: transparent;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    z-index: 99;
}

#header.is-top {
    background: var(--main-r);
    box-shadow: 0 0 5px 0px #ddd;
}

/*********************
           NAVIGATION STYLES
           *********************/

.nav__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 3rem;
}

.nav__list li a {
    border-bottom: none;
    font-size: 1.8rem;
    padding: 1rem;
}

.nav-contact a {
    background: var(--main);
    color: var(--main-r);
    border-radius: 50px;
    padding: 1rem 3rem !important;
}

.is-top #menu ul li a {
    height: 70px;
}

.toggle {
    display: none;
}

/*********************
           FOOTER STYLES
           *********************/
#breadcrumbs {
    margin-bottom: 7rem;
}

#footer_logo {
    margin-bottom: 2rem;
}

#footer_wrap {
    width: 100vw;
    height: 200px;
    position: relative;
    background: #f7f7f7;
    text-align: center;
}

#footer_wrap h3 {
    position: relative;
    top: 50%;
    transform: translate3d(0, -61%, 0);
    display: inline-block;
    font-size: 7.5rem;
}

.footer {
    position: relative;
}

#footer_inner {
    position: relative;
    background: var(--main);
    color: var(--main-r);
}

#footer_content {
    display: flex;
    justify-content: space-between;
    gap: 5rem;
    flex-wrap: wrap;
}

#footer_sns {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: flex-end;
}

#footer_sns a {
    display: block;
    border: 1px solid;
    padding: 1.5rem;
    border-radius: 50px;
}

#footer_sns a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

#footer_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#footer_bottom a,
#footer_bottom p {
    color: var(--main-r);
    font-size: 12px;
}

#copyright {
    text-align: center;
    font-size: 12px;
}

/*********************
           POSTS & CONTENT STYLES
           *********************/
.works-term{
	margin-bottom:10rem;
}
.works-title{
	margin-bottom:2rem;	
}
.works-date{
	margin:1rem 0;
}
#post_wrap article,
#works_wrap article{
	width:calc(100% / 3 - 3.33333333rem);
}

.term-list {
	gap:3rem;
	margin-bottom:7rem;
}

.term-list li{
	width:calc(100% / 4 - 2.25rem);
}

.term-list li a{
    display: block;
    text-align: center;
    padding: 2rem 0;
    border-bottom: 1px solid;
    color: var(--main);
    font-size: 1.6rem;
}

 .swiper-container.slider {
    height: 45rem;
}

 .swiper-container.slider-thumbnail {
height: 10rem;
    margin-top: 2rem;
    cursor: pointer;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next{
	left:3rem!important;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right:3rem!important;
}

.swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide {
    width: 25%;
    height: 100%;
    overflow: hidden;
}

#works_img,
#works_data{
	width:calc(100% / 2 - 2.5rem);
}

#works_data{
	background: var(--main-r);
	margin-top:5rem;	
}

#works_data li{
    display: flex;
    padding: 2rem;
    border-bottom: 1px solid #CBCBCB;
}

.works-data-title{
	width:20%;
}

#single_link{
    width: 100vw;
    margin:0 calc(50% - 50vw);
    border-top: 1px solid #CECECE;
    border-bottom: 1px solid #CECECE;
	margin-top:15rem;
}

.second img{
	object-fit:contain!important;
}

.page-nav{
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.page-nav a{
text-align: center;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    gap: 2rem;
}

.prev-link,
.next-link{
	width:40%;
	position:relative;
}

.archive-link{
	width:20%;
border-right: 1px solid #CECECE;
    border-left: 1px solid #CECECE;
}

.swiper-button-prev::before, .swiper-button-next::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    border-radius: 50%;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    background: rgb(255 255 255 / 30%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.swiper-button-prev::after, .swiper-button-next::after {
    width: 1.2rem;
    height: 1.2rem;
    content: "";
    border: solid var(--main-r);
    border-width: 3px 3px 0 0;
}

 .swiper-button-next:after,
 .swiper-button-prev:after {
    content: '' !important;
    font-family: initial;
}

 .swiper-button-next::after {
    margin-right: 0.4rem;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

 .swiper-button-prev::after {
    margin-left: 0.4rem;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

 .swiper-button-prev::after,
 .swiper-button-next::after {
    width: 1.2rem;
    height: 1.2rem;
    content: "";
    border: solid var(--main-r);
    border-width: 3px 3px 0 0;
}

 .swiper-button-prev,  .swiper-button-next {
    width: 50px !important;
    height:50px !important;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next{
	left:2rem!important;
}

 .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right:2rem!important;
}

.swiper-wrapper:not(#mv_item .swiper-wrapper) {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.over-l {
    flex: 1;
    margin-left: calc(50% - 50vw);
}

.over-r {
    flex: 1;
    margin-right: calc(50% - 50vw);
}

#page_header {
    padding-top: 30vh;
}

#mv_item,
.hero-bg {
    position: relative;
    margin: 0px 3rem;
    border-radius: 50px;
    overflow: hidden;
}

.hero-bg {
    height: 60vh;
}

.hero-content {
    width: 100%;
}

.hero-content .page-title {
    font-size: 1.8rem;
    position: relative;
    padding-left: 5rem;
    margin-bottom: 1rem;
}

.hero-content .page-title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
    width: 40px;
    height: 1px;
    background: currentColor;
}

.hero-content .page-subtitle-en {
    font-size: 7rem;
    line-height: 1;
}

.breadcrumb__item span {
    text-transform: uppercase;
}

.breadcrumb__item {
    display: inline;
    margin-right: 2rem;
    position: relative;
}

.breadcrumb__item:after {
    content: "／";
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translatey(-50%);
    font-size: 13px;
}

.breadcrumb__item:last-child {
    padding-right: 0rem;
}

.breadcrumb__item:last-child:after {
    content: "";
}

.breadcrumb__item a {
    transition: opacity .6s;
}

.breadcrumb__item a:hover {
    opacity: .6;
}

#single_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 20rem;
}

#single_wrap article {
    width: calc(70% / 1 - 25px);
}

#single_wrap .sidebar {
    width: calc(30% / 1 - 25px);
}

.single img {
    height: auto;
    max-width: 100%;
}

#news__pager {
    margin-top: 5rem;
}

#news__pager .page-numbers {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.news-list article {
    border-top: 1px solid #CFCFCF;
}

.news-list article:last-child {
    border-bottom: 1px solid #CFCFCF;
}

.news-list article a {
    display: block;
    padding: 30px 0;
}

.news-list article a div {
    display: flex;
    gap: 3rem;
    align-items: center;
}

#blog__pager ul.page-numbers {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.pagination .page-numbers li a,
.pagination .page-numbers li span {
    width: 50px;
    height: 50px;
    line-height: 1;
    border: 1px solid var(--main);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .page-numbers li span {
    background: var(--main);
    color: var(--main-r);
    border: 1px solid var(--main);
}

.post-title {
    overflow-wrap: break-word;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    text-align: left;
    margin-bottom: 0 !important;
    font-size: 1.6rem;
}

.single .post-title {
    margin: 2rem 0 !important;
    -webkit-line-clamp: initial;
    font-size: 2.5rem;
    line-height: 1.3;
}

.post-time {
    color: #3A3A3A;
}

.works-thumbnail .innerTrigger{
    height: 30rem;
    display: inline-block;
    width: 100%;
}

#works__pager{
	margin-top:7rem;
}

#works__pager ul{
	display: flex;
    justify-content: center;
    gap: 1rem;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.works-date {
    font-size: var(--sm);
    background: var(--main);
    color: var(--main-r)!important;
	padding: 5px 6px 3px 6px;
    line-height: 1;
    display: inline-block;
}

.post-time,
.post-category {
    white-space: nowrap;
}

.single .post-contents h2,
.single .post-contents h3,
.single .post-contents h4,
.single .post-contents h5 {
    margin-top: 50px;
    margin-bottom: 10px;
}

.single .post-contents p,
.single .post-contents figure {
    margin-bottom: 20px;
}

.grid-wrapper {
    display: grid;
    grid-template-columns: 25% 75%;
}

.single-title,
.page-title,
.entry-title {
    margin: 0;
}

#archive_news_inner .news-list {
    max-width: 960px;
    margin: 0 auto;
}

#single_works article.l-flex{
	align-items:flex-start;
	}

.single-cta{
margin-top: 5rem;
	gap:3rem;
}

.single-cta a{
    width: calc(100% / 2 - 1.5rem);
    padding: 2rem;
    background: var(--main);
    border-radius: 200px;
    color: var(--main-r);
    text-align: center;
}

.single-cta a:last-child{
	background:#517c42;
}

@media screen and (max-width:1400px) {
    .sec-title-en {
        font-size: 6rem;
    }
.sm-en, .next-content .sec-title-en {
    font-size: 5rem;
}

#next_area a {
    height: 40rem;
}

.hero-content .page-subtitle-en {
    font-size: 6rem;
}

.hero-content .page-title {
    font-size: 1.6rem;
}

    /*********************
           HEADER STYLES
           *********************/
    .nav__list li a {
        font-size: 1.6rem;
    }
}


@media screen and (max-width:1200px) {
p, a, span, td, th, li, address, dt, dd {
    font-size: 14px;
}
.nav__list {
    gap: 2rem;
}
.nav__list li a {
        font-size: 1.4rem;
    }
.sec-title-en {
        font-size: 5rem;
    }
.sm-en, .next-content .sec-title-en {
    font-size: 4rem;
}

.circle-btn {
    width: 80px;
    height: 80px;
}

.circle-btn-wrap {
    margin-top: 2rem;
}

    #next_area a {
        height: 35rem;
        padding: 4rem 2rem;
    }
    /*********************
           HEADER STYLES
           *********************/

    #logo {
        width: 150px;
    }

}

@media screen and (max-width:1024px) {

    /*********************
           GENERAL STYLES
           *********************/
    :root {
        --width: 540;
    }

    .pc-hide {
        display: block !important;
    }

    .bg-main {
        padding-top: 10rem !important;
        padding-bottom: 10rem !important;
    }

    #cursor,
    #stalker {
        display: none;
    }

#header_title h2 {
    font-size: 5vw;
}

.sec-title-en {
        font-size: 4rem;
    }

#mv_item, .hero-bg {
    margin: 0px 2rem;
    border-radius: 30px;
}

.hero-bg {
    height: 50vh;
}

.l-flex {
    gap: 3rem;
}

.l-flex .flex-l, .l-flex .flex-r {
    width: calc(100% / 2 - 1.5rem);
}

.title-wrap, .sec-text {
    margin-bottom: 2rem;
}

.sec-title {
    font-size: 1.6rem;
}

.sec-title:before {
    width: 6px;
    height: 6px;
}

    .sm-en, .next-content .sec-title-en {
        font-size: 3.5rem;
    }

#page_header {
    padding-top: 25vh;
}

    .hero-content .page-subtitle-en {
        font-size: 5rem;
    }

.works-thumbnail .innerTrigger{
	height:20rem;
}

#post_wrap article, #works_wrap article {
    width: calc(100% / 3 - 2rem);
}

.swiper-container.slider {
    height: 30rem;
}

#works_data {
    margin-top: 0rem;
}


    /*********************
        NAVIGATION STYLES
        *********************/
    .logo-wrap {
        width: 150px;
    }

    #header {
        height: 90px;
padding-right: 2rem;
        padding-left: 2rem;
    }

    #header_inner {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        position: relative;
        height: 80px;
        width: 100%;
    }

    #header.is-top-sp {
        background: var(--main-r);
    }

    #header.is-top-sp .logo-wrap .logo-g {
        fill: var(--main);
    }

    #header.is-top-sp .toggle.active span {
        border-bottom: solid 2px var(--main-r);
    }

    .is-top-sp #header_inner {
        height: 50px;
    }

    .nav__list {
        display: block;
        text-align: left;
    }

#menu ul li a {
        padding: 2rem 3rem;
        text-decoration: none;
        font-size: 1.6rem;
        display: flex;
        align-items: center;
        gap: 2rem;
        flex-direction: row-reverse;
        justify-content: left;
    }
	
#menu ul li{
	margin-bottom:2rem;
	}

#menu ul li.nav-contact{
	margin-top:4rem;	
	}

#menu ul li a span{
        font-size: 4rem;
        line-height: 1;
	}

    #menu #menu-nav_inner {
        display: block;
        width: 90%;
        margin: 0 auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate3d(0, -10px, 0) translate(-50%, -50%);
    }

    #nav_inner {
        text-align: center;
        margin: 0;
        background: var(--main-r);
        height: 100vh;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        padding-top: 90px;
        pointer-events: none;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0%, -100%, 0);
        -webkit-transition: -webkit-transform cubic-bezier(0.8, 0, 0.1, 1) 0.9s 0.2s;
        transition: transform cubic-bezier(0.8, 0, 0.1, 1) 0.9s 0.2s;
    }

    #menu.open #nav_inner {
        pointer-events: auto;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
    }

    #menu-nav_inner {
        opacity: 0;
        -webkit-transition: opacity ease 0.6s 0s, -webkit-transform ease 0.6s 0s;
        transition: opacity ease 0.6s 0s, transform ease 0.6s 0s;
    }

    #menu.open #menu-nav_inner {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0) translate(-50%, -50%);
        transform: translate3d(0, 0, 0) translate(-50%, -50%);
        -webkit-transition-delay: 0.7s;
        transition-delay: 0.7s;
    }

    .toggle {
display: block;
        width: 60px;
        height: 60px;
        cursor: pointer;
        z-index: 3;
        background: var(--main);
        position: relative;
        border-radius: 100px;
    }

    .toggle span {
        display: block;
        position: absolute;
        width: 30px;
        border-bottom: solid 2px var(--main-r);
        -webkit-transition: .35s ease-in-out;
        -moz-transition: .35s ease-in-out;
        transition: .35s ease-in-out;
        left: 50%;
        transform: translateX(-50%);
    }

    .is-top .toggle span {
        border-bottom: solid 2px var(--main);
    }

    .toggle.active span {
        border-bottom: solid 2px var(--main-r);
    }

    .toggle span:nth-child(1) {
        top: 27px;
    }

    .toggle span:nth-child(2) {
        top: 33px;
    }

    .toggle.active span:nth-child(1) {
        top: 30px;
        transform: translateX(-50%) rotate(-30deg);
    }

    .toggle.active span:nth-child(2) {
        top: 30px;
        transform: translateX(-50%) rotate(30deg);
    }

.nav-contact a {
    padding: 2rem 3rem !important;
}
    /*********************
           FOOTER STYLES
           *********************/
    .footer-block-inner figure:hover {
        transform: scale(1);
    }

    #footer_inner {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

.circle-btn-wrap {
    margin-top: 2rem;
}

.circle-btn {
        width: 60px;
        height: 60px;
    }

#next_area a {
        padding: 3rem 2rem;
    }

    /*********************
           LAYOUT & GRID STYLES
           *********************/
    .l-lr {
        padding-right: 4rem;
        padding-left: 4rem;
    }

    .l-tb {
        margin-top: 8rem;
        margin-bottom: 8rem;
    }

    .l-t {
        margin-top: 8rem;
    }

    .l-b {
        margin-bottom: 8rem;
    }

    .l-tb-p {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }

}

@media screen and (max-width:767px) {

    /*********************
           GENERAL STYLES
           *********************/
    html {
        scroll-padding-top: 90px;
    }

    .mbr {
        display: inline-block;
    }

    .sp-hide {
        display: none;
    }

    .pc-hide {
        display: block !important;
    }

    .l-lr {
        padding-right: 2rem;
        padding-left: 2rem;
    }

    .l-tb {
        margin-top: 7rem;
        margin-bottom: 7rem;
    }

    .l-t {
        margin-top: 7rem;
    }

    .l-b {
        margin-bottom: 7rem;
    }

    .l-tb-p {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }

    .l-flex {
        gap: 3rem;
    }

.sm-en, .next-content .sec-title-en {
        font-size: 3rem!important;
    }

#header_title h2 {
        font-size: 8vw;
        line-height: 1.3;
    }

#header_title {
    margin-bottom: 2rem;
}

p, a, span, td, th, li, address, dt, dd {
        font-size: 13px;
    }

.sec-title {
font-size: 1.4rem;
        padding-left: 15px;
    }

.sec-title-en {
        font-size: 3.5rem;
    }

.hero-content .page-subtitle-en {
        font-size: 4rem;
    }

.hero-bg {
        height: 40vh;
    }

#mv_item, .hero-bg {
        border-radius: 20px;
    }

#works_img, #works_data {
    width: 100%;
}

.single .post-title {
    font-size: 1.8rem;
}

#single_link {
    margin-top: 7rem;
}

.prev-link, .next-link,.archive-link {
    width: 100%;
}

.term-list li a {
    font-size: 14px;
}
	


    /* ==========================================================================
              Links
              ========================================================================== */
.button {
        --w: 110px;
        --h: 40px;
    }

.icon {
    transform: translateX(calc(var(--w) - var(--icon-size) - 15px));
}

.text {
    transform: translateX(-16%);
}

    /*********************
           HEADER STYLES
           *********************/
    #header {
        height: 70px;
    }

.logo-wrap {
        width: 120px;
    }

.toggle {
        width: 45px;
        height: 45px;
        border-radius: 100px!important;
    }

    .toggle span {
        width: 20px;
    }

    .toggle span:nth-child(1) {
        top: 20px;
    }

    .toggle span:nth-child(2) {
        top: 25px;
    }

    .toggle.active span:nth-child(1) {
        top: 22.5px;
    }

    .toggle.active span:nth-child(2) {
        top: 22.5px;
    }

#menu ul li a span {
        font-size: 3rem;
    }

#menu ul li a {
        padding: 2rem;
        font-size: 1.4rem;
    }

#menu ul li {
        margin-bottom: 1rem;
    }

#menu ul li.nav-contact {
        margin-top:3rem;
    }

    /*********************
           POSTS & CONTENT STYLES
           *********************/
.term-list li {
    width: calc(100% / 2 - 1.5rem);
}
#post_wrap article, #works_wrap article {
        width: calc(100% / 2 - 1.5rem);
    }
	
.works-thumbnail .innerTrigger {
        height: 12rem;
    }

    #next_area a {
        height: 30rem;
    }

    .post-title {
		font-size: 14px;
        -webkit-line-clamp: 2;
        width: 100%;
    }

    .post-data-wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 20px;
    }

    .news-list article a div {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .news-list article a {
        padding: 20px 0;
    }

    .post-category {
        font-size: 12px;
    }

    .wpcf7-list-item-label,
    .wpcf7-list-item-label a {
        font-size: 13px;
    }

    input[type="text"],
    input[type="password"],
    input[type="datetime"],
    input[type="datetime-local"],
    input[type="date"],
    input[type="month"],
    input[type="time"],
    input[type="week"],
    input[type="number"],
    input[type="email"],
    input[type="url"],
    input[type="search"],
    input[type="tel"],
    input[type="color"],
    select,
    textarea,
    .field {
        height: 60px;
        padding: 10px;
    }

    /*********************
           FOOTER STYLES
           *********************/
    .footer-item {
        width: 100%;
    }

#footer_sns {
    justify-content: center;
}

    #footer_bottom a,
    #copyright {
        font-size: 12px;
    }

    /*********************
           LAYOUT & GRID STYLES
           *********************/

    .l-flex .flex-l,
    .l-flex .flex-r {
        width: 100% !important;
    }

    textarea {
        min-height: 250px;
    }

.border {
    border-radius: 20px;
}

.border-t {
    border-radius: 20px 20px 0 0;
}

.border-lt {
    border-radius: 20px 0 0 0;
}

.border-rt {
    border-radius: 0 20px 0 0;
}

.border-lb {
    border-radius: 0 0 0 20px;
}

.border-rb {
    border-radius: 0 0 20px 0;
}

.swiper-container.slider {
        height: 20rem;
    }

.swiper-container.slider-thumbnail {
    height: 5rem;
}

.works-data-title {
    width: 40%;
}

.works-data-text {
    width: 60%;
}

.page-nav a {
gap: 0rem;
        text-align: left;
        padding: 1rem;
}
}

@media screen and (min-width:1023px) {
	#menu ul li a span{
		display:none;
	}
}

@media screen and (min-width:768px) {
.sp{
	display:none;
}
}