@charset "UTF-8";
/*
Theme Name:  株式会社山本海苔店 | 採用サイト
Template: twentynineteen
Author:  株式会社山本海苔店 | 採用サイト
Author URI:
Description:
Version: 1.0.0
Updated: 2025-10-10
*/

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

	=THEME COLOR = #d24627

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

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

/* CSS Variable
----------------------------------------------------- */
:root {
    --color-text-basic: #3a3635;
    --color-text-gray: #434a54;
    --color-primary: #d24627;
    --color-gray: #b1b3b6;

}

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

	=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: heisei-kaku-gothic-std, '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: bold;
    line-height: 2.0;
    word-wrap: break-word;
    letter-spacing: 0.0em;
}

body {
    font-size: 2.0rem;
    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 {
	background-color: rgba(0,0,0,0.25);
}*/
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(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    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.025);
    -webkit-transform: scale(1.025);
    -moz-transform: scale(1.025);
    -ms-transform: scale(1.025);
    -o-transform: scale(1.025);
}

.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: 240px;
    -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) {
    /* @supports (-webkit-touch-callout: none) {
        #progress {
            height: -webkit-fill-available;
            height: 100dvh;
        }
    } */

    #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 {
    padding: 0px;
    align-items: flex-start;
    -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-recruitmentsite {
	position: relative;
	width: 230px;
}
.logo-recruitmentsite a::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 115%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8em;
    height: 32px;
    border: solid 1px #000;
    color: #000;
    padding: 0.2em 1em;
    content: "採用サイト";
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 1.0;
}

.logo-recruitmentsite 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 30px;
}

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



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

.is-scrolled .header-global .nav-pc ul.nav-main li ul {
    background-color: #fff;
}

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

    .js-header-transparent #main {}

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

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

    .is-scrolled .header-global>.inner {}

    .header-global>.inner .header-left,
    .header-global>.inner .header-right {
        height: 100px;
    }

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


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

    .js-header-transparent .header-global,
    .js-header-transparent .header-global a {}

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

    .js-header-transparent .header-global>.inner .header-left .logo a::after {
        border-color: #fff;
        color: #fff;
        background-color: rgba(255, 255, 255, 0.2);
    }

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

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

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

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

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

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

    /* 背景透過ver. - 画面スクロール時 */
    .js-header-transparent.is-show-main .header-global {
        background-color: #fff;
        box-shadow: 15px 25.981px 30px 0px rgba(0, 0, 0, 0.035);
    }

    .js-header-transparent.is-show-main .header-global,
    .js-header-transparent.is-show-main .header-global a {}

    .js-header-transparent.is-show-main .header-global>.inner .header-left .logo img {
        opacity: 1;
    }
    
    .js-header-transparent.is-show-main .header-global>.inner .header-left .logo a:after {
        border-color: #000;
        color: #000;
        background-color: transparent;
    }

    .js-header-transparent.is-show-main .header-global>.inner .nav-pc ul.nav-main li,
    .js-header-transparent.is-show-main .header-global>.inner .nav-pc ul.nav-main li a {
        color: #000;
    }

    .js-header-transparent.is-show-main .header-global>.inner .nav-pc ul.nav-main li ul {
        background-color: #fff;
    }

    .js-header-transparent.is-show-main .header-global>.inner .nav-pc ul.nav-main li ul li,
    .js-header-transparent.is-show-main .header-global>.inner .nav-pc ul.nav-main li ul li a {
        color: #000;
    }

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

    .js-header-transparent.is-show-main .header-global>.inner .nav-pc ul.nav-main li.has-child::after {
        border-color: var(--color-primary);
    }
}

@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-recruitmentsite {
        width: 105px;
    }
	
    .logo-recruitmentsite a::after {
        font-size: .9rem;
        height: 24px;
    }

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

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

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

    .js-header-transparent .header-global>.inner .header-left .logo img {
        opacity: 0;
    }
    
    .js-header-transparent .header-global>.inner .header-left .logo a:after {
        border-color: #fff;
        color: #fff;
        background-color: rgba(255, 255, 255, 0.2);
    }

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


    /* 背景透過ver. - 画面スクロール時*/
    .js-header-transparent.is-show-main .header-global {
        background-color: #fff;
    }

    .js-header-transparent.is-show-main .header-global>.inner .header-left .logo {}

    .js-header-transparent.is-show-main .header-global>.inner .header-left .logo img {
        opacity: 1;
    }
    
    .js-header-transparent.is-show-main .header-global>.inner .header-left .logo a:after {
        border-color: #000;
        color: #000;
        background-color: transparent;
    }


    .js-header-transparent.is-show-main a.trigger-bars span {
        background-color: var(--color-primary);
        background-color: var(--color-text-basic);
    }

    .js-header-transparent.is-show-main a.trigger-bars span {
        background-color: var(--color-text-basic);
    }
}

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


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

	=NAVIGATION - PC

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

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

    /* =NAVIGATION - PC
	----------------------------------------------------- */
    .nav-pc {
        margin: 0 1em 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.8rem;
        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;
    }

    .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;
        top: 100%;
        left: -20px;
        width: 14em;
        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%;
        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 - 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 .heading {
        margin: 2em 0 10px;
    }

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

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

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

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

.footer-global,
.footer-global a {}

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

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

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

.footer-global .c-section {
    padding: 60px 0;
}

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

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

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

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


.footer-global .navigation-area .logo {}
.footer-global .navigation-area .address {}
.footer-global .navigation-area .address .companyname {
    font-size: 1.25em;
}

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



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

    .footer-global .navigation-area .footer-left {
        width: 480px;
        justify-content: flex-start;
    }

    .footer-global .navigation-area .footer-right {
        width: calc(100% - 480px);
        padding-left: 40px;
        border-left: solid 1px var(--color-primary)
    }
}

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

    .footer-global .navigation-area {
        padding: 6.25vw 0 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 {
        display: none;
    }

    .footer-global .navigation-area .c-flex-parent.u-responsive>.c-flex-child {
        margin: 0;
    }

    .footer-global .navigation-area .footer-left>*:last-child {
        margin-bottom: 0;
    }

    .footer-global .navigation-area .logo {
        width: 130px;
    }

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

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

.l-nav-footer .heading {
    margin: 0 0 0.25em;
    color: var(--color-primary);
    font-size: 2.1rem;
    font-weight: bold;
}

.l-nav-footer ul {}

.l-nav-footer ul li {
    letter-spacing: 0;
    font-size: 1.6rem;
    font-weight: normal;
}

.l-nav-footer ul li a {
    position: relative;
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

.l-nav-footer ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -1.25em;
    margin: auto;
    border-top: solid 1px var(--color-primary);
    border-right: solid 1px var(--color-primary);
    width: 7px;
    height: 7px;
    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;
}

.l-nav-footer ul li a:hover {
    opacity: 1;
    color: var(--color-primary);
}

/* .l-nav-footer ul ul {}

.l-nav-footer ul ul li {
    opacity: 0.6;
    font-weight: normal;
}

.l-nav-footer ul ul li a {
    position: relative;
    padding-left: 1em;
    padding-left: 0;
}

.l-nav-footer ul ul li a::before {
    display: none;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
    width: 8px;
    height: 1px;
    background-color: #fff;
}

.l-nav-footer ul ul li a::before {} */

@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 .heading {
        font-size: 1.33em;
    }

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

    .l-nav-footer ul ul li a::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        margin: auto 0;
        width: 5px;
    }
}

/* フッター - コピーライト
----------------------------------------------------- */
.footer-global .copyright-area {
    padding: 0;
    font-size: 1.4rem;
}

.footer-global .copyright-area,
.footer-global .copyright-area a {
    color: #999;
}

.footer-global .copyright-area .inner {
    border-top: solid 1px rgba(0, 0, 0, 0.15);
    padding: 30px 0;
    align-items: center;
}

.footer-global .copyright-area .copyright {
    font-family: "english-grotesque", sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1;
}

.footer-global .copyright-area .copyright p {
    margin: 0;
}

.footer-global .copyright-area a {}

.footer-global .copyright-area a:hover {
    opacity: .5;
}

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

@media screen and (min-width: 0px) and (max-width: 799px) {
    .footer-global .copyright-area {
        padding: 3.125vw 0 0;
        font-size: .9rem;
    }

    .footer-global .copyright-area .inner {
        padding: 3.125vw 0;
    }

    .footer-global .copyright-area .copyright {
        font-size: .9rem;
    }

    .footer-global .copyright-area .c-flex-parent.u-responsive>.c-flex-child {
        margin-bottom: 3.125vw;
    }

    /* .footer-global ul.c-list-sns {
        margin: 0 0 6.25vw;
        text-align: left;
    }

    .footer-global ul.c-list-sns:last-child {
        margin-bottom: 0;
    } */
}



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

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

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


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

	=COMMON PARTS - HEADING

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

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

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


/* 見出し - セクション・ページの大見出し 92pt
----------------------------------------------------- */
.c-title-section {
    margin: 0 0 2.0em;
    font-size: 2.4rem;
    line-height: 1.15;
}

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

.c-title-section .english {
    display: inline-block;
    padding: 0.25em 1.25em;
    background-color: var(--color-text-basic);
    color: #fff;
    font-size: 2.4rem;
    font-family: "english-grotesque", sans-serif;
    font-weight: bold;
    line-height: 1.1;
}

.c-title-section .japanese {
    display: block;
    margin: 10px 0 0;
    font-size: 9.0rem;
    font-weight: 900;
}

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

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

    .c-title-section .english {
        font-size: 1.6rem;
        padding: 0.2em 0.8em;
    }

    .c-title-section .japanese {
        font-size: 3.0rem;
    }
}



.c-title-section.u-ver-white .english {
    background-color: #fff;
    color: var(--color-text-basic);
    color: var(--color-primary);
}

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

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




