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

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

audio,
canvas,
video {
    display: block;
    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;
    font-family:"Inter", "NotosansJP-R", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
}

body {
    margin: 0;
    position: relative;
    z-index: 0;
    -webkit-font-smoothing: antialiased;
    color: var(--main-r);
}


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

a {
    background: transparent;
}

a:focus {
    outline: 0;
}

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

.btn-wrap{
    margin-top: 3rem;
    width: max-content;
}

.btn-wrap a{
	display:flex;
	gap:2rem;
	align-items:center;
}

.btn-text{
	position:relative;
	font-family:var(--en);
}

.btn-text::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--accent);
bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}

.btn-wrap a:hover .btn-text::before {
  transform-origin: left;
  transform: scaleX(1);
}

.arrow{
    position: relative;
    display: block;
    width: 4rem;
    height: 4rem;
    overflow: hidden;
    transition: all .4s ease-in-out .1s;
}

.arrow[data-color=red] {
	background: var(--accent);
}

.arrow[data-color=red]::after {
    content: "";
position: absolute;
    top: 50%;
    left: 30%;
    width: 0.6rem;
    height: 0.6rem;
    opacity: 0;
    transition: all .4s ease-out .1s;
    transform: translate(-50%, -50%) rotate(45deg);
    border-top: 1px solid var(--main-r);
    border-right: 1px solid var(--main-r);
}

.arrow[data-color=red]::before {
    border-top: 1px solid var(--main-r);
    border-right: 1px solid var(--main-r);
}

.arrow::before {
    position: absolute;
    top: 50%;
    left: 49%;
    width: 0.6rem;
    height: 0.6rem;
    content: "";
    transition: all .4s ease-in;
    transform: translate(-50%, -50%) rotate(45deg);
}

.btn-wrap a:hover .arrow[data-color=red]{
	background: var(--main-r);
}

.btn-wrap a:hover .arrow[data-color=red]::after {
	border-top: 1px solid var(--accent);
    border-right: 1px solid var(--accent);
}

.btn-wrap a:hover .arrow::after {
    left: 49%;
    opacity: 1;
    transition: all .4s ease-in;
}

.btn-wrap a:hover .arrow::before {
    left: 70%;
    opacity: .3;
    transition: all .4s ease-out .1s;
}

.slide-anima a{
	position:relative;
-webkit-transition: all 0.3s;
  transition: all 0.3s;		
}

.slide-anima a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: var(--accent);
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}

.slide-anima a:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}


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

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

@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: "Inter";
   src: url('../fonts/Inter.ttf') format('truetype'),
        url('../fonts/Inter.woff') format('woff');
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family:"Inter", "NotosansJP-B", "游ゴシック体", 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%;
    border: 0;
    image-rendering: -webkit-optimize-contrast;
    display: block;
height: 100%;
    object-fit: cover;
}

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


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

figure {
    margin: 0;
}


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

:root {
    --main: #192124;
    --main-r: #ffffff;
	--sub:#111111;
    --accent: #CF0000;
    --txt: #192124;
    --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: "Inter", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
    --font-b: "NotosansJP-B", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
    --width: 1400;
}

#container,
#main {
background: var(--main);
    z-index: -2;
    position: relative;
}

#stalker {
    pointer-events: none;
    position: fixed;
    top: -16px;
    left: -16px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.7);
    transform: translate(-100px, -100px);
    transition: .15s;
    transition-timing-function: ease-out;
    z-index: 998;
    mix-blend-mode: difference;
}

#stalker.is-stalker {
    top: -35px;
    left: -35px;
    width: 70px;
    height: 70px;
    transition: .15s;
}

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

.ib {
    display: inline-block;
}

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

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

.l-lr {
    padding-right: 8.33333vw;
    padding-left: 8.33333vw;
}

.l-r {
    padding-right: 8.33333vw;
}

.l-inner {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

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

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

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

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

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

.l-flex .flex-l p,
.l-flex .flex-r p{
	line-height:2;
}

#sidebar a{
    display: flex;
    aspect-ratio: 4 / 2.5;
    margin-bottom: 3rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#sidebar a:last-child{
	margin-bottom:0;
}

.side-wrap{
    align-items: initial;
}

.side-wrap .flex-l{
    width: calc(70% - 2.5rem);
}

.side-wrap .flex-r{
    width: calc(30% - 2.5rem);
}

