@charset "UTF-8";
/*
Theme Name:  KINDLER.v.1.4
Author:  KINDLER株式会社
Author URI:
Description:
Version: 1.4.0
Updated: 2025-11-05
*/

/* Color Scheme
-----------------------------------------------------

	=THEME COLOR = #d879b2

-----------------------------------------------------
*/

@import url(reset.css);
@import url(wp-customize.css);

/* CSS Variable
----------------------------------------------------- */
:root {
    --color-text-basic: #000;
    --color-primary: #d879b2;
    --color-secondary: #52a299;
    --color-yellow: #f5e85a;
    --color-footer-black: #262626;
}

/*
-----------------------------------------------------

	=LEGACY STYLE
    (FROM THEME : KINDLER.v.1.3)

-----------------------------------------------------
*/
.uniform-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-image {
    padding-top: 15px;
}

.card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    max-height: 3em; /* 2行分の高さ */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-excerpt {
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 3行に制限 */
    -webkit-box-orient: vertical;
}

.tags {
    margin-top: auto;
}

.card .tags .tag {
    margin-right: 5px;
    margin-bottom: 5px;
}

.card-footer {
    margin-top: auto;
}

/*
-----------------------------------------------------

	=GLOBAL LAYOUT

-----------------------------------------------------
*/
* {
    margin: 0;
    padding: 0;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-family: "ryo-gothic-plusn", 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo", "メイリオ", sans-serif, serif;
    -webkit-font-smoothing: antialiased !important;
    -webkit-text-stroke: 1px transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    color: var(--color-text-basic);
    font-size: 10px;
    font-weight: normal;
    line-height: 2.0;
    word-wrap: break-word;
    letter-spacing: -0.02em;
}

body {
    font-size: 1.6rem;
    background-color: #fff;
}

body::before {
    content: "";
    position: fixed;
    z-index: -99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
dt,
dd,
li {
    line-height: 2.0;
}

p,
ul,
ol,
dl,
table {
    margin-bottom: 2em;
}

p:last-child,
ul:last-child,
ol:last-child,
dl:last-child,
table:last-child {
    margin-bottom: 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    line-height: 1.8;
    text-align: left;
}

th,
td {
    padding: 1em 1.5em;
    vertical-align: top;
    border: none;
    font-weight: bold;
}

th {
    text-align: justify;
}

tr {
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}

tr:last-child {
    border-bottom: none;
}

hr {
    clear: both;
    border: none;
}

img {
    display: inline-block;
    vertical-align: bottom;
    max-width: 100%;
    height: auto;
}

a img {
    border: none;
}

a {
    color: var(--color-primary);
    text-decoration: underline;
}

a {
    cursor: pointer;
    -webkit-transition: all ease-out 0.2s;
    -moz-transition: all ease-out 0.2s;
    -ms-transition: all ease-out 0.2s;
    transition: all ease-out 0.2s;
}

a:hover {
    opacity: 0.5;
    text-decoration: none;
}

::selection {}

em {}

ol {
    counter-reset: number;
    list-style: none;
}

ol li {
    position: relative;
    padding-left: 2.5em;
}

ol li:not( :last-child) {
    margin-bottom: 1.5em;
}

ol li::before {
    position: absolute;
    left: 0;
    counter-increment: number;
    content: "(" counter(number)")";
    margin: 0 1.0em 0 0;
}

ol li ol:last-child {
    margin-bottom: 2em;
}

ol li ol li::before {
    content: "(" counter(number, lower-roman)")";
}

ol li ol li:not( :last-child) {
    margin-bottom: .5em;
}

strong {
    font-weight: bold;
}

iframe {
    display: block;
    max-width: 100%;
}

form {}

input[type=text],
input[type=email],
input[type=tel],
input[type=password],
textarea,
select {
    padding: 5px;
    font-size: 16px;
    font-weight: inherit;
    color: inherit;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input[type=text],
input[type=email],
input[type=tel],
input[type=password],
textarea,
select {
    background-color: #eee;
    border: 1px solid #eee;
    line-height: 1;
    vertical-align: middle;
    max-width: 100%;
    border-radius: 5px;
}

textarea {}

input[type=text] {
    margin-bottom: 0.5em;
}

input[type=text]:last-child {
    margin-bottom: 0;
}

input[type=email] {}

input[type=submit] {
    cursor: pointer;
}

input[type=text]:focus,
textarea:focus {}

form ul {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

form ul li {
    display: inline-block !important;
}

form label {
    margin-right: 1.4em;
}

form input[type*="submit"] {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
    padding: 1em 2em;
    border: none;
    background-color: #e45539;
    color: #fff;
    font-size: 1.0em;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: all ease-out 0.1s;
    -moz-transition: all ease-out 0.1s;
    -ms-transition: all ease-out 0.1s;
    transition: all ease-out 0.1s;
}

form input[type*="submit"]:hover {
    opacity: 0.7;
}

::placeholder {
    color: #ddd;
}



/*
-----------------------------------------------------

	=GLOBAL STYLE

-----------------------------------------------------
*/
#container {}

#main {
    position: relative;
    z-index: 2;
    overflow: inherit;
    background-color: #fff;
}

.c-wrapper {
    width: 1120px;
    max-width: 100%;
    margin: auto;
}

.u-wrapper-1120 {
    width: 1120px;
}

.u-wrapper-1080 {
    width: 1080px;
}

.u-wrapper-1000 {
    width: 1000px;
}

.u-wrapper-960 {
    width: 960px;
}

.u-wrapper-900 {
    width: 900px;
}

.u-wrapper-840 {
    width: 840px;
}

.u-wrapper-800 {
    width: 800px;
}

.u-wrapper-780 {
    width: 780px;
}

.u-wrapper-720 {
    width: 720px;
}

@media screen and (min-width: 0px) and (max-width: 1119px) {
    .c-wrapper {
        padding: 0 6.25vw;
    }
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    #container {}

    .c-wrapper {
        width: auto;
        padding: 0 6.25vw;
        margin: auto;
    }
}

/*
-----------------------------------------------------

	=MEDIA QUERIES RESPONSIVE STRUCTURE

-----------------------------------------------------
*/

/* DESKTOP
----------------------------------------------------- */
@media screen and (min-width: 800px) {
    .sp {
        display: none !important;
    }

    body {
        min-width: 1120px;
    }
}

/* SMARTPHONE
----------------------------------------------------- */
@media screen and (min-width: 0px) and (max-width: 799px) {
    .pc {
        display: none !important;
    }

    html {
        font-size: 10px;
    }

    body {
        font-size: 1.2rem;
        letter-spacing: 0;
    }

    /* APPERANCE
	--------------------------------------------------*/
    input[type="button"],
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="submit"],
    select {
        -webkit-appearance: none;
        border-radius: 0;
    }

    iframe {
        width: 100%;
        max-height: 240px;
    }

    th,
    td {
        font-size: 1.2rem;
        padding: 1em 0.5em;
    }
}



/* =ANIMATION - BACKGROUND
----------------------------------------------------- */
/* スクロールで背景色を変更 (script.jsに記述あり) */
.js-bg-magic {
    position: relative;
}

.js-bg-magic::before {
    content: "";
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.5s ease 0s;
    pointer-events: none;
    -webkit-transition: all 1.6s ease 0s;
    -moz-transition: all 1.6s ease 0s;
    -ms-transition: all 1.6s ease 0s;
    transition: all 1.6s ease 0s;
}

.js-bg-magic.show::before {
    opacity: 0.70;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {}



/* =ANIMATION - INVIEW.JS (jquery.inview.js)
----------------------------------------------------- */
.js-inview {
    transition: 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    -webkit-transition: 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    -moz-transition: 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    -ms-transition: 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    -o-transition: 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
}

.js-inview.inview-with-delay {
    transition: 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
    -webkit-transition: 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
    -moz-transition: 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
    -ms-transition: 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
    -o-transition: 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
}

.js-inview.inview-fadein {
    opacity: 0;
}

.js-inview.inview-fadein.is-show {
    opacity: 1;
}

.js-inview.inview-zoomin {
    opacity: 0;
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    filter: blur(5px);
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -ms-filter: blur(5px);
    -o-filter: blur(5px);
}

.js-inview.inview-zoomin.is-show {
    opacity: 1;
    filter: blur(0);
    -webkit-filter: blur(0);
    -moz-filter: blur(0);
    -ms-filter: blur(0);
    -o-filter: blur(0);
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.js-inview.inview-zoom {
    opacity: 0;
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
}

.js-inview.inview-zoom.is-show {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.js-inview.inview-zoom-slowly {
    transition: 12.0s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
    -webkit-transition: 12.0s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
    -moz-transition: 12.0s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
    -ms-transition: 12.0s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
    -o-transition: 12.0s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
}

.js-inview.inview-zoom-slowly.is-show {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
    -moz-transform: scale(1.0);
    -ms-transform: scale(1.0);
    -o-transform: scale(1.0);
}

.js-inview.inview-blur {
    opacity: 0;
    filter: blur(100px);
    -webkit-filter: blur(100px);
    -moz-filter: blur(100px);
    -ms-filter: blur(100px);
    -o-filter: blur(100px);
}

.js-inview.inview-blur.is-show {
    opacity: 1;
    filter: blur(0);
    -webkit-filter: blur(0);
    -moz-filter: blur(0);
    -ms-filter: blur(0);
    -o-filter: blur(0);
}

.js-inview.inview-floatup {
    transition: .8s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    -webkit-transition: .8s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    -moz-transition: .8s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    -ms-transition: .8s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    -o-transition: .8s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;

    opacity: 0;
    transform: translate3d(0px, 200px, 0px);
    -webkit-transform: translate3d(0px, 200px, 0px);
    -moz-transform: translate3d(0px, 200px, 0px);
    -ms-transform: translate3d(0px, 200px, 0px);
    -o-transform: translate3d(0px, 200px, 0px);
}

.js-inview.inview-floatup.is-show {
    opacity: 1;
    transform: translate3d(0px, 0, 0px);
    -webkit-transform: translate3d(0px, 0, 0px);
    -moz-transform: translate3d(0px, 0, 0px);
    -ms-transform: translate3d(0px, 0, 0px);
    -o-transform: translate3d(0px, 0, 0px);
}

.js-inview.inview-floatintoright {
    opacity: 0;
    transform: translate3d(-40px, 0px, 0px);
    -webkit-transform: translate3d(-40px, 0px, 0px);
    -moz-transform: translate3d(-40px, 0px, 0px);
    -ms-transform: translate3d(-40px, 0px, 0px);
    -o-transform: translate3d(-40px, 0px, 0px);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
}

.js-inview.inview-floatintoright.is-show {
    opacity: 1;
    transform: translate3d(0px, 0, 0px);
    -webkit-transform: translate3d(0px, 0, 0px);
    -moz-transform: translate3d(0px, 0, 0px);
    -ms-transform: translate3d(0px, 0, 0px);
    -o-transform: translate3d(0px, 0, 0px);
}

.js-inview.inview-floatintoleft {
    opacity: 0;
    transform: translate3d(40px, 0px, 0px);
    -webkit-transform: translate3d(40px, 0px, 0px);
    -moz-transform: translate3d(40px, 0px, 0px);
    -ms-transform: translate3d(40px, 0px, 0px);
    -o-transform: translate3d(40px, 0px, 0px);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
}

.js-inview.inview-floatintoleft.is-show {
    opacity: 1;
    transform: translate3d(0px, 0, 0px);
    -webkit-transform: translate3d(0px, 0, 0px);
    -moz-transform: translate3d(0px, 0, 0px);
    -ms-transform: translate3d(0px, 0, 0px);
    -o-transform: translate3d(0px, 0, 0px);
}

.js-reveal {}

.js-reveal>*,
.js-reveal>*::after {
	animation-delay: 0.2s;
	animation-iteration-count: 1;
	animation-duration: 600ms;
	animation-fill-mode: both;
}

.js-reveal>* {
	position: relative;
	white-space: nowrap;
	cursor: default;
	display: inline-block;
	opacity: 0;
}

.js-reveal>*:not( :last-child) {
	margin-bottom: 5px;
}

.js-reveal.is-show>* {
	animation-name: clip-text;
}

.js-reveal>*::after {
	content: "";
	position: absolute;
	z-index: 999;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-primary);
	transform: scaleX(0);
	transform-origin: 0 50%;
	pointer-events: none;
}

.js-reveal.is-show>*::after {
	animation-name: text-revealer;
}

@keyframes clip-text {
	0% {
		opacity: 0;
		clip-path: inset(0 100% 0 0);
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 1;
		clip-path: inset(0 0 0 0);
	}
}

@keyframes text-revealer {

	0%,
	50% {
		transform-origin: 0 50%;
	}

	60%,
	100% {
		transform-origin: 100% 50%;
	}

	60% {
		transform: scaleX(1);
	}

	100% {
		transform: scaleX(0);
	}
}

@media screen and (min-width: 600px) {}

@media screen and (min-width: 0px) and (max-width: 599px) {
	.js-reveal {}

	.js-reveal>* {
		white-space: inherit;
	}
}

/*
-----------------------------------------------------

	=CORPORATE SITE

    PRELOADER
    HEADER
    NAVIGATION
    FOOTER
    COMMON PARTS
    TOP PAGE
    SUB PAGES

-----------------------------------------------------
*/


/*
-----------------------------------------------------

    =PRELOADER (imagesloaded.pkgd.min.js)

-----------------------------------------------------
*/
.js-imageloaded {}

.js-imageloaded.loaded {}

#progress,
#progress * {}

#progress {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 0;
    display: block;
    overflow: hidden;
    z-index: 999999;
}

#progress .progress-start {
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 999999;
    opacity: 0;
    -webkit-transition: all cubic-bezier(0.230, 1.34494c, 0.320, 1.34494c) 1.2s;
    -moz-transition: all cubic-bezier(0.230, 1.34494c, 0.320, 1.34494c) 1.2s;
    -ms-transition: all cubic-bezier(0.230, 1.34494c, 0.320, 1.34494c) 1.2s;
    transition: all cubic-bezier(0.230, 1.34494c, 0.320, 1.34494c) 1.2s;
    display: none;
}

#progress.complete10 .progress-start {
    left: -100%;
}

#progress .progress-loading {
    background-color: #fff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 999999;
}