/* 見出し - 追従見出し装飾（TOPや経営理念、山本海苔店を知るページなど）
----------------------------------------------------- */
.c-sticky-heading {
    pointer-events: none;
    position: sticky;
    z-index: 99;
    top: 0;
    right: 0;
    width: auto;
    height: 0;
    padding: 60px;
    margin-bottom: calc( -60px * 2);
    margin-left: auto;
    font-family: "english-grotesque", sans-serif;
    color: var(--color-primary);
    font-size: 3.2rem;
    font-weight: 500;
    -ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

.c-sticky-heading .l-text {
    height: 100vh;
    line-height: 1.8;
}

.c-sticky-heading .sub,
.c-sticky-heading .english {
    position: relative;
    display: inline-block;
}

.c-sticky-heading .sub {
    margin: 0 0 1.0em;
    padding: 0 0.15em;
    font-size: 1.6rem;
    font-weight: normal;
}

.c-sticky-heading .sub::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: var(--color-primary);
}

@media screen and (min-width: 800px) {
    .c-sticky-heading {
        top: 100px;
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-sticky-heading {
        top: 60px;
        padding: 6.25vw 2.5vw;
        margin-bottom: calc( -6.25vw * 2);
        font-size: 1.8rem;
    }
    .c-sticky-heading .sub {
        padding: 0;
        font-size: 1.2rem;
    }
}

.c-sticky-heading.u-ver-white {
    color: #fff;
}
.c-sticky-heading.u-ver-white .sub::before {
    background-color: #fff;
}


/* 見出し - 日本語メイン 46pt
----------------------------------------------------- */
.c-title-main {
    margin: 0 0 1.05em;
    font-size: 4.6rem;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.05em;
}

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

.c-title-main .japanese {}

@media screen and (min-width: 800px) {
    .c-title-main.u-medium {
        font-size: 3.6rem;
    }
}

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


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

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

.c-title-numbering .sub {
    display: inline-block;
    padding-bottom: 0.1em;
    border-bottom: solid 2px var(--color-primary);
}

.c-title-numbering .num {
    display: block;
    font-size: 22.0rem;
    font-weight: 400;
}

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

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

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


/* 見出し - 日本語32pt + 英語
----------------------------------------------------- */
.c-title-32 {
    margin: 0em 0 .5em;
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 1.5;
}

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

.c-title-32 .english {
    margin: 0 0 0.75em;
    font-size: 2.0rem;
    color: var(--color-primary);
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: normal;
}

.c-title-32 .japanese {}

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

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

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

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

.c-title-28 .english {
    font-size: 1.2rem;
    color: var(--color-primary);
    font-family: neue-haas-grotesk-display, sans-serif;
}

.c-title-28 .japanese {}

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

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


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

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

.c-title-24 .english {
    font-size: 1.2rem;
    color: var(--color-primary);
    font-family: neue-haas-grotesk-display, sans-serif;
}

.c-title-24 .japanese {}

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

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

































/* 見出し - 日本語 54pt
----------------------------------------------------- */
/* .c-title-strong {
    margin: 0 0 50px;
    font-size: 5.4rem;
    font-weight: 900;
    line-height: 1.5;
}

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

.c-title-strong .japanese {}

.c-title-strong .english {
    margin: 0.75em 0 0;
    color: var(--color-primary);
    font-family: neue-haas-grotesk-display, sans-serif;
    font-size: 2.4rem;
    font-weight: 600;
}

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

@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-title-strong {
        margin: 0 0 30px;
        font-size: 3.2rem;
    }

    .c-title-strong .english {
        font-size: 1.8rem;
    }
} */




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

	=COMMON PARTS - BUTTON

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

/* ボタン - ヘッダーのエントリーのみ
----------------------------------------------------- */
.c-button-header {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 280px;
    max-width: 100%;
    height: 100px;
    line-height: 1.0;
    padding: 0em 1.25em;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 3.4rem;
    font-weight: bold;
    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 .english,
.c-button-header .japanese {
    display: block;
}

.c-button-header .english {
    font-family: "english-grotesque", sans-serif;
}

.c-button-header .japanese {
    font-size: 1.4rem;
    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;
}

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

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

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

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



/* ボタン - READ MORE（メイン）
----------------------------------------------------- */
.c-button-readmore {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 360px;
    max-width: 100%;
    height: 108px;
    line-height: 1.25;
    padding: 1em 1.25em;
    color: #fff;
    font-size: 2.8rem;
    font-weight: bold;
    text-decoration: none;
}

.c-button-readmore::before,
.c-button-readmore::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -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::before {
    background-color: var(--color-primary);
}

.c-button-readmore::after {
    z-index: -1;
    left: 10px;
    top: 10px;
    border: solid 1px var(--color-primary);
}

.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 .english,
.c-button-readmore .japanese {
    display: block;
}

.c-button-readmore .english {
    font-family: "english-grotesque", sans-serif;
}

.c-button-readmore .japanese {
    font-size: 1.4rem;
}

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

.c-button-readmore .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.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;
}

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

.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: 72px;
        border-radius: 10px;
        max-width: 100%;
        font-size: 1.7rem;
    }

    .c-button-readmore .japanese {
        font-size: 1.2rem;
    }

    .c-button-readmore .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;
}
.c-button-readmore.u-ver-black::before {
    background-color: #000;
}

.c-button-readmore.u-ver-black::after {
    border-color: #000;
}




/* ボタン - サブ（フッターなど）
----------------------------------------------------- */
.c-button-sub {
    position: relative;
    display: inline-block;
    padding: .75em 1.75em;
    padding-right: 4em;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: none;
    text-transform: uppercase;
    -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-sub,
.c-button-sub * {
    -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-sub .arrow {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 2.0em;
    margin: auto 0;
}

.c-button-sub .arrow::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    width: 7px;
    height: 7px;
    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-button-sub:hover {
    opacity: 1;
}

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

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

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

@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-button-sub {
        width: 200px;
        display: inline-block;
        padding: .75em 1.75em;
        padding-right: 4em;
        font-size: 1.2rem;
    }
}



/* ボタン - 丸形
----------------------------------------------------- */
/* .c-button-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 400px;
    max-width: 100%;
    height: 90px;
    line-height: 1.25;
    padding: 0em 1.25em;
    border-radius: 25px;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 2.4rem;
    font-weight: 500;
    text-decoration: none;
}

.c-button-round,
.c-button-round * {
    -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-round>* {
    position: relative;
    z-index: 1;
}

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

.c-button-round .arrow::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    width: 12px;
    height: 12px;
    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-round:hover {
    opacity: 1;
}

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

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

@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-button-round {
        font-size: 1.4rem;
        width: 240px;
        height: 60px;
        border-radius: 10px;
        max-width: 100%;
    }

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

.c-button-round.u-navy {
    background-color: var(--color-secondary);
}

.c-button-round.u-white {
    background-color: #fff;
    color: var(--color-secondary);
}

.c-button-round.u-white .arrow::after {
    border-color: var(--color-secondary);
}

.c-button-round.u-text-waterblue {
    background-color: #fff;
    color: #287fa4;
}

.c-button-round.u-text-waterblue .arrow::after {
    border-color: #287fa4;
}

.u-ta-r .c-button-round {
    margin-left: auto;
}

.u-ta-c .c-button-round {
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 800px) {
    .c-button-round.u-small {
        width: 180px;
        height: 50px;
        border-radius: 10px;
        font-size: 1.5rem;
        font-weight: 600;
    }

    .c-button-round.u-medium {
        width: 300px;
        height: 80px;
        border-radius: 20px;
        font-size: 2.1rem;
    }
}

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



/* ボタン - 小さなテキストとアロー
----------------------------------------------------- */
.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;
}

@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: top;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}

ul.c-list-news-archive li a {
    display: inline-block;
    color: var(--color-text-basic);
    text-decoration: none;
    margin: 0.5em 2em 0.5em 0;
    padding: 0 0 0.0em;
    border-bottom: solid 2px transparent;
}

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;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

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 {
        margin: 0 0 .75em 0;
        font-size: 1.2rem;
    }

    ul.c-list-news-archive li a {
        margin: 0 1.5em 0 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;
}


/* NEWアイコン */
.loop .loop-article:nth-child(1)::before {
    content: "NEW";
    position: absolute;
    z-index: 2;
    top: -15px;
    left: -15px;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "english-grotesque", sans-serif;
    font-size: 3.2rem;
    font-weight: bold;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    line-height: 1;
}

/* 画像部分 */
.loop .loop-image {
    position: relative;
    height: 0;
    padding-bottom: 66.66%;
    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: 2.0rem;
    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: "english-grotesque", sans-serif;
    font-weight: 600;
    letter-spacing: 0.10em;
}

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

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

.loop .loop-category {
    display: inline-block;
    font-weight: bold;
}

.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.top {
    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 - BACKGROUND (VIDEO)

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

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

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

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

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


.l-top-bg .image {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.l-top-bg .image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 1;
}

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

.l-top-bg .image .note {
    position: fixed;
    z-index: 9980;
    right: 0;
    bottom: 0;
    margin: 1em;
    pointer-events: none;
}

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

    .l-top-bg .image img {
        width: 105%;
        height: 105%;
    }

    .l-top-bg .image .flexslider ul.slides li:nth-child(1) img {
        object-position: top 0px left 40%;
    }

    .l-top-bg .image .flexslider ul.slides li:nth-child(2) img {
        object-position: top 0px left 80%;
    }

    .l-top-bg .image .flexslider ul.slides li:nth-child(3) img {
        object-position: top 0px right 50%;
    }
}

/* flexslider.js */
.flexslider.zoom .slides li {
    overflow: hidden;
}

.flexslider.zoom .slides li img {
    -webkit-transition: all ease-out 24.0s;
    -moz-transition: all ease-out 24.0s;
    -ms-transition: all ease-out 24.0s;
    transition: all ease-out 24.0s;
}

.flexslider.zoom .slides .flex-active-slide img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.flexslider.zoom-out .slides li {
    overflow: hidden;
}