.side-content p{
	font-size:2.5rem;
}

.side-content h4{
	font-size:1.4rem;
font-family: "NotosansJP-R", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
}

.page-text{
	margin-bottom:5rem;
	font-family:"NotosansJP-R", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
}

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

.title-wrap {
    margin-bottom: 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;
}

.sec-title{
	font-size:1.4rem;
font-family: "NotosansJP-R", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
}

.sec-title-en{
	font-size:4rem;
	line-height:1!important;
	margin-bottom:1rem;
	font-family:var(--en);
}

.catch-title{
	font-size:3.5rem;	
	letter-spacing:3px;
}

.reverse{
    background: #EBEBEB;
    color: var(--main);
}

#mv_movie,
#event_movie{
height: 100%;
    object-fit: cover;
}

/*********************
           LINK STYLES
           *********************/

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


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

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

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

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;
    font-family:"Inter", "NotosansJP-R", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
}

section p, section span{
    font-family:"NotosansJP-R", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;	
}


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

.logo-wrap a {
    display: block;
}

.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);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: #87878780;
}

#header_l{
display: flex;
    align-items: center;
    gap: 2rem;
}

.sns-wrap a{
display: inline-block;
    width: 17px;
    vertical-align: middle;
}

.sns-wrap a:first-child{
    height: 19px;
	margin-right:10px;
}

.sns-wrap a img{
    object-fit: contain;
    height: 100%;
}

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

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

.nav__list li{
	position:relative;
	overflow:hidden;
}

.nav__list li:before{
content: "";
    display: block;
    width: 100%;
    height: 20px;
    background-color: var(--accent);
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1%;
    margin: auto;
    transform-origin: 100% 0;
    transform: translate3d(-101.5%, 0, 0);
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
    z-index: 1;
}

.nav__list li:hover:before {
    background-color: rgba(0, 0, 0, 1);
    transform-origin: 0 0;
    transform: translate3d(105%, 0, 0);
    transition: all 0.5s cubic-bezier(0.5, 0, 0, 1);
}

.nav__list li a {
    border-bottom: none;
    font-size: 1.8rem;
    color: var(--main-r);
    display: flex;
    align-items: center;
}

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

.toggle {
    display: none;
}

/*********************
           FOOTER STYLES
           *********************/
#footer_link{
	gap:0;
}

#footer_link a{
    width: 50%;
    text-align: center;
    aspect-ratio: 4 / 2;
    border: 1px solid var(--main-r);
    display: flex;
    align-items: center;
    justify-content: center;
	position:relative;
}

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

.footer {
    position: relative;
}

#menu-footer li a{
	font-size:1.4rem;
}

#footer_logo a{
	display:block;
	width:150px;
}

#footer_bottom_l{
	display: flex;
    gap: 1rem;
	flex-wrap:wrap;
}

#footer_inner {
    position: relative;
    padding-top: 8.33333vw;
    padding-bottom: 8.33333vw;
    background: var(--main);
    color: var(--main-r);
}

#footer_content {
    display: flex;
    justify-content: space-between;
    padding-bottom: 200px;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
}

#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
           *********************/
.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 {
    height: 50rem;
    position: relative;
    overflow: hidden;
}

.hero-bg{
    height: 100%;
}

.hero-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    text-align: center;
z-index: 5;
}

#page__about-us .hero-content, #page__service .hero-content, #page__event-entry .hero-content, #page__event-report .hero-content, #page__csr .hero-content, #page__recruit .hero-content, .archive .hero-content{
    mix-blend-mode: difference;
}

.hero-content .page-title {
    font-size: 1.8rem;
    font-family:"NotosansJP-R", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
}

.single-event .hero-content .page-title {
    font-family:"Inter", "NotosansJP-R", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
}

.single-event .breadcrumb{
	margin-bottom:1rem;
}

.hero-content .page-subtitle-en {
    font-size: 5rem;
    font-family: var(--en);
    text-transform: uppercase;
    line-height: 1;
    padding-bottom: 1rem;
}

.hero-breadcrumbs{
	position: absolute;
    right: 0;
    bottom: 2rem;
}