#progress .progress-loading .logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#progress .progress-loading .logo svg,
#progress .progress-loading .logo img {
    width: 294px;
    -webkit-transition: all cubic-bezier(0.190, 1.34494c, 0.220, 1.34494c) 0.8s;
    -moz-transition: all cubic-bezier(0.190, 1.34494c, 0.220, 1.34494c) 0.8s;
    -ms-transition: all cubic-bezier(0.190, 1.34494c, 0.220, 1.34494c) 0.8s;
    transition: all cubic-bezier(0.190, 1.34494c, 0.220, 1.34494c) 0.8s;
}

#progress,
#progress .progress-loading {
    -webkit-transition: all cubic-bezier(0.550, 0.055, 0.675, 0.190) 0.6s;
    -moz-transition: all cubic-bezier(0.550, 0.055, 0.675, 0.190) 0.6s;
    -ms-transition: all cubic-bezier(0.550, 0.055, 0.675, 0.190) 0.6s;
    transition: all cubic-bezier(0.550, 0.055, 0.675, 0.190) 0.6s;
}

#progress.complete100,
#progress.complete100 .progress-loading {
    left: 0%;
}

#progress.complete100 {
    opacity: 0;
    z-index: -9999;
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    #progress {
        height: 100dvh;
    }

    #progress .progress-loading .logo img {
        width: 180px;
    }
}

/*
-----------------------------------------------------

	=HEADER (CORPORATE SITE)

-----------------------------------------------------
*/

.header-global {
    position: fixed;
    z-index: 9991;
    top: inherit;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    background-color: #fff;
}

.header-global,
.header-global * {
    -webkit-transition: all ease-out 0.2s;
    -moz-transition: all ease-out 0.2s;
    -ms-transition: all ease-out 0.2s;
    transition: all ease-out 0.2s;
}

.header-global>.inner {
    align-items: center;
    -webkit-transition: all ease-out 0.2s;
    -moz-transition: all ease-out 0.2s;
    -ms-transition: all ease-out 0.2s;
    transition: all ease-out 0.2s;
}

.header-global>.inner .header-left,
.header-global>.inner .header-right {
    display: flex;
    align-items: center;
}

.header-global>.inner .header-left {}

.header-global>.inner .header-right {}

.header-global>.inner .nav-pc {}

.header-global>.inner .nav-sp {}


.logo-corporatesite {
	position: relative;
	width: 294px;
}

.logo-corporatesite a:hover {
    opacity: 1;
}

.header-global>.inner .header-left>.logo {
    position: relative;
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    background: url(assets/images/logo-white.webp) no-repeat;
    background-size: contain;
    margin: 0 0 0 0;
}

.header-global>.inner .header-left>.logo img {
    display: block;
    opacity: 1;
}

.header-global>.inner .header-left>.logo img {}

.header-global>.inner .nav-pc ul.nav-main li a {}

.header-global>.inner .nav-pc ul.nav-main li a:hover {}

/* 画面スクロール時 - 全ページ共通 */
.js-status-scrolled .header-global {
    background-color: #fff;
    box-shadow: 15px 25.981px 30px 0px rgba(0, 0, 0, 0.035);
}

@media screen and (min-width: 800px) {
    #main {}

    .js-header-indent #main {
        padding-top: 150px;
    }

    .header-global>.inner {
        padding: 20px 40px;
        min-width: 1320px;
    }

    .header-global>.inner .header-right {}

    /* ヘッダー初期位置 - 全ページ共通 */
    .js-status-before-main .header-global {}
    .js-status-before-main .header-global>.inner {
        padding: 40px 40px;
    }

    /* ヘッダー初期位置 - 背景透過ver.*/
    .js-header-transparent.js-status-before-main .header-global {
        background-color: transparent;
    }

    .js-header-transparent.js-status-before-main .header-global,
    .js-header-transparent.js-status-before-main .header-global a {}

    .js-header-transparent.js-status-before-main .header-global>.inner .header-left .logo img {
        opacity: 0;
    }

    .js-header-transparent.js-status-before-main .header-global>.inner .nav-pc ul.nav-main li,
    .js-header-transparent.js-status-before-main .header-global>.inner .nav-pc ul.nav-main li a {
        color: #fff;
    }

    .js-header-transparent.js-status-before-main .header-global>.inner .nav-pc ul.nav-main li ul {
        background-color: transparent;
    }

    .js-header-transparent.js-status-before-main .header-global>.inner .nav-pc ul.nav-main li ul li,
    .js-header-transparent.js-status-before-main .header-global>.inner .nav-pc ul.nav-main li ul li a {
        color: #fff;
    }

    .js-header-transparent.js-status-before-main .header-global>.inner .nav-pc ul.nav-main li.has-child {}

    .js-header-transparent.js-status-before-main .header-global>.inner .nav-pc ul.nav-main>li>a::before {}

    .js-header-transparent.js-status-before-main .header-global>.inner .nav-pc ul.nav-main li.has-child::after {
        border-color: #fff;
    }

    /* 画面スクロール時 - 全ページ共通 */
    .js-status-scrolled .header-global>.inner {}
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    #main {
        padding-top: 0;
    }

    .js-header-indent #main {
        padding-top: 70px;
    }

    .header-global {
        height: 70px;
    }

    .header-global>.inner {
        padding: 0 3.125vw;
        padding: 0 6.25vw;
        height: 100%;
    }

    .header-global>.inner {
        align-items: center;
    }

    .header-global>.inner .header-left {
        width: 100%;
        padding: 15px 0;
        justify-content: flex-start;
    }

    .header-global>.inner .header-right {}

    .header-global>.inner .header-left .logo {
        margin: 0 0 0;
    }

    .logo-corporatesite {
        width: 152px;
    }

    /* ヘッダー初期位置 - 背景透過ver. */
    .js-header-transparent.js-status-before-main .header-global {
        background-color: transparent;
        box-shadow: none;
    }

    .js-header-transparent.js-status-before-main .header-global>.inner .header-left .logo {}

    .js-header-transparent.js-status-before-main .header-global>.inner .header-left .logo img {
        opacity: 0;
    }


    .js-header-transparent.js-status-before-main a.trigger-bars span {
        background-color: #fff;
    }

    /* 画面スクロール時 - 全ページ共通 */
    .js-status-scrolled .header-global {
        background-color: #fff;
        box-shadow: 15px 25.981px 30px 0px rgba(0, 0, 0, 0.035);
    }
}

@media screen and (min-width: 800px) and (max-width: 1399px) {}


/*
-----------------------------------------------------

	=NAVIGATION - PC

-----------------------------------------------------
*/

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

    /* =NAVIGATION - PC
	----------------------------------------------------- */
    .nav-pc {
        margin: 0 0 0 0;
    }

    .nav-pc .inner {
        line-height: 0;
    }

    .nav-pc * {
        -webkit-transition: all ease-out 0.2s;
        -moz-transition: all ease-out 0.2s;
        -ms-transition: all ease-out 0.2s;
        transition: all ease-out 0.2s;
    }

    .nav-pc ul.nav-main {
        display: flex;
        align-items: center;
        letter-spacing: 0;
        font-size: 0;
    }

    .nav-pc ul.nav-main li {
        font-size: 1.6rem;
        font-weight: bold;
        line-height: 1.5;
        letter-spacing: 0.0em;
        text-transform: uppercase;
    }

    .nav-pc ul.nav-main li:not(:last-child) {
        margin: 0 2em 0 0;
    }

    .nav-pc ul.nav-main li a {
        position: relative;
        display: block;
        color: var(--color-text-basic);
        text-decoration: none;
    }

    .nav-pc ul.nav-main li a:hover {
        opacity: inherit;
        color: var(--color-primary);
    }

    /* 第1階層 */
    .nav-pc ul.nav-main>li>a {
        padding: 0.5em 0;
        height: 50px;
        display: flex;
        align-items: center;
    }

    .nav-pc ul.nav-main>li>a:hover {
        opacity: 0.5;
    }

    .nav-pc ul.nav-main>li>a::before {
        display: none;
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0.0001%;
        height: 1px;
        background-color: var(--color-primary);
        -webkit-transition: all ease-out 0.1s;
        -moz-transition: all ease-out 0.1s;
        -ms-transition: all ease-out 0.1s;
        transition: all ease-out 0.1s;
    }

    .nav-pc ul.nav-main>li>a:hover::before {
        width: 100%;
    }

    /* 第2階層 (子要素にさらにulがある場合) */
    .nav-pc ul.nav-main li {
        position: relative;
    }

    .nav-pc ul.nav-main li.has-child {
        padding-right: 15px;
    }

    .nav-pc ul.nav-main li.has-child::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        margin: auto 0;
        border-bottom: solid 1px var(--color-primary);
        border-right: solid 1px var(--color-primary);
        width: 6px;
        height: 6px;
        transform: rotate(45deg);
        -webkit-transition: all ease-out 0.2s;
        -moz-transition: all ease-out 0.2s;
        -ms-transition: all ease-out 0.2s;
        transition: all ease-out 0.2s;
    }

    .nav-pc ul.nav-main li ul {
        display: none;
        position: absolute;
        z-index: 9;
        top: 100%;
        left: -20px;
        width: 32em;
        padding: 20px;
        padding-top: 10px;
        background-color: #fff;
        border-radius: 0 0 5px 5px;
    }

    .nav-pc ul.nav-main li:hover ul {
        display: block;
    }

    .nav-pc ul.nav-main li ul li {
        display: block;
        padding: 0.5em 0em 0;
        font-size: 85%;
        font-weight: normal;
        text-align: left;
        text-transform: none;
    }

    .nav-pc ul.nav-main li ul li a {
        padding: 0;
        color: var(--color-text-basic);
    }

    .nav-pc ul.nav-main li ul li a::before {}

    .nav-pc ul.nav-main li ul li a:hover {
        opacity: 0.5;
    }
}

/* =NAVIGATION - ACTION BUTTON
----------------------------------------------------- */
@media screen and (min-width: 800px) {
    .nav-action {
        margin: 0 0 0 30px;
    }

    .nav-action ul.nav-main {
        display: flex;
        align-items: center;
        letter-spacing: 0;
        font-size: 0;
    }

    .nav-action ul.nav-main li {
        font-size: 1.8rem;
        font-weight: bold;
        letter-spacing: 0.00em;
    }

    .nav-action ul.nav-main li:not(:last-child) {
        margin: 0 0 0 0;
        margin: 0 10px 0 0;
    }
}


/* =NAVIGATION - ヘッダー専用ボタン (PC & SP共通) 
----------------------------------------------------- */
.c-button-header {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 140px;
    max-width: 100%;
    height: 50px;
    line-height: 1.0;
    padding: 0em .75em;
    border-radius: 3em;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
}
.c-button-header,
.c-button-header * {
    position: relative;
    z-index: 1;
    -webkit-transition: all ease-out 0.2s;
    -moz-transition: all ease-out 0.2s;
    -ms-transition: all ease-out 0.2s;
    transition: all ease-out 0.2s;
}

.c-button-header .japanese {
    display: block;
    font-size: 1.6rem;
    font-weight: bold;
}

.c-button-header .arrow {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 2.0em;
    margin: auto 0;
}

.c-button-header .arrow::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    width: 17px;
    height: 17px;
    transform: rotate(45deg);
    -webkit-transition: all ease-out 0.25s;
    -moz-transition: all ease-out 0.25s;
    -ms-transition: all ease-out 0.25s;
    transition: all ease-out 0.25s;
}

.c-button-header:hover {
    opacity: 1;
    filter: brightness(1.1);
}

.c-button-header:hover>.arrow {
    right: 1.75em;
}

.c-button-header.u-ver-recruit {
    background-color: var(--color-secondary);
}


@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-button-header {
        font-size: 1.4rem;
        width: 100%;
        height: 50px;
        max-width: 100%;
    }

    .c-button-header .arrow::after {
        border-width: 2px;
        width: 7px;
        height: 7px;
    }
}




/*
-----------------------------------------------------

	=NAVIGATION - SP

-----------------------------------------------------
*/