.flexslider.zoom-out .slides li img {
    -webkit-transition: all ease-out 12.0s;
    -moz-transition: all ease-out 12.0s;
    -ms-transition: all ease-out 12.0s;
    transition: all ease-out 12.0s;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.flexslider.zoom-out .slides .flex-active-slide img {
    -webkit-transform: scale(1.0);
    -moz-transform: scale(1.0);
    -ms-transform: scale(1.0);
    transform: scale(1.0);
    opacity: 1;
}

/* FLEXSLIDER.CSS - OVERRIDE */
.flexslider {
    z-index: 2;
    background-color: transparent !important;
    margin-bottom: 0 !important;
    border: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

.flexslider,
.flexslider .slides {
    height: 100%;
}

.flexslider .slides li {
    position: relative;
    width: 100%;
    height: 100%;
}

.flexslider .slides li img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* PAGER */
.flexslider ol.flex-control-paging {
    counter-reset: number;
    list-style: none;
    bottom: -27px !important;
}

.flexslider ol.flex-control-paging li {
    padding: 0 !important;
    margin-bottom: 0 !important;
    vertical-align: middle;
    font-size: 0;
    line-height: 0;
}

.flexslider ol.flex-control-paging li:before {
    display: none;
}

.flexslider ol.flex-control-paging li a {
    width: 9px !important;
    height: 9px !important;
    background-color: #ccc !important;
    box-shadow: none !important;
}

.flexslider ol.flex-control-paging li a.flex-active {
    background-color: #333 !important;
}

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

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

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


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

    =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 {
        height: 100dvh;
        margin-bottom: 0;
        min-height: auto;
    }
}

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

.l-top-fv .content .tagline {
    position: relative;
    width: 100%;
    color: #fff;
}

.l-top-fv .content .tagline .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 .content .tagline .text01 {
    font-size: 6.4rem;
    font-weight: bold;
    line-height: 1.5;
    font-family: "english-grotesque", sans-serif;
    margin: 0;
}

.l-top-fv .content .tagline .text02 {
    font-size: 8.4rem;
    font-weight: 900;
    line-height: 1.05;
    color: var(--color-text-basic);
}

/* マーカー塗りつぶし */
.u-text-marker {
    position: relative;
    display: inline-block;
    margin: 0 0 0.1em;
    padding: 0.1em 0.15em;
    color: var(--color-text-basic);
    pointer-events: none;
}
.u-text-marker::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* デフォルトはfff */
    background-color: #fff;
    mix-blend-mode: multiply;
}

.l-top-fv .content .tagline .text02 .u-text-marker {}


@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 .content {
        margin: 0;
        width: 100vw;
        padding: 6.25vw;
        /* top: 0;
        height: 100%;
        align-items: center; */
    }

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

}

/* FIRSTVIEW - SCROLL */
.l-top-fv .scroll {
    position: fixed;
    z-index: 2;
    bottom: 0;
    right: 0;
    width: 240px;
    height: 240px;
    background-color: #fff;
    border-radius: 100% 0 0 0;
    pointer-events: none;
    -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;
}

.is-scrolled .l-top-fv .scroll {
    opacity: 0;
    pointer-events: none;
}

.l-top-fv .scroll::before {}

.l-top-fv .scroll .icon {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 60px;
}

.l-top-fv .scroll .scroll-text {}

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

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

    .l-top-fv .scroll .scroll-text {
        left: 6.25vw;
        height: 100px;
    }

    .l-top-fv .scroll .scroll-text::before {
        font-size: 0.9rem;
    }
}

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

    =TOP - COMMON PARTS

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

/* 角丸 */
.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;
    width: calc(100% - 40px * 2);
    margin: 0 auto 40px;
    padding: 0 40px;
    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;
    }
}


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

    =TOP - ABOUT

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

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

.l-top-intro .c-featured-text p {
    line-height: 2.5;
}

.l-top-intro .main-content {}

@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 25.0vw;
        padding-right: 9.125vw;
    }

    .l-top-intro .tagline {}
}



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

    =TOP - MESSAGE

----------------------------------------------------- 
*/
.l-top-message {
    position: relative;
    z-index: 2;
    background-color: #fff;
}

.l-top-message::before {
    content: "";
    position: absolute;
    z-index: -2;
    pointer-events: none;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(assets/images/top-message-bg.webp) no-repeat right center;
    background-size: 800px auto;
}

.l-top-message .c-section {
    overflow: hidden;
}

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

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

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

@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 .main-content .c-image-content>.c-image {
        width: calc(100vw - 10vw);
        max-width: 100vw;
        margin: 0 10vw 0 auto;
        height: 80vw;
    }

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

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

.c-name-sign .sub {}

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

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

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

@media screen and (min-width: 800px) {
    .c-name-sign {
        font-size: 1.6rem;
    }
}

@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 .main {}
}

/* ループするギャラリー */
.l-top-message .loop-animation-background {
    position: relative;
    z-index: 3;
    height: 434px;
    background-size: auto 100%;
    animation-name: loop-animation-top-message;
}

.l-top-message .loop-animation-background {
    background-image: url(assets/images/top-message-gallery.webp);
}

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

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

@media screen and (min-width: 800px) {
    .l-top-message .loop-animation-background {
        margin: -80px 0 0;
    }
}

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


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

    =TOP - INTRODUCTION

----------------------------------------------------- 
*/
.l-top-introduction {
    position: relative;
    z-index: 2;
    background-color: #fff;
}
.l-top-introduction::before {
    content: "";
    position: absolute;
    z-index: -2;
    pointer-events: none;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(assets/images/object-top-introduction-nori.webp) no-repeat left top;
    background-size: 659px auto;
}

.l-top-introduction .c-section {
    padding-top: 0; 
    overflow: hidden;
}

.l-top-introduction .l-image {
    text-align: right;
}
.l-top-introduction .l-image01 {}

.l-top-introduction .l-image02 {}

.l-top-introduction .l-image-in-circle {
    position: relative;
    background: url(assets/images/object-top-introduction-circle.webp) no-repeat center center;
    background-size: 100% auto;
    width: 780px;
    margin: 0 -60px 0;
}

.l-top-introduction .l-image-in-circle .l-image {
    text-align: center;
}

.l-top-introduction .l-image-in-circle .l-image03 {
    position: relative;
    z-index: 2;
    margin: 3em 0 -90px -50px;
    transform: rotate(12deg);
}

.l-top-introduction .l-image-in-circle .l-image04 {
    position: relative;
    z-index: 1;
    transform: rotate(-5deg);
}


@media screen and (min-width: 800px) {
    .l-top-introduction .main-content .c-image-content {
        align-items: center;
    }

    .l-top-introduction .main-content .c-image-content>.c-image {
        z-index: 1;
        width: 590px;
        margin: 0 -40px 0 0;
    }

    .l-top-introduction .main-content .c-image-content>.c-content {
        z-index: 2;
        width: 540px;
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-top-introduction::before {
        background-size: 74vw auto;
    }
    .l-top-introduction .c-section {
        padding-top: 120px;
        /* padding-right: 9.125vw; */
    }
    .l-top-introduction .main-content .c-image-content>.c-content {
        padding-right: 9.125vw;
    }

    .l-top-introduction .l-image01 {
        text-align: center;
    }

    .l-top-introduction .l-image01 img {
        width: 50%;
    }
    .l-top-introduction .l-image-in-circle {
        width: 100%;
        margin: 0 -0 0;
        min-height: 100vw;
    }

    .l-top-introduction .l-image-in-circle .l-image {
        text-align: center;
        width: 58%;
    }

    .l-top-introduction .l-image-in-circle .l-image03 {
        margin: 15vw 0 -40px 3.25vw;
        transform: rotate(12deg);
    }

    .l-top-introduction .l-image-in-circle .l-image04 {
        margin: 0 3.25vw 0 auto;
        transform: rotate(-5deg);
    }
}

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

    =TOP - CULTURE

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

.l-top-culture::before {
    content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    background: url(assets/images/object-tile.webp) no-repeat right center;
    background-size: 478px auto;
}

.l-top-culture .c-section {
    overflow: hidden;
}

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

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-top-culture::before {
        background-size: 50vw auto;
    }

    .l-top-culture .c-section {
        overflow: hidden !important;
    }
}

/* ループするギャラリー */
.l-top-culture-gallery {}

.l-top-culture-gallery .l-gallery {
    position: relative;
    z-index: 1;
    border-radius: 10px;
    width: 1250px;
}
.l-top-culture-gallery .l-gallery01 {
    margin: 0 0 0 -70px;
    transform: rotate(2.3deg);
}
.l-top-culture-gallery .l-gallery02 {
    z-index: 2;
    margin: 40px -69px 40px;
    margin-left: auto;
    transform: rotate(-2.8deg);
}

.l-top-culture-gallery .l-gallery .loop-animation-background {
    position: relative;
    z-index: 3;
    height: 362px;
    background-size: auto 100%;
}

.l-top-culture-gallery .l-gallery01 .loop-animation-background {
    background-image: url(assets/images/top-introduction-gallery01.webp);
    animation-name: loop-animation-top-culture01;
}

.l-top-culture-gallery .l-gallery02 .loop-animation-background {
    background-image: url(assets/images/top-introduction-gallery02.webp);
    animation-name: loop-animation-top-culture02;
}

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

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-top-culture-gallery .l-gallery .loop-animation-background {
        margin: 0 0;
        height: calc(362px / 2);
    }

    .l-top-culture-gallery .l-gallery01 {
        margin: 0 0 0 -70px;
    }
    .l-top-culture-gallery .l-gallery02 {
        margin: 0px -69px 40px;
    }

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

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

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

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