.hero-breadcrumbs:not(#page__about-us .hero-breadcrumbs):not(#page__service .hero-breadcrumbs):not(#page__event-entry .hero-breadcrumbs):not(#page__event-report .hero-breadcrumbs):not(#page__csr .hero-breadcrumbs):not(.archive .hero-breadcrumbs){
width: 100%;
    text-align: right;
    background: var(--sub);
    line-height: 3;
    left: 0;
    bottom: 0;
    padding-left: 8.33333vw;
}

.breadcrumb__item span{
    text-transform: uppercase;
    font-family: "Inter", "NotosansJP-B", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
}

.breadcrumb__list{
	line-height:1.5;
}

.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 {
margin-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%;
}

#post__pager {
    margin-top: 5rem;
}

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

#post__pager .page-numbers li a,
#post__pager .page-numbers li span {
    width: 50px;
    height: 50px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

#post__pager .page-numbers li a {
    border: 1px solid #AFAFAF;
	color:#AFAFAF;
}

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

.post-archive .btn-text{
	position:relative;
}

.post-archive .btn-text::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background:var(--accent);
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: left top;
}

.post-archive .btn-text:hover::before {
	transform: scale(1, 1);
}

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

.post-data-wrap{
    padding: 2rem;
}

.post-data{
display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    align-items: center;
}

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

.post-category {
    font-size: 12px;
    padding: 5px;
    line-height: 1;
    display: inline-block;
	border:1px solid;
}

.post-time,
.post-category {
    white-space: nowrap;
	font-size:12px;
	font-family:var(--en);
color: #ddd;
}

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

.post-wrap{
display: flex;
    flex-wrap: wrap;
    gap: 3rem;	
}

.post-wrap article{
    width: calc(100% / 4 - 2.25rem);
    background: var(--sub);
}

.topics-archive article{
    width: calc(100% / 3 - 2rem);	
}

.post-archive a img{
	transition:all .3s;
}

.post-archive a:hover img{
	transform:scale(1.1);
}

.post-archive .post-day{
position: absolute;
    top: 0;
    left: 0;
    background: var(--accent);
    text-align: center;
    padding: 2rem;
    width: 120px;
    height: 120px;
}

.post-archive .post-day span{
	display:inline-block;
line-height: 1;
	font-size:13px;
	font-family:var(--en);
}

.post-archive .post-day span:nth-child(1),
.post-archive .post-day span:nth-child(2){
    display: block;	
}

.post-archive .post-day span:nth-child(2){
    font-size: 3rem;
    margin: 5px 0;
}

.post-archive .post-thumbnail{
    aspect-ratio: 4 / 3;
    position: relative;
	overflow:hidden;
}

.report-archive .post-thumbnail{
    aspect-ratio: 3.5 / 4;
}

.report-archive .post-title{
	margin-bottom:10px;
}

#page__privacy-policy li{
    list-style: auto;
    margin-left: 17px;
}

#page__privacy-policy h2{
	margin-top:3rem;
	margin-bottom:1rem;
	border-bottom:1px solid;
	padding-bottom:5px;
}

/* ==========================================================================
              Forms
              ========================================================================== */

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    margin: 0;
}

button,
input {
    line-height: normal;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
    vertical-align: top;
}


/* ==========================================================================
                            Tables
                            ========================================================================== */

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

.tablepress caption {
    display: none;
}

.tablepress {
    margin-bottom: 0 !important;
}

.tablepress tr .column-1 {
    width: 30%;
}

.tablepress tr .column-1,
.tablepress tr .column-2 {
    padding: 30px 0;
    color: var(--txt);
    font-size: 16px;
}