@media screen and (min-width: 0px) and (max-width: 799px) {

    /* =OVERLAY BACKGROUND
    ----------------------------------------------------- */
    .nav-overlay {
        position: fixed;
        z-index: 9990;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100dvh;
        background-color: var(--color-text-basic);
        -webkit-transition: opacity ease-out 0.25s;
        -moz-transition: opacity ease-out 0.25s;
        -ms-transition: opacity ease-out 0.25s;
        transition: opacity ease-out 0.25s;
        opacity: 0;
        pointer-events: none;
    }

    .nav-overlay.active {
        opacity: 0.25;
        pointer-events: inherit;
    }

    /* =NAVIGATION - SP
	----------------------------------------------------- */
    .nav-sp {
        position: fixed;
        z-index: 9992;
        top: 0;
        left: 0;
        bottom: auto;
        width: 80vw;
        height: 100vh;
        padding: 0;
        border-radius: 0;
        background-color: var(--color-primary);
        background-color: rgba(255, 255, 255, 1);
        color: var(--color-text-basic);
        box-shadow: 5px 8.66px 20px 0px rgba(0, 0, 0, 0.07);
        box-shadow: 15px 25.981px 50px 0px rgba(126, 126, 126, 0.2);
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        -webkit-transform: translate3d(0, -100%, 0);
        -moz-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        -webkit-transition: opacity ease-out 0.25s;
        -moz-transition: opacity ease-out 0.25s;
        -ms-transition: opacity ease-out 0.25s;
        transition: opacity ease-out 0.25s;
        opacity: 0;
    }

    .nav-sp.on {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .nav-sp.on .inner {}

    .nav-sp .inner {
        padding: 0 6.25vw;
        padding-bottom: 20vw;
    }

    .nav-sp .inner .logo {
        height: 70px;
        display: flex;
        align-items: center;
        margin: 0 0 6.25vw;
    }

    .nav-sp ul.nav-main {
        margin: 0 0 2em 0;
        margin: 0;
    }

    .nav-sp ul.nav-main li {
        display: block;
        color: var(--color-text-basic);
        font-size: 1.4rem;
        font-weight: normal;
        letter-spacing: 0.00em;
    }

    .nav-sp ul.nav-main li a:not([class]) {
        display: block;
        color: var(--color-text-basic);
        line-height: 1;
        text-decoration: none;
    }

    .nav-sp ul.nav-main li a:not([class]) :hover {
        opacity: 0.25;
    }

    .nav-sp .l-nav-footer .l-heading {
        margin: 2em 0 10px;
    }

    .nav-sp .l-nav-footer .l-heading:first-child {
        margin-top: 0;
    }

    /* ナビゲーション - 第1階層 */
    .nav-sp ul.nav-main>li:not(:last-child) {
        margin: 0 0 10px;
    }

    .nav-sp ul.nav-main>li>a:not([class]) {
        position: relative;
        display: inline-block;
        padding-left: 1em;
        padding-left: 0;
    }

    .nav-sp ul.nav-main>li>a:not([class])::before {
    }

    /* ナビゲーション - 第2階層 */
    .nav-sp ul.nav-main ul {
        margin: 1.0em 0 0 0;
    }

    .nav-sp ul.nav-main ul li {
        margin: 1.5em 0;
        position: relative;
        padding-left: 1em;
        font-size: 1.2rem;
    }

    .nav-sp ul.nav-main ul li:before {}

    .nav-sp ul.nav-main ul li a {}

    /* =TOGGLER
	----------------------------------------------------- */
    ul.nav-icon {
        position: fixed;
        z-index: 9999;
        top: 0;
        right: 0;
        margin: 0;
        padding: 0;
        text-align: right;
        font-size: 0;
        letter-spacing: 0;
    }

    ul.nav-icon li {
        display: inline-block;
        vertical-align: top;
        z-index: 9999;
        top: 0;
        right: 0;
        width: 90px;
        height: 70px;
        border-radius: 0;
        background-color: var(--color-text-basic);
        text-align: center;
        -webkit-transition: all ease-out 0.4s;
        -moz-transition: all ease-out 0.4s;
        -ms-transition: all ease-out 0.4s;
        transition: all ease-out 0.4s;
        cursor: pointer;
    }

    ul.nav-icon li:not(:last-child) {
        margin-right: 0;
    }

    ul.nav-icon li a {
        display: block;
        text-decoration: none;
    }

    ul.nav-icon li.toggler {
        padding: 27px 0;
        background-color: transparent;
    }

    .is-scrolled ul.nav-icon li.toggler {}

    ul.nav-icon li.toggler a.trigger-bars {
        display: inline-block;
    }

    a.trigger-bars,
    a.trigger-bars span {
        box-sizing: border-box;
        display: inline-block;
        -webkit-transition: all ease-out 0.4s;
        -moz-transition: all ease-out 0.4s;
        -ms-transition: all ease-out 0.4s;
        transition: all ease-out 0.4s;
    }

    a.trigger-bars {
        position: relative;
        z-index: 9999;
        width: 32px;
        height: 19px;
        color: var(--color-text-basic);
    }

    a.trigger-bars::after {
        position: absolute;
        width: 200%;
        left: -50%;
        top: 27px;
        display: block;
        letter-spacing: 0em;
        font-size: 1rem;
        font-weight: bold;
        text-transform: uppercase;
        line-height: 1;
    }

    a.trigger-bars span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: var(--color-primary);
        background-color: var(--color-text-basic);
        border-radius: 0;
        -webkit-transition: all ease-out 0.14s;
        -moz-transition: all ease-out 0.14s;
        -ms-transition: all ease-out 0.14s;
        transition: all ease-out 0.14s;
    }

    a.trigger-bars span:nth-of-type(1) {
        top: 0;
    }

    a.trigger-bars span:nth-of-type(2) {
        top: 9px;
    }

    a.trigger-bars span:nth-of-type(3) {
        bottom: 0;
    }

    /*ul.nav-icon li.toggler.active { background-color: #fff;}*/
    .active a.trigger-bars {
        color: var(--color-primary);
        color: var(--color-text-basic);
    }

    .active a.trigger-bars span {}

    .active a.trigger-bars span:nth-of-type(1) {
        -webkit-transform: translateY(9px) rotate(-45deg);
        transform: translateY(9px) rotate(-45deg);
    }

    .active a.trigger-bars span:nth-of-type(2) {
        opacity: 0;
    }

    .active a.trigger-bars span:nth-of-type(3) {
        -webkit-transform: translateY(-9px) rotate(45deg);
        transform: translateY(-9px) rotate(45deg);
    }
}

/*
-----------------------------------------------------

	=FOOTER

-----------------------------------------------------
*/
.footer-global {
    position: relative;
    z-index: 90;
    font-size: 1.6rem;
    font-weight: normal;
    background: var(--color-footer-black);
}

.footer-global::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.footer-global,
.footer-global a {
    color: #fff;
}

.footer-global a {
    text-decoration: none;
}

.footer-global p {
    line-height: 1.8;
}

.footer-global hr:not([class]) {
    height: 2em;
    background-color: transparent;
}

.footer-global .c-section {
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .footer-global {
        font-size: 1.0rem;
    }
}

/* フッター - ナビゲーションなどのエリア
----------------------------------------------------- */
.footer-global .navigation-area {}

.footer-global .navigation-area .l-inner {
    position: relative;
}

.footer-global .navigation-area .l-logo {}


@media screen and (min-width: 800px) {
    .footer-global .navigation-area {}

    .footer-global .navigation-area .footer-left {
        width: calc(100% - 680px);
    }

    .footer-global .navigation-area .footer-right {
        width: calc(680px);
        padding-left: 60px;
        border-left: solid 1px rgba(255, 255, 255, 0.2)
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .footer-global .navigation-area {
        padding: 6.25vw 0;
    }

    .footer-global .navigation-area .footer-left,
    .footer-global .navigation-area .footer-right {
        width: 100%;
        justify-content: flex-start;
    }

    .footer-global .navigation-area .footer-right {
        border-bottom: solid 1px rgba(255, 255, 255, 0.2);
        padding-bottom: 6.25vw;
        margin-bottom: 6.25vw;
    }

    .footer-global .navigation-area .l-logo {}

    .footer-global .navigation-area .l-address {
        font-size: 1.2rem;
    }
}

/* フッター - ナビゲーションなどのエリア - ナビゲーション横並びver.
----------------------------------------------------- */
.l-nav-footer {}

.l-nav-footer .l-heading {
    margin: 0 0 0.25em;
    font-family: 'Chillax', sans-serif;
    font-size: 2.4rem;
    font-weight: bold;
}

.l-nav-footer .l-heading:not( :first-child) {}

.footer-global .l-address {
    font-size: 1.4rem;
}


@media screen and (min-width: 800px) {
    .l-nav-footer .c-flex-parent .c-flex-child {
        margin: 0 4em 0 0;
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-nav-footer {}

    .l-nav-footer .l-heading {
        font-size: 2.0rem;
    }

    .l-nav-footer ul li {
        font-size: 1.2rem;
    }

    .l-nav-footer ul ul li a::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        margin: auto 0;
        width: 5px;
        height: 1px;
        background-color: var(--color-primary);
    }
}

/* リスト - ボタン横並びリスト */
ul.c-list-button {
    font-size: 0;
    letter-spacing: 0;
}
ul.c-list-button li {
    display: inline-block;
    margin: 0 1.5em 0 0;
    letter-spacing: 0;
    font-size: 1.6rem;
    font-weight: normal;
}
@media screen and (min-width: 0px) and (max-width: 799px) {
    ul.c-list-button li {
        font-size: 1.2rem;
    }
}


/* フッター - コピーライト部分
----------------------------------------------------- */
.footer-global .navigation-area .footer-left {
    position: relative;
}

.l-copyright-area {
    position: absolute;
    bottom: 0;
    left: 0;
}

.l-copyright-area .l-tagline {
    margin: 0 0 0.25em;
    font-size: 3.2rem;
    font-weight: bold;
    letter-spacing: -0.05em;
    line-height: 1.5;
}

.l-copyright-area .l-copyright {
    font-family: 'Chillax', sans-serif;
    font-size: 1.0rem;
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-copyright-area {
        position: static;
    }

    .l-copyright-area .l-tagline {
        margin: 0 0 0.25em;
        font-size: 1.8rem;
    }
}



/* フッター - 最後の大きいテキスト装飾
----------------------------------------------------- */
.footer-global .l-large-letters {}
.footer-global .l-large-letters img {
    width: 100%;
}


/*
-----------------------------------------------------

	=FIXED BUTTON

-----------------------------------------------------
*/

/* SPのみ - 追従ボタン - お問い合わせ
----------------------------------------------------- */
.c-fixed-button {
    display: none;
}


@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-fixed-button {
        opacity: 0;
        pointer-events: none;

        position: fixed;
        z-index: 9999;
        right: 0;
        bottom: 0;
        width: auto;
        height: auto;
        margin: 0;
        padding: 3.125vw;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        text-align: right;
        -webkit-transition: all ease-out 0.2s;
        -moz-transition: all ease-out 0.2s;
        -ms-transition: all ease-out 0.2s;
        transition: all ease-out 0.2s;
    }

    .c-fixed-button .l-button {
        margin-bottom: 0;
    }

    .c-button-fixed {
        position: relative;
        display: inline-block;
        background-color: var(--color-primary);
        color: #fff;
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
        border-radius: 3em;
        padding: 0.5em 1.5em;
        width: 200px;
        text-align: left;
        font-size: 1.6rem;
        font-weight: 500;
        text-decoration: none;
    }

    .c-button-fixed,
    .c-button-fixed * {
        position: relative;
        z-index: 1;
        -webkit-transition: all ease-out 0.2s;
        -moz-transition: all ease-out 0.2s;
        -ms-transition: all ease-out 0.2s;
        transition: all ease-out 0.2s;
    }

    .c-button-fixed .l-text {
        display: inline-block;
        vertical-align: middle;
    }

    .c-button-fixed .l-arrow {
        position: absolute;
        z-index: 1;
        top: 0;
        bottom: 0;
        right: 1.5em;
        margin: auto 0;
        width: 14px;
        height: 14px;
        background: url(assets/images/icon-arrow-right-button-white.webp) no-repeat center center / contain;
        -webkit-transition: all ease-out 0.2s;
        -moz-transition: all ease-out 0.2s;
        -ms-transition: all ease-out 0.2s;
        transition: all ease-out 0.2s;
    }

    .js-status-scrolled .c-fixed-button {
        opacity: 1;
        pointer-events: inherit;
    }

    .footer-is-show .c-fixed-button {
        opacity: 0;
        pointer-events: none;
    }
}


/*
-----------------------------------------------------

	=COMMON PARTS - SECTION

-----------------------------------------------------
*/
.js-anchor {
    visibility: hidden;
    height: 0;
    display: block;
    padding-top: 80px;
    margin-top: -80px;
    pointer-events: none;
}

.c-block:not( :last-child) {
    margin-bottom: 120px;
}

.c-section {
    padding: 120px 0;
}

hr {
    clear: both;
    border: none;
    height: 60px;
    background-color: transparent;
}

hr.hr-border {
    margin: 60px auto;
    height: 1px;
    background-color: #dcdcdc;
}

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

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-block:not( :last-child) {
        margin: 0 auto 8vw;
    }

    .c-section {
        padding: 8vw 0;
    }

    hr {
        height: 4vw;
    }
}

/*
-----------------------------------------------------

	=COMMON PARTS - DECORATION

-----------------------------------------------------
*/

/* フォントカラー、加工など
----------------------------------------------------- */
.u-fc-theme {
    color: var(--color-primary);
}

.u-fc-secondary {
    color: var(--color-secondary);
}

.u-radius {
    overflow: hidden;
    border-radius: 10px;
}

/* 罫線ラインマーカー */
.u-text-underline {
	position: relative;
	display: inline-block;
}
.u-text-underline::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0.15em;
	background-color: var(--color-primary);
	mix-blend-mode: multiply
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {}


/* 汎用の枠・白背景エリア
----------------------------------------------------- */
.c-whitebox {
    padding: 80px;
    background-color: #fff;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-whitebox {
        padding: 6.25vw;
    }
}

/* 汎用のカバー画像エリア
----------------------------------------------------- */
.c-cover-image {
    position: relative;
    width: 100%;
}

.c-cover-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

/* 汎用のフレーム
----------------------------------------------------- */
.c-frame-theme {
    position: relative;
    z-index: 2;
    margin: 0 0 2em;
    border-radius: 10px;
    padding: 2em;
    background-color: var(--color-primary);
    color: #fff;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {}


/* 角丸
----------------------------------------------------- */
.c-radius15 {
    border-radius: 15px;
    overflow: hidden;
}

.c-radius25 {
    border-radius: 25px;
    overflow: hidden;
}

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

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-radius25 {
        border-radius: 10px;
        overflow: hidden;
    }
}

/* ループする背景
----------------------------------------------------- */
.loop-animation-background {
    width: 100%;
    overflow: hidden;
    -webkit-user-select: none;
    user-select: none;
    background-repeat: repeat-x;
    animation-duration: 56s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: background-position-x;
}

/* フル幅のセクション設定
----------------------------------------------------- */
.c-flexible-container {
    border-radius: 40px;
    overflow: hidden;
    width: calc(100% - 60px * 2);
    margin: 0 auto 60px;
    padding: 0;
    max-width: 1600px;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-flexible-container {
        border-radius: 10px;
        width: calc(100% - 6.25vw - 6.25vw);
        margin: 0 auto 6.25vw;
        padding: 0;
    }
}



/*
-----------------------------------------------------

	=COMMON PARTS - HEADING

-----------------------------------------------------
*/

/* 強調した文章（ABOUTセクションなどでの装飾）
----------------------------------------------------- */
.c-featured-text {
    font-size: 3.2rem;
    font-weight: bold;
    letter-spacing: 0.0em;
    line-height: 2.1;
}

@media screen and (min-width: 800px) {
    .c-featured-text.u-medium {}

    .c-featured-text.u-small {}
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-featured-text {
        font-size: 1.15em;
    }
}


/* 見出し - セクション・ページの大見出し 180pt
----------------------------------------------------- */
.c-title-section {
    margin: 0 0 .25em;
    font-family: 'Chillax', sans-serif;
    font-size: 18.0rem;
    font-weight: 600;
    line-height: .9;
    letter-spacing: -0.05em;
}

.c-title-section>* {
    display: block;
}

.c-title-section .english {}

.c-title-section .japanese {}

.c-title-section .sub {
    display: block;
    margin: 0.5em 0 0;
    font-size: 3.2rem;
    letter-spacing: 0;
}