/* TOP - CULTURE - スライダー
-------------------------------------------------- */
.l-top-culture-slider {}

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

    .l-top-culture-slider .c-image-content>.c-image {
        width: calc(100% - 760px - 20px);
        padding-left: 60px;
        border-left: solid 1px var(--color-primary);
    }

    .l-top-culture-slider .c-image-content>.c-content {
        width: 760px;
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-top-culture-slider {
        padding-right: 9.125vw;
    }
    .l-top-culture-slider .c-image-content.c-flex-parent.u-responsive>.c-flex-child {
        margin-bottom: 0;
    }
}


	/* SWIPER.JS
	-------------------------------------------------- */
	.l-top-culture-slider .swiper-grandparent {
		position: relative !important;
		overflow: hidden;
		width: 100%;
	}

	/* 
	--------------------------------------------------
	一枚フルサイズver. （swiper.min.css を上書き ）
	--------------------------------------------------
	
	.swiper-parent {
		max-width: 1200px;
	}
	.swiper-grandparent .swiper-parent .swiper-container {}
	*/

	/* 
	--------------------------------------------------
	左右のスライドを見せるver. （swiper.min.css を上書き ）
	--------------------------------------------------
	*/
	.l-top-culture-slider .swiper-grandparent {
		overflow: visible !important;
    }
	.l-top-culture-slider .swiper-grandparent .swiper-parent {
		max-width: 100%;
    }
	.l-top-culture-slider .swiper-grandparent .swiper-parent .swiper-container {
		/* Prev & Next をフル画面にしたいとき
		position: static !important; */
	}
	.l-top-culture-slider .swiper-wrapper {
		flex-wrap: inherit !important; 
        margin-bottom: 0px !important;
	}
	.l-top-culture-slider .swiper-slide {}
	.l-top-culture-slider .swiper-slide-active {
        opacity: 1;
    }

	/* PREV & NEXT */
	.l-top-culture-slider .swiper-button-prev,
	.l-top-culture-slider .swiper-container-rtl .swiper-button-next,
	.l-top-culture-slider .swiper-button-next,
	.l-top-culture-slider .swiper-container-rtl .swiper-button-prev {
		background-size: 100% auto !important;
		top: 0 !important;
		bottom: 0 !important;
		margin: auto !important;
		width: 38px !important;
		height: 100% !important;
	}
	.l-top-culture-slider .swiper-button-prev,
	.l-top-culture-slider .swiper-container-rtl .swiper-button-next {
		left: -64px !important;
		background-image: url(assets/images/icon-arrow-slider-left.webp) !important;
	}
	.l-top-culture-slider .swiper-button-next,
	.l-top-culture-slider .swiper-container-rtl .swiper-button-prev {
		right: -64px !important;
		background-image: url(assets/images/icon-arrow-slider-right.webp) !important;
	}

	/* PAGINATION */
	.l-top-culture-slider .swiper-container .swiper-pagination {
		left: auto;
		right: 0;
		bottom: 0;
		width: auto;
		text-align: right;
		margin: 30px;
	}
	.l-top-culture-slider .swiper-container .swiper-pagination-bullet {
		background-color: #fff; 
	}
	.l-top-culture-slider .swiper-container .swiper-pagination-bullet-active { 
		background-color: #fff; 
	}


	@media screen and (min-width: 0px) and (max-width: 799px) {
		.l-top-culture-slider {}
		.l-top-culture-slider .swiper-container {}
		.l-top-culture-slider .swiper-slide {}
		.l-top-culture-slider .swiper-slide-active { opacity: 1; }
		
		/* フル画面 ver.
		.l-top-culture-slider .swiper-grandparent { padding: 0 !important; }
		.l-top-culture-slider .swiper-grandparent .wrapper { padding: 0 !important; }
		*/

		/* センタリング ver. */
		.l-top-culture-slider .swiper-grandparent {}
		.l-top-culture-slider .swiper-grandparent .wrapper { padding: 0 !important; }
		.l-top-culture-slider .swiper-grandparent .swiper-parent .swiper-container {
			overflow: hidden !important;
		}
		.l-top-culture-slider .swiper-button-next,
		.l-top-culture-slider .swiper-button-prev { /*display: none !important;*/ }

		/* PREV & NEXT */
		.l-top-culture-slider .swiper-button-prev,
		.l-top-culture-slider .swiper-container-rtl .swiper-button-next,
		.l-top-culture-slider .swiper-button-next,
		.l-top-culture-slider .swiper-container-rtl .swiper-button-prev {
			top: 0 !important;
			width: 16px !important;
			height: 50% !important;
			margin-top: 15% !important;
		}
		.l-top-culture-slider .swiper-button-prev,
		.l-top-culture-slider .swiper-container-rtl .swiper-button-next {
			left: -10px !important;
			background-size: 100% auto !important;

            display: none;
		}
		.l-top-culture-slider .swiper-button-next,
		.l-top-culture-slider .swiper-container-rtl .swiper-button-prev {
			right: -10px !important;
			background-size: 100% auto !important;
		}
	}



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

    =TOP - MEDIA

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

.l-top-recruitmentmedia::before {
    content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
    padding: 0 40px;
    background-color: #e9f7f5;
}

.l-top-recruitmentmedia .c-section {
    overflow: hidden;
}

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

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-top-recruitmentmedia::before {
        width: 35%;
    }
    .l-top-recruitmentmedia .c-section{
        padding-right: 6.25vw;
    }
}



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

    =TOP - JOBS

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

.l-top-jobs::before {}

@media screen and (min-width: 800px) {
    .l-top-jobs .c-image-content {
        align-items: flex-start;
    }
    .l-top-jobs .c-image-content>.c-image {
        width: 360px;
    }
    .l-top-jobs .c-image-content>.c-content {
        width: calc(100% - 360px - 80px);
    }
}


@media screen and (min-width: 0px) and (max-width: 799px) {
    #container.top .l-top-jobs .c-section {
        padding-right: 9.125vw;
    }
}

/* シンボルマーク区切り線 (各種下層ページでも共通) */
.c-hr-symbol {
    position: relative;
    width: 100%;
    height: 138px;
    margin: 0 auto;
}

.c-hr-symbol::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 138px;
    height: 138px;
    margin: 0 auto;
    background: url(assets/images/logo-symbol-separator.webp) no-repeat center center;
    background-size: 100% auto;
}

.c-hr-symbol::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-primary);
}

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

@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-hr-symbol {
        height: 60px;
    }

    .c-hr-symbol::before {
        width: 60px;
        height: 60px;
    }
}

/* プルダウン */
.l-jobs-selector {
    width: 380px;
    max-width: 100%;
    color: var(--color-primary);
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.l-jobs-selector .sub {
    font-family: "english-grotesque", sans-serif;
    font-size: 1.5em;
    font-weight: normal;
}

.l-jobs-selector select {
    appearance: none;
    -webkit-appearance: none;
    max-width: 100%;
    width: 240px;
    height: 60px;
    margin: 0 0 0 auto;
    padding: 0.5em 1em;
    border: solid 1px var(--color-primary);
    border-radius: 10px;
    background: url(assets/images/icon-arrow-down-select.webp) no-repeat right 1em center;
    background-size: 15px auto;
    background-color: #fff;
}

.l-top-jobs .l-jobs-selector {
    border-bottom: solid 1px var(--color-primary);
}

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




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

    =COMMON PARTS - ACTION - CONTACT

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

/* アクション - お問い合わせ */
.l-action-entry {
    position: relative;
    z-index: 4;
    border-radius: 20px;
    margin-bottom: 0;
    padding: 24px;
    background: url(assets/images/object-tile-acrion-entry.webp) no-repeat right bottom;
    background-size: 469px auto;   
    background-color: var(--color-primary);
    color: #fff;
}

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

@media screen and (min-width: 800px) {
    .l-action-entry .c-section {
        padding: 80px 0;
    }
    .l-action-entry .c-image-content {
		align-items: flex-start;
	}
	.l-action-entry .c-image-content>.c-image {
		width: 60%;
	}
	.l-action-entry .c-image-content>.c-content {
		width: 46%;
        margin-right: -00px;
        margin-top: 0px;
	}
    
    .c-title-section .japanese {
        font-size: 8.2rem;
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-action-entry {
        margin: 0;
        width: 100%;
        border-radius: 10px;
        padding: 12px;
        background-size: 54vw auto;   
    }
    .l-action-entry .c-image-content.c-flex-parent.u-responsive>.c-flex-child {
        margin-bottom: 0;
    }
    .l-action-entry .c-title-section {
        margin-bottom: 6.25vw;
    }
    .l-action-entry .c-title-main {
        margin-bottom: 3.125vw;
    }
}

/* ループするギャラリー */
.l-action-entry .loop-animation-background {
    position: relative;
    z-index: 3;
    height: calc(868px / 2);
    background-size: auto 100%;
    animation-name: loop-animation-l-action-entry;
    border-radius: 10px;
}

.l-action-entry .loop-animation-background {
    background-image: url(assets/images/action-entry-gallery.webp);
}

@keyframes loop-animation-l-action-entry {
    0% {
        background-position-x: 0;
    }

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

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

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-action-entry .loop-animation-background {
        margin: 0 0;
        height: calc(434px / 2);
    }
}



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

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

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

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

    =SUBPAGES - COMMON PARTS

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

#main.sub {
    position: relative;
}

#main.sub::before {
    content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    background: url(assets/images/object-tile.webp) no-repeat right top 320px;
    background-size: 478px auto;
}

@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.sub::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: 40px;
}

.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: 500;
    line-height: 1.6;
}

.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 .article-content {
        font-size: 1.4rem;
    }
}


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

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

/* .article .article-content h2::before {
    content: "";
    position: absolute;
    top: 0.5em;
    left: -50px;
    width: 37px;
    height: 28px;
} */

.article .article-content h3 {
    position: relative;
    padding-bottom: 0.35em;
    border-bottom: solid 2px rgba(0, 0, 0, 0.15);
    font-size: 160%;
}

/* .article .article-content h3::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 2px;
    background-color: var(--color-primary);
} */

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

    /* .article .article-content h2::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: auto;
        width: 37px;
        height: 28px;
        background-position: center top;
        background-size: 100% auto;
    } */
}

/* =Image */
.article .article-content img {}

@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 {}

.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) {}


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

    =SUBPAGES - PHILOSOPHY

----------------------------------------------------- 
*/
.sub-philosophy {}

.sub-philosophy-main {
    position: relative;
    z-index: 2;
}

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