.tablepress tr:last-child .column-1,
.tablepress tr:last-child .column-2 {
    padding-bottom: 0;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*********************
                         INPUTS
                         *********************/

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 {
    display: block;
    height: 60px;
    padding: 10px;
    margin-bottom: 2rem;
    font-size: 16px;
    border-radius: 3px;
    vertical-align: middle;
    box-shadow: none;
    border: 0;
    width: 100%;
    max-width: 100%;
    background-color: var(--main-r);
    -webkit-transition: background-color 0.24s ease-in-out;
    transition: background-color 0.24s ease-in-out;
    color: var(--main);
}

input[type="text"]:focus,
input[type="text"]:active,
input[type="password"]:focus,
input[type="password"]:active,
input[type="datetime"]:focus,
input[type="datetime"]:active,
input[type="datetime-local"]:focus,
input[type="datetime-local"]:active,
input[type="date"]:focus,
input[type="date"]:active,
input[type="month"]:focus,
input[type="month"]:active,
input[type="time"]:focus,
input[type="time"]:active,
input[type="week"]:focus,
input[type="week"]:active,
input[type="number"]:focus,
input[type="number"]:active,
input[type="email"]:focus,
input[type="email"]:active,
input[type="url"]:focus,
input[type="url"]:active,
input[type="search"]:focus,
input[type="search"]:active,
input[type="tel"]:focus,
input[type="tel"]:active,
input[type="color"]:focus,
input[type="color"]:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
.field:focus,
.field:active {
    background-color: var(--main-r);
}

input[type="text"].error,
input[type="text"].is-invalid,
input[type="password"].error,
input[type="password"].is-invalid,
input[type="datetime"].error,
input[type="datetime"].is-invalid,
input[type="datetime-local"].error,
input[type="datetime-local"].is-invalid,
input[type="date"].error,
input[type="date"].is-invalid,
input[type="month"].error,
input[type="month"].is-invalid,
input[type="time"].error,
input[type="time"].is-invalid,
input[type="week"].error,
input[type="week"].is-invalid,
input[type="number"].error,
input[type="number"].is-invalid,
input[type="email"].error,
input[type="email"].is-invalid,
input[type="url"].error,
input[type="url"].is-invalid,
input[type="search"].error,
input[type="search"].is-invalid,
input[type="tel"].error,
input[type="tel"].is-invalid,
input[type="color"].error,
input[type="color"].is-invalid,
select.error,
select.is-invalid,
textarea.error,
textarea.is-invalid,
.field.error,
.field.is-invalid {
    color: var(--white);
    border-color: var(--white);
    background-color: var(--main-r);
    background-position: 99% center;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
    outline-color: var(--white);
}

input[type="text"].success,
input[type="text"].is-valid,
input[type="password"].success,
input[type="password"].is-valid,
input[type="datetime"].success,
input[type="datetime"].is-valid,
input[type="datetime-local"].success,
input[type="datetime-local"].is-valid,
input[type="date"].success,
input[type="date"].is-valid,
input[type="month"].success,
input[type="month"].is-valid,
input[type="time"].success,
input[type="time"].is-valid,
input[type="week"].success,
input[type="week"].is-valid,
input[type="number"].success,
input[type="number"].is-valid,
input[type="email"].success,
input[type="email"].is-valid,
input[type="url"].success,
input[type="url"].is-valid,
input[type="search"].success,
input[type="search"].is-valid,
input[type="tel"].success,
input[type="tel"].is-valid,
input[type="color"].success,
input[type="color"].is-valid,
select.success,
select.is-valid,
textarea.success,
textarea.is-valid,
.field.success,
.field.is-valid {
    color: var(--white);
    border-color: var(--white);
    background-color: var(--main-r);
    background-position: 99% center;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
    outline-color: var(--white);
}

input[type="text"][disabled],
input[type="text"].is-disabled,
input[type="password"][disabled],
input[type="password"].is-disabled,
input[type="datetime"][disabled],
input[type="datetime"].is-disabled,
input[type="datetime-local"][disabled],
input[type="datetime-local"].is-disabled,
input[type="date"][disabled],
input[type="date"].is-disabled,
input[type="month"][disabled],
input[type="month"].is-disabled,
input[type="time"][disabled],
input[type="time"].is-disabled,
input[type="week"][disabled],
input[type="week"].is-disabled,
input[type="number"][disabled],
input[type="number"].is-disabled,
input[type="email"][disabled],
input[type="email"].is-disabled,
input[type="url"][disabled],
input[type="url"].is-disabled,
input[type="search"][disabled],
input[type="search"].is-disabled,
input[type="tel"][disabled],
input[type="tel"].is-disabled,
input[type="color"][disabled],
input[type="color"].is-disabled,
select[disabled],
select.is-disabled,
textarea[disabled],
textarea.is-disabled,
.field[disabled],
.field.is-disabled {
    cursor: not-allowed;
    border-color: var(--white);
    opacity: 0.6;
}

input[type="text"][disabled]:focus,
input[type="text"][disabled]:active,
input[type="text"].is-disabled:focus,
input[type="text"].is-disabled:active,
input[type="password"][disabled]:focus,
input[type="password"][disabled]:active,
input[type="password"].is-disabled:focus,
input[type="password"].is-disabled:active,
input[type="datetime"][disabled]:focus,
input[type="datetime"][disabled]:active,
input[type="datetime"].is-disabled:focus,
input[type="datetime"].is-disabled:active,
input[type="datetime-local"][disabled]:focus,
input[type="datetime-local"][disabled]:active,
input[type="datetime-local"].is-disabled:focus,
input[type="datetime-local"].is-disabled:active,
input[type="date"][disabled]:focus,
input[type="date"][disabled]:active,
input[type="date"].is-disabled:focus,
input[type="date"].is-disabled:active,
input[type="month"][disabled]:focus,
input[type="month"][disabled]:active,
input[type="month"].is-disabled:focus,
input[type="month"].is-disabled:active,
input[type="time"][disabled]:focus,
input[type="time"][disabled]:active,
input[type="time"].is-disabled:focus,
input[type="time"].is-disabled:active,
input[type="week"][disabled]:focus,
input[type="week"][disabled]:active,
input[type="week"].is-disabled:focus,
input[type="week"].is-disabled:active,
input[type="number"][disabled]:focus,
input[type="number"][disabled]:active,
input[type="number"].is-disabled:focus,
input[type="number"].is-disabled:active,
input[type="email"][disabled]:focus,
input[type="email"][disabled]:active,
input[type="email"].is-disabled:focus,
input[type="email"].is-disabled:active,
input[type="url"][disabled]:focus,
input[type="url"][disabled]:active,
input[type="url"].is-disabled:focus,
input[type="url"].is-disabled:active,
input[type="search"][disabled]:focus,
input[type="search"][disabled]:active,
input[type="search"].is-disabled:focus,
input[type="search"].is-disabled:active,
input[type="tel"][disabled]:focus,
input[type="tel"][disabled]:active,
input[type="tel"].is-disabled:focus,
input[type="tel"].is-disabled:active,
input[type="color"][disabled]:focus,
input[type="color"][disabled]:active,
input[type="color"].is-disabled:focus,
input[type="color"].is-disabled:active,
select[disabled]:focus,
select[disabled]:active,
select.is-disabled:focus,
select.is-disabled:active,
textarea[disabled]:focus,
textarea[disabled]:active,
textarea.is-disabled:focus,
textarea.is-disabled:active,
.field[disabled]:focus,
.field[disabled]:active,
.field.is-disabled:focus,
.field.is-disabled:active {
    background-color: var(--main-r);
}

input[type="password"] {
    letter-spacing: 0.3em;
}

input[type="radio"] {
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid #D5D6D8;
    vertical-align: -7px;
    outline: none;
    margin-right: 5px;
}

input[type="radio"]:checked::before {
    transform: translate(3px, 3px) scale(1);
}

input[type="radio"]::before {
    display: block;
    content: "";
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background-color: var(--accent);
    transform: translate(3px, 3px) scale(0);
    transform-origin: center;
    transition: all 0.3s cubic-bezier(0.25, 0.25, 0.56, 2);
}

textarea {
    max-width: 100%;
    min-height: 400px;
    line-height: 1.5em;
}

select {
    -webkit-appearance: none;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
    background-repeat: no-repeat;
    background-position: 97.5% center;
}

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

.wpcf7-radio {
    display: block;
    margin-top: 30px;
}

.wpcf7-radio .wpcf7-list-item {
    display: block;
    margin: 0 0 10px 0;
}

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

.wpcf7-form tr {
    vertical-align: text-top;
}

.submit-btn p{
	text-align:center;
}

.submit-btn button,
.submit-btn a{
    width: 250px;
    background: var(--accent);
    color: var(--main-r);
    line-height: 4;
    display: inline-block;
	font-family:var(--en);
}


@media screen and (max-width:1400px) {
    /*********************
           GENERAL STYLES
           *********************/
.catch-title{
	font-size:2.5rem;	
}
	
    /*********************
        NAVIGATION STYLES
        *********************/
.nav__list li a {
    font-size: 1.6rem;
}
}

@media screen and (max-width:1200px) {
    /*********************
           GENERAL STYLES
           *********************/
.sec-title-en {
    font-size: 3rem;
}

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

    #logo {
        width: 150px;
    }

#page_header {
    height: 40rem;
}


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