@media screen and (min-width: 800px) {
    .c-title-section.u-ver-small {
        font-size: 9.0rem;
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-title-section {
        font-size: 6.4rem;
    }

    .c-title-section .english {}

    .c-title-section .sub {
        font-size: 1.4rem;
    }
}


@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {}


/* 見出し - 日本語118pt
----------------------------------------------------- */
.c-title-118 {
    margin: 0em 0 .5em;
    font-size: 11.2rem;
    font-weight: bold;
    line-height: 1.25;
    letter-spacing: -0.05em;
}

.c-title-118>* {
    display: block;
}

.c-title-118 .japanese {}

.c-title-118 .english {
    display: block;
    margin: 0;
    color: #c2c2c2;
    font-family: 'Chillax', sans-serif;
    font-size: 3.2rem;
    letter-spacing: 0.0em;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-title-118 {
        font-size: 2.8rem;
    }

    .c-title-118 .english {
        font-size: 1.8rem;
    }
}


/* 見出し - 日本語メイン　48pt
----------------------------------------------------- */
.c-title-main {
    margin: 0em 0 1.0em;
    font-size: 4.8rem;
    font-weight: 500;
    line-height: 1.5;
}

.c-title-main>* {
    display: block;
}

.c-title-main .english {}

.c-title-main .japanese {}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-title-main {
        font-size: 1.6rem;
    }
}


/* 見出し - ナンバリング（CULTUREなど）
----------------------------------------------------- */
.c-title-numbering {
    margin: 0em 0 1.5em;
    color: var(--color-primary);
    font-family: 'Chillax', sans-serif;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.05;
}

.c-title-numbering>* {}

.c-title-numbering .sub {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5em;
}

.c-title-numbering .num {
    display: inline-block;
    vertical-align: middle;
    font-size: 8.4rem;
    font-weight: normal;
    letter-spacing: -0.05em;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-title-numbering {
        margin: 0 0 .5em;
        font-size: 1.6rem;
    }

    .c-title-numbering .num {
        font-size: 4.0rem;
    }
}


/* 見出し - 日本語　36pt
----------------------------------------------------- */
.c-title-36 {
    margin: 0em 0 1.0em;
    font-size: 3.6rem;
    font-weight: bold;
    line-height: 1.5;
}

.c-title-36>* {
    display: block;
}

.c-title-36 .japanese {}

.c-title-36 .english {
    display: block;
    margin: 0;
    color: #c2c2c2;
    font-family: 'Chillax', sans-serif;
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 0.0em;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-title-36 {
        font-size: 1.8rem;
    }

    .c-title-36 .english {
        font-size: 1.4rem;
    }
}

/*
-----------------------------------------------------

	=COMMON PARTS - BUTTON

-----------------------------------------------------
*/


/* ボタン - READ MORE（メイン）
----------------------------------------------------- */
.c-button-readmore {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 320px;
    max-width: 100%;
    height: 80px;
    border-radius: 80px;
    line-height: 1.25;
    padding: 1em 2.0em;
    background-color: #faeff6;
    color: var(--color-primary);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    font-family: 'Chillax', sans-serif;
    font-size: 2.4rem;
    font-weight: bold;
    text-decoration: none;
}

.c-button-readmore,
.c-button-readmore * {
    position: relative;
    z-index: 1;
    -webkit-transition: all ease-out 0.2s;
    -moz-transition: all ease-out 0.2s;
    -ms-transition: all ease-out 0.2s;
    transition: all ease-out 0.2s;
}

.c-button-readmore .l-text {
    display: block;
}

.c-button-readmore .l-arrow {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 1.5em;
    margin: auto 0;
    width: 23px;
    height: 23px;
    background: url(assets/images/icon-arrow-right-button.webp) no-repeat center center / contain;
    -webkit-transition: all ease-out 0.2s;
    -moz-transition: all ease-out 0.2s;
    -ms-transition: all ease-out 0.2s;
    transition: all ease-out 0.2s;
}

.c-button-readmore:hover {
    opacity: 1;
    box-shadow: none;
}

.c-button-readmore:hover>.l-arrow {
    right: 1.25em;
}

.c-button-readmore:hover::after {
    left: 0;
    top: 0;
} 

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-button-readmore {
        width: 260px;
        height: 62px;
        max-width: 100%;
        font-size: 1.7rem;
    }

    .c-button-readmore .l-arrow::after {
        border-width: 1px;
        width: 11px;
        height: 11px;
    }

    .c-button-readmore::after {
        left: 5px;
        top: 5px;
    }
}

.u-ta-r .c-button-readmore {
    margin-left: auto;
    text-align: left;
}
.u-ta-c .c-button-readmore {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.c-button-readmore.u-ver-recruit {
    background-color: #ecf4f3;
    color: var(--color-secondary);
}

.c-button-readmore.u-ver-recruit .l-arrow {
    background-image: url(assets/images/icon-arrow-right-button-recruit.webp);
}


/* ボタン - READ MORE（メイン）
----------------------------------------------------- */
.c-button-underline {
    line-height: 1.5;
    padding-bottom: 0.75em;
    border-bottom: solid 1px var(--color-primary);
    color: var(--color-text-basic);
    font-size: 2.0rem;
    font-weight: 500;
    text-decoration: none;
}

.c-button-underline,
.c-button-underline * {
    position: relative;
    z-index: 1;
    -webkit-transition: all ease-out 0.2s;
    -moz-transition: all ease-out 0.2s;
    -ms-transition: all ease-out 0.2s;
    transition: all ease-out 0.2s;
}

.c-button-underline .l-text {
    display: inline-block;
    vertical-align: middle;
}

.c-button-underline .l-arrow {
    display: inline-block;
    vertical-align: middle;
    margin-left: .75em;
    width: 23px;
    height: 23px;
    background: url(assets/images/icon-arrow-right-button.webp) no-repeat center center / contain;
    -webkit-transition: all ease-out 0.2s;
    -moz-transition: all ease-out 0.2s;
    -ms-transition: all ease-out 0.2s;
    transition: all ease-out 0.2s;
}

.c-button-underline:hover {
    opacity: 1;
    color: var(--color-primary);
}

.c-button-underline:hover>.l-arrow {}


@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-button-underline {
        font-size: 1.5rem;
    }

    .c-button-underline .l-arrow {
        border-width: 1px;
        width: 17px;
        height: 17px;
    }
}

.c-button-underline.u-ver-white {
    border-bottom-color: #fff;
    color: #fff;
}

.c-button-underline.u-ver-white:hover {
    color: #fff;
    opacity: 0.6;
}

.c-button-underline.u-ver-white .l-arrow {
    background-image: url(assets/images/icon-arrow-right-button-white.webp)
}



/* ボタン - 小さなテキストとアロー
----------------------------------------------------- */
.c-link-small {
    position: relative;
    display: inline-block;
    padding: 0 1em 0 0;
    font-family: neue-haas-grotesk-display, sans-serif;
    color: var(--color-primary);
    font-size: 2.8rem;
    font-weight: bold;
    text-decoration: none;
    line-height: .8;
}

.c-link-small::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 3px;
    margin: auto 0;
    border-top: solid 3px var(--color-primary);
    border-right: solid 3px var(--color-primary);
    width: 14px;
    height: 14px;
    transform: rotate(45deg);
    -webkit-transition: all ease-out 0.2s;
    -moz-transition: all ease-out 0.2s;
    -ms-transition: all ease-out 0.2s;
    transition: all ease-out 0.2s;
}

.c-link-small.u-white {
    color: #fff;
}

.c-link-small.u-white::after {
    border-top-color: #fff;
    border-right-color: #fff;
}

.c-link-small:hover {}

.c-link-small:hover::after {
    right: 0;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-link-small {
        font-size: 1.6rem;
    }

    .c-link-small::after {
        border-top: solid 2px var(--color-primary);
        border-right: solid 2px var(--color-primary);
        width: 7px;
        height: 7px;
    }
}

/*
-----------------------------------------------------

	=COMMON PARTS - LIST

-----------------------------------------------------
*/
/* 各種SNSアイコン定義 
----------------------------------------------------- */
i.icon-twitter {
    display: inline-block;
    background: url(assets/images/icon-sns-twitter.webp) no-repeat center;
    background-size: 100% auto;
    width: 22px;
    height: 22px;
}

i.icon-facebook {
    display: inline-block;
    background: url(assets/images/icon-sns-facebook.webp) no-repeat center;
    background-size: 100% auto;
    width: 24px;
    height: 24px;
}

i.icon-instagram {
    display: inline-block;
    background: url(assets/images/icon-sns-instagram.webp) no-repeat center;
    background-size: 100% auto;
    width: 24px;
    height: 24px;
}

i.icon-tiktok {
    display: inline-block;
    background: url(assets/images/icon-sns-tiktok.webp) no-repeat center;
    background-size: 100% auto;
    width: 19px;
    height: 22px;
}

i.icon-note {
    display: inline-block;
    background: url(assets/images/icon-sns-note.webp) no-repeat center;
    background-size: 100% auto;
    width: 18px;
    height: 18px;
}

i.icon-youtube {
    display: inline-block;
    background: url(assets/images/icon-sns-youtube.webp) no-repeat center;
    background-size: 100% auto;
    width: 26px;
    height: 20px;
}

i.icon-linkedin {
    display: inline-block;
    background: url(assets/images/icon-sns-linkedin.webp) no-repeat center;
    background-size: 100% auto;
    width: 21px;
    height: 21px;
}


.u-ver-white i.icon-twitter {
    background-image: url(assets/images/icon-sns-twitter-white.webp);
}

.u-ver-white i.icon-instagram {
    background-image: url(assets/images/icon-sns-instagram-white.webp);
}

.u-ver-white i.icon-youtube {
    background-image: url(assets/images/icon-sns-youtube-white.webp);
}

@media screen and (min-width: 800px) {
    .u-large i.icon-tiktok {
        width: 29px;
        height: 34px;
    }

    .u-large i.icon-instagram {
        width: 37px;
        height: 37px;
    }

    .u-large i.icon-youtube {
        width: 39px;
        height: 28px;
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {}

/* リスト - SNSロゴのみ VER.
----------------------------------------------------- */
ul.c-list-sns {
    display: block;
    font-size: 0;
    letter-spacing: 0;
}

ul.c-list-sns:not( :last-child) {
    margin: 0 0 3rem;
}

ul.c-list-sns li {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.2rem;
    line-height: 1;
    width: 40px;
}

ul.c-list-sns li:not( :last-child) {
    margin: 0 10px 0 0;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    ul.c-list-sns {}

    ul.c-list-sns li {
        font-size: .9rem;
    }
}

/* リスト - SNS円形アイコン
----------------------------------------------------- */
ul.c-list-sns-circle {
    display: flex;
}

ul.c-list-sns-circle li {}

ul.c-list-sns-circle li:not( :last-child) {
    margin: 0 10px 0 0;
}

ul.c-list-sns-circle li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-secondary);
}