@media screen and (min-width: 0px) and (max-width: 799px) {
    .sub-philosophy-main .c-sticky-heading {
        display: none;
    }
}



/* = インデント見出し - ロゴ添え（下層ページで共通）
----------------------------------------------------- */
.c-title-indent {
    position: relative;
    margin: 0;
    padding: 0;
    border-bottom: solid 1px var(--color-primary);
    color: var(--color-primary);
    font-size: 4.6rem;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.05em;
}

.c-title-indent .l-inner {
    position: relative;
    padding-left: calc(100px + 60px);
}

.c-title-indent .l-inner::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background: url(assets/images/logo-symbol-white.webp) no-repeat center;
    background-size: 67% auto;
    background-color: var(--color-primary);
}

.c-title-indent .l-inner .japanese {
    display: flex;
    align-items: center;
    height: 100%;
    min-height: calc(100px - 20px * 2);
    padding: 20px 0;
}

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

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

    .c-title-indent .l-inner::before {
        width: 60px;
    }

    .c-title-indent .l-inner {
        position: relative;
        padding-left: calc(60px + 6.25vw);
        margin-left: 6.25vw;
    }

    .c-title-indent .l-inner .japanese {
        min-height: calc(60px - 15px * 2);
        padding: 15px 0;
    }
}



/* = インデントコンテンツ枠 （下層ページで共通）
----------------------------------------------------- */
.c-indent-wrap {
    position: relative;
}

.c-indent-wrap .l-inner {
    position: relative;
    padding-left: calc(100px + 60px);
}

.c-indent-wrap .l-inner::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: calc(100px - 1px);
    width: 1px;
    height: 100%;
    background-color: var(--color-primary);
}

@media screen and (min-width: 800px) {
    .c-indent-wrap .c-section {
        padding-top: 60px;
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-indent-wrap .l-inner {
        padding-left: calc(60px + 6.25vw);
        margin-left: 6.25vw;
    }
    .c-indent-wrap .l-inner::before {
        left: calc(60px - 1px);
    }
}


/* 家訓リスト
----------------------------------------------------- */
ul.l-list-policy li {
    position: relative;
    padding-left: 2em;
}
ul.l-list-policy li::before {
    content: "一、";
    position: absolute;
    left: 0;
    top: 0;
}

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

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

/* = 汎用的な装飾 - 格子状柄の背景 （下層ページで共通）
----------------------------------------------------- */
.c-decoration-tile {
    position: relative;
}

.c-decoration-tile::after {
    content: "";
    position: absolute;
    z-index: -3;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(assets/images/object-tile.webp) no-repeat;
    background-size: 474px auto;
}
.c-decoration-tile.u-ver-left::after {
    background-position: left -20% center;
}
.c-decoration-tile.u-ver-right::after {
    background-position: right -20% center;
}

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

@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-decoration-tile::after {
        background-size: 34vw auto;
    }
}


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

	=SUBPAGES - MESSAGE

-----------------------------------------------------
*/
.sub-message {
    position: relative;
    z-index: 2;
}

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

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


/* = MESSAGE - カバー
----------------------------------------------------- */
.sub-message-cover {
    position: relative;
    z-index: 2;
    background-color: #e9e7e4;
    height: 600px;
}

.sub-message-cover .l-inner {
    position: relative;
    height: 100%;
}

.sub-message-cover .l-inner .l-image {
    position: absolute;
    bottom: 0;
    right: -100px;
}

.sub-message-cover .l-inner .l-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.sub-message-cover .l-inner .l-content .l-tagline {}

.sub-message-cover .l-inner .l-content .l-tagline .c-name-sign {
    margin: 60px 0 0 120px;
}

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

@media screen and (min-width: 0px) and (max-width: 799px) {
    .sub-message-cover {
        background-color: #e9e7e4;
        height: 50vw;
    }
    .sub-message-cover .l-inner .l-image {
        position: absolute;
        bottom: 0;
        right: -0;
        width: 46vw;
    }

    .sub-message-cover .l-inner .l-content .l-tagline {
        padding-left: 6.25vw;
    }
    .sub-message-cover .l-inner .l-content .l-tagline .l-logo {
        width: 40vw;
    }
    .sub-message-cover .l-inner .l-content .l-tagline .c-name-sign {
        margin: 30px 0 0 0;
    }
}


/* = MESSAGE - メインコンテンツ
----------------------------------------------------- */
.sub-message-main {
    position: relative;
    z-index: 3;
    background-color: #fff;
}

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

@media screen and (min-width: 0px) and (max-width: 799px) {
    /* .sub-message-main p br {
        display: none;
    } */
}


/* ギャラリ部分 */
ul.c-sub-random-gallery {
    position: relative;
    z-index: 3;
}
ul.c-sub-random-gallery li {}

@media screen and (min-width: 800px) {
    ul.c-sub-random-gallery li:nth-child(1) {
        margin: 120px 0 0 -200px;
    } 
    ul.c-sub-random-gallery li:nth-child(2) {}
    ul.c-sub-random-gallery li:nth-child(3) {
        margin: -30px -200px 0 0;
    } 
}

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

/* = MESSAGE - プロフィール
----------------------------------------------------- */
.l-sub-message-profile {
    position: relative;
    z-index: 2;
    border-top: solid 1px var(--color-primary);
}

.l-sub-message-profile .l-text {
    font-size: 1.6rem;
}

@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 - 60px);
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-sub-message-profile .c-title-section {
        margin-bottom: 3.125vw;
    }
    .l-sub-message-profile .c-name-sign {
        margin-bottom: 3.125vw;
    }
    .l-sub-message-profile .l-text {
        font-size: 1.4rem;
    }
}


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

	=SUBPAGES - CULTURE

-----------------------------------------------------
*/
.sub-culture {
    position: relative;
    z-index: 2;
}

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

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

.sub-culture {
    position: relative;
    z-index: 2;
}

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

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


/* = CULTURE - ラインナップ
----------------------------------------------------- */
.l-culture-lineup {
    position: relative;
    z-index: 2;
}

.l-culture-lineup .lineup {}

.l-culture-lineup .lineup .l-cover {}

.l-culture-lineup .lineup .l-cover .l-inner {
    position: relative;
}

.l-culture-lineup .lineup .l-cover .l-inner .l-culture-lineup-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 40px;
}

.l-culture-lineup .lineup .l-cover .l-inner .l-culture-lineup-meta .l-numbering {
    background-color: var(--color-primary);
    color: #fff;
    padding: 1em 2em;
    border-radius: 10px;
}
.l-culture-lineup .lineup .l-cover .l-inner .l-culture-lineup-meta .l-numbering .l-title {
    margin: 0;
    color: #fff;
}
.l-culture-lineup .lineup .l-cover .l-inner .l-culture-lineup-meta .l-numbering .l-title .sub {
    font-size: 2.0rem;
    border-color: #fff;
}
.l-culture-lineup .lineup .l-cover .l-inner .l-culture-lineup-meta .l-numbering .l-title .num {
    line-height: 0.9;
    font-size: 14.0rem;
}
.l-culture-lineup .lineup .l-cover .l-inner .l-culture-lineup-meta .l-label {
    padding: 0.25em 0.75em;
    border-radius: 10px;
    line-height: 1.25;
    background-color: #fff;
    color: var(--color-text-basic);
    font-size: 4.8rem;
    font-weight: 900;
}

.l-culture-lineup .lineup .l-content {}

.l-culture-summary {}
.l-culture-summary .l-summary {
    margin-bottom: 3em;
    padding-bottom: 3em;
    border-bottom: solid 1px #dcdcdc;
}
.l-culture-summary .l-summary:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}


@media screen and (min-width: 800px) {
    .l-culture-lineup .lineup .l-cover .l-inner .l-culture-lineup-meta {
        display: flex;
        align-items: flex-end;
    }
    .l-culture-lineup .lineup .l-cover .l-inner .l-culture-lineup-meta .l-numbering {
        margin: 0 20px 0 0;
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-culture-lineup .lineup .l-cover .l-inner {
        height: 50vw;
    }

    .l-culture-lineup .lineup .l-cover .l-inner img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .l-culture-lineup .lineup .l-cover .l-inner .l-culture-lineup-meta {
        /* position: static;
        margin: 6.25vw 0 0;
        margin: 0 0 0;
        display: flex;
        align-items: center;
        background-color: #f4ebe9;
        border-radius: 10px; */
    }

    .l-culture-lineup .lineup .l-cover .l-inner .l-culture-lineup-meta {
        margin: 0;
        display: flex;
        align-items: flex-end;
    }
    .l-culture-lineup .lineup .l-cover .l-inner .l-culture-lineup-meta .l-numbering {
        display: inline-block;
        border-radius: 0 10px 0 10px;
    }
    .l-culture-lineup .lineup .l-cover .l-inner .l-culture-lineup-meta .l-numbering .l-title .sub {
        font-size: 1.2rem;
        border-color: #fff;
    }
    .l-culture-lineup .lineup .l-cover .l-inner .l-culture-lineup-meta .l-numbering .l-title .num {
        line-height: 0.9;
        font-size: 6.0rem;
    }
    .l-culture-lineup .lineup .l-cover .l-inner .l-culture-lineup-meta .l-label {
        font-size: 2.0rem;
        margin: 3.125vw;
        
        /* padding: 0;
        background-color: transparent; */
    }

    .l-culture-lineup .lineup .l-content .c-section {
        padding-top: 0;
    }

    .l-culture-summary .l-summary .c-flex-parent.u-responsive>.c-flex-child {
        margin-bottom: 0;
    }
}


/* カラーリング */
.l-culture-lineup .lineup01 .l-cover .l-inner .l-culture-lineup-meta .l-numbering {
    background-color: var(--color-primary);
}
.l-culture-lineup .lineup02 .l-cover .l-inner .l-culture-lineup-meta .l-numbering {
    background-color: #00a88e;
}
.l-culture-lineup .lineup03 .l-cover .l-inner .l-culture-lineup-meta .l-numbering {
    background-color: #6758a2;
}

.l-culture-lineup .lineup01 .u-fc-theme {
    color: var(--color-primary);
}
.l-culture-lineup .lineup02 .u-fc-theme {
    color: #00a88e;
}
.l-culture-lineup .lineup03 .u-fc-theme {
    color: #6758a2;
}


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

    =SUBPAGES - INTRODUCTION

----------------------------------------------------- 
*/
#main.sub-introduction {
    overflow: hidden !important;
}