.nav__list li a {
    font-size: 1.4rem;
}

    /*********************
           FOOTER STYLES
           *********************/
#footer_logo a {
    width: 100px;
}


#menu-footer {
display: flex;
    width: calc(100% - 20rem - 100px);
    gap: 1rem 3rem;
    justify-content: flex-start;
}

#footer_content {
    align-items: flex-start;
    gap: 20rem;
}

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

    .l-r {
        padding-right: 5rem;
    }

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

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

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

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

    /*********************
           POSTS & CONTENT STYLES
           *********************/
.post-title {
    font-size: 1.4rem;
}
.post-archive .post-day span {
    font-size: 12px;
}
.post-archive .post-day {
    padding: 1rem;
    width: 100px;
    height: 100px;
}
.hero-content .page-title {
    font-size: 1.6rem;
}
.hero-content .page-subtitle-en {
    font-size: 4rem;
}
.single .post-title {
    font-size: 2rem;
}
.single .post-contents h2, .single .post-contents h3, .single .post-contents h4, .single .post-contents h5 {
    font-size: 1.6rem;
}

}

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

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

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

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

    #cursor,
    #stalker {
        display: none;
    }

.catch-title {
    font-size: 2rem;
}

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

    #header {
        height: 70px;
    }

    #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_l{
        height: 50px;
    }

    .nav__list {
        display: block;
    }

    #menu ul li a {
        color: var(--main-r) !important;
        text-decoration: none;
    }


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

    #nav_inner {
        text-align: center;
        margin: 0;
        background: var(--main);
        height: 100vh;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        padding-top: 90px;
        pointer-events: none;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 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: 70px;
        height: 70px;
        cursor: pointer;
        z-index: 3;
        right: 0;
        background: var(--accent);
        position: fixed;
        top: 0;
    }

    .toggle span {
        display: block;
        position: absolute;
        width: 30px;
        border-bottom: solid 1px 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 1px var(--main);
    }

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

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

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

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

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