@media screen and (min-width: 800px) {
    ul.c-list-sns-circle.u-large li:not( :last-child) {
        margin: 0 20px 0 0;
    }

    ul.c-list-sns-circle.u-large li a {
        width: 80px;
        height: 80px;
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {}

/* リスト - SNSシェアボタン
----------------------------------------------------- */
ul.c-list-share {
    margin: 0 0 2rem;
    font-size: 0;
    letter-spacing: 0;
}

ul.c-list-share.u-with-heading::before {
    content: "SHARE";
    display: inline-block;
    vertical-align: text-bottom;
    margin: 0 1em 0 0;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.05em;
}

ul.c-list-share li {
    display: inline-block;
    margin: 0 5px 10px;
    font-size: 1.6rem;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    ul.c-list-share li {
        margin: 0 3px 5px;
        width: 35px;
    }
}

/* リスト - 箇条書きリスト
----------------------------------------------------- */
ul.c-list-simple {}

ul.c-list-simple li {
    margin: 0 0 0.35em;
    position: relative;
    padding-left: 1.2em;
    line-height: 1.8;
}

ul.c-list-simple li::before {
    content: "・";
    position: absolute;
    left: 0;
    display: inline-block;
    vertical-align: middle;
    margin: 0 1.25em 0 0;
}

/* リスト - 箇条書きリスト（丸型）
----------------------------------------------------- */
ul.c-list-circle {}

ul.c-list-circle li {
    margin: 0 0 0.25em;
    position: relative;
    padding-left: 1.2em;
    line-height: 1.8;
    letter-spacing: 0.00em;
}

ul.c-list-circle li::before {
    content: "● ";
    position: absolute;
    left: 0;
    top: 0.8em;
    display: inline-block;
    vertical-align: middle;
    margin: 0 1.25em 0 0;
    color: var(--color-primary);
    font-size: 0.9rem;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    ul.c-list-circle li::before {
        top: 0.1em;
    }
}

/* リスト - シンプルなインライン
----------------------------------------------------- */
ul.c-list-inline {}

ul.c-list-inline li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 2em 0 0;
}

/*
-----------------------------------------------------

	=COMMON PARTS - ARCHIVE LIST

-----------------------------------------------------
*/

/* カテゴリー・年別絞り込みボタン（※TOPページ、お知らせなどで使用）
----------------------------------------------------- */

/* アーカイブリスト - 全体 */
.c-news-archive-header {
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 500;
    text-transform: uppercase;
}

.c-news-archive-header .inner-block {
    position: relative;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.c-news-archive-header .inner-block::before {
    display: none;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 1px;
    height: 70%;
    background-color: rgba(0, 0, 0, 0.25);
}

.c-news-archive-header .title {
    margin: 10px 0;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}

@media screen and (min-width: 800px) {
    .c-news-archive-header .title {
        width: 200px;
    }

    .c-news-archive-header .title+* {
        width: calc(100% - 200px);
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-news-archive-header {
        display: block;
    }

    .c-news-archive-header .inner-block {
        display: block;
        margin: 0 0 1em;
    }

    .c-news-archive-header .inner-block:last-child {
        margin-bottom: 0;
    }

    .c-news-archive-header .title {
        margin: 0 0 0.5em;
        font-size: 1.3rem;
    }
}

/* アーカイブリスト - カテゴリー・年別絞り込みボタン部分 */
ul.c-list-news-archive {
    margin: 0;
    font-size: 0;
    letter-spacing: 0;
}

ul.c-list-news-archive:last-child {
    margin-bottom: 0;
}

ul.c-list-news-archive li {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: -0.05em;
}

ul.c-list-news-archive li a {
    display: inline-block;
    margin: 0 10px 10px 0;
    padding: 0.5em 1em;
    border-radius: 5px;
    background-color: #faeff6;
    color: var(--color-text-basic);
    text-decoration: none;
}

ul.c-list-news-archive li.active a,
ul.c-list-news-archive li a[aria-current],
ul.c-list-news-archive li a:hover {
    opacity: 1;
    background-color: var(--color-primary);
    color: #fff;
}

ul.c-list-news-archive li.active a,
ul.c-list-news-archive li a[aria-current] {}

ul.c-list-news-archive li a:hover {}

ul.c-list-news-archive li ul,
ul.c-list-news-archive li ul li {
    display: inline-block;
}

ul.c-list-news-archive li ul li a {
    margin: 0 2em 0 0;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    ul.c-list-news-archive {
        position: relative;
        margin: 0 0 2rem;
        padding-left: 0;
        margin-left: 0;
    }

    ul.c-list-news-archive::before {
        display: none;
    }

    ul.c-list-news-archive li {
        font-size: 1.2rem;
    }

    ul.c-list-news-archive li a {
        margin: 0 5px 5px 0;
    }
}

/* アーカイブリスト - タグ絞り込みボタン部分 */
ul.c-list-news-tag {
    margin: 15px 0 0;
    font-size: 0;
    letter-spacing: 0;
}

ul.c-list-news-tag:last-child {
    margin-bottom: 0;
}

ul.c-list-news-tag li {
    display: inline-block;
    vertical-align: top;
    margin: 0 15px 15px 0;
    font-size: 1.3rem;
}

ul.c-list-news-tag li a {
    display: block;
    padding: 0.75em 1.5em;
    line-height: 1;
    font-weight: normal;
    text-decoration: none;
    background-color: #fff;
    color: var(--color-text-basic);
    border-radius: 1.5em;
}

ul.c-list-news-tag li.active a,
ul.c-list-news-tag li a[aria-current],
ul.c-list-news-tag li a:hover {
    opacity: 1;
    background-color: var(--color-primary);
    color: #fff;
}

ul.c-list-news-tag li.active a,
ul.c-list-news-tag li a[aria-current] {}

ul.c-list-news-tag li a:hover {}


@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    ul.c-list-news-tag {
        margin: 0;
    }

    ul.c-list-news-tag li {
        margin: 0 7px 7px 0;
        font-size: 1.0rem;
    }
}

/*
-----------------------------------------------------

	=COMMON PARTS - LOOP

-----------------------------------------------------
*/

/* =BASIC [全ループ共通]
----------------------------------------------------- */
/* オウンドメディア配下のループのカスタマイズ -->ownedmedia.css */
.loop {}

.loop .loop-article {
    position: relative;
}

.more-link {
    display: none;
}

.loop,
.loop * {
    -webkit-transition: all cubic-bezier(0.190, 1, 0.220, 1) 0.6s;
    -moz-transition: all cubic-bezier(0.190, 1, 0.220, 1) 0.6s;
    -ms-transition: all cubic-bezier(0.190, 1, 0.220, 1) 0.6s;
    transition: all cubic-bezier(0.190, 1, 0.220, 1) 0.6s;
}

/* 記事サムネール */
.loop .loop-image {
    position: relative;
    height: 0;
    padding-bottom: 66.66%; /* 3:2比率 */
    padding-bottom: calc(100% / 1280 * 630); /* OGP比率 */
    padding-bottom: calc(100% / 1280 * 720); /* 16:9比率 */
    border-radius: 10px;
    overflow: hidden;
}

.loop .loop-image img {
    position: absolute;
    overflow: hidden;
    object-fit: cover;
    width: 100%;
    height: 100%;
    -webkit-transition: all cubic-bezier(0.190, 1, 0.220, 1) 0.8s;
    -moz-transition: all cubic-bezier(0.190, 1, 0.220, 1) 0.8s;
    -ms-transition: all cubic-bezier(0.190, 1, 0.220, 1) 0.8s;
    transition: all cubic-bezier(0.190, 1, 0.220, 1) 0.8s;
}

.loop .loop-image:hover a {
    opacity: 1;
}

.loop .loop-article:hover .loop-image img {
    -webkit-transform: scale(1.025);
    -moz-transform: scale(1.025);
    -ms-transform: scale(1.025);
    transform: scale(1.025);
}


/* ループヘッダー部分 */
.loop .loop-header {
    padding: 20px 0 0;
}

.loop .loop-header>*:not( :last-child) {
    margin-bottom: 20px;
}

.loop .loop-title {
    font-size: 1em;
    font-weight: bold;
    line-height: 1.5;
}

.loop .loop-title a {
    color: inherit;
    text-decoration: none;
}

.loop .loop-title a:hover {
    opacity: 0.3;
    color: inherit;
}

.loop .loop-meta {
    font-size: 1.4rem;
}

/* インライン配置ver. */
.loop .loop-meta>* {
    display: inline-block;
}

.loop .loop-meta>*:not( :last-child) {
    margin-right: 2em;
}

.loop .loop-date {
    font-family: 'Chillax', sans-serif;
    font-weight: 500;
    letter-spacing: 0.0em;
    opacity: 0.5;
}

.loop .loop-modified_date {
    opacity: 0.5;
}

.loop .loop-category,
.loop .loop-category a {}

.loop .loop-category {
    display: inline-block;
    font-family: 'Chillax', sans-serif;
    font-weight: 500;
}

.loop .loop-category a {
    display: block;
    text-decoration: none;
}

.loop .loop-category a:hover {
    opacity: .5;
}

/* 画像の上に配置ver. */ 
.loop .loop-image .loop-meta {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}
.loop .loop-image .loop-meta .loop-category,
.loop .loop-image .loop-meta .loop-date {
    width: auto;
    height: 32px;
    margin: 0;
    padding: 0.2em 0.75em;
    font-size: 1.4rem;
    line-height: 1;
    display: flex;
    align-items: center;
}

.loop .loop-image .loop-meta .loop-category {
    background-color: var(--color-primary);
    color: #fff;
}

.loop .loop-image .loop-meta .loop-category a {
    color: #fff;
}

.loop .loop-image .loop-meta .loop-category a:hover {
    opacity: 0.5;
}
.loop .loop-image .loop-meta .loop-date {
    background-color: #fff;
    color: var(--color-primary);
}

/* 囲みver. 
.loop .loop-category a {
    display: block;
	text-decoration: none;
    padding: 0.5em 1em;
    background-color: var(--color-primary);
	color: #fff;
}
.loop .loop-category a:hover {
	opacity: .5;
}
*/

ul.list-tag {
    font-size: 0;
    letter-spacing: 0;
}

/* 囲みver.
ul.list-tag li {
	display: inline-block;
	margin: 0 10px 10px 0;
	font-size: 1.2rem;
}
ul.list-tag li a {
	display: block;
	padding: 0.5em 1.5em;
	line-height: 1;
	font-weight: normal;
	text-decoration: none;
	background-color: var(--color-primary);
	border: solid 0 #333;
	color: #444;
	border-radius: 1.5em;
}
ul.list-tag li a:before {
	content: "#";
}
ul.list-tag li a:hover {
	opacity: 1;
	border-color: #666666;
	background-color: var(--color-primary);
	color: #fff;
}
*/

/* ハッシュタグver. */
ul.list-tag li {
    display: inline-block;
    margin: 0 10px 10px 0;
    font-size: 1.4rem;
    line-height: 1.5;
}

ul.list-tag li a {
    display: block;
    line-height: 1;
    font-weight: normal;
    text-decoration: none;
    color: var(--color-text-basic);
    opacity: 0.75;
}

ul.list-tag li a:before {
    content: "#";
}

ul.list-tag li a:hover {
    color: var(--color-primary);
}

.loop .loop-content {
    display: none;
    margin: 1em 0 0;
    font-size: 0.9em;
}

.loop .loop-content p {
    line-height: 1.8;
}

.loop .loop-content p:not( :last-child) {
    margin-bottom: 0.75em;
}

.loop .loop-more {
    display: none;
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .loop .loop-article:nth-child(1)::before {
        top: -7px;
        left: -7px;
        width: 48px;
        height: 48px;
        font-size: 10px;
    }
    .loop .loop-image .category {
        margin: 0;
    }

    .loop .loop-image .category a {
        font-size: .9rem;
    }

    .loop .loop-meta {
        font-size: 1.2rem;
    }

    .loop .loop-meta>*:not( :last-child) {
        margin-right: 1.5em;
    }
    .loop .loop-image .loop-meta .loop-category,
    .loop .loop-image .loop-meta .loop-date {
        height: 24px;
        font-size: .9rem;
    }

    .loop .loop-title {
        font-size: 1.25em;
    }

    ul.list-tag li {
        font-size: .9rem;
    }

    ul.list-tag li {
        margin: 0 10px 5px 0;
    }

    ul.list-tag li a {}

    .loop .loop-content {
        font-size: 1em;
    }

}


/* =LOOP TYPE - MAIN [メインでよく使う基本的なループ]
----------------------------------------------------- */
.loop.loop-type-main {}

.loop.loop-type-main .loop-article {}

.loop.loop-type-main .loop-image {}

.loop.loop-type-main .loop-image img {}

.loop.loop-type-main .loop-image img:hover {}

.loop.loop-type-main .loop-header {}

.loop.loop-type-main .loop-header>*:not( :last-child) {}

.loop.loop-type-main .loop-meta {}

.loop.loop-type-main .loop-date {}

.loop.loop-type-main .loop-category {}

.loop.loop-type-main .loop-category a {}

.loop.loop-type-main .loop-tag {}

.loop.loop-type-main .loop-tag ul.list-tag li {}

.loop.loop-type-main .loop-tag ul.list-tag li a {}

.loop.loop-type-main .loop-tag ul.list-tag li a:hover {}


@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .loop.loop-type-main {}

    .loop.loop-type-main .loop-article {
        width: 100%;
        margin: 0 0 4vw;

        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .loop.loop-type-main .loop-article:last-child {
        border-bottom: none;
    }

    .loop.loop-type-main .loop-image {
        width: 50%;
    }

    .loop.loop-type-main .loop-header {
        width: calc(100% - 50% - 4vw);
        padding: 0;
    }

    .loop.loop-type-main .loop-image {
        padding-bottom: 20vw;
        padding-bottom: 25vw;
    }

    .loop.loop-type-main .loop-header {
        margin-top: 0;
    }


    .loop.loop-type-main .loop-header>*:not( :last-child) {
        margin-bottom: 10px;
    }

    .loop.loop-type-main .loop-date {
        font-size: 1.2rem;
    }

    .loop.loop-type-main .loop-category {}

    .loop.loop-type-main .loop-title {
        font-size: 1.2rem;
    }

    .loop.loop-type-main .loop-content {
        display: none;
        font-size: 9px;
    }

    .loop.loop-type-main .loop-tag ul.list-tag li {
        font-size: .9rem;
    }
}


/* =TYPE : FOCUS  [優劣を付けたループ(PC ONLY)]
----------------------------------------------------- */
@media screen and (min-width: 800px) {
    .loop.loop-type-focus {
        position: relative;
        margin: 0 -25px -25px 0;
        width: calc(100% + 25px);
        padding-left: 540px;
        min-height: 590px;
    }

    .loop.loop-type-focus .loop-article {
        margin: 0 25px 25px 0;
        width: calc(50% - 25px);
    }

    .loop.loop-type-focus .loop-article .loop-title {}

    .loop.loop-type-focus .loop-article:nth-child(1) {
        position: absolute;
        top: 0;
        left: 0%;
        width: 480px;
    }

    .loop.loop-type-focus .loop-article:nth-child(1):last-child {
        position: relative;
        top: 0;
        left: -540px;
    }

    .loop.loop-type-focus .loop-article:nth-child(1) .loop-image {
        padding-bottom: 100%;
    }

    .loop.loop-type-focus .loop-article:nth-child(1) .loop-title {}

    .loop.loop-type-focus .loop-article:nth-child(n+2) .loop-header {}

    .loop.loop-type-focus .loop-article:nth-child(n+2) .loop-tag,
    .loop.loop-type-focus .loop-article:nth-child(n+2) .loop-content {
        display: none;
    }

    .loop.loop-type-focus .loop-article:nth-child(n+2) .loop-title {
        margin-bottom: 0;
        font-size: 1.6rem;
    }
}


/*
-----------------------------------------------------

	=FRONTPAGE (TOP)

-----------------------------------------------------
*/

/* TOPページのメインコンテンツ背景 */
#container.top {}

#main.u-toppage {
    position: relative;
    z-index: 2;
    background-color: #fff;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 1600px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {}


/*
-----------------------------------------------------

    =TOP - COMMON PARTS

----------------------------------------------------- 
*/

/* ドットなど装飾オブジェクト 
----------------------------------------------------- */
.c-object-layer {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.c-object-layer .c-object {
    position: absolute;
	-webkit-animation: floatingEffect 8s infinite;
	animation: floatingEffect 8s infinite;
}

.c-object-layer .c-object img {
    max-width: inherit;
}

@keyframes floatingEffect {
	0% {
		margin: 0 0 0 0;
	}
	25% {
		margin: 12px 11px 4px -3px;
	}
	50% {
		margin: 6px 1px 1px 10px;
	}
	75% {
		margin: 4px 16px 0px -4px;
	}
	100% {
		margin: 0 0 0 0;
	}
}


@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-object-layer .c-object img {
        zoom: 0.3;
    }
}


/* 角丸のセクション枠 
----------------------------------------------------- */
.c-rounded-wrapper {
    position: relative;
    z-index: 2;
    top: -40px;
    border-radius: 40px;
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-rounded-wrapper {
        border-radius: 20px;
    }
}

/*
-----------------------------------------------------

    =TOP - BACKGROUND (VIDEO)

----------------------------------------------------- 
*/
/* TOPページのファーストビュー（下層「採用情報」ページでも共通） */
.l-top-bg {
    position: fixed;
    z-index: 1;
    overflow: hidden;
    width: calc(100%);
    height: 100vh;
    min-height: 500px;
    background-color: #000;
}

.footer-is-show .l-top-bg {
    opacity: 0;
    pointer-events: none;
}

.l-top-bg::before {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 30%;
    background-image: -moz-linear-gradient( 90deg, rgba(0,0,0,0) 0%, rgb(0,0,0) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgba(0,0,0,0) 0%, rgb(0,0,0) 100%);
    background-image: -ms-linear-gradient( 90deg, rgba(0,0,0,0) 0%, rgb(0,0,0) 100%);
    pointer-events: none;
    opacity: 0.35;
}

.l-top-bg .l-video {
    position: absolute;
    z-index: -2;
    width: 100%;
    height: 100%;
    background-color: #000;
}

.l-top-bg .l-video::before {}

.l-top-bg .l-video video,
.l-top-bg .l-video img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}


@media screen and (min-width: 800px) {}

@media screen and (min-width: 1600px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-top-bg {
        height: 100vh;
        height: 100dvh;
        min-height: inherit;
    }
}


/*
-----------------------------------------------------

    =TOP - FIRSTVIEW

----------------------------------------------------- 
*/
/* TOPページのファーストビュー */
.l-top-fv {
    position: relative;
    z-index: 9;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    min-height: 500px;
    background-color: transparent;
}

.l-top-fv::before {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 800px) {
    .l-top-fv .c-wrapper {
        padding: 6.25vw;
    }
}

@media screen and (min-width: 1200px) {
    .l-top-fv .c-wrapper {
        padding: 0;
    }
}

@media screen and (min-width: 1600px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-top-fv {
        width: 100vw;
        height: 100dvh;
        margin-bottom: 0;
        min-height: auto;
        overflow: hidden;
    }
}

/* FIRSTVIEW - CONTENT */
.l-top-fv .l-content {
    position: absolute;
    z-index: 3;
    width: 100%;
    left: 0;
    bottom: 0;
    margin: 100px;
    display: flex;   
    justify-content: flex-end;
}

.l-top-fv .l-content .l-tagline {
    position: relative;
    width: 100%;
    color: var(--color-yellow);
}

.l-top-fv .l-content .l-tagline .l-text {
    -webkit-transition: 1s cubic-bezier(0.19, 1, 0.22, 1) 1.2s;
    -moz-transition: 1s cubic-bezier(0.19, 1, 0.22, 1) 1.2s;
    -ms-transition: 1s cubic-bezier(0.19, 1, 0.22, 1) 1.2s;
    -o-transition: 1s cubic-bezier(0.19, 1, 0.22, 1) 1.2s;
    transition: 1s cubic-bezier(0.19, 1, 0.22, 1) 1.2s;
}

.l-top-fv .l-content .l-tagline .l-text01 {}

.l-top-fv .l-content .l-tagline .l-text02 {
    margin: 0 0 0.25em;
    font-size: 8.0rem;
    font-weight: bold;
    line-height: 1.05;
}

.l-top-fv .l-content .l-tagline .l-text03 {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.25;
    font-family: 'Chillax', sans-serif;
}


@media screen and (min-width: 800px) {}

@media screen and (min-width: 1600px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-top-fv .l-content {
        margin: 0;
        width: 100vw;
        padding: 6.25vw;
    }

    .l-top-fv .l-content .l-tagline .l-text01 {
        font-size: 5.3vw;
    }
    .l-top-fv .l-content .l-tagline .l-text02 {
        font-size: 9vw;
    }

    .l-top-fv .l-content .l-tagline .l-text03 {
        font-size: 1.8rem;
    }

}

/* FIRSTVIEW - SCROLL */
.l-top-fv .l-scroll {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.l-top-fv .l-scroll .wrapper {
    position: relative;
    width: 92%;
    height: 100%;
}
.l-top-fv .l-scroll .scroll-text {
    position: absolute;
    bottom: -100px;
    right: 50px;
    width: 1px;
    height: 200px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
.l-top-fv .l-scroll .scroll-text::before {
    position: absolute;
    top: -6em;
    left: -0.5em;
    content: "SCROLL";
    color: #fff;
    font-family: 'Chillax', sans-serif;
    font-size: 1.0rem;
    font-weight: bold;
    letter-spacing: 0.20em;
    line-height: 1;
}
.l-top-fv .l-scroll .scroll-text::after {
    position: absolute;
    left: 0;
    content: "";
    width: 1px;
    height: 0;
    background-color: #fff;
    -webkit-animation: scrollEffect 4s infinite;
    animation: scrollEffect 4s infinite;
}
@keyframes scrollEffect {
    20% {
        height: 0%;
    }
    35% {
        height: 100%;
    }
    85% {
        height: 100%;
    }
    100% {
        height: 0%;
    }
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-top-fv .l-scroll {
        display: none;
    }
}

/* FIRSTVIEW - OTHER */
.l-top-fv .c-object-layer {}
.l-top-fv .c-object-layer .l-object01 {
    top: 12%;
    right: 5%;
}


/*
-----------------------------------------------------

    =TOP - ABOUT

----------------------------------------------------- 
*/
.l-top-intro {
    position: relative;
    overflow: hidden;
    z-index: 2;
    color: #fff;
}

.l-top-intro::before {
    background-color: #000;
}

.l-top-intro .l-large-letters {
    position: absolute;
    z-index: 1;
    top: 0;
    left: -10px;
    width: 380px;
}

.l-top-intro .l-title {
    font-size: 11.2rem;
    font-weight: bold;
    letter-spacing: -0.05em;
}

.l-top-intro .c-featured-text p {}

.l-top-intro .l-main-content {
    padding-left: 240px;
}

@media screen and (min-width: 800px) {
    .l-top-intro .c-section {
        padding: 400px 0;
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-top-intro .c-section {
        padding: 200px 0;
    }

    .l-top-intro .l-main-content {
        padding-left: 0;
    }

    .l-top-intro .l-large-letters {
        display: none;
    }

}


/* ドット装飾 
----------------------------------------------------- */
.l-top-intro .c-section {
    position: relative;
    z-index: 2;
}
.l-top-intro .c-object-layer {}
.l-top-intro .c-object-layer .l-object01 {
    top: 0%;
    left: 60%;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-top-intro .c-object-layer .l-object01 {
        top: -20%;
        left: 20%;
    }
}


/*
-----------------------------------------------------

    =TOP - NEWS

----------------------------------------------------- 
*/
.l-top-news {
    position: relative;
    z-index: 3;
    overflow: hidden;
    background-color: #fff;
}

.l-top-news .c-title-section {
    margin-bottom: 0;
}

@media screen and (min-width: 800px) {
    .l-top-news .c-image-content {
        align-items: flex-end;
    }

    .l-top-news .c-image-content>.c-image {
        width: 50%;
    }

    .l-top-news .c-image-content>.c-content {
        width: 50%;
    }

    .l-top-news ul.c-list-news-archive {
        margin-right: -10px;
        /* text-align: right; */
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {}

/* ドット装飾 
----------------------------------------------------- */
.l-top-news .c-section {
    position: relative;
    z-index: 1;
}

.l-top-news .l-object01 {
    top: 40%;
    left: -5%;
}

.l-top-news .l-object02 {
    top: 0%;
    right: -45%;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-top-news .l-object01,
    .l-top-news .l-object02 {
        display: none;
    }
}


/*
-----------------------------------------------------

    =TOP - INTRO2

----------------------------------------------------- 
*/
.l-top-intro2 {
    position: relative;
    z-index: 1;
    margin-top: calc(-40px * 2);
    background: url(assets/images/object-wakuwaku-outline.webp) repeat-y center top fixed;
    background-size: 960px auto;
    overflow: hidden;
}

.l-top-intro2::before {}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-top-intro2 {
        background: url(assets/images/object-wakuwaku-outline.webp) repeat-y center top;
        background-size: 80vw auto;
    }
}

/* カバー部分
----------------------------------------------------- */
.l-top-intro2 .c-cover-image {
    position: relative;
}

.l-top-intro2 .c-cover-image img {
    position: relative;
    z-index: -1;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {}

/* ループするテキスト
----------------------------------------------------- */
.l-top-intro2 .loop-animation-background {
    position: relative;
    z-index: 3;
    height: calc(237px / 2);
	background-image: url(assets/images/object-large-letters-white.webp);
    background-size: auto 100%;
    animation-name: loop-animation-large-letters-left;
}

.l-top-intro2 .loop-animation-background.u-part01 {
    position: absolute;
    bottom: 0;
    margin: 0 0 20px;
}

.l-top-intro2 .loop-animation-background.u-part02 {
    margin: 20px 0 0;
	background-image: url(assets/images/object-large-letters-black.webp);
    animation-name: loop-animation-large-letters-right;
}


@keyframes loop-animation-large-letters-left {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: -2860px;
    }
}
@keyframes loop-animation-large-letters-right {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: 2860px;
    }
}

@media screen and (min-width: 800px) {
    .l-top-intro2 .loop-animation-background {
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-top-intro2 .loop-animation-background {
        margin: 0 0;
        height: calc(237px / 5);
    }

    .l-top-intro2 .loop-animation-background.u-part01 {
        margin: 0 0 5px;
    }

    .l-top-intro2 .loop-animation-background.u-part02 {
        margin: 5px 0 0;
    }
}



/* ギャラリー部分
----------------------------------------------------- */
.l-top-intro2 .l-intro2-gallery {
    position: relative;
    z-index: -1;
}
.l-top-intro2 .l-intro2-gallery .l-image {
    position: absolute;
    z-index: 1;
    display: block;
    border-radius: 15px;
    overflow: hidden;
}

.l-top-intro2 .l-intro2-gallery .l-image img {
    max-width: none;
}

.l-top-intro2 .l-intro2-gallery.u-part01 {
    height: 540px;
}
.l-top-intro2 .l-intro2-gallery.u-part01 .l-image {}
.l-top-intro2 .l-intro2-gallery.u-part02 {
    height: 0;
}
.l-top-intro2 .l-intro2-gallery.u-part02 .l-image {}
.l-top-intro2 .l-intro2-gallery.u-part03 {
    height: 690px;
}
.l-top-intro2 .l-intro2-gallery.u-part03 .l-image {}

.l-top-intro2 .l-intro2-gallery .l-image01 {
    top: 150px;
    left: -190px;
}

.l-top-intro2 .l-intro2-gallery .l-image02 {
    z-index: 2;
    top: 0;
    left: 260px;
}

.l-top-intro2 .l-intro2-gallery .l-image03 {
    top: 100px;
    left: 630px;
}

.l-top-intro2 .l-intro2-gallery .l-image04 {
    top: 230px;
    left: 900px;
}

.l-top-intro2 .l-intro2-gallery .l-image05 {
    top: 50px;
    left: 1070px;
}

.l-top-intro2 .l-intro2-gallery .l-image06 {
    top: 370px;
    left: -190px;
}

.l-top-intro2 .l-intro2-gallery .l-image07 {
    top: 90px;
    left: -200px;
}

.l-top-intro2 .l-intro2-gallery .l-image08 {
    top: 0px;
    left: 680px;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-top-intro2 .l-intro2-gallery .l-image {
        border-radius: 5px;
    }

    .l-top-intro2 .l-intro2-gallery .l-image img {
        max-width: 100%;
    }

    .l-top-intro2 .l-intro2-gallery.u-part01 {
        height: 300px;
    }
    .l-top-intro2 .l-intro2-gallery.u-part01 .l-image {}
    .l-top-intro2 .l-intro2-gallery.u-part01 .l-image img {
        max-width: none;
        zoom: 0.24;
    }

    .l-top-intro2 .l-intro2-gallery .l-image01 {
        top: 150px;
        left: -40px;
    }

    .l-top-intro2 .l-intro2-gallery .l-image02 {
        z-index: 2;
        top: 0;
        left: 40px;
    }

    .l-top-intro2 .l-intro2-gallery .l-image03 {
        top: 20px;
        left: 61%;
    }

    .l-top-intro2 .l-intro2-gallery .l-image04 {
        top: 180px;
        left: 70%;
    }

    .l-top-intro2 .l-intro2-gallery.u-part02 {
        height: 200px;
    }
    .l-top-intro2 .l-intro2-gallery.u-part02 .l-image {}
    .l-top-intro2 .l-intro2-gallery.u-part02 .l-image img {
        max-width: none;
        zoom: 0.24;
    }

    .l-top-intro2 .l-intro2-gallery .l-image05 {
        top: 50px;
        left: 60%;
    }

    .l-top-intro2 .l-intro2-gallery .l-image06 {
        top: 30px;
        left: 0px;
    }
    .l-top-intro2 .l-intro2-gallery.u-part03 {
        height: auto;
    }
    .l-top-intro2 .l-intro2-gallery.u-part03 .l-image {
        position: relative;
    }


    .l-top-intro2 .l-intro2-gallery .l-image07 {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 20px;
    }

    .l-top-intro2 .l-intro2-gallery .l-image08 {
        display: none;
        position: relative;
        top: 0px;
        left: 0;
    }


}

/* 見出し＋本文パート
----------------------------------------------------- */

.l-top-intro2 .l-main-content {
    text-align: center;
}

.l-top-intro2 .c-featured-text p {}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {}


/* ドット装飾 
----------------------------------------------------- */
.l-top-intro2 .c-section {
    position: relative;
    z-index: 2;
}
.l-top-intro2 .c-object-layer {}
.l-top-intro2 .c-object-layer .l-object01 {
    top: 40%;
    left: 60%;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {}



/*
-----------------------------------------------------

    =TOP - MESSAGE

----------------------------------------------------- 
*/
.l-top-message {
    position: relative;
    z-index: 2;
    background-image: -moz-linear-gradient( 90deg, rgb(200,163,226) 0%, rgb(216,121,178) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(200,163,226) 0%, rgb(216,121,178) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(200,163,226) 0%, rgb(216,121,178) 100%);
    color: #fff;
    overflow: hidden;
}

.l-top-message::before {}

.l-top-message .l-cover {
    position: relative;
}

.l-top-message .l-cover::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -100px;
    left: 300px;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.1;
}


@media screen and (min-width: 800px) {
    .l-top-message .c-section {
        padding: 160px 0;
    }

    .l-top-message .l-main-content .c-image-content {
        align-items: flex-start;
    }

    .l-top-message .l-main-content .c-image-content>.c-image {
        z-index: 1;
        width: 960px;
        margin: 0 -240px 0 -120px;
    }

    .l-top-message .l-main-content .c-image-content>.c-content {
        z-index: 2;
        width: 1000px;
        margin: 0 -240px 0 0;
    }

    .l-top-message .c-title-section {
        position: relative;
        left: -60px;
        margin-bottom: .75em;
    }

    .l-top-message .c-title-main {
        margin-bottom: 1.5em;
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-top-message::before {
        background-position: right 0 top 25%;
        background-size: 90vw auto;
    }

    .l-top-message .l-main-content .c-image-content>.c-image {
        width: calc(100vw - 10vw);
        max-width: 100vw;
        margin: 0 10vw 0 auto;
    }

    .l-top-message .l-main-content .c-image-content>.c-content {
        width: 100%;
        margin: 6.25vw 0;
    }
}

/* 共通パーツ - 署名（※下層ページでも共通）
----------------------------------------------------- */
.c-name-sign {
    margin: 0 0 4em;
    font-weight: 500;
}

.c-name-sign .sub {}

.c-name-sign .main {
    font-size: 2.4rem;
}

.c-name-sign .main .japanese {}
.c-name-sign .main .english {
    display: inline-block;
    margin-left: 1em;
    font-family: 'Chillax', sans-serif;
    font-size: 2.0rem;
    font-weight: normal;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-name-sign .main img {
        zoom: 0.25;
    }

    .c-name-sign .main {
        font-size: 1.5em;
    }
}


.c-name-sign.u-vertical>* {
    display: block
}

.c-name-sign.u-vertical .main {
    margin: 0.35em 0 0;
    line-height: .9;

    padding-top: 0 !important;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {}


/* ドット装飾 
----------------------------------------------------- */
.l-top-message .c-section {
    position: relative;
    z-index: -1;
}
.l-top-message .c-object-layer {}
.l-top-message .c-object-layer .l-object01 {
    top: 6%;
    left: -10%;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {}



/*
-----------------------------------------------------

    =TOP - SERVICES

----------------------------------------------------- 
*/
.l-top-services {
    position: relative;
    z-index: 3;
    overflow: hidden;
    background-color: #f5f4f0;
    padding-top: 20px;
}

.l-top-services .c-title-section {
    margin-bottom: 0;
}

.l-top-services .l-main-content {
    padding: 20px 0 0;
}

@media screen and (min-width: 800px) {
    .l-top-services .c-section {
        padding: 60px;
    }
    .l-top-services .c-section .c-wrapper {
        width: 100%;
    }

    .l-top-services .l-main-content {
        padding-top: 0;
    }

    .l-top-services .c-image-content {
        align-items: flex-end;
    }

    .l-top-services .c-image-content>.c-image {
        width: 50%;
    }

    .l-top-services .c-image-content>.c-content {
        width: 50%;
    }

    .l-top-services ul.c-list-news-archive {
        margin-right: -10px;
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-top-services {
        padding-top: 10px;
    }
}


/* 3枚横並びギャラリー ※下層ページでも共通
----------------------------------------------------- */
.c-gallery-fill {
    margin: 0 -20px;
}
.c-gallery-fill .c-gallery {
    overflow: hidden;
    border-radius: 15px;
    margin: 0 10px;
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-gallery-fill {
        margin: 0 -20px;
    }
    .c-gallery-fill .c-gallery {
        margin: 0 5px;
        border-radius: 10px;
    }
}


/* サービスラインナップ 01 ~ 04 
----------------------------------------------------- */
.l-services-lineup {}
.l-services-lineup .l-lineup {
    border-radius: 30px;
    background-color: rgb(255, 255, 255);
    box-shadow: 10px 17.321px 50px 0px rgba(0, 0, 0, 0.08);
}
.l-services-lineup .l-lineup .l-inner {
    padding: 70px;
}

.l-services-lineup .l-lineup .l-inner .l-cover {
    margin-bottom: 2em;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-services-lineup .l-lineup .l-inner {
        padding: 6.25vw;
    }
}

.l-title-services-english {
    margin: 0 0 0.5em;
    color: var(--color-primary);
    font-family: 'Chillax', sans-serif;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.2;
}
.l-title-services-english .main {
    display: inline-block;
    vertical-align: middle;
    font-size: 8.4rem;
    font-size: 5.4rem;
    
    margin-right: 20px;
}
.l-title-services-english .sub {
    display: inline-block;
    vertical-align: middle;
}
@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-title-services-english {
        margin: 0 0 1.0rem;
        font-size: 1em;
    }
    .l-title-services-english .main {
        font-size: 3.6rem;
        font-size: 2.6rem;
    }
}

.l-title-services-category {
    margin: 0 0 0.5em;
    display: inline-block;
    padding: 0.35em 1em;
    border-radius: 10px;
    border: solid 1px var(--color-primary);
    color: var(--color-primary);
    font-size: .95em;
}
.l-title-services-category .japanese {}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-title-services-category {
        margin: 0 0 1.0rem;
        padding: 0.25em 1.0em;
        border-radius: 5px;
        font-size: 1.0rem;
    }
}


.l-title-services-japanese {
    margin: 0 0 0.75em;
    font-size: 3.6rem;
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.5;
}
.l-title-services-japanese .japanese {}


@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-title-services-japanese {
        font-size: 1.8rem;
    }
}



/*
-----------------------------------------------------

    =TOP - RECRUIT

----------------------------------------------------- 
*/
.l-top-recruit {
    position: relative;
    z-index: 3;
    overflow: hidden;
    background-color: #fff;
    padding-top: 60px;
}

.l-top-recruit .l-main-content {
    padding: 20px 0;
}

@media screen and (min-width: 800px) {
    .l-top-recruit .c-section {}

    .l-top-recruit .c-image-content {
        align-items: flex-start;
    }

    .l-top-recruit .c-image-content>.c-image {
        width: 60%;
    }

    .l-top-recruit .c-image-content>.c-content {
        width: calc(100% - 60%);
        padding-left: 60px;
        border-left: solid 1px var(--color-secondary);
    }

    .l-top-recruit ul.c-list-news-archive {
        margin-right: -10px;
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-top-recruit {
        padding-top: 0;
        padding-bottom: 6.25vw;
    }

    .l-top-recruit .c-section {
        padding-bottom: 0;
    }

    .l-top-recruit .l-cover {
        margin: 0;
        width: 100vw;
        border-radius: 0 0 10px 10px;
        background-color: #f5f4f0;
    }

    .l-top-recruit .l-cover .c-cover-image {
        overflow: hidden;
        border-radius: 10px;
    }
    .l-top-recruit .l-cover .c-cover-image img {
        width: 100%;
        max-width: none;
    }
}


/* ループするテキスト
----------------------------------------------------- */
.l-top-recruit .loop-animation-background {
    position: relative;
    z-index: 3;
    height: calc(540px / 1);
	background-image: url(assets/images/top-recruit-gallery.webp);
    background-size: auto 100%;
    animation-name: loop-animation-top-recruit;

    margin-bottom: 80px;
}

@keyframes loop-animation-top-recruit {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: -2900px;
    }
}
@media screen and (min-width: 800px) {
    .l-top-recruit .loop-animation-background {}
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-top-recruit .loop-animation-background {
        margin: 0;
        height: calc(540px / 3);

        animation-duration: 126s;
    }
}


/*
-----------------------------------------------------

    =COMMON PARTS - ACTION - CONTACT

----------------------------------------------------- 
*/

/* アクション - お問い合わせ */
.l-action-contact {
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.l-action-contact::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--color-footer-black);
}

.l-action-contact-main {
    position: relative;
    background: url(assets/images/action-contact-bg.webp) no-repeat center top;
    background-size: cover;
    color: #fff;
    margin: 0 20px;
    border-radius: 40px;
    overflow: hidden;
    text-align: center;
}

.l-action-contact-main .l-main-content {}

.l-action-contact-main .l-main-content .l-title {
    display: inline-block;
    margin: 0 0 1.25em;
    padding-left: 180px;
    background: url(assets/images/logo-vertical-white.webp) no-repeat left center;
    background-size: 155px auto;
    font-size: 6.4rem;
    font-weight: bold;
    line-height: 1.2;
}
.l-action-contact-main .l-main-content .l-title .japanese {
    display: block;
    text-align: left;
}
.l-action-contact-main .l-main-content .l-title .english {
    display: block;
    text-align: left;
    font-family: 'Chillax', sans-serif;
    font-size: 1.6rem;    
    font-weight: 600;
    margin-top: 0.5em;
}

.l-action-contact-main .l-main-content .l-button a {
    -webkit-transition: all ease-out 0.4s;
    -moz-transition: all ease-out 0.4s;
    -ms-transition: all ease-out 0.4s;
    transition: all ease-out 0.4s;
}

.l-action-contact-main .l-main-content .l-button a:hover {
    filter: brightness(1.25);
    opacity: 1;
}

@media screen and (min-width: 800px) {
    .l-action-contact-main .c-section {
        padding: 15vw 40px 5vw;
    }

    .l-action-contact-main .c-wrapper {
        width: 1600px;
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-action-contact-main {
        border-radius: 20px;
    }
    .l-action-contact-main .c-section {
        padding: 30vw 0 5vw;
    }

    /* 縦書き・センター寄せver.
    .l-action-contact-main .l-main-content .l-title  {
        display: inline-block;
        margin: 0 0 1.25em;
        padding-left: 0;
        padding-top: 65px;
        background: url(assets/images/logo-vertical-white.webp) no-repeat center top;
        background-size: 55px auto;
        font-size: 2.0rem;
    }

    .l-action-contact-main .l-main-content .l-title .japanese {
        text-align: center;
    }

    .l-action-contact-main .l-main-content .l-title .english {
        text-align: center;
        font-size: 1.2rem;    
        margin-top: 0.5em;
    } */

    .l-action-contact-main .l-main-content .l-title  {
        display: inline-block;
        margin: 0 0 1.0em;
        padding-left: 65px;
        background-size: 55px auto;
        font-size: 2.0rem;
    }

    .l-action-contact-main .l-main-content .l-title .japanese {}

    .l-action-contact-main .l-main-content .l-title .english {
        font-size: 1.2rem;    
        margin-top: 0.5em;
    }
}


/*
-----------------------------------------------------

	=SUBPAGES
		FIRSTVIEW
        COMMON PARTS - LAYOUT & BACKGROUND
        COMMON PARTS - HEADING
        COMMON PARTS - BUTTON

-----------------------------------------------------
*/

/*
-----------------------------------------------------

    =SUBPAGES - COMMON PARTS

----------------------------------------------------- 
*/
/* =SUBPAGES - COMMON PARTS - LAYOUT & BACKGROUND
----------------------------------------------------- */
#container.sub {}

#main.u-subpage {
    position: relative;
}

#main.u-subpage::before {
    content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    #container.sub {
        overflow: hidden !important;
    }

    #container.sub .c-sticky-heading {
        display: none !important;
    }

    #main.u-subpage::before {
        background-position: right top 20vh;
        background-size: 34vw auto;
    }
}

/* =SUBPAGES - COMMON PARTS - FIRSTVIEW
----------------------------------------------------- */
/* 下層ページ冒頭 - 見出し */
.l-sub-fv {
    position: relative;
    z-index: 1;
}

.l-sub-fv .l-title {
    margin-bottom: 0;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {}

/* =SUBPAGES - COMMON PARTS - BREADCRUMBS
----------------------------------------------------- */
/* パンくずリスト */
#breadcrumbs {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.0em;
    text-align: right;
}

#breadcrumbs,
#breadcrumbs a {
    color: inherit;
}