.sub-introduction-intro {
    position: relative;
    z-index: 2;
    overflow: hidden;
    background-color: var(--color-primary);
    color: #fff;
}

.sub-introduction-intro .l-inner {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
}

.sub-introduction-intro .l-inner .l-image {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    width: 40vw;
    max-width: 560px;
    height: 100%;
}

.sub-introduction-intro .l-inner .l-content {
    width: 620px;
    max-width: 100%;
}

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

@media screen and (min-width: 0px) and (max-width: 799px) {
    .sub-introduction-intro .l-inner .l-image {
        width: 28vw;
    }
    .sub-introduction-intro .l-inner .l-content {
        width: calc(100% - 28vw - 0px);
    }
}


/* ループするギャラリー */
.sub-introduction-intro .loop-animation-background {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    background-repeat: repeat-y;
    background-size: 100% auto;
    animation-name: loop-animation-sub-introduction-intro;
}

.sub-introduction-intro .loop-animation-background {
    background-image: url(assets/images/sub-introduction-intro-film.webp);
}

@keyframes loop-animation-sub-introduction-intro {
    0% {
        background-position-y: 0;
    }

    100% {
        background-position-y: -1050px;
    }
}

@media screen and (min-width: 800px) {
    .sub-introduction-intro .loop-animation-background {
        margin: 0 0 0;
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .sub-introduction-intro .loop-animation-background {
    }
}



/* = introduction - ナビゲーション部分
----------------------------------------------------- */
.sub-introduction-navigation {
    position: relative;
    z-index: 2;
    background-color: #000;
    padding: 10px;
}

.sub-introduction-navigation .l-inner {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
}

.u-text-mincho {
    font-family: 'Adobe Garamond Pro', 'Noto Serif JP', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro W3", Hiragino Mincho Pro, Georgia, Times New Roman, Times, "ＭＳ Ｐ明朝", MS PMincho, serif;
}

ul.l-nav-introduction {}

ul.l-nav-introduction li {}
ul.l-nav-introduction li a {
    display: block;
    color: #fff;
    text-decoration: none;
}

ul.l-nav-introduction li .l-thumbnail {
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: no-repeat center;
    background-size: cover;
}

ul.l-nav-introduction li.nav01 .l-thumbnail {
    background-image: url(assets/images/sub-introduction-intro-thumbnail01.webp);
}

ul.l-nav-introduction li.nav02 .l-thumbnail {
    background-image: url(assets/images/sub-introduction-intro-thumbnail02.webp);
}

ul.l-nav-introduction li.nav03 .l-thumbnail {
    background-image: url(assets/images/sub-introduction-intro-thumbnail03.webp);
}

ul.l-nav-introduction li .l-thumbnail .l-numbering {
    margin-right: 20px;
}
ul.l-nav-introduction li .l-thumbnail .l-numbering .c-title-numbering {
    color: #fff;
}
ul.l-nav-introduction li .l-thumbnail .l-numbering .c-title-numbering .num {
    font-size: 12.0rem;
    font-weight: normal;
}
ul.l-nav-introduction li .l-thumbnail .l-header {}
ul.l-nav-introduction li .l-thumbnail .l-header .l-title {
    margin: 0 0 0.2em;
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.25;
}
ul.l-nav-introduction li .l-thumbnail .l-header .l-button {
    display: inline-block;
    position: relative;
    padding-right: 3em;
    line-height: .9;
    font-size: 2.4rem;
}
ul.l-nav-introduction li .l-thumbnail .l-header .l-button,
ul.l-nav-introduction li .l-thumbnail .l-header .l-button * {
    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;
}

ul.l-nav-introduction li .l-thumbnail .l-header .l-button .english {
    font-family: "english-grotesque", sans-serif;
}

ul.l-nav-introduction li .l-thumbnail .l-header .l-button .arrow {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 2.0em;
    margin: auto 0;
}

ul.l-nav-introduction li .l-thumbnail .l-header .l-button .arrow::after {
    content: "";
    position: absolute;
    top: -0.35em;
    bottom: 0;
    margin: auto;
    border-bottom: solid 1px #fff;
    border-right: solid 1px #fff;
    width: 11px;
    height: 11px;
    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;
}

@media screen and (min-width: 800px) {
    ul.l-nav-introduction li {
        width: calc(33.3333% - 10px);
    }

    ul.l-nav-introduction li .l-thumbnail {
        display: flex;
        align-items: center;
    }

}

@media screen and (min-width: 0px) and (max-width: 799px) {
    ul.l-nav-introduction li {}
    ul.l-nav-introduction.c-flex-parent.u-responsive>.c-flex-child {
        margin-bottom: 10px;
    }
    ul.l-nav-introduction.c-flex-parent.u-responsive>.c-flex-child:last-child {
        margin-bottom: 0;
    }

    ul.l-nav-introduction li .l-thumbnail .l-numbering .c-title-numbering .num {
        font-size: 6.0rem;
    }

    ul.l-nav-introduction li .l-thumbnail .l-header .l-title {
        margin: 0 0 0.2em;
        font-size: 2.1rem;
    }

    ul.l-nav-introduction li .l-thumbnail .l-header .l-button {
        font-size: 1.4rem;
    }
}

/* = INTRODUCTION - メインコンテンツ 01 ~ 03
----------------------------------------------------- */
.sub-introduction-main {
    position: relative;
    z-index: 2;
}

.l-introduction-lineup {}


.l-introduction-lineup .lineup {}

.l-introduction-lineup .lineup .l-cover {}

.l-introduction-lineup .lineup .l-cover .l-inner {
    position: relative;
}

.l-introduction-lineup .lineup .l-cover .l-inner .l-introduction-lineup-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 40px;
}

.l-introduction-lineup .lineup .l-cover .l-inner .l-introduction-lineup-meta .l-numbering {}

.l-introduction-lineup .lineup .l-cover .l-inner .l-introduction-lineup-meta .l-numbering .l-title {
    margin: 0;
    color: #fff;
}
.l-introduction-lineup .lineup .l-cover .l-inner .l-introduction-lineup-meta .l-numbering .l-title .sub {
    margin-bottom: 1.5em;
    font-size: 2.0rem;
    border-color: #fff;
}
.l-introduction-lineup .lineup .l-cover .l-inner .l-introduction-lineup-meta .l-numbering .l-title .num {
    line-height: 0.6;
    font-size: 32.0rem;
}
.l-introduction-lineup .lineup .l-cover .l-inner .l-introduction-lineup-meta .l-label {
    padding: 0.15em 0.15em;
    border-radius: 0;
    line-height: 1.1;
    background-color: #fff;
    color: var(--color-text-basic);
    font-size: 8.2rem;
    font-weight: 900;
}

.l-introduction-lineup .lineup .l-cover .l-inner .l-introduction-lineup-meta .l-sub {
    color: #fff;
    margin-bottom: 0;
}

.l-introduction-lineup .lineup .l-main-content {}