.overlay {
position: fixed;
    top: -100%;
    right: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    transition: visibility 0.3s, top 0.3s;
    overflow: hidden;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: #000000e0;
}
.overlay.open {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.overlay.open li {
opacity: 0;
animation: 1s ease 0.1s 1 normal forwards running appear;
}
.overlay.open li:nth-of-type(2) {
opacity: 0;
animation: 1s ease 0.2s 1 normal forwards running appear;
}
.overlay.open li:nth-of-type(3) {
opacity: 0;
animation: 1s ease 0.3s 1 normal forwards running appear;
}
.overlay.open li:nth-of-type(4) {
opacity: 0;
animation: 1s ease 0.4s 1 normal forwards running appear;
}
.overlay.open li:nth-of-type(5) {
opacity: 0;
animation: 1s ease 0.5s 1 normal forwards running appear;
}
.overlay.open li:nth-of-type(6) {
opacity: 0;
animation: 1s ease 0.6s 1 normal forwards running appear;
}
.overlay.open li:nth-of-type(7) {
opacity: 0;
animation: 1s ease 0.7s 1 normal forwards running appear;
}

.overlay nav {
  position: relative;
  height: 70%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  font-weight: 400;
  text-align: center;
}
.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
  width: 100%;
}
.overlay ul li {
  display: block;
  position: relative;
  opacity: 0;
}
.overlay ul li a {
  display: block;
  position: relative;
  color: #FFF;
  text-decoration: none;
  font-size:20px;
  text-align:left;
  margin:0 8.33333vw;
  margin-bottom:2rem;
}

.overlay.open li:last-child a{
  margin-bottom:0;  
}

.overlay.open li:nth-of-type(1) a{
  animation: 0.5s ease 0.1s 1 normal forwards running slideIn;  
  border-bottom:1px solid;
}
.overlay.open li:nth-of-type(2) a {
  animation: 0.5s ease 0.2s 1 normal forwards running slideIn; 
  border-bottom:1px solid;
}
.overlay.open li:nth-of-type(3) a {
  animation: 0.5s ease 0.3s 1 normal forwards running slideIn;  
  border-bottom:1px solid;
}
.overlay.open li:nth-of-type(4) a{
  animation: 0.5s ease 0.4s 1 normal forwards running slideIn;  
  border-bottom:1px solid;
}
.overlay.open li:nth-of-type(5) a{
  animation: 0.5s ease 0.5s 1 normal forwards running slideIn;  
  border-bottom:1px solid;
}
.overlay.open li:nth-of-type(6) a{
  animation: 0.5s ease 0.6s 1 normal forwards running slideIn;  
  border-bottom:1px solid;
}
.overlay.open li:nth-of-type(7) a{
  animation: 0.5s ease 0.7s 1 normal forwards running slideIn;  
  border-bottom:1px solid;
}
.overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
  width: 100%;
}

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

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


    /*********************
           FOOTER STYLES
           *********************/