#breadcrumbs a {
    display: inline-block;
    font-family: heisei-kaku-gothic-std, 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo", "メイリオ", sans-serif, serif;
    text-decoration: none;
    border-bottom: solid 1px var(--color-primary);
    color: var(--color-primary);
}

#breadcrumbs a:hover {
    border-bottom: solid 1px transparent;
}

#breadcrumbs .l-inner {
    padding: 30px;
}


#breadcrumbs p {
    line-height: 2;
}

#breadcrumbs a {
    line-height: 2;
}

#breadcrumbs p>span>span:first-child {
    position: relative;
    display: inline-block;
    visibility: visible;
    padding-left: 1.25em;
}

#breadcrumbs p>span>span:first-child::before {
    content: "";
    position: absolute;
    top: .65em;
    left: 0;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: var(--color-primary);
}

#breadcrumbs p>span {
    font-family: serif;

    position: relative;
    visibility: hidden;
}

#breadcrumbs p>span>span {}

#breadcrumbs p>span a,
#breadcrumbs p>span span.breadcrumb_last {
    font-family: neue-haas-grotesk-display, 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo", "メイリオ", sans-serif, serif;
    display: inline-block;

    position: relative;
    visibility: visible;
}

#breadcrumbs p>span a::before {
    content: "";
    position: absolute;
    top: 0;
    right: -2em;
    bottom: 0;
    width: 5px;
    height: 5px;
    margin: auto;
    border-radius: 50%;
    background-color: var(--color-text-basic);
}