@media screen and (min-width: 800px) {
    .l-introduction-lineup .lineup .l-cover .l-inner .l-introduction-lineup-meta {
        display: flex;
        align-items: flex-end;
    }
    .l-introduction-lineup .lineup .l-cover .l-inner .l-introduction-lineup-meta .l-numbering,
    .l-introduction-lineup .lineup .l-cover .l-inner .l-introduction-lineup-meta .l-label  {
        margin-right: 30px;
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-introduction-lineup .lineup .l-cover .l-inner {
        height: 50vw;
    }

    .l-introduction-lineup .lineup .l-cover .l-inner img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .l-introduction-lineup .lineup .l-cover .l-inner .l-introduction-lineup-meta {
        margin: 3.125vw;
        display: flex;
        align-items: flex-end;
    }

    .l-introduction-lineup .lineup .l-cover .l-inner .l-introduction-lineup-meta .l-numbering,
    .l-introduction-lineup .lineup .l-cover .l-inner .l-introduction-lineup-meta .l-label  {
        margin-right: 10px;
    }
    
    .l-introduction-lineup .lineup .l-cover .l-inner .l-introduction-lineup-meta .l-numbering {
    }
    .l-introduction-lineup .lineup .l-cover .l-inner .l-introduction-lineup-meta .l-numbering .l-title .sub {
        margin-bottom: 10px;
        font-size: 1.2rem;
        border-color: #fff;
    }
    .l-introduction-lineup .lineup .l-cover .l-inner .l-introduction-lineup-meta .l-numbering .l-title .num {
        font-size: 6.0rem;
    }
    .l-introduction-lineup .lineup .l-cover .l-inner .l-introduction-lineup-meta .l-label {
        font-size: 3.0rem;
        line-height: .9;
    }

    .l-introduction-lineup .lineup .l-cover .l-inner .l-introduction-lineup-meta .l-sub {
        font-size: 1.6rem;
    }

    .l-introduction-lineup .lineup .l-content .c-section {
        padding-top: 0;
    }
}


/* = INTRODUCTION - メインコンテンツ - 01 ~ 03
----------------------------------------------------- */
/* .l-main-content 内のコンテンツ */

/* 01 - まるうめマーク */
.l-introduction-lineup .lineup01 .l-main-content {}

.l-introduction-lineup .lineup01 .l-symbol-description {}

.l-quote {}
.l-quote .l-title {
    margin-bottom: 0.25em;
    color: var(--color-primary);
    font-size: 1.1em;
    padding-left: 2em;
    background: url(assets/images/icon-book.webp) no-repeat left center;
    background-size: 1.4em auto;
}

@media screen and (min-width: 800px) {
    .l-symbol-description .c-image-content {
        align-items: center;
    }

    .l-symbol-description .c-image-content>.c-image {
        width: 340px;
    }

    .l-symbol-description .c-image-content>.c-content {
        width: calc(100% - 340px - 60px);
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-symbol-description .c-image-content>.c-image img {
        width: 60%;
        margin: auto;
    }
}


/* 01 - 伝統とは、革新の連続である。 */
.l-history-chart {
    margin-top: 2em;
    padding-top: 2em;
    border-top: solid 1px #dcdcdc;
}
.l-history-chart .l-chart {
    margin-bottom: 2em;
    padding-bottom: 2em;
    border-bottom: solid 1px #dcdcdc;
}
.l-history-chart .l-chart .l-year {}
.l-history-chart .l-chart .l-image {}
.l-history-chart .l-chart .l-content {}

.l-history-chart .l-chart .l-year .c-title-numbering .num {
    color: var(--color-text-basic);
    font-size: 6.4rem;
    font-weight: normal;
}

@media screen and (min-width: 800px) {
    .l-history-chart .l-chart .l-year {
        width: 150px;
    }
    .l-history-chart .l-chart .l-image {
        width: 340px;
    }
    .l-history-chart .l-chart .l-content {
        width: 550px;
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-history-chart .l-chart {
        display: block;
    }

    .l-history-chart .l-chart>* {
        display: inline-block;
        vertical-align: top;
    }

    .l-history-chart .l-chart .l-year {
        width: 100%;
        display: block;
        margin-bottom: 3.125vw;
    }
    .l-history-chart .l-chart .l-year .c-title-numbering .num {
        font-size: 3.2rem;
    }
    .l-history-chart .l-chart .l-image {
        width: 36vw;
    }
    .l-history-chart .l-chart .l-content {
        width: calc(100% - 36vw - 5px - 3.125vw);
        margin-left: 3.125vw;
    }
}


/* 02 - こだわり */
.l-passion-description {}

.l-title-passion {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    border: solid 1px var(--color-text-basic);
}

.l-title-passion .japanese {
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 12.0rem;
    font-weight: bold;
    line-height: 1;
    padding: 10px;
    line-height: 0.75;
    /* padding: 15px 35px 15px 0; */
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
}


@media screen and (min-width: 800px) {
    .l-passion-description .c-image-content {
        align-items: flex-start;
    }

    .l-passion-description .c-image-content>.c-image {
        width: 140px;
    }

    .l-passion-description .c-image-content>.c-content {
        width: calc(100% - 140px - 60px);
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-passion-description .c-image-content>.c-image {
        width: 60px;
    }

    .l-passion-description .c-image-content>.c-content {
        width: calc(100% - 60px - 6.25vw);
    }
    
    .l-title-passion {
        /* padding-left: 0;
        padding-right: calc(5px + 10px); */
    }

    .l-title-passion .japanese {
        display: inline-block;
        font-size: 4.8rem;
        line-height: 1;
        padding: 5px;
    }
}


/* 02 - 比較表 */
table.l-table-comparison {}
table.l-table-comparison tr {
    border-bottom: none;
}
table.l-table-comparison th,
table.l-table-comparison td {
    background-color: #fcf2ef;
    border-right: solid 1px #ed7c63;
    padding: 0.75em 1em;
    vertical-align: middle;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
}

table.l-table-comparison th:last-child,
table.l-table-comparison td:last-child {
    border-right: none;
}
table.l-table-comparison thead {}
table.l-table-comparison thead th,
table.l-table-comparison thead td {
    background-color: var(--color-primary);
    color: #fff;
}

table.l-table-comparison tbody tr:nth-child(odd) th,
table.l-table-comparison tbody tr:nth-child(odd) td {
    background-color: #fae6e1;
}

.icon-symbol {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background: url(assets/images/logo-symbol-white.webp) no-repeat center;
    background-size: contain;
    vertical-align: middle;
    margin-right: 0.25em;
}


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

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




/* = INTRODUCTION - メインコンテンツ - 最後のまとめのチャプター
----------------------------------------------------- */

.sub-introduction-final {}



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

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



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

	=SUBPAGES - JOBS - ARCHIVE [募集要項 - 一覧]

-----------------------------------------------------
*/
/* JOBS - ページ全体 */
.sub-jobs {}
@media screen and (min-width: 800px) {}
@media screen and (min-width: 0px) and (max-width: 799px) {}

/* JOBS - 記事一覧 */
.l-sub-jobs-archive {}

.l-sub-jobs-latest {}

@media screen and (min-width: 800px) {}
@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-sub-jobs-archive {}
}

/* ※.jobs-lineup は「採用情報」配下ページで共通 */

.jobs-lineup {}
.jobs-lineup .lineup {
	position: relative;
    overflow: hidden;
    padding-bottom: 2em;
}
.jobs-lineup .lineup>* {}
.jobs-lineup .lineup .image {
	overflow: hidden;
	position: relative;
	padding-bottom: 66.66%;
    border-radius: 15px;
}
.jobs-lineup .lineup .image img {
	position: absolute;
	object-fit: cover;
	width: 100%;
	height: 100%;
	height: 100%;
	-webkit-transition: all cubic-bezier(0.190, 1.000, 0.220, 1.000) 0.6s;
	-moz-transition: all cubic-bezier(0.190, 1.000, 0.220, 1.000) 0.6s;
	-ms-transition: all cubic-bezier(0.190, 1.000, 0.220, 1.000) 0.6s;
	transition: all cubic-bezier(0.190, 1.000, 0.220, 1.000) 0.6s;
}
.jobs-lineup .lineup a:hover .image img {
	opacity: 1;
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
}
.jobs-lineup .lineup .content {
	padding: 2em 0 0;
	font-size: 1.4rem;
}
.jobs-lineup .lineup .content>* {}
.jobs-lineup .lineup .content .meta {
	margin: 0 0 20px;
    font-weight: normal;
}
.jobs-lineup .lineup .content .meta>* {
	display: inline-block;
    vertical-align: middle;
    margin: 0 20px 0 0;
}
.jobs-lineup .lineup .content .location {
	padding-left: 20px;
	background: url(assets/images/icon-marker.webp) no-repeat left center;
	background-size: 13px auto;
	line-height: 1.5;
    color: var(--color-primary);
}

.jobs-lineup .lineup .content .category {
    border-radius: 4px;
    padding: 0.1em .75em;
    background-color: var(--color-primary);
    color: #fff;
}


.jobs-lineup .lineup ul.list-tag {
	font-size: 0;
	letter-spacing: 0;
}
.jobs-lineup .lineup ul.list-tag li {
	display: inline-block;
	vertical-align: top;
	margin: 0 10px 0 0;
	color: var(--color-primary);
	color: #aaa;
	font-size: 1.2rem;
	line-height: 1.5;
	font-weight: normal;
	text-decoration: none;
}
.jobs-lineup .lineup ul.list-tag li::before {
	content: "#";
}
.jobs-lineup .lineup .content .title {
	margin: 0 0 15px;
	font-size: 2.1rem;
	font-weight: bold;
	line-height: 1.6;
}
.jobs-lineup .lineup .content .title a {
	text-decoration: none;
	color: inherit;
}
.jobs-lineup .lineup .content .text {
	margin: 0 0 15px;
}
.jobs-lineup .lineup .content>*:last-child {
	margin-bottom: 0
}
@media screen and (min-width: 800px) {}

@media screen and (min-width: 0px) and (max-width: 799px) {
	.sub-recruit-other-jobs .c-section {}
	.jobs-lineup.u-responsive {}
	.jobs-lineup.u-responsive>.lineup {
		margin-bottom: 6.25vw;
	}
    
	.jobs-lineup .lineup .image {
		padding-bottom: 66.66%;
        border-radius: 10px;
	}
	.jobs-lineup .lineup .content {
        padding-top: 3.125vw;
	}
	.jobs-lineup .lineup .content .meta {
        margin-bottom: 3.125vw;
		font-size: 1.2rem;
	}
	.jobs-lineup .lineup .content .location {
		float: none;
	}
	.jobs-lineup .lineup .content .title {
		font-size: 1.4rem;
	}
    .jobs-lineup .lineup .content .text {
        font-size: 1.2rem;
    }
}

/* JOBS - ページネーション [WP-PageNavi]  */
.u-ver-recruitment_site .wp-pagenavi a:hover,
.u-ver-recruitment_site .wp-pagenavi span.current {
	opacity: 1;
	border-color: var(--color-secondary);
	color: var(--color-secondary);
}


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

	=SUBPAGES - JOBS - ARTICLE [募集要項 - 詳細ページ]

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

/* JOBS - ARTICLE - ページ全体 */
.l-sub-jobs-article {}
@media screen and (min-width: 800px) {}
@media screen and (min-width: 0px) and (max-width: 799px) {}

/* JOBS - ARTICLE - 記事部分 */
.jobs-header {}
.jobs-header .c-image-content>.c-image {}
.jobs-header .c-image-content>.c-content {}
.jobs-header .meta {
	margin: 0 0 2em;
	font-size: .9em;
}
.jobs-header .meta>* {
	display: inline-block;
	vertical-align: middle;
}
.jobs-header .meta>*:not( :last-child) {
	margin: 0 20px 0 0;
}
.jobs-header .location {
	padding-left: 20px;
	background: url(assets/images/icon-marker.webp) no-repeat left center;
	background-size: 13px auto;
    color: var(--color-primary);
}

.jobs-header .category {
    border-radius: 4px;
    padding: 0.1em .75em;
    background-color: var(--color-primary);
    color: #fff;
}

.jobs-header .title {
	margin: 0em 0 1.0em;
	font-size: 4.0rem;
	font-weight: 900;
	line-height: 1.35;
}
.jobs-header ul.list-tag li {
	display: inline-block;
	vertical-align: top;
	margin: 0 10px 0 0;
	color: var(--color-primary);
	color: #aaa;
	font-size: 1.2rem;
	line-height: 1.5;
	font-weight: normal;
	text-decoration: none;
}
.jobs-header ul.list-tag li::before {
	content: "#";
}

.jobs-main {}

.jobs-main ul.c-list-circle li::before {}

.c-frame-jobs {
	padding: 3em;
    border-radius: 30px;
	background-color: #fff;
    font-weight: 500;
}
.c-frame-jobs:not( :last-child) {
	margin: 0 0 2.0em;
}
.c-title-jobs {
	margin: 0 0 .75em;
	font-size: 3.2rem;
	font-weight: bold;
	line-height: 1.5;
}
.c-title-jobs span {
	display: inline-block;
}
.c-title-jobs.white span {
	border-color: #fff;
}

table.table-jobs {}
table.table-jobs tr {
	border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}
table.table-jobs th,
table.table-jobs td {
	border: none;
	letter-spacing: 0;
	vertical-align: middle;
}
table.table-jobs th {}

@media screen and (min-width: 800px) {
	.jobs-header .c-image-content>.c-image {
		width: 600px;
	}
	.jobs-header .c-image-content>.c-content {
		width: calc(100% - 600px - 60px);
	}
}

@media screen and (min-width: 0px) and (max-width: 799px) {
	.jobs-header .c-content .title {
		font-size: 2.4rem;
	}
    .c-frame-jobs {
        padding: 2em;
    }
	.c-title-jobs {
		font-size: 1.8rem;
        text-align: center;
	}
	table.table-jobs,
	table.table-jobs tr,
	table.table-jobs th,
	table.table-jobs td {
		display: block;
		width: 100% !important;
		height: auto !important;
	}
	table.table-jobs tr {
		padding-bottom: 2em;
		margin-bottom: 2em;
	}
	table.table-jobs tr,
	table.table-jobs th,
	table.table-jobs td {
        display: block;
		width: 100% !important;
		height: auto !important;
	}
	table.table-jobs th,
	table.table-jobs td {
		padding: 0;
	}
	table.table-jobs th {
		padding-bottom: 10px;
	}
}


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

	=SUBPAGES - PRIVACY

-----------------------------------------------------
*/
.sub-privacy {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.l-sub-privacy-main {
    font-weight: normal;
}

@media screen and (min-width: 800px) {
    .l-sub-privacy-main {
        font-size: 1.6rem;
    }
}

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

    .l-sub-privacy-main hr {
        height: 7.5vw;
    }
}


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

	=SUBPAGES - ENTRY

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

.sub-entry {
    position: relative;
    z-index: 2;
}

.l-sub-entry-intro {
    position: relative;
    z-index: 2;
}


.l-sub-entry-main {
    position: relative;
    z-index: 2;
    background-color: var(--color-primary);
    color: #fff;
}

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

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


/* ループするギャラリー */
.l-sub-entry-intro .loop-animation-background {
    position: relative;
    z-index: 3;
    height: calc(868px / 2);
    background-size: auto 100%;
    animation-name: loop-animation-l-sub-entry-intro;
    border-radius: 10px;
}

.l-sub-entry-intro .loop-animation-background {
    background-image: url(assets/images/action-entry-gallery.webp);
}

@keyframes loop-animation-l-sub-entry-intro {
    0% {
        background-position-x: 0;
    }

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

@media screen and (min-width: 800px) {
    .l-sub-entry-intro .loop-animation-background {}
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-sub-entry-intro .loop-animation-background {
        margin: 0 0;
        height: calc(434px / 2);
    }
}


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

	=SUBPAGES - ENTRY - THAMKS

-----------------------------------------------------
*/
.sub-thanks {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.l-sub-thanks-main {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

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

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


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

	=SUBPAGES - FORM (PLUG-IN)

-----------------------------------------------------
*/
/* フォーム（WPプラグイン「Contact Form 7」を使用） */
/* フォーム本体 */
.form-main {
    padding-top: 0;
    width: 960px;
    max-width: 100%;
}

.form-main table.table-form {
    width: 100%;
    border-collapse: collapse;
    line-height: 1.75;
    text-align: left;
}

.form-main table.table-form a {
    color: #fff;
}

.form-main table.table-form tr,
.form-main table.table-form th,
.form-main table.table-form td {
    display: block;
    width: 100%;
    vertical-align: top;
    text-align: left;
    border: none;
}

.form-main table.table-form tr {
    margin: 0 0 2em;
}

.form-main table.table-form tr {}

.form-main table.table-form th,
.form-main table.table-form td {
    padding: 0.5em 0;
    font-weight: normal;
}

.form-main table.table-form th {
    font-size: 1.125em;
    font-weight: bold;
}

.form-main input[type="text"],
.form-main input[type="email"],
.form-main input[type="tel"],
.form-main select,
.form-main textarea {
    width: 100%;
    padding: 1.5em;
    border-radius: 10px;
    background-color: transparent;
    background-color: #fff;
    border: solid 1px #fff;
    color: var(--color-text-basic);
    font-family: inherit;
    font-size: 1.6rem;
}

.mwform-tel-field input[type="text"],
.mwform-zip-field input[type="text"] {
    display: inline-block;
    vertical-align: unset;
}

.form-main textarea {
    width: 100%;
}

.form-main select {
    appearance: none;
    -webkit-appearance: none;
    max-width: 100%;
    background: url(assets/images/icon-arrow-down-select.webp) no-repeat right 1em center;
    background-color: #f7f0f5;
    background-size: 9px auto;
}

.form-main select option.placeholder {
    color: rgba(51, 51, 51, 0.5);
}

.form-main .vertical label {
    display: block;
}

.form-main ::placeholder {
    color: rgba(51, 51, 51, 0.5);
}

.form-main em {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 1em;
    padding: 0.25em .75em;
    border-radius: 3px;
    background-color: #000;
    color: #fff;
    font-size: 0.75em;
    font-weight: 600;
    line-height: 1.2;
}

.form-main .error {
    display: block;
    margin: .5em 0 0;
    padding: .5em 1em;
    border: solid 1px #F00;
    border: solid 1px yellow;
    background-color: #fbf1f1;
    color: #f00;
    color: yellow;
    border-radius: 0;
}

.form-main .wpcf7-not-valid-tip {
    color: yellow;
}

.form-main a {}

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

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

    .form-main table.table-form,
    .form-main table.table-form tr,
    .form-main table.table-form th,
    .form-main table.table-form td {
        display: block;
        width: 100%;
        background-color: transparent;
        border: none;
    }

    .form-main table.table-form {}

    .form-main table.table-form tr {}

    .form-main table.table-form th,
    .form-main table.table-form td {
        padding: 5px 0;
        font-size: 1em;
    }

    .form-main input,
    .form-main input[type="text"],
    .form-main input[type="tel"],
    .form-main input[type="email"],
    .form-main textarea,
    .form-main select,
    .form-main input[type*="submit"] {
        font-size: 14px;
    }

    .form-main input[type="text"],
    .form-main input[type="tel"],
    .form-main input[type="email"],
    .form-main textarea {
        width: 100%;
        padding: 0.75em;
    }

    .form-main select {
        padding: 0.5em;
        width: 100%;
    }

    .form-main input[type="radio"] {
        padding: 0;
        vertical-align: middle;
        position: relative;
        top: -1px;
    }

    .form-main input[type="checkbox"] {
        padding: 0;
        vertical-align: middle;
        position: relative;
        top: -1px;
    }

    .form-main input[type="file"] {
        width: 100%;
        padding: 0;
        font-size: 12px;
    }

    .form-main input[type*="submit"] {
        width: 100%;
    }
}

/* レイアウト調整 */
.form-main .horizontal>br {
    display: none;
}

.form-main .horizontal label {
    display: block;
    padding: 1.005em;
    line-height: 1;
    vertical-align: middle;
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    background-color: transparent;
    background-color: #fff;
    border: solid 1px #fff;
    color: var(--color-text-basic);
}

.form-main .horizontal label:hover {
    border-color: #f00;
}

@media screen and (min-width: 800px) {
    .form-main .horizontal {
        font-size: 0;
        letter-spacing: 0;
    }

    .form-main .horizontal .wpcf7-list-item {
        display: inline-block;
        vertical-align: text-top;
        font-size: 1.6rem;
    }

    .form-main .horizontal.u-col-3 .wpcf7-list-item {
        width: 32.33%;
        margin: 0 1% 1% 0;
    }

    .form-main .horizontal.u-col-2 .wpcf7-list-item {
        width: 49%;
        margin: 0 1% 1% 0;
    }

    .form-main .horizontal.u-col-1 .wpcf7-list-item {
        width: 100%;
        margin: 0 0% 1% 0;
    }

    .form-main .horizontal label {
        padding: 1.5em;
    }

    .form-main .horizontal-half {
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        flex-shrink: 0;
        justify-items: center;
        align-items: center;
        align-items: flex-start;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .form-main .horizontal-half .half-item {
        margin-bottom: 0;
        width: 50%;
    }

    .form-main .horizontal-half .half-item:nth-child(odd) {
        padding-right: 10px;
    }
}

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

    .form-main .horizontal .wpcf7-list-item,
    .form-main .horizontal-half .half-item {
        display: inline-block;
        vertical-align: middle;
        width: 100%;
        margin: 0 0 1%;
    }

    .form-main .horizontal-half .half-item {
        margin-bottom: 10px;
    }
}

/* 送信ボタン - ボタンの全領域をクリック可能に変更 */
.form-main .submit-button {
    position: relative;
}

.form-main .submit-button p {
    line-height: 1.25;
}

.form-main input[type*="submit"] {
    display: inline;
    font-size: inherit;
    font-weight: inherit;
    width: auto;
    text-align: inherit;
    margin: auto 0;
    padding: 0;
    background-color: transparent;
}

.form-main .submit-button input[type*="submit"] {
    display: block;
    position: absolute;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    padding: 1em 2em;
    cursor: pointer;
    opacity: 0;
}

/* 送信ボタン - ボタンのデザイン装飾 */
/* ベースCSS --> .c-button-readmore */