#menu-footer{
    width: 100%;
    margin-top: 5rem;
    justify-content: center;
	}

#footer_logo{
	display:inline-block;
	}

#footer_content {
    display: block;
    text-align: center;
padding-bottom: 10rem;
}


#menu-footer li a {
    font-size: 13px;
}

    #footer_inner {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    /*********************
           POSTS & CONTENT STYLES
           *********************/

.post-data-wrap {
    padding: 1rem;
}

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

.sec-title {
    font-size: 13px;
}

.post-title {
    font-size: 13px;
}

.post-archive .post-day span:nth-child(2) {
    font-size: 2.5rem;
}

.post-archive a:hover img{
	transform:scale(1);
}

#sidebar a {
    aspect-ratio: 4 / 3;
}

}

@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-r {
        padding-right: 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;
    }

.sec-title-en {
    font-size: 2.3rem;
    margin-bottom: 5px;
}

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

.arrow {
    width: 3rem;
    height: 3rem;
}

.btn-wrap a {
    gap: 1rem;
    font-size: 12px;
}

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

.hero-content .page-title {
    font-size: 13px;
}

.l-flex .flex-l p, .l-flex .flex-r p {
    line-height: 1.5;
}

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


    /*********************
           HEADER STYLES
           *********************/
#header{
	height:60px;
	}
    .menu-item a {
        font-size: var(--md);
    }

#logo_wrap a{
	width:60px;
	}

.sns-wrap a {
    width: 15px;
}

.sns-wrap a:first-child {
    height: 12px;
    margin-right: 5px;
}

.toggle {
    width: 60px;
    height: 60px;
}

.toggle span {
    width: 25px;
}

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

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

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

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

    /*********************
           POSTS & CONTENT STYLES
           *********************/

    .post-title {
        -webkit-line-clamp: 2;
        width: 100%;
    }

.topics-archive .post-thumbnail {
width: 30%;
}

.topics-archive .post-data-wrap {
width: 70%;
    }

.single .post-title {
    font-size: 1.6rem;
    line-height: 1.5;
}

.single .post-contents h2, .single .post-contents h3, .single .post-contents h4, .single .post-contents h5 {
    font-size: 1.4rem;
}

.post-time, .post-category{
    font-size: 11px;
}

    .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: 50px;
        padding: 10px;
    }

    /*********************
           FOOTER STYLES
           *********************/
#footer_link a {
    width: 100%;
    aspect-ratio: 4 / 1.5;
}
	
#footer_link a:first-child{
	border-bottom:initial;
	}

#footer_bottom{
	flex-direction:column-reverse;
	}

#footer_bottom_r{
	margin-bottom:1rem;
	}

#footer_logo a {
    width: 90px;
}

#menu-footer {
    margin-top: 3rem;
    gap: 1rem 2rem;
    justify-content: flex-start;
}

#menu-footer li{
	width:calc(100% / 2 - 1rem);
	}

    #footer_content {
padding-bottom: 5rem;
    }

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

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

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

    textarea {
        min-height: 250px;
    }

.topics-archive article {
    width: 100%!important;
}

.topics-archive article a{
display: flex;
	}

.post-wrap {
    gap: 1rem;
}

.title-wrap {
    text-align: center;
    margin-bottom: 3rem;
}

.btn-wrap{
	margin-left:auto;
	margin-right:auto;
	}

.post-archive .post-day span:nth-child(2) {
    font-size: 2rem;
}

.post-archive .post-day {
    width: 90px;
    height: 90px;
}

.post-wrap article {
    width: calc(100% / 2 - 0.5rem);
}

.report-archive .post-thumbnail {
    aspect-ratio: 4 / 3;
}

.side-wrap{
	gap:7rem;
	}

.breadcrumb__item span{
	font-size:11px;
	}

#sidebar a {
    aspect-ratio: 4 / 2;
}
}

@media screen and (min-width:768px) {
.tb-hide {
    display: none !important;
}
}