#breadcrumbs p>span span.breadcrumb_last {}

#breadcrumbs p>span a:first-child {}

@media screen and (min-width: 800px) {
    #breadcrumbs {}
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    #breadcrumbs {
        margin: 0 0 6.25vw;
        margin: 0;
        font-size: .85rem;
        letter-spacing: -0.075em;
    }

    #breadcrumbs .l-inner {
        padding: 0 6.25vw;
        width: auto;
        max-width: inherit;
    }

    #breadcrumbs p>span>span:first-child {
        padding-left: 14px;
        background-size: 10px auto;
    }

    #breadcrumbs p>span>span:first-child::before {
        width: 8px;
        height: 8px;
    }

    #breadcrumbs p>span a::before {
        width: 3px;
        height: 3px;
    }
}




/* =SUBPAGES - COMMON PARTS - HEADING
----------------------------------------------------- */

/* =SUBPAGES - COMMON PARTS - OTHER
----------------------------------------------------- */

/*
-----------------------------------------------------

	=COMMON PARTS - ARTICLE
    ※ 募集要項などでも一部共通

-----------------------------------------------------
*/

/* 記事本文中のスタイル
----------------------------------------------------- */
.article {}

/* ARTICLE - HEADER
----------------------------------------------------- */
.article .article-header {
    margin-bottom: 2em;

    position: static;
}

.article .article-header>*:not( :last-child) {
    margin-bottom: 25px;
}

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

.article .article-header:after {
    content: ".";
    display: block;
    height: 0px;
    font-size: 0;
    clear: both;
    visibility: hidden;
}

.article .article-title {
    margin: 0 0 0.75em;
    font-size: 2em;
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 1.6;

    padding-bottom: 0.25em;
    border-bottom: 3px solid #bc82e8;
}

.article .article-meta {
    font-size: 1em;
}

.article .article-meta:not( :last-child) {
    margin-bottom: 25px;
}

.article .article-meta>* {
    display: inline-block;
}

.article .article-meta>*:not( :last-child) {
    margin-right: 2em;
    padding-right: 0;
    border-right: solid 0 rgba(68, 68, 68, 0.5);
}

.article .article-date {
    color: var(--color-text-basic);
    opacity: 0.5;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: 600;
    letter-spacing: 0.10em;
}

.article .article-modified_date {
    color: #aaa;
    font-size: 1.2rem;
}

.article .article-category {
    display: inline-block;
    font-weight: bold;
    text-transform: uppercase;
}

.article .article-category a {
    display: block;
    color: var(--color-primary);
    text-decoration: none;
}

.article .article-category a:hover {
    opacity: .5;
    border-color: transparent;
}

.article .article-meta ul.list-tag li {}

.article .article-meta ul.list-tag li a {}

.article .article-meta ul.list-tag li a:hover {}

.article .article-header ul.c-list-share {
    margin-top: 60px;
}

.article .article-summary {
    font-size: 80%;
}

.article .article-summary p {
    font-size: 1.5rem;
    line-height: 1.75;
    letter-spacing: 0;
}

.article .article-readingtime {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 1em 1.5em;
    font-size: 90%;
    font-weight: bold;
    color: #aaa;
}

.article .article-readingtime strong {
    display: inline-block;
    color: #333;
}

@media screen and (min-width: 800px) {
    .article .article-header .c-image-content {
        align-items: flex-start;
    }

    .article .article-header .c-image-content>.c-image {
        width: 300px;
    }

    .article .article-header .c-image-content>.c-content {
        width: calc(100% - 300px - 40px);
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .article {
        box-shadow: none;
    }

    .article .article-image {
        float: none;
        width: 100%;
        height: auto;
        margin: 0 0 2em;
    }

    .article .article-header {
        margin-bottom: 4vw;
    }

    .article .article-header>*:not( :last-child) {
        margin-bottom: 4vw;
    }

    .article .article-title {
        margin-bottom: 4vw;
        font-size: 1.8em;
    }
}


/* ARTICLE - CONTENT
----------------------------------------------------- */
.article .article-content {
    font-size: 1em;
    letter-spacing: 0.00em;
}

.article .article-content p {
    line-height: 2;
}

.article .article-content p:not(:last-child) {
    margin-bottom: 2em;
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .article .article-content {
        font-size: 1.6rem;
    }
}

.article .article-content h1,
.article .article-content h2,
.article .article-content h3,
.article .article-content h4,
.article .article-content h5,
.article .article-content h6 {
    margin: 0 0 1em;
    font-weight: bold;
    line-height: 1.8;
}

.article .article-content h2:not(:first-child),
.article .article-content h3:not(:first-child),
.article .article-content h4:not(:first-child),
.article .article-content h5:not(:first-child),
.article .article-content h6:not(:first-child) {
    margin-top: 2em;
}

.article .article-content h1 {}

.article .article-content h2 {
    position: relative;
    margin: 0 0 1.0em;
    font-size: 170%;
    line-height: 1.6;
    padding-bottom: 0.0em;
    border-bottom: solid 0 #dcdcdc;

    margin-top: 55px;
    margin-bottom: 30px;
    padding: 0.4em;
    border-bottom: 3px solid #000;
    line-height: 1.5;
    background: rgb(186, 135, 239);
    background: linear-gradient(59deg, rgba(186, 135, 239, 1) 0%, rgba(215, 94, 163, 1) 100%);
    color: #fff;
}

.article .article-content h3 {
    position: relative;
    padding-bottom: 0.35em;
    font-size: 140%;
    margin-bottom: 20px;
    margin-top: 40px;
    padding: 0.4em;
    background: rgb(186, 135, 239);
    background: linear-gradient(59deg, rgba(186, 135, 239, 1) 0%, rgba(215, 94, 163, 1) 100%);
    color: #fff !important;
}

.article .article-content h4 {
    font-size: 120%;
}

.article .article-content h5 {
    font-size: 110%;
}

.article .article-content h6 {
    font-size: 100%;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .article .article-content h2 {}
}

/* =Image */
.article .article-content img {}

.article .article-content figure {
    margin: 0 0 2em;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {}

/* =Horizontal Rule */
.article .article-content hr {
    border: none;
    height: 1px;
    background-color: #dcdcdc;
    margin: 5vw auto;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {}

/* =Table */
/* .article .article-content table {
    margin-bottom: 30px;
    border: solid 1px #dcdcdc;
}

.article .article-content tr {
    border: 0;
}

.article .article-content th,
.article .article-content td {
    padding: 0.5em 1.0em;
    border: solid 1px #dcdcdc;
    background-color: rgba(0, 0, 0, 0.025);
}

.article .article-content th {
    background-color: rgba(0, 0, 0, 0.05);
} */

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .article .article-content th {
        min-width: 6em;
    }
}

/* =blockquote */
.article .article-content blockquote:not(:last-child) {
    margin-bottom: 3em;
}

.article .article-content blockquote {
    padding: 1.25em 2em;
    background-color: #f9f9f9;
    border: solid 1px #ececec;
    font-size: 0.91em;
}

.article .article-content blockquote::before {}

.article .article-content blockquote::after {}

.article .article-content blockquote p:not(:last-child) {
    margin-bottom: 1em;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {}

/* Definition List */
.article .article-content dl {
    padding: 1.4em;
    border: solid 3px #000;
}

.article .article-content dl dt,
.article .article-content dl dd {
    margin: 0 auto .7125em;
}

.article .article-content dl dt {
    font-weight: bold;
    font-size: 108%;
}

.article .article-content dl dd {
    padding-left: 1.3125em;
    font-size: 90%;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {}

/* Unordered List */
.article .article-content ul:not([class]) {
    margin-bottom: 3em;
}

.article .article-content ul:not([class]):last-child {
    margin-bottom: 0;
}

.article .article-content ul:not([class]) li {
    margin: 0 0 0.25em;
    position: relative;
    padding-left: 1.25em;
}

.article .article-content ul:not([class]) li::before {
    content: "● ";
    position: absolute;
    left: 0;
    top: 1em;
    color: var(--color-primary);
    font-size: 0.9rem;
}

.article .article-content ul:not([class]) li:last-child {
    margin-bottom: 0;
}

.article .article-content ul:not([class]) li a {}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .article .article-content ul:not([class]) li::before {
        content: "● ";
        position: absolute;
        left: 0;
        top: 0.5em;
    }
}

/* Ordered List */
.article .article-content ol {
    counter-reset: section;
}

.article .article-content ol:not(:last-child) {
    margin-bottom: 3em;
}

.article .article-content ol {}

.article .article-content ol li {
    margin: 0 0 0.25em;
    display: list-item;
    list-style: decimal-leading-zero;
    /*margin-left: 2.1em; */
    padding-left: 1.25em;
    list-style: none;
}

.article .article-content ol>li:before {
    content: counters(section, '-', decimal) '. ';
    counter-increment: section;
    color: var(--color-primary);
}

.article .article-content ol:not([class]) li a {
    text-decoration: none;
}

.article .article-content ol ol {
    margin-left: 1em;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {}

/* Markdown */
.article .article-content mark {
    background-color: inherit;
}

.article .article-content strong {
    font-weight: bold;
}

.article .article-content em {
    font-style: italic;
}

.article .article-content code {
    display: inline-block;
    padding: 0.1em 0.5em;
    color: #e7edf3;
    background-color: #333;
    border-radius: 3px;
    border: solid 1px #d6dde4;
}

.article .article-content kbd {
    display: inline-block;
    margin: 0 0.2em;
    padding: 0.4em 0.6em;
    background-color: #f1f1f1;
    border-bottom: 3px solid #b4b4b4;
    border-radius: 3px;
    vertical-align: middle;
    font-size: 0.9em;
    line-height: 1.1;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {}

/* sup, sub */
.article .article-content sup {
    font-size: 60%;
    vertical-align: top;
    position: relative;
    top: -0.5em;
}

.article .article-content sub {
    font-size: 60%;
    vertical-align: bottom;
    position: relative;
    bottom: -0.5em;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {}


/* ARTICLE - FOOTER
----------------------------------------------------- */
.article-footer {
    background: transparent;
}

.article-footer .article-sns {
    text-align: right;
}

.article-author {
    margin-bottom: 2em;
    border: solid 0 #dcdcdc;
    background-color: #f1f1f1;
    padding: 2.0em;
}

.article-author .pic {
    float: right;
    width: 150px;
    max-width: 28%;
    margin: 0 0 0 2em;
}

.article-author .pic img.avatar {
    border-radius: 0;
}

.article-author .tit,
.article-author .txt {
    overflow: inherit;
    margin-bottom: 5px;
}

.article-author .tit {
    margin-bottom: 20px;
    font-size: 150%;
    font-weight: bold;
    line-height: 1.25;
}

.article-author .tit span {
    display: block;
    margin-right: 1em;
    margin-bottom: 1em;
    color: #666;
    font-size: 1.2rem;
    font-weight: normal;
}

.article-author .txt,
.article-author .link {
    color: #666;
    font-size: 1.2rem;
}

.article-author .link {
    text-align: right;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {}

/* ARTICLE - NAV-LINKS 
----------------------------------------------------- */
.nav-prev-next-links {
    background-color: #c3f3f1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 24px;
    padding: 40px 0;
}


.nav-prev-next-links .l-child {
    width: 50%;
}

.nav-prev-next-links .l-child:first-child {
    border-right: 1px solid #000;
}

.nav-prev-next-links .l-content {
    padding: 20px 45px;
    line-height: 1.5;
}

.nav-prev-next-links .l-date {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 20px;
}
.nav-prev-next-links .l-title {
    font-size: 20px;
    line-height: 1.5;
}

.nav-prev-next-links .l-button {}

.nav-prev-next-links .l-button a {
    color: var(--color-text-basic);
    font-weight: bold;
}

@media screen and (min-width: 800px) {
    .nav-prev-next-links {
        align-items: flex-start;
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {}

/*
-----------------------------------------------------

    =SUBPAGES - MESSAGE

----------------------------------------------------- 
*/
.u-subpage-message {}

/* MESSAGE - 冒頭カバー 
----------------------------------------------------- */
.l-sub-message-cover {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.l-sub-message-cover::before {}

.l-sub-message-cover .l-cover {
    position: relative;
}

.l-sub-message-cover .l-cover::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 200px;
    left: -100px;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background-color: var(--color-primary);
    opacity: 0.1;
}


@media screen and (min-width: 800px) {
    .l-sub-message-cover .c-section {
        padding: 160px 0;
    }

    .l-sub-message-cover .l-main-content .c-image-content {
        align-items: flex-start;
    }

    .l-sub-message-cover .l-main-content .c-image-content>.c-image {
        z-index: 1;
        width: 960px;
        margin: 0 -240px 0 -120px;
    }

    .l-sub-message-cover .l-main-content .c-image-content>.c-content {
        z-index: 2;
        width: 1000px;
        margin: 0 -240px 0 0;
    }

    .l-sub-message-cover .c-title-section {
        position: relative;
        margin-bottom: .5em;
    }

    .l-sub-message-cover .c-title-main {
        margin-bottom: 1.5em;
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-sub-message-cover .l-cover::before {
        width: 80vw;
        height: 80vw;
    }

    .l-sub-message-cover .l-main-content .c-image-content>.c-image {
        width: calc(100vw - 10vw);
        max-width: 100vw;
        margin: 0 10vw 0 auto;
    }

    .l-sub-message-cover .l-main-content .c-image-content>.c-content {
        width: 100%;
        margin: 6.25vw 0;
    }
    
}

/* MESSAGE - 冒頭カバー - ドット装飾
----------------------------------------------------- */
.l-sub-message-cover .c-section {
    position: relative;
    z-index: 1;
}
.l-sub-message-cover .c-object-layer {}
.l-sub-message-cover .c-object-layer .l-object01 {
    bottom: 6%;
    right: -20%;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-sub-message-cover .c-object-layer .l-object01 {
        bottom: 16%;
        right: -20%;
    }
}

/* MESSAGE - 英語の装飾エリア
----------------------------------------------------- */
.l-sub-message-tagline {
    position: relative;
    z-index: 1;
    height: 540px;
    display: flex;
    align-items: center;
    background: url(assets/images/object-wakuwaku-outline.webp) repeat-y center top;
    background-size: 960px auto;
    overflow: hidden;
}

.l-sub-message-tagline::before {}

.l-sub-message-tagline .l-main-content {
    width: 100%;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-sub-message-tagline {
        background: url(assets/images/object-wakuwaku-outline.webp) repeat-y center top;
        background-size: 80vw auto;
        height: 240px;
    }
}

/* MESSAGE - 英語の装飾エリア - ループするテキスト
----------------------------------------------------- */
.l-sub-message-tagline .loop-animation-background {
    height: calc(237px / 2);
	background-image: url(assets/images/object-large-letters-message-pink.webp);
    background-size: auto 100%;
    animation-name: loop-animation-message-large-letters-left;
}

.l-sub-message-tagline .loop-animation-background.u-part01 {
    margin: 0 0 20px;
}

.l-sub-message-tagline .loop-animation-background.u-part02 {
    margin: 20px 0 0;
	background-image: url(assets/images/object-large-letters-message-black.webp);
    animation-name: loop-animation-message-large-letters-right;
}


@keyframes loop-animation-message-large-letters-left {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: -1780px;
    }
}
@keyframes loop-animation-message-large-letters-right {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: 1780px;
    }
}

@media screen and (min-width: 800px) {
    .l-sub-message-tagline .loop-animation-background {
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-sub-message-tagline .loop-animation-background {
        margin: 0 0;
        height: calc(237px / 5);
    }

    .l-sub-message-tagline .loop-animation-background.u-part01 {
        margin: 0 0 5px;
    }

    .l-sub-message-tagline .loop-animation-background.u-part02 {
        margin: 5px 0 0;
    }
}

/* MESSAGE - 本文エリア
----------------------------------------------------- */
.l-sub-message-main {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {}

/* MESSAGE - 本文エリア - ドット装飾
----------------------------------------------------- */
.l-sub-message-main .c-section,
.l-sub-message-main .c-cover-image {
    position: relative;
    z-index: 2;
}
.l-sub-message-main .c-object-layer {}
.l-sub-message-main .c-object-layer .l-object01 {
    top: 40%;
    left: -20%;
}
.l-sub-message-main .c-object-layer .l-object02 {
    bottom: 6%;
    right: -20%;
}

@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {}

/* MESSAGE - プロフィール
----------------------------------------------------- */
.l-sub-message-profile {
    position: relative;
    z-index: 1;
}

.l-sub-message-profile .l-title {
    margin-bottom: 0.5em;
    font-size: 1.4em;
    font-weight: 500;
}


@media screen and (min-width: 800px) {
    .l-sub-message-profile .c-image-content {
        align-items: flex-start;
    }

    .l-sub-message-profile .c-image-content>.c-image {
        width: 400px;
    }

    .l-sub-message-profile .c-image-content>.c-content {
        width: calc(100% - 400px - 80px);
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {}