/******************************************************************
Theme Name: earthsolar_ver2
Theme URI: davinciinc.co.jp
Author: DAVINCI inc.
Author URI: https://davinciinc.co.jp/
Version: 2.0
******************************************************************/

/* --------------------------------------------------
 common
--------------------------------------------------- */

/* font setting
--------------------------------------------------- */

@charset "UTF-8";


/* reset
--------------------------------------------------- */

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}:where([hidden]:not([hidden='until-found'])){display:none!important}:where(html){-webkit-text-size-adjust:none;color-scheme:dark light}@media (prefers-reduced-motion:no-preference){:where(html:focus-within){scroll-behavior:smooth}}:where(body){line-height:1.5;font-family:system-ui,sans-serif;-webkit-font-smoothing:antialiased}:where(input,button,textarea,select){font:inherit;color:inherit}:where(textarea){resize:vertical;resize:block}:where(button,label,select,summary,[role='button'],[role='option']){cursor:pointer}:where(:disabled){cursor:not-allowed}:where(label:has(>input:disabled),label:has(+input:disabled)){cursor:not-allowed}:where(button){border-style:solid}:where(a){color:inherit;text-underline-offset:.2ex}:where(ul,ol){list-style:none}:where(img,svg,video,canvas,audio,iframe,embed,object){display:block}:where(img,picture,svg){max-inline-size:100%;block-size:auto}:where(p,h1,h2,h3,h4,h5,h6){overflow-wrap:break-word}:where(h1,h2,h3){line-height:calc(1em + 0.5rem)}:where(hr){border:none;border-block-start:1px solid;color:inherit;block-size:0;overflow:visible}:where(:focus-visible){outline:3px solid Highlight;outline-offset:2px;scroll-margin-block:10vh}:where(.visually-hidden:not(:focus-within,:active)){clip-path:inset(50%)!important;height:1px!important;width:1px!important;overflow:hidden!important;position:absolute!important;white-space:nowrap!important;border:0!important}

/* root setting
--------------------------------------------------- */

:root {
    --font-jp: Arial,"Helvetica Neue","Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	--font-min: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    --font-en-01: 'Montserrat', sans-serif;
    --font-en-02: 'futura-pt', sans-serif;
	--color-bk: #191919;
	--color-bgy: #2d2d2d;
	--color-dgy: #666;
	--color-dwgy: #f2f2f2;
    --color-wgy: #f6f6f6;
	--color-wh: #fff;
    --color-red: #d1564d;
    --color-blu: #78bdd6;
	--color-theme-01: #4099b5;
	--color-theme-02: #fae10f;
    --color-theme-03: #265f68;
    --color-theme-04: #04687f;
    --color-theme-05: #f7d02d;
}

/* layout
--------------------------------------------------- */

html {
    height: 100%;
    font-size: 100%;
    background-color: var(--color-wh)!important;
}
@media screen and (min-width: 1280px) {
    html {
        font-size: 95%;
    }
}

body {
    height: 100%;
    font-family: var(--font-jp);
    font-weight: 500;
    line-height: 1.8;
    color: var(--color-bk);
    background-color: var(--color-wh)!important;
    overflow-y: scroll;
}
body::after {
    z-index: 9999;
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: var(--color-wh);
    pointer-events: none;
    animation-name: fadeOut;
    animation-delay: 0;
    animation-duration: .7s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8,0,.5,1);
}
body.viewtrans::after {
    animation-name: fadeIn;
    animation-delay: 0;
    animation-duration: .7s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8,0,.5,1);
}
@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
}
a {
    display: block;
    text-decoration: none;
	outline: none;
    cursor: pointer;
    transition: .2s;
}
img,
svg {
    width: 100%;
    height: auto;
}
.wrap {
    position: relative;
    width: 100%;
    min-width: 320px;
    height: auto !important;
    height: 100%;
    min-height: 100%;
    margin: auto;
    background-color: var(--color-wh)!important;
	overflow-x: hidden;
}
.mask {
    width: auto;
    height: auto;
    overflow: hidden;
}
.mask .mask__inner {
    width: inherit;
    height: inherit;
    opacity: 0;
    overflow: hidden;
}
.mask .mask__inner.inview {
    position: relative;
    animation-name: maskIn;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8,0,.5,1);
    opacity: 1 !important;
}
.mask .mask__inner.inview:before {
    z-index: 1;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-theme-01);
    animation-name: maskOut;
    animation-duration: .5s;
    animation-delay: .5s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8,0,.5,1);
}

@keyframes maskIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}
@keyframes maskOut {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(101%);
    }
}
.fade {
    opacity: 0;
}
.fade.inview {
    position: relative;
    animation-name: fadeIn;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8,0,.5,1);
    opacity: 0;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@media screen and (max-width: 767px) {
    br.is-pc {
        display: none;
    }
}
@media screen and (min-width: 768px) {
    br.is-sp {
        display: none;
    }
}

/* --------------------------------------------------
 header
--------------------------------------------------- */

.header {
    z-index: 94;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: .3s;
}
.header::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(255,255,255,0.9);
    transition: .3s;
}
.header.scroll::before {
    top: 0;
}
.header__inner {
    z-index: 1;
    position: relative;
}
.header__inner .logo {
    z-index: 2;
    position: relative;
    width: 100%;
    height: 60px;
}
.header__inner .logo .logo__img {
    z-index: 3;
    display: block;
    position: absolute;
    top: 50%;
    left: 5px;
    width: 150px;
	height: 100%;
    transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
	.header::before {
        top: 0;
        height: 70px;
    }
    .header__inner .logo {
		width: 190px;
        height: 70px;
    }
	.header__inner .logo .logo__img {
		left: 20px;
        width: 160px;
    }
}
@media screen and (min-width: 1024px) {
    .header::before {
        top: 0;
        height: 80px;
    }
    .header__inner {
        display: flex;
		align-items: center;
		width: 100%;
    }
    .header__inner .logo {
        width: 190px;
        height: 80px;
		margin-right: auto;
    }
	.header__inner .logo .logo__img {
		width: 170px;
    }
}
@media screen and (min-width: 1280px) {
	.header__inner {
		padding-left: 50px;
	}
	.header__inner .logo .logo__img {
		left: 0;
        width: 190px;
    }
}
@media screen and (min-width: 1601px) {
	.header__inner {
		margin: auto;
		padding: 0 0 0 80px;
	}
}
.header__inner .logo .logo__img img {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: auto;
	transform: translate(0, -50%);
}

/* menu-btn
--------------------------------------------------- */

.menu-btn {
    z-index: 9999;
    position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 60px;
}
@media screen and (min-width: 768px) {
	.menu-btn {
		width: 60px;
		height: 70px;
	}
}
@media screen and (min-width: 1024px) {
    .menu-btn {
        display: none;
    }
}
.menu-btn span {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 1.2px;
    background: var(--color-bk);
    transform: translate(0, -50%);
    transition: .3s;
}
.header.scroll .menu-btn span {
	background: var(--color-bk);
}
.wrap.is-page .menu-btn span,
.wrap.is-single .menu-btn span {
    background: var(--color-bk);
}
.wrap.is-page .menu-btn.active span,
.wrap.is-single .menu-btn.active span {
    background: var(--color-wh);
}
.menu-btn span:nth-of-type(1) {
    margin-top: -4px;
}
.menu-btn span:nth-of-type(2) {
    margin-top: 4px;
}
.menu-btn.active span:nth-of-type(1) {
    margin: 0;
    transform: translate(0,-50%) rotate(38deg);
}
.menu-btn.active span:nth-of-type(2) {
    margin: 0;
    transform: translate(0,-50%) rotate(-38deg);
}

/* g-nav
--------------------------------------------------- */

.g-nav {
    z-index: 9998;
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    background: var(--color-theme-01);
    transition: .3s;
}
.g-nav.open {
    right: 0;
}
.g-nav__list > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 100px 30px 150px;
}
.g-nav__list > ul > li {
    position: relative;
    width: 100%;
}
.g-nav__list > ul > li > a,
.g-nav__list > ul > li > .parent > a {
    position: relative;
    padding: 10px 5px;
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: .1em;
    color: var(--color-wh);
    cursor: pointer;
}
.g-nav__list > ul > li > a::before,
.g-nav__list > ul > li > .parent > a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-wh);
    opacity: .3;
}
.g-nav__list span.en {
    margin-left: .8em;
    font-family: var(--font-en-01-02);
    font-size: 0.85rem;
    color: var(--color-theme-03);
}
.g-nav__list > ul > li > a span.arrow {
    position: absolute;
    top: 50%;
    right: 15px;
    width: 40px;
    height: 40px;
    transform: translate(0, -50%);
}
.g-nav__list > ul > li > a span.arrow::before,
.g-nav__list > ul > li > a span.arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
}
.g-nav__list > ul > li > a span.arrow::before {
    width: 100%;
    height: 1px;
    background: var(--color-wh);
    transform: translate(0, -50%);
}
.g-nav__list > ul > li > a span.arrow::after {
    width: 4px;
    height: 4px;
    border-top: 1px solid var(--color-wh);
    border-right: 1px solid var(--color-wh);
    transform: translate(0, -50%) rotate(45deg);
}
.g-nav__list > ul > li > .sub {
    padding-top: 20px;
}
.g-nav__list > ul > li > .sub .sub__item p {
    display: inline;
    padding: 10px;
    font-size: 0.9rem;
    background: var(--color-wh);
}
.g-nav__list > ul > li > .sub .sub__item ul {
    padding: 0 0 30px;
}
.g-nav__list > ul > li > .sub .sub__item ul li a {
    position: relative;
    padding: 10px 30px 10px 10px;
    line-height: 1;
    color: var(--color-wh);
    border-bottom: 1px dotted var(--color-theme-04);
}
.g-nav__list > ul > li > .sub .sub__item ul li a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 6px;
    height: 6px;
    border-top: 1px solid var(--color-wh);
    border-right: 1px solid var(--color-wh);
    transform: translate(0, -50%) rotate(45deg);
}
@media screen and (min-width: 1024px) {
    .g-nav {
        position: relative;
        top: inherit;
        right: inherit;
        width: auto;
        height: 80px;
		margin-left: auto;
		margin-right: 0;
		padding: 0;
        overflow: hidden;
        background: none;
    }
    .g-nav__list > ul {
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        height: 80px;
        gap: 10px;
        padding: 0;
    }
    .g-nav__list > ul > li {
        width: auto;
        height: 100%;
    }
    .g-nav__list > ul > li > a,
	.g-nav__list > ul > li > .parent,
    .g-nav__list > ul > li > .parent > a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        font-size: 0.9rem;
		line-height: 1;
        cursor: pointer;
		color: var(--color-bk);
    }
	.g-nav__list > ul > li > .has-child > a {
		padding-right: 15px;
	}
    .g-nav__list > ul > li > a:hover,
    .g-nav__list > ul > li > .parent > a:hover {
        text-decoration: underline;
    }
    .g-nav__list > ul > li > a::before,
    .g-nav__list > ul > li > .parent > a::before {
        display: none;
    }
	.g-nav__list > ul > li > .has-child > a::after {
        display: block;
		content: "";
		position: absolute;
		top: 50%;
		right: 0;
		width: 6px;
		height: 6px;
        margin-top: -2px;
		border-bottom: 1px solid var(--color-bk);
		border-right: 1px solid var(--color-bk);
		transform: translate(0, -50%) rotate(45deg);
    }
	.g-nav__list > ul > li span {
        display: block;
        text-align: center;
        line-height: 1.6;
    }
    .g-nav__list span.jp {
        font-weight: 700;
    }
    .g-nav__list span.en {
        font-size: 0.75rem;
    }
    .g-nav__list > ul > li > a span.arrow {
        display: none;
    }
	.g-nav__list > ul > li > .sub {
        position: fixed;
        top: 80px;
        left: auto;
        width: auto;
		padding: 0;
        margin-left: -40px;
        background: var(--color-wgy);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: .1s;
    }
    .g-nav__list > ul > li:hover > .sub {
        height: auto;
        opacity: 1;
        visibility: visible;
        pointer-events: painted;
    }
    .g-nav__list > ul > li > .sub .sub__inner {
        display: flex;
        align-items: flex-start;
        gap: 60px;
		margin: auto;
        padding: 0;
    }
	.g-nav__list > ul > li > .sub .sub__item ul {
		padding: 0;
	}
    .g-nav__list > ul > li > .sub .sub__item ul li a {
        width: 200px;
        padding: 15px 40px 10px 15px;
        color: var(--color-bk);
        border-bottom: 1px solid var(--color-dwgy);
        font-size: 0.9rem;
        transition: .2s;
    }
    .g-nav__list > ul > li > .sub .sub__item ul li a:hover {
        background: var(--color-dgy);
        color: var(--color-wh);
    }
    .g-nav__list > ul > li > .sub .sub__item ul li:nth-last-child(1) a {
        border-bottom: 0;
    }
}
@media screen and (min-width: 1280px) {
	.g-nav__list > ul {
		gap: 20px;
	}
	.g-nav__list > ul > li > a,
	.g-nav__list > ul > li > .parent,
    .g-nav__list > ul > li > .parent > a {
		font-size: 0.95rem;
        letter-spacing: 0.1em;
		color: var(--color-bk);
	}
    .g-nav__list > ul > li > .sub .sub__item ul li a {
        padding: 12px 20px;
        color: var(--color-bk);
        border-bottom: 1px solid var(--color-dwgy);
        font-size: 0.9rem;
    }
}
.header__lang {
	z-index: 9997;
    position: relative;
    width: auto;
    margin: auto;
    padding-top: 40px;
    transition: .2s;
}
.header__lang ul {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	width: auto;
    border: 1px solid var(--color-theme-02);
    background: var(--color-wh);
    border-radius: 4px;
}
.header__lang ul li a {
	padding: 5px 10px;
    color: var(--color-bk);
	font-size: 0.8rem;
	text-decoration: underline;
}
.header__lang ul li.active a {
	pointer-events: none;
	background: var(--color-theme-02);
	color: var(--color-bk);
	text-decoration: none;
}
@media screen and (min-width: 768px) {
	.header__lang {
		position: absolute;
		bottom: inherit;
		top: 50%;
		left: inherit;
		right: 240px;
        margin: 0;
        padding-top: 0;
		transform: translate(0, -50%);
	}
}
@media screen and (min-width: 1024px) {
	.header__lang {
		display: flex;
		align-items: center;
		position: relative;
		top: inherit;
		right: inherit;
		width: auto;
		height: 80px;
		margin-left: 20px;
		transform: translate(0, 0);
	}
}
@media screen and (min-width: 1280px) {
	.header__lang {
		margin-left: 40px;
	}
}

.header__contact {
	z-index: 2;
	position: absolute;
	top: 50%;
	right: 70px;
	transform: translate(0, -50%);
	background: var(--color-wh);
	color: var(--color-theme-01);
	font-size: 0.85rem;
    font-weight: 700;
	line-height: 1;
	border-radius: 20px;
    transition: .3s;
}
.header.scroll .header__contact,
.wrap.is-page .header__contact,
.wrap.is-single .header__contact {
    background: var(--color-theme-01);
	color: var(--color-wh);
}
.header__contact a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
}
.header__contact a span.text {
    margin-left: 5px;
}
.header__contact a span.icon {
    width: 16px;
    height: 16px;
    background-image: url("assets/images/icon-mail-bl.svg");
    background-position: center center;
    background-repeat: no-repeat;
}
.header.scroll .header__contact a span.icon,
.wrap.is-page .header__contact a span.icon,
.wrap.is-single .header__contact a span.icon {
    background-image: url("assets/images/icon-mail-wh.svg");
}
@media screen and (min-width: 768px) {
	.header__contact {
		right: 90px;
	}
}
@media screen and (min-width: 1024px) {
	.header__contact {
		display: flex;
		align-items: center;
		justify-content: center;
		top: auto;
		right: auto;
		position: relative;
		width: auto;
		height: 80px;
		margin-left: 20px;
        border-radius: 0;
		transform: translate(0, 0);
	}
    .header__contact a {
        width: 100%;
        height: 100%;
        padding: 10px 20px;
        background: var(--color-theme-01);
		color: var(--color-wh);
		font-size: 0.95rem;
        transition: .2s;
    }
    .header__contact a:hover {
        background: var(--color-theme-04);
    }
	.header__contact a span.icon {
		width: 18px;
		height: 18px;
		background-image: url("assets/images/icon-mail-wh.svg");
	}
	.header__contact a span.text {
		margin-left: 10px;
	}
}
@media screen and (min-width: 1280px) {
	.header__contact {
		margin-left: 40px;
    }
    .header__contact a {
        padding: 10px 25px;
		font-size: 1rem;
    }
}

/* fixed menu
--------------------------------------------------- */

.fixed-menu {
    z-index: 93;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 70px;
}
.fixed-menu ul {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}
.fixed-menu ul li {
    width: 33.3333%;
    height: 100%;
}
.fixed-menu ul li:nth-child(1) {
    background: var(--color-theme-05);
}
.fixed-menu ul li:nth-child(2) {
    background: var(--color-theme-01);
}
.fixed-menu ul li:nth-child(3) {
    background: var(--color-theme-04);
}
.fixed-menu ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.fixed-menu ul li a span.icon {
    display: block;
    width: 38px;
}
.fixed-menu ul li a span.text {
    margin-top: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-wh);
}
@media screen and (min-width: 1280px) {
    .fixed-menu {
        z-index: 999;
        bottom: auto;
        top: 0;
        width: 25vw;
        max-width: 300px;
        height: 100px;
    }
    .fixed-menu ul li a span.text {
        font-size: 0.8rem;
    }
}

/* main page common
--------------------------------------------------- */

.wrap.is-page .main__inner,
.wrap.is-single .main__inner {
    padding-top: 60px;
	background: var(--color-wgy);
}
@media screen and (min-width: 1024px) {
    .wrap.is-page .main__inner,
	.wrap.is-single .main__inner {
        padding-top: 80px;
    }
}

.page-header {
    z-index: 20;
    position: relative;
    width: 100%;
	background: var(--color-wh);
}
.page-header__bg {
	z-index: 2;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

/*.page-header::before {
    z-index: 2;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130px;
    background: var(--color-wh);
}*/
.page-header__inner {
    z-index: 3;
    position: relative;
    width: 100%;
}
.page-header__title {
    padding: 40px 20px 20px;
}
.page-header__title h1 {
    font-family: var(--font-en-02);
    font-size: 2.5rem;
    font-weight: 400;
}
.page-header__title h1 span {
    font-size: 1rem;
}
.page-header__title p {
    padding-top: 10px;
    font-size: 0.8rem;
}
@media screen and (min-width: 768px) {
	.page-header__bg {
		bottom: -80px;
	}
    .page-header::before {
        height: 190px;
    }
    .page-header__inner {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        padding: 150px 60px 30px;
    }
    .page-header__inner .breadcrumb {
        width: 300px;
        padding: 0;
    }
    .page-header__title {
        margin-right: auto;
        padding: 0;
    }
    .page-header__title h1 {
        font-size: 2.8rem;
        letter-spacing: .1em;
    }
    .page-header__title h1 span {
        margin-left: 15px;
        font-size: 1.2rem;
        letter-spacing: normal;
    }
    .page-header__title p {
        padding-top: 10px;
        font-size: 0.9rem;
        letter-spacing: .05em;
    }
}
@media screen and (min-width: 1024px) {
    .page-header::before {
        height: 210px;
    }
    .page-header__inner {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        padding: 180px 60px 30px;
    }
    .page-header__inner .breadcrumb {
        width: 400px;
        padding: 0;
    }
    .page-header__title {
        margin-right: auto;
        padding: 0;
    }
}
@media screen and (min-width: 1280px) {
	.page-header__bg {
		bottom: -120px;
	}
    .page-header::before {
        height: 240px;
    }
    .page-header__inner {
        max-width: 1400px;
        margin: auto;
        padding: 100px 60px 30px;
    }
    .page-header__title h1 {
        font-size: 4rem;
        letter-spacing: .05em;
    }
    .page-header__title h1 span {
        margin-left: 15px;
        font-size: 1.4rem;
        letter-spacing: normal;
    }
	.page-header__title p {
		padding-left: 10px;
	}
}
@media screen and (min-width: 1400px) {
	.page-header__bg {
		bottom: -9vw;
	}
}

/* breadcrumb
--------------------------------------------------- */

.breadcrumb {
    width: 100%;
    position: relative;
    padding: 30px 20px 10px;
}
.breadcrumb ul {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 5px;
    width: 100%;
    overflow-x: scroll;
    white-space: nowrap;
}
.breadcrumb ul::-webkit-scrollbar {
    display: none;
}
.breadcrumb ul li {
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 20px;
    font-size: 0.7rem;
    font-weight: 400;
}
.breadcrumb ul li::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 6px;
    width: 5px;
    height: 5px;
    border-top: 1px solid var(--color-dgy);
    border-right: 1px solid var(--color-dgy);
    transform: translate(0, -50%) rotate(45deg);
}
.breadcrumb ul li:nth-last-child(1) {
    padding-right: 0;
}
.breadcrumb ul li:nth-last-child(1)::after {
    display: none;
}
.breadcrumb ul li a {
    color: var(--color-dgy);
    text-decoration: underline;
}
.breadcrumb ul li a.disabled {
    text-decoration: none;
    pointer-events: none;
}
@media screen and (min-width: 768px) {
    .breadcrumb ul {
        padding-top: 25px;
        justify-content: flex-end;
    }
    .breadcrumb ul li {
        font-size: 0.75rem;
    }
}
@media screen and (min-width: 1280px) {
    .breadcrumb ul {
        padding-top: 15px;
    }
    .breadcrumb ul li {
        font-size: 0.8rem;
    }
}

/* link__btn
--------------------------------------------------- */

.link__btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: auto;
	max-width: 200px;
	padding: 10px 20px 10px 15px;
	background: var(--color-theme-02);
	border-radius: 40px;
    transition: .2s;
}
.link__btn a:hover {
    background: var(--color-theme-05);
}
.link__btn a span.link__text {
	padding-top: 2px;
	font-size: 0.9rem;
	line-height: 1;
	letter-spacing: .1em;
	font-weight: 700;
}
@media screen and (min-width: 768px) {
	.link__btn a {
		padding: 15px 25px 15px 20px; 
	}
    .link__btn a span.link__text {
        font-size: 1rem;
    }
}
.link__btn a span.link__arrow {
	position: relative;
	width: 18px;
	height: 18px;
	margin-left: 20px;
}
.link__btn a span.link__arrow::before,
.link__btn a span.link__arrow::after {
	content: "";
	position: absolute;
}
.link__btn a span.link__arrow::before {
	top: 50%;
	right: 0;
	width: 100%;
	height: 1px;
	background: var(--color-bk);
	transform: translate(0, -50%);
}
.link__btn a span.link__arrow::after {
	top: 50%;
	right: 0;
	width: 5px;
	height: 5px;
	border-top: 1px solid var(--color-bk);
	transform: translate(0, -50%) rotate(45deg);
}

/* --------------------------------------------------
 footer
--------------------------------------------------- */

.c-contact {
    z-index: 1;
    position: relative;
    width: 100%;
}
.c-contact__bg {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.c-contact__bg::before {
    z-index: 3;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
}
.c-contact__bg img {
    z-index: 4;
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
	object-position: 70% 50%;
}
.c-contact__inner {
    z-index: 5;
    position: relative;
    width: 100%;
}
.c-contact__head {
    z-index: 6;
    position: relative;
    width: 100%;
    padding: 80px 40px 0;
}
.c-contact__head p {
	display: flex;
	flex-direction: column;
	align-items: center;
    width: 100%;
    padding: 15px 0;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-wh);
    text-align: center;
}
.c-contact__list {
    z-index: 6;
    position: relative;
    width: 100%;
    padding: 30px 20px 0;
}
.c-contact__list ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
	position: relative;
    padding: 30px 15px;
    background: var(--color-wgy);
}
.c-contact__list ul li {
    position: relative;
    padding: 0 5px 0 40px;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-bk);
}
.c-contact__list ul li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10px;
    width: 20px;
    height: 20px;
    background-image: url("assets/images/icon-check-bk.svg");
    background-repeat: no-repeat;
}
.c-contact__desc {
    z-index: 6;
    position: relative;
    width: 100%;
    padding: 60px 40px;
}
.c-contact__link {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.c-contact__tel {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: var(--color-wh);
}
.c-contact__tel .text {
    display: flex;
    flex-direction: column;
	width: 110px;
}
.c-contact__tel .text span {
    display: block;
    font-size: 0.8rem;
    line-height: 1.2;
}
.c-contact__tel .number {
    margin-left: 25px;
    font-size: 1.3rem;
}
.c-contact__form {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 15px;
    background: var(--color-theme-01);
    color: var(--color-wh);
    transition: .2s;
}
.c-contact__form:hover {
    background: var(--color-theme-04);
}
.c-contact__form a {
    display: flex;
    align-items: center;
}
.c-contact__form a .icon {
    width: 19px;
    height: 19px;
}
.c-contact__form a .text {
    margin-left: 10px;
    font-weight: 700;
    letter-spacing: .1em;
}
@media screen and (min-width: 768px) {
	.c-contact__head {
		display: flex;
		justify-content: center;
		padding: 100px 40px 0;
	}
	.c-contact__head p {
		flex-direction: row;
		justify-content: center;
		gap: 0;
		width: auto;
		padding: 15px 25px;
		font-size: 1.5rem;
	}
	.c-contact__head p span {
		padding: 0;
		background: none;
	}
	.c-contact__list {
		padding: 60px 60px 0;
	}
	.c-contact__list ul {
		gap: 20px;
		padding: 50px 40px;
	}
	.c-contact__list ul::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		width: calc(100% - 30px);
		height: calc(100% - 30px);
		transform: translate(-50%, -50%);
		border: 1px solid var(--color-dgy);
		opacity: 0.2;
	}
	.c-contact__list ul li {
		padding: 0 5px 0 40px;
		font-size: 1.1rem;
	}
	.c-contact__list ul li::before {
		width: 22px;
		height: 22px;
	}
	.c-contact__desc {
		padding: 80px 60px 100px;
	}
	.c-contact__link {
		flex-direction: row;
		justify-content: center;
		align-items: stretch;
		gap: 30px;
	}
	.c-contact__tel {
		width: calc(50% - 10px);
	}
	.c-contact__tel .text span {
		font-size: 0.85rem;
	}
	.c-contact__tel .number {
		margin-left: 25px;
		font-size: 1.3rem;
	}
	.c-contact__form {
		width: calc(50% - 20px);
		margin: 0;
	}
	.c-contact__form a .icon {
		width: 21px;
		height: 21px;
	}
	.c-contact__form a .text {
		font-size: 1.2rem;
	}
}
@media screen and (min-width: 1024px) {
	.c-contact__inner {
		max-width: 850px;
		margin: auto;
		padding: 90px 0;
	}
	.c-contact__head p {
		font-size: 1.65rem;
	}
}

.footer {
    z-index: 1;
    position: relative;
    width: 100%;
    padding-bottom: 70px;
    background: var(--color-dwgy);
}
.footer__inner {
    z-index: 2;
    display: flex;
    flex-direction: column-reverse;
    position: relative;
    width: 100%;
    padding: 60px 20px 25px;
}
.footer__top {
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 100%;
}
.footer__logo {
    width: 180px;
}
.footer__info {
    width: 100%;
    font-size: 0.85rem;
}
.copy {
    width: 100%;
    margin-top: 20px;
    font-family: var(--font-en-01);
    font-size: .8rem;
}
.footer__desc {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 60px;
}
.footer__sitemap {
    width: 100%;
}
.sitemap__list > ul > li {
	position: relative;
	width: 100%;
}
.sitemap__list > ul > li::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--color-bk);
	opacity: 0.2;
}
.sitemap__list > ul > li > a {
	display: flex;
	align-items: flex-end;
	gap: 10px;
	position: relative;
	padding: 22px 25px 8px 5px;
}
.sitemap__list > ul > li > a::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	width: 5px;
	height: 5px;
	border-top: 1px solid var(--color-bk);
	border-right: 1px solid var(--color-bk);
	transform: translate(0, -50%) rotate(45deg);
}
.sitemap__list > ul > li > a span.en {
	font-family: var(--font-en-01);
	font-size: 1.1rem;
	letter-spacing: .03em;
	line-height: 1;
}
.sitemap__list > ul > li > a span.jp {
	font-size: 0.8rem;
	line-height: 1;
}
.footer__guide {
    z-index: 1;
    position: relative;
    width: 100%;
    padding-top: 30px;
}
.footer__guide ul {
    display: flex;
    align-items: center;
    gap: 25px;
}
.footer__guide ul li {
    font-size: 0.75rem;
}
.footer__guide ul li a {
    text-decoration: underline;
}
@media screen and (min-width: 768px) {
	.footer__inner {
		padding: 80px 60px 40px;
	}
}
@media screen and (min-width: 1024px) {
    .footer {
        padding-bottom: 20px;
    }
	.footer__inner {
		display: flex;
		flex-wrap: wrap;
        flex-direction: row;
		width: 100%;
        padding: 120px 60px 100px;
	}
	.footer__top {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
		width: 350px;
		padding: 10px 30px 10px 0;
		border-right: 1px solid var(--color-bk);
	}
    .footer__logo {
        width: 200px;
    }
	.footer__info {
        padding: 5px;
		font-size: 0.9rem;
	}
	.footer__desc {
		width: calc(100% - 350px);
		padding: 20px 0 10px 50px;
	}
	.sitemap__list > ul {
		display: flex;
		flex-wrap: wrap;
        gap: 25px 0;
	}
	.sitemap__list > ul > li {
		width: 33.3333%;
	}
	.sitemap__list > ul > li::before {
		display: none;
	}
	.sitemap__list > ul > li > a {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
		position: relative;
		padding: 0 25px 0 0;
	}
	.sitemap__list > ul > li > a::before {
		display: none;
	}
    .footer__guide {
        padding-top: 60px;
    }
    .footer__guide ul {
        justify-content: flex-start;
        gap: 28px;
    }
    .footer__guide ul li {
        position: relative;
        font-size: 0.8rem;
    }
    .footer__guide ul li::before {
        content: "";
        position: absolute;
        top: 0;
        right: -14px;
        width: 1px;
        height: 100%;
        background: var(--color-bk);
    }
    .footer__guide ul li a {
        text-decoration: none;
    }
    .copy {
        margin-top: 20px;
        padding: 5px;
    }
}
@media screen and (min-width: 1280px) {
	.footer__inner {
		max-width: 1400px;
		margin: auto;
	}
	.footer__top {
		width: 470px;
	}
	.footer__info {
		font-size: .95rem;
		letter-spacing: .05em;
	}
	.footer__desc {
		width: calc(100% - 470px);
		padding-left: 140px;
	}
	.sitemap__list > ul {
		gap: 25px 0;
	}
	.sitemap__list > ul > li > a {
		gap: 10px;
	}
	.sitemap__list > ul > li > a span.en {
		font-size: 1.3rem;
	}
	.sitemap__list > ul > li > a span.jp {
		font-size: 0.8rem;
	}
}

.pagetop {
	z-index: 99;
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	background: var(--color-bk);
	border-radius: 100%;
}
@media screen and (min-width: 768px) {
	.pagetop {
		bottom: 40px;
		right: 40px;
		width: 60px;
		height: 60px;
	}
}
.pagetop::before,
.pagetop::after {
	content: "";
	position: absolute;
}
.pagetop::before {
	top: 50%;
	left: 50%;
	width: 1px;
	height: 20px;
	background: var(--color-wh);
	transform: translate(-50%, -50%);
}
.pagetop::after {
	top: 50%;
	left: 50%;
	width: 4px;
	height: 4px;
	margin-top: -8px;
	border-top: 1px solid var(--color-wh);
	border-left: 1px solid var(--color-wh);
	transform: translate(-50%, -50%) rotate(45deg);
}

.cookie__consent {
	z-index: 999;
	display: flex;
	justify-content: space-between;
	align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 0.9rem;
	color: var(--color-wh);
	background: rgba(0,0,0,.7);
	padding: 1.2em;
	box-sizing: border-box;
	visibility: hidden;
}
.cookie__consent.is-show {
	visibility: visible;
}
.cookie__consent a {
	display: inline;
	color: var(--color-wh)!important;
}
.cookie__agree {
	color: var(--color-wh);
	background: dodgerblue;
	padding: .5em 1.5em;
}
.cookie__agree:hover {
	cursor: pointer;
}
.cc-hide1 {
	display: none;
}
.cc-hide2 {
	animation: hide 1s linear 0s;
	animation-fill-mode: forwards;
}
@keyframes hide {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		visibility: hidden;
	}
}
@media screen and (max-width: 600px) {
	.cookie__consent {
		flex-direction: column;
		font-size: 0.7rem;
	}
	.cookie__text {
		margin-bottom: 1em;
	}
}

/* --------------------------------------------------
 front page
--------------------------------------------------- */

/* mv
--------------------------------------------------- */

.mv {
    z-index: 1;
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 70vh;
	background: var(--color-theme-01);
}
@media screen and (min-width: 768px) and (orientation: portrait) {
    .mv {
        height: 80vh;
        min-height: 80vh;
	}
}
@media screen and (min-width: 1024px) {
    .mv {
        height: 100vh;
        min-height: 100vh;
	}
}
.mv__inner {
    position: relative;
    width: 100%;
    height: 100%;
}
.mv__img {
    z-index: 2;
    position: relative;
    width: 100%;
    height: 100%;
}
.mv__img .mv__overlay {
    z-index: 3;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(167deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0) 60%);
    opacity: 1;
}
.mv__img picture {
    z-index: 2;
    position: relative;
    width: 100%;
    height: 100%;
}
.mv__img img {
    z-index: -1;
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mv__text {
    z-index: 4;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    transform: translate(0 , -50%);
}
.mv__text h2 {
	position: relative;
	width: auto;
	font-family: var(--font-jp);
	font-size: 1.7rem;
	font-weight: 700;
	color: var(--color-bk);
	letter-spacing: .1em;
    line-height: 1.6;
	transition: .1s;
}
@media screen and (min-width: 768px) {
	.mv__text {
		top: 60%;
	}
    .mv__text h2 {
		padding-left: 25px;
		font-size: 2.2rem;
	}
}
@media screen and (min-width: 1024px) {
	.mv__text {
		top: 45%;
	}
	.mv__text h2 {
		padding-left: 50px;
		font-size: 2.4rem;
	}
}
@media screen and (min-width: 1280px) {
	.mv__text h2 {
        padding-left: 80px;
		font-size: 3rem;
	}
}
@media screen and (min-width: 1601px) {
	.mv__text h2 {
		padding-left: calc((100% - 1400px) / 2);
		font-size: 3.6rem;
		line-height: 1.4;
	}
}

.mv__text p {
    z-index: 1;
    display: inline-block;
    position: relative;
    margin-top: 20px;
    /*padding: 10px;*/
	font-family: var(--font-jp);
	/*font-size: 0.8rem;*/
	font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
	color: var(--color-bk);
	text-align: left;
    letter-spacing: .05em;
    text-indent: .05em;
}
/*.mv__text p::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-wh);
    animation-name: mvText;
    animation-delay: .2s;
    animation-duration: .7s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8,0,.5,1);
}*/
@-webkit-keyframes mvText {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}
@-webkit-keyframes mvText {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}
@media screen and (min-width: 768px) and (orientation: portrait) {
    .mv__text p {
        margin-left: 25px;
		font-size: 1rem;
    }
}
@media screen and (min-width: 1024px) {
    .mv__text p {
        margin-left: 50px;
		font-size: 1rem;
    }
}
@media screen and (min-width: 1280px) {
	.mv__text p {
		margin-top: 30px;
        margin-left: 80px;
		font-size: 1.2rem;
    }
}
@media screen and (min-width: 1601px) {
    .mv__text p {
		margin-top: 40px;
        margin-left: calc((100% - 1400px) / 2);
		/*padding: 17px 20px 15px;*/
		padding-left: 5px;
		font-size: 1.2rem;
    }
}

/* message
--------------------------------------------------- */

.message {
    z-index: 2;
    position: relative;
    width: 100%;
    background: var(--color-wh);
    color: var(--color-bk);
}
.message::before {
    z-index: 3;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: var(--color-wgy);
}
.message__inner {
    z-index: 4;
    position: relative;
    width: 100%;
}
.message__text {
    z-index: 6;
    position: relative;
    padding: 40px 40px 0;
}
.message__head {
    margin: 40px 0 25px;
    font-family: var(--font-en-01);
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-theme-03);
}
.message__head span {
    display: block;
    font-weight: 700;
    line-height: 1.4;
}
.message__desc {
    padding-bottom: 20px;
}
.message__desc p {
    font-size: 0.9rem;
    text-align: justify;
    line-height: 1.6;
}
.message__link {
	padding: 15px 0 30px;
}
.message__link a {
	margin: auto;
}
.message__image {
    z-index: 5;
    position: relative;
    width: 100%;
    padding: 0 60px 60px;
    overflow: hidden;
}
.message__image img {
    transform: scale(1.2);
    opacity: 0;
    transition: .5s;
    transition-delay: .5s;
}
.message__image.inview img {
    transform: scale(1.0);
    opacity: 1;
}
@media screen and (min-width: 768px) {
	.message::before {
		width: 40%;
	}
	.message__inner {
		width: 500px;
		margin: auto;
	}
	.message__text {
		padding: 80px 0 0;
	}
	.message__head {
		margin: 40px 0 40px;
		font-size: 2.2rem;
	}
	.message__desc {
		padding-bottom: 40px;
	}
	.message__desc p {
		font-size: 1rem;
	}
	.message__link {
		padding: 15px 0 50px;
	}
	.message__image {
		padding: 0 40px 80px;
	}
}
@media screen and (min-width: 1024px) {
	.message::before {
		width: 60%;
	}
	.message__inner {
		display: flex;
		flex-wrap: wrap;
		flex-direction: row-reverse;
		align-items: center;
		width: 80vw;
		margin: auto;
		padding: 100px 0;
	}
	.message__text {
		width: 390px;
		margin: 0;
		padding: 0;
	}
	.message__desc p {
		font-size: 0.95rem;
		line-height: 1.8;
	}
	.message__image {
		width: calc(100% - 390px);
		margin: 0;
		padding: 0 90px 0 0;
	}
	.message__link {
		padding: 0 0 30px;
	}
	.message__link a {
		margin: 0;
	}
}
@media screen and (min-width: 1280px) {
	.message__inner {
		max-width: 970px;
		padding: 150px 0;
	}
	.message__text {
		width: 430px;
		margin: 0;
		padding: 0;
	}
	.message__head {
		font-size: 2.8rem;
	}
	.message__desc p {
		font-size: 1rem;
		line-height: 2.2;
	}
	.message__image {
		width: calc(100% - 430px);
		margin: 0;
		padding: 0 140px 0 0;
	}
	.message__link {
		padding: 0 0 30px;
	}
	.message__link a {
		margin: 0;
	}
}

/* service
--------------------------------------------------- */

.service {
    z-index: 2;
    position: relative;
    width: 100%;
    background: var(--color-wh);
    color: var(--color-bk);
}
.service::before {
    z-index: 3;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-theme-01);
}
.service__inner {
    z-index: 5;
    position: relative;
    width: 100%;
	padding: 50px 40px;
}
.service__head {
	padding: 0 0 40px;
}
.service__head h2 {
	text-align: center;
	font-family: var(--font-en-01);
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: .1em;
	text-indent: .1em;
	color: var(--color-wh);
}
.service__list {
	width: 100%;
}
.service__list ul {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	gap: 30px;
}
.service__list ul li {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
	width: 100%;
	color: var(--color-wh);
	font-weight: 500;
}
.service__list ul li .icon {
	width: 100%;
	background: var(--color-wgy);
}
.service__list ul li .icon img {
	width: 200px;
	margin: auto;
	transform: scale(1.2);
    opacity: 0;
    transition: .5s;
    transition-delay: .5s;
}
.service__list ul li .icon.inview img {
    transform: scale(1.0);
    opacity: 1;
}
.service__list ul li .desc {
	width: 100%;
	text-align: center;
	line-height: 1.5;
}
.service__link {
	padding: 40px 0 0;
}
.service__link a {
	margin: auto;
}
@media screen and (min-width: 768px) {
	.service__inner {
		padding: 80px 50px;
	}
	.service__head h2 {
		font-size: 2.2rem;
	}
	.service__list ul {
		padding: 20px 0;
	}
	.service__list ul li {
		width: calc(33.3333% - 20px);
	}
}
@media screen and (min-width: 1024px) {
    .service__inner {
		max-width: 1200px;
		margin: auto;
		padding: 120px 60px;
	}
	.service__head h2 {
		font-size: 2.4rem;
	}
	.service__list ul {
		gap: 40px;
	}
	.service__list ul li {
		width: calc(33.3333% - (80px / 3));
		font-size: 1.05rem;
        font-weight: 700;
	}
	.service__list ul li .icon {
		display: flex;
		align-items: center;
		aspect-ratio: 5 / 4;
	}
	.service__list ul li .icon img {
		width: 220px;
	}
}
@media screen and (min-width: 1280px) {
    .service__inner {
		padding: 150px 60px;
	}
	.service__head h2 {
		font-size: 2.6rem;
	}
	.service__list ul {
		gap: 50px;
	}
	.service__list ul li {
		width: calc(33.3333% - (100px / 3));
	}
	.service__list ul li .icon {
		aspect-ratio: 6 / 5;
	}
	.service__list ul li .icon img {
		width: 240px;
	}
}


/* member
--------------------------------------------------- */

.member {
    z-index: 2;
    position: relative;
    width: 100%;
    background: var(--color-dwgy);
    color: var(--color-bk);
}
.member__inner {
	z-index: 3;
	position: relative;
	width: 100%;
	padding: 60px 0;
}
.member__image {
	z-index: 5;
	position: relative;
	width: calc(100% - 60px);
	height: 330px;
}
.member__image .mask,
.member__image .mask__inner {
	width: 100%;
	height: 100%;
}
.member__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.member__desc {
	z-index: 3;
	position: relative;
	padding-left: 30px;
}
.member__desc__inner {
	z-index: 4;
	position: relative;
	width: 100%;
	padding: 40px 30px 40px;
	background: var(--color-wh);
}
.member__desc__inner::before {
	z-index: -1;
	content: "";
	position: absolute;
	top: -70px;
	left: 0;
	width: 100%;
	height: 80px;
	background: var(--color-wh);
}
.member__desc__inner p {
    font-size: 0.95rem;
	text-align: justify;
}
.member__link {
	padding-top: 30px;
}
.member__link ul {
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 100%;
}
.member__link ul li {
	width: 100%;
}
.member__link ul li a {
    z-index: 1;
	position: relative;
	line-height: 1;
	border-bottom: 1px solid var(--color-dgy);
	letter-spacing: .05em;
    transition: .2s;
}
.member__link ul li a:hover {
    color: var(--color-wh);
}
.member__link ul li a::before {
    z-index: 2;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-theme-01);
    transition: .4s;
}
.member__link ul li a:hover::before {
    width: 100%;
}
.member__link ul li a span {
    z-index: 4;
    display: block;
	position: relative;
    padding: 8px 30px 8px 5px;
}
.member__link ul li a span::before,
.member__link ul li a span::after {
    z-index: 5;
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
    transition: .2s;
}
.member__link ul li a span::before {
	width: 25px;
	height: 1px;
	transform: translate(0, -50%);
	background: var(--color-bk);
}
.member__link ul li a span::after {
	width: 5px;
	height: 5px;
	border-top: 1px solid var(--color-bk);
	transform: translate(0, -50%) rotate(45deg);
}
.member__link ul li a:hover span::before {
    background: var(--color-wh);
}
.member__link ul li a:hover span::after {
    border-top: 1px solid var(--color-wh);
}
@media screen and (min-width: 768px) {
	.member__inner {
		padding: 80px 0;
	}
	.member__image {
		width: 70%;
		height: 390px;
	}
	.member__desc {
		padding-left: 20%;
		padding-right: 50px;
	}
	.member__desc__inner {
		padding: 50px 40px;
	}
	.member__desc__inner::before {
		top: -90px;
		height: 100px;
	}
	.member__desc__inner p {
		font-size: 1rem;
	}
}
@media screen and (min-width: 1024px) {
	.member__inner {
		display: flex;
		flex-direction: row;
		align-items: center;
		width: 100%;
		padding: 40px 0;
	}
	.member__image {
		width: 50%;
		height: 440px;
	}
	.member__desc {
		width: 50%;
		padding: 150px 60px 0 0;
	}
	.member__desc__inner {
		padding: 90px 70px 90px 70px;
	}
	.member__desc__inner::before {
		top: 0;
		left: -90px;
		width: 100px;
		height: 100%;
	}
	.member__link {
		padding-top: 50px;
	}
}
@media screen and (min-width: 1280px) {
	.member__inner {
		padding: 20px calc((100% - 1400px) / 2) 0 0;
	}
	.member__image {
		width: calc(100% - 630px);
        height: 600px;
	}
	.member__desc {
		width: 630px;
		padding: 260px 60px 0 0;
	}
	.member__desc__inner {
		padding: 130px 90px 120px 90px;
	}
	.member__desc__inner::before {
		top: 0;
		left: -90px;
		width: 100px;
		height: 100%;
	}
	.member__link {
		padding-top: 50px;
	}
}

/* news
--------------------------------------------------- */

.news {
    z-index: 1;
    position: relative;
    width: 100%;
    background: var(--color-dwgy);
}
.news__inner {
    z-index: 3;
    position: relative;
    width: 100%;
	padding: 50px 0
}
.news__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.news__title {
	display: flex;
	justify-content: center;
    width: 100%;
}
.news__title h2 {
    display: block;
    font-family: var(--font-en-01);
    font-size: 1.8rem;
	font-weight: 500;
    color: var(--color-theme-03);
}
.news__title h2 span {
    display: inline;
	margin-left: 1em;
    font-family: var(--font-jp);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-bk);
    letter-spacing: .05em;
}
.news__link {
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 15px 0 30px;
}
.news__link a {
	min-width: 200px;
}
.news__desc {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	padding: 30px 20px 30px;
}
.news__item {
    display: block;
	position: relative;
    width: 100%;
}
.news__item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--color-bk);
	opacity: .2;
}
.news__item a,
.news__item__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    color: var(--color-bk);
}
.news__item__inner a {
	padding: 17px 15px 15px;
}
.news__item .post__date {
    display: block;
    width: 100%;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1.4;
    color: var(--color-theme-03);
}
.news__item .post__title {
    font-family: var(--font-jp);
    font-size: 1rem;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: .05em;
}
@media screen and (min-width: 768px) {
	.news__head {
		flex-direction: row;
		padding: 10px 50px;
	}
	.news__title {
		width: auto;
		padding: 0;
	}
	.news__title h2 {
		font-size: 2.2rem;
	}
	.news__title h2 span {
		margin-left: 1em;
		font-size: 1rem;
	}
	.news__desc {
		padding: 50px 50px 30px;
	}
	.news__link {
		width: auto;
		padding: 0;
		margin-left: auto;
	}
}
@media screen and (min-width: 1024px) {
    .news__inner {
        display: flex;
		align-items: flex-start;
		padding: 60px 60px 90px;
    }
    .news__head {
        flex-direction: column;
        justify-content: center;
        width: 33.3333%;
        padding: 20px 60px 0 0;
        gap: 20px;
    }
    .news__title h2 {
        line-height: 1;
    }
    .news__title h2 span {
        display: block;
		margin: 15px 0 0 0;
    }
    .news__desc {
        width: 66.6666%;
        padding: 0 0 0 20px;
    }
	.news__link {
		margin: 20px 0 0;
	}
	.news__item .post__date {
		font-size: 0.95rem;
	}
	.news__item .post__title {
		padding-top: 10px;
		font-size: 1.05rem;
	}
}
@media screen and (min-width: 1280px) {
	.news__inner {
		max-width: 1400px;
		margin: auto;
		padding: 150px 60px 110px;
    }
	.news__item__inner a {
		display: flex;
		align-items: flex-start;
		padding: 32px 15px 30px;
	}
	.news__item .post__date {
		width: 120px;
		font-size: 1.05rem;
	}
	.news__item .post__title {
		width: calc(100% - 120px);
		padding-top: 0;
		font-size: 1.15rem;
	}
}

/* projects
--------------------------------------------------- */

.projects {
    z-index: 1;
    position: relative;
    width: 100%;
    background: var(--color-wh);
}
.projects::before {
	z-index: 2;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 200px;
	background: var(--color-dwgy);
}
.projects__inner {
    z-index: 3;
    position: relative;
    width: 100%;
	padding: 20px 0 50px;
}
.projects__head {
	z-index: 5;
	position: relative;
	width: 100%;
	padding-bottom: 50px;
}
.projects__head h2 {
	width: 100%;
	font-family: var(--font-jp);
	font-size: 1.3rem;
	text-align: center;
	letter-spacing: .1em;
	text-indent: .1em;
}
.is-en-top .projects__head h2 {
	font-family: var(--font-en-01);
}
.projects__head p {
	z-index: 1;
	position: absolute;
	left: 50%;
	bottom: -30px;
	font-family: var(--font-en-01);
	font-size: 3rem;
	letter-spacing: .1em;
	color: var(--color-theme-02);
	transform: translate(-50%, 0);
}
.project__splide {
    z-index: 7;
    position: relative;
	padding-bottom: 70px;
}
.project__splide .image {
	z-index: 8;
	display: block;
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}
.project__splide .image .mask,
.project__splide .image .mask__inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.project__splide .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.project__splide .text {
	z-index: 9;
	position: relative;
	padding: 10px;
	background: var(--color-wgy);
	font-size: 0.9rem;
	letter-spacing: .05em;
}
.project__splide .splide__controller {
	display: flex;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	align-items: center;
}
.project__splide .splide__pagination-wrap {
	display: flex;
	align-items: center;
	position: relative;
}
.project__splide .splide__pagination {
	display: flex;
	align-items: center;
	position: relative;
}
.project__splide .splide__pagination__page {
    width: 9px;
    height: 9px;
    margin: 3px 4px;
    background: var(--color-wh);
    border: 1px solid var(--color-theme-03);
}
.project__splide .splide__pagination__page.is-active {
    background: var(--color-theme-03);
    border: 1px solid var(--color-theme-03);
    transform: scale(1.0);
}
.project__splide .splide__arrows {
	display: flex;
    position: relative;
	width: 85px;
	margin-left: auto;
	padding-right: 20px;
}
.project__splide .splide__arrow--prev,
.project__splide .splide__arrow--next {
	position: relative;
	top: auto;
	left: auto;
	bottom: auto;
	right: auto;
	margin: 0;
	width: 30px;
	height: 30px;
}
.project__splide .splide__arrow--next {
	margin-left: auto;
}
.project__splide .splide__arrow--prev::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 6px;
	height: 6px;
	margin-left: 1px;
	border-bottom: 1px solid var(--color-bk);
	border-left: 1px solid var(--color-bk);
	transform: translate(-50%, -50%) rotate(45deg);
}
.project__splide .splide__arrow--next::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 6px;
	height: 6px;
	margin-left: -1px;
	border-top: 1px solid var(--color-bk);
	border-right: 1px solid var(--color-bk);
	transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (min-width: 768px) {
	.projects::before {
		height: 300px;
	}
	.projects__inner {
		padding: 50px 0 70px;
	}
	.projects__head {
		padding-bottom: 80px;
	}
	.projects__head h2 {
		font-size: 1.7rem;
	}
	.projects__head p {
		bottom: -50px;
		font-size: 4.7rem;
	}
	.project__splide {
		padding-bottom: 60px;
	}
	.project__splide .splide__controller {
		padding: 0 60px;
		
	}
	.project__splide .splide__pagination-wrap {
		width: 100%;
		justify-content: center;
		text-align: center;
	}
	.project__splide .splide__pagination {
		width: calc(100% - 170px);
		margin: auto;
	}
	.project__splide .splide__arrows {
		position: absolute;
		top: 50%;
		right: 40px;
		transform: translate(0, -50%);
		width: 85px;
		margin-top: 3px;
		padding-right: 20px;
	}
	.project__splide .splide__arrow--prev,
	.project__splide .splide__arrow--next {
		width: 30px;
		height: 30px;
	}
	.project__splide .splide__arrow--prev::before {
		width: 6px;
		height: 6px;
	}
	.project__splide .splide__arrow--next::before {
		width: 6px;
		height: 6px;
	}
}
@media screen and (min-width: 1024px) {
	.projects__inner {
		padding: 70px 0 120px;
	}
	.project__splide .splide__arrows {
		margin-top: 10px;
		width: 110px;
	}
	.project__splide .splide__arrow--prev,
	.project__splide .splide__arrow--next {
		width: 40px;
		height: 40px;
	}
	.project__splide .splide__arrow--prev::before {
		width: 6px;
		height: 6px;
	}
	.project__splide .splide__arrow--next::before {
		width: 6px;
		height: 6px;
	}
}
@media screen and (min-width: 1280px) {
	.projects::before {
		height: 480px;
	}
	.projects__inner {
		padding: 80px 0 150px;
	}
	.is-en-top .projects__inner {
		padding: 180px 0 150px;
	}
	.projects__head {
		padding-bottom: 100px;
	}
	.projects__head h2 {
		font-size: 1.8rem;
	}
	.projects__head p {
		bottom: -50px;
		font-size: 5.3rem;
	}
}

/* recruit
--------------------------------------------------- */

.recruit {
    z-index: 1;
    position: relative;
    width: 100%;
    background: var(--color-dwgy);
}
.recruit__bg {
	z-index: 2;
	display: flex;
	position: absolute;
	top: 50%;
	left: 0;
	width: 100vw;
	height: 200px;
	margin: auto;
	overflow: hidden;
	transform: translate(0, -50%);
}
.recruit__bg-item {
	z-index: 3;
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	height: 100%;
	white-space: nowrap;
	transform: scale(2);
	transition: all 1s ease;
}
.recruit__bg-item ul {
	display: flex;
	animation: scrollText 88s infinite linear;
}
.recruit__bg-item ul li {
	flex: 0 0 auto;
    padding-left: 0.5em;
	font-family: var(--font-en-01);
	font-size: 3rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	color: var(--color-theme-02);
}
@keyframes scrollText {
	from {
		transform: translateX(0%);
	}
	to {
		transform: translateX(-50%);
	}
}

@media screen and (min-width: 768px) {
	.recruit__bg-item ul li {
		font-size: 4.5rem;
	}
}
@media screen and (min-width: 1024px) {
    .recruit__bg-item ul li {
		font-size: 6rem;
	}
}
.recruit__inner {
	z-index: 3;
	padding: 80px 40px;
}
.recruit__box {
	z-index: 4;
	position: relative;
	width: 100%;
	padding: 30px 25px 25px;
	background: var(--color-wh);
}
.recruit__box::before,
.recruit__box::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
}
.recruit__box::before {
	z-index: 4;
	top: 0;
	left: 0;
	background: var(--color-wh);
	box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}
.recruit__box::after {
	z-index: 3;
	top: 50%;
	left: 50%;
	background: var(--color-theme-01);
	transform: translate(-50%, -50%) rotate(10deg);
	opacity: 0.4;
}
.recruit__image {
	z-index: 6;
	position: relative;
	width: 100%;
	padding: 15px 15px 20px;
}
.recruit__image img {
	max-width: 54px;
	margin: auto;
}
.recruit__text {
	z-index: 6;
	position: relative;
	width: 100%;
}
.recruit__text p {
	z-index: 7;
	position: relative;
    font-size: 0.9rem;
	text-align: justify;
}
.recruit__link {
	z-index: 6;
	position: relative;
	padding: 20px 0 15px;
}
.recruit__link a {
	margin: auto;
}
@media screen and (min-width: 768px) {
	.recruit__inner {
		padding: 120px 60px;
	}
	.recruit__box {
		max-width: 480px;
		margin: auto;
		padding: 50px 50px 40px;
	}
	.recruit__text {
		padding: 20px 0;
	}
	.recruit__text p {
		font-size: 1rem;
	}
}
@media screen and (min-width: 1024px) {
	.recruit__inner {
		padding: 180px 60px;
	}
	.recruit__box {
		max-width: 550px;
		margin: auto;
		padding: 80px 80px 70px;
	}
	.recruit__box .line {
		z-index: 6;
		position: absolute;
		top: 50%;
		left: 50%;
		width: calc(100% - 20px);
		height: calc(100% - 20px);
		border: 1px solid var(--color-dwgy);
		pointer-events: none;
		transform: translate(-50%, -50%);
	}
	.recruit__image img {
		max-width: 64px;
	}
	.recruit__text {
		padding: 20px 0;
	}
	.recruit__text p {
		font-size: 1.05rem;
	}
}

/* --------------------------------------------------
 page service
--------------------------------------------------- */

.page-service {
	z-index: 21;
	position: relative;
	width: 100%;
}
.page-service__inner {
	z-index: 2;
	position: relative;
	width: 100%;
	padding: 30px 0 10px;
}
.page-service__inner ul {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.page-service__inner ul li {
	width: 100%;
}
.page-service__inner ul li .image {
	z-index: 1;
	position: relative;
	width: 100%;
	height: 170px;
}
.page-service__inner ul li .image .bg {
	z-index: 2;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.page-service__inner ul li .image .bg img {
	width: 100%;
	height: 100%;
	object-fit: cover:
}
.page-service__inner ul li .image .bg::before {
	z-index: 3;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-bk);
	opacity: 0.4;
}
.page-service__inner ul li .image .icon {
	z-index: 5;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 130px;
	margin-top: 5px;
	aspect-ratio: 1 / 1;
	transform: translate(-50%, -50%);
}
.page-service__inner ul li .image .icon img {
	width: 100%;
	height: 100%;
	object-fit: cover:
}
.page-service__inner ul li .desc {
	padding: 30px 20px;
}
.page-service__inner ul li .head {
	padding-bottom: 8px;
	border-bottom: 1px solid var(--color-dgy);
}
.page-service__inner ul li .head h3 {
	font-size: 1.15rem;
	letter-spacing: .03em;
}
.page-service__inner ul li .text {
	padding-top: 12px;
}
.page-service__inner ul li .text p {
	padding-top: 15px;
	font-size: 0.9rem;
	line-height: 1.7;
	text-align: justify;
}
.page-service__inner ul li .text p:nth-of-type(1) {
	padding-top: 0;
}
.is-en-page .page-service__inner ul li .text p {
	text-align: left;
}
@media screen and (min-width: 414px) {
	.page-service__inner ul li .image {
		height: 180px;
	}
	.page-service__inner ul li .image .icon {
		width: 160px;
	}
}
@media screen and (min-width: 768px) {
	.page-service__inner ul li .image {
		height: 240px;
	}
	.page-service__inner ul li .image .icon {
		width: 200px;
		margin-top: 10px;
	}
	.page-service__inner ul li .desc {
		padding: 50px 60px;
	}
}
@media screen and (min-width: 1024px) {
	.page-service__inner {
		padding: 60px 0 70px;
	}
	.page-service__inner ul {
		gap: 90px;
	}
	.page-service__inner ul li {
		display: flex;
		align-items: center;
	}
	.page-service__inner ul li:nth-child(2n+2) {
		flex-direction: row-reverse;
	}
	.page-service__inner ul li .image {
		width: 380px;
		height: 340px;
	}
	.page-service__inner ul li .image .icon {
		width: 200px;
		margin-top: 10px;
	}
	.page-service__inner ul li .desc {
		width: calc(100% - 380px);
		padding: 15px 60px;
	}
}
@media screen and (min-width: 1280px) {
	.page-service__inner {
		max-width: 1400px;
		margin: auto;
		padding: 80px 60px 100px;
	}
	.page-service__inner ul {
		gap: 110px;
	}
	.page-service__inner ul li .image {
		width: 43%;
		height: auto;
		aspect-ratio: 3 / 2;
	}
	.page-service__inner ul li .image .icon {
		width: 200px;
		margin-top: 10px;
	}
	.page-service__inner ul li .desc {
		width: 57%;
		padding: 15px 90px;
	}
	.page-service__inner ul li:nth-child(2n+1) .desc {
		padding-right: 0;
	}
	.page-service__inner ul li:nth-child(2n+2) .desc {
		padding-left: 0;
	}
	.page-service__inner ul li .head h3 {
		font-size: 1.4rem;
	}
	.page-service__inner ul li .text {
		padding-top: 15px;
	}
	.page-service__inner ul li .text p {
		font-size: 1rem;
	}
}


/* --------------------------------------------------
 page company
--------------------------------------------------- */

.company-section {
	margin-top: -60px;
	padding-top: 60px;
}
@media screen and (min-width: 768px) {
	.company-section {
		margin-top: -70px;
		padding-top: 70px;
	}
}
@media screen and (min-width: 1024px) {
	.company-section {
		margin-top: -80px;
		padding-top: 80px;
	}
}

.company-index {
	z-index: 70;
	position: relative;
	width: 100%;
}
.company-index__inner {
	padding: 20px;
}
.company-index__inner ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.company-index__inner ul li {
	width: calc(50% - 5px);
}
.company-index__inner ul li a {
	position: relative;
	width: 100%;
	padding: 12px 8px;
	font-size: 0.85rem;
	text-align: center;
	line-height: 1;
	border: 1px solid var(--color-bk);
}
.company-index__inner ul li a:hover {
    text-decoration: underline;
}
@media screen and (min-width: 768px) {
	.company-index__inner {
		padding: 40px 60px;
	}
	.company-index__inner ul li {
		width: calc(25% - (10px * 3) / 4);
	}
	.company-index__inner ul li a {
		padding: 12px 5px 11px;
	}
}
@media screen and (min-width: 1024px) {
	.company-index__inner {
		padding: 40px 60px;
	}
	.company-index__inner ul {
		gap: 0;
	}
	.company-index__inner ul li {
		width: auto;
		border-right: 1px solid var(--color-dgy);
	}
	.company-index__inner ul li:nth-last-child(1) {
		border-right: 0;
	}
	.company-index__inner ul li a {
		padding: 6px 15px 5px;
		border: 0;
	}
	.company-index__inner ul li:nth-child(1) a {
		padding-left: 10px;
	}
}
@media screen and (min-width: 1280px) {
	.company-index__inner {
		max-width: 1400px;
		margin: auto;
	}
	.company-index__inner ul li a {
		padding: 6px 25px 5px;
		font-size: 1rem;
	}
}

.company-mission {
	z-index: 30;
	position: relative;
	width: 100%;
	background: var(--color-wgy);
}
.company-mission__inner {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 20px 20px 40px;
}
.company-mission__inner .image {
	padding-bottom: 25px;
}
.company-mission__inner .head p {
	position: relative;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--color-dgy);
    font-size: 0.95rem;
	font-weight: 700;
	line-height: 1;
}
.company-mission__inner .head h2 {
	padding-top: 25px;
    padding-bottom: 25px;
	font-size: 1.6rem;
	line-height: 1.4;
	letter-spacing: .1em;
}
.company-mission__inner .text p {
	font-size: 0.9rem;
	line-height: 1.6;
	text-align: justify;
}
.is-en-page .company-mission__inner .text p {
	text-align: left;
}
@media screen and (min-width: 768px) {
	.company-mission__inner {
		display: flex;
		flex-direction: column;
		padding: 20px 60px 60px;
	}
	.company-mission__inner .image {
		z-index: 1;
		position: relative;
		width: calc(100% - 160px);
		aspect-ratio: 10 / 7;
		margin-right: auto;
	}
	.company-mission__inner .image .mask,
	.company-mission__inner .image .mask__inner {
		width: 100%;
		height: 100%;
	}
	.company-mission__inner .image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.company-mission__inner .desc {
		z-index: 2;
		position: relative;
		width: calc(100% - 160px);
		margin-top: -100px;
		margin-left: auto;
		padding: 40px;
		background: var(--color-wh);
	}
	.company-mission__inner .head br.is-sp {
		display: block;
	}
	.company-mission__inner .text {
		padding-top: 20px;
	}
	.company-mission__inner .head h2 {
		font-size: 1.7rem;
	}
	.company-mission__inner .text p {
		font-size: 0.95rem;
		line-height: 1.7;
	}
}
@media screen and (min-width: 1024px) {
	.company-mission__inner {
		display: flex;
		flex-direction: column;
		padding: 20px 60px 100px;
	}
	.company-mission__inner .image {
		width: 60%;
		aspect-ratio: 10 / 7;
		margin-right: auto;
	}
	.company-mission__inner .desc {
		width: 60%;
		margin-top: -300px;
	}
	.company-mission__inner .head br.is-sp {
		display: block;
	}
	.company-mission__inner .head h2 {
		font-size: 1.7rem;
	}
	.company-mission__inner .text {
		padding-top: 20px;
	}
	.company-mission__inner .text p {
		font-size: 0.95rem;
	}
}
@media screen and (min-width: 1280px) {
	.company-mission__inner {
		max-width: 1400px;
		margin: auto;
	}
	.company-mission__inner .image {
		width: 63%;
		aspect-ratio: 10 / 7;
		margin-right: auto;
	}
	.company-mission__inner .desc {
		width: 53%;
		margin-top: -400px;
		padding: 80px;
	}
	.company-mission__inner .head p {
		font-size: 1rem;
	}
	.company-mission__inner .head h2 {
		font-size: 2.3rem;
	}
	.company-mission__inner .text {
		padding-top: 30px;
	}
	.company-mission__inner .text p {
		font-size: 1.05rem;
	}
}

.company-origin {
	z-index: 28;
	position: relative;
	width: 100%;
	background: var(--color-wh);
}
.company-origin::before {
	content: "";
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	height: 70px;
	background: var(--color-wgy);
	clip-path: polygon(100% 0, 0 0, 0 100%);
}
.company-origin__inner {
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: relative;
	padding: 40px 0;
}
.company-origin__inner .head {
    padding: 0 20px;
}
.company-origin__inner .head h2 {
	position: relative;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1;
}
.company-origin__inner .image {
	width: calc(100% - 40px);
    margin: 20px auto 0;
	padding: 15px 20px;
    background: var(--color-wh);
    border: 1px solid var(--color-dwgy);
}
.company-origin__inner .image img {
    max-width: 170px;
    margin: auto;
}
.company-origin__inner .desc .text {
    padding: 20px;
}
.company-origin__inner .desc .text p {
	font-size: 0.9rem;
	line-height: 1.6;
	text-align: justify;
}
.is-en-page .company-origin__inner .desc .text p {
	text-align: left;
}

/*.company-origin__inner .desc {
	display: flex;
	flex-direction: column;
}*/
.company-origin__inner .sub-image {
    width: 100%;
    height: 190px;
    padding: 10px 0;
}
.company-origin__inner .sub-image .mask,
.company-origin__inner .sub-image .mask__inner {
    width: 100%;
    height: 100%;
}
.company-origin__inner .sub-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (min-width: 768px) {
	.company-origin::before {
		top: 70px;
		height: 90px;
	}
	.company-origin__inner {
		padding: 240px 60px 90px;
        flex-direction: row;
		align-items: flex-start;
        position: relative;
	}
    .company-origin__inner .image {
        z-index: 3;
        position: relative;
		width: 300px;
		padding: 75px 55px 70px 45px;
        border: 1px solid var(--color-dgy);
	}
    .company-origin__inner .desc {
        z-index: 4;
		position: relative;
		width: calc(100% - 300px);
		padding: 120px 0 0 30px;
    }
    .company-origin__inner .desc::before {
        z-index: 5;
		content: "";
		position: absolute;
		top: 155px;
		left: -40px;
		width: 0;
		height: 1px;
		background: var(--color-bgy);
		transition: 4s;
	}
	.company-origin__inner .desc.inview::before {
		width: calc(100% + 40px);
	}
    .company-origin__inner .desc .head {
        padding: 0;
    }
	.company-origin__inner .desc .text {
        position: relative;
        padding: 40px 0 0;
	}
	.company-origin__inner .desc .text p {
		font-size: 0.95rem;
		line-height: 1.8;
	}
    .company-origin__inner .sub-image {
        z-index: 2;
        position: absolute;
        top: 0;
        right: 0;
        width: 360px;
        height: 280px;
    }
}
@media screen and (min-width: 1024px) {
	.company-origin::before {
		top: 80px;
		height: 220px;
	}
    .company-origin__inner {
		padding: 280px 60px 90px;
    }
    .company-origin__inner .image {
		width: 400px;
		padding: 135px 115px 130px 105px;
	}
    .company-origin__inner .image img {
        max-width: 100%;
    }
    .company-origin__inner .desc {
        width: calc(100% - 400px);
		padding: 180px 0 0 30px;
    }
    .company-origin__inner .sub-image {
        top: 40px;
        right: 60px;
        width: 450px;
        height: 300px;
    }
    .company-origin__inner .desc::before {
        top: 215px;
        transition: 3s;
    }
}
@media screen and (min-width: 1280px) {
    .company-origin::before {
		height: 320px;
	}
    .company-origin__inner {
		max-width: 1400px;
        margin: auto;
        padding: 360px 60px 140px;
    }
    .company-origin__inner .image {
		width: 580px;
		padding: 185px 165px 180px 155px;
	}
	.company-origin__inner .desc {
		position: relative;
		width: calc(100% - 580px);
		padding: 290px 20px 0 130px;
	}
    .company-origin__inner .desc::before {
        top: 325px;
		left: -50px;
    }
    .company-origin__inner .desc.inview::before {
		width: calc(100% + 50px);
	}
    .company-origin__inner .desc .head h2 {
		font-size: 1.3rem;
		letter-spacing: .05em;
	}
    .company-origin__inner .desc .text p {
		font-size: 1rem;
		line-height: 2;
	}
    .company-origin__inner .sub-image {
        top: 70px;
        width: 600px;
        height: 400px;
    }
}

.company-value {
	z-index: 29;
	width: 100%;
}
.company-value__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	width: 100%;
	padding: 60px 20px 120px;
}
.company-value__inner h2 {
	font-size: 1.2rem;
	text-align: center;
}
.company-value__inner .text p {
	font-size: 0.95rem;
}
.company-value__inner .list {
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 100%;
}
.company-value__inner .list-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	padding: 25px 15px;
	background: var(--color-wh);
	border-radius: 8px;
}

.company-value__inner .list-item__icon {
	width: 70px;
}
.company-value__inner .list-item__title {
	padding: 0 50px;
	background: var(--color-theme-01);
	color: var(--color-wh);
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: .05em;
	border-radius: 40px;
}
.company-value__inner .list-item__desc {
	text-align: center;
	line-height: 1.6;
}
@media screen and (min-width: 768px) {
	.company-value__inner {
		gap: 40px;
		padding: 80px 60px 140px;
	}
	.company-value__inner h2 {
		font-size: 1.4rem;
	}
	.company-value__inner .text p {
		font-size: 1rem;
	}
	.company-value__inner .list {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		align-items: stretch;
		gap: 15px;
	}
    .is-en-page .company-value__inner .list {
    align-items: stretch;
}
	.company-value__inner .list-item {
		width: calc(33.3333% - ((15px * 2) / 3));
		gap: 20px;
		padding: 40px 15px;
	}
.company-value__inner .list-item__icon {
	width: 70px;
}
.company-value__inner .list-item__title {
	padding: 0 50px;
	background: var(--color-theme-01);
	color: var(--color-wh);
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: .05em;
	border-radius: 40px;
}
.company-value__inner .list-item__desc {
	text-align: center;
	line-height: 1.6;
}
}
@media screen and (min-width: 1024px) {
	.company-value__inner {
		gap: 40px;
		padding: 100px 60px 180px;
	}
	.company-value__inner h2 {
		font-size: 1.4rem;
	}
	.company-value__inner .text p {
		font-size: 1rem;
	}
	.company-value__inner .list {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
        align-items: stretch;
		gap: 15px;
		max-width: 1200px;
	}
	.company-value__inner .list-item {
		width: calc(20% - ((15px * 4) / 5));
		gap: 20px;
		padding: 40px 15px;
	}
.company-value__inner .list-item__icon {
	width: 70px;
}
.company-value__inner .list-item__title {
	padding: 0 50px;
	background: var(--color-theme-01);
	color: var(--color-wh);
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: .05em;
	border-radius: 40px;
}
.company-value__inner .list-item__desc {
	text-align: center;
	line-height: 1.6;
}
}


.company-promise {
	z-index: 26;
	position: relative;
	width: 100%;
	background: var(--color-wh);
}
.company-promise::before {
	z-index: 1;
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 70px;
	background: var(--color-wgy);
	clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.company-promise__inner {
	z-index: 2;
	position: relative;
	padding: 0 20px 40px;
}
.company-promise__inner .box {
	z-index: 2;
	position: relative;
}
.company-promise__inner .box::before {
	z-index: 5;
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	border: 1px solid var(--color-wh);
	transform: translate(-50%, -50%);
	opacity: 0.4;
}
.company-promise__inner .box__inner {
	z-index: 4;
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: relative;
	padding: 30px;
	background: var(--color-theme-01);
	color: var(--color-wh);
}
.company-promise__inner .head,
.company-promise__inner .text {
	z-index: 3;
	position: relative;
}
.company-promise__inner .head h2 {
	position: relative;
	text-align: center;
	font-size: 1.2rem;
	letter-spacing: .1em;
	text-indent: .1em;
}
.company-promise__inner .text p {
	padding-top: 15px;
	font-size: 0.9rem;
	line-height: 1.6;
}
@media screen and (min-width: 768px) {
	.company-promise::before {
		height: 90px;
	}
	.company-promise__inner {
		padding: 0 60px 60px;
	}
	.company-promise__inner .box__inner {
		padding: 50px;
	}
	.company-promise__inner .head h2 {
		font-size: 1.3rem;
	}
	.company-promise__inner .text p {
		padding-top: 20px;
		font-size: 0.95rem;
	}
}
@media screen and (min-width: 1024px) {
	.company-promise::before {
		height: 220px;
	}
	.company-promise__inner {
		padding: 100px 60px 120px;
	}
	.company-promise__inner .box {
		max-width: 550px;
		margin: auto;
	}
	.company-promise__inner .box__inner {
		padding: 90px 50px 80px;
	}
	.company-promise__inner .box::after {
		z-index: 1;
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		width: 100%;
		height: 100%;
		background: var(--color-theme-03);
		transform: translate(-50%, -50%) rotate(10deg);
	}
}
@media screen and (min-width: 1280px) {
	.company-promise::before {
		height: 320px;
	}
	.company-promise__inner {
		max-width: 1400px;
		margin: auto;
		padding: 150px 60px 170px;
	}
	.company-promise__inner .box {
		max-width: 650px;
	}
	.company-promise__inner .box__inner {
		padding: 120px 45px 110px;
	}
	.company-promise__inner .head h2 {
		padding-bottom: 20px;
		font-size: 1.6rem;
	}
	.company-promise__inner .text p {
		padding-top: 25px;
		font-size: 1.1rem;
	}
}

.company-message {
	z-index: 25;
	position: relative;
	width: 100%;
	background: var(--color-wgy);
}
.company-message__inner {
	padding: 40px 20px 40px;
}
.company-message__inner .head h2 {
    position: relative;
    padding: 0 0 5px;
    border-bottom: 1px solid var(--color-dgy);
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1;
}
.company-message__inner .desc {
	padding-top: 30px;
}
.company-message__inner .desc .image {
	width: 100%;
	height: 320px;
	background-image: url("assets/images/ceo-bg.png");
	background-position: center center;
}
.company-message__inner .desc .image .mask,
.company-message__inner .desc .image .mask__inner {
	width: 100%;
	height: 100%;
}
.company-message__inner .desc .image img {
	width: 100%;
	max-width: 280px;
	margin: 20px auto 0;
	height: 100%;
	object-fit: cover;
}
.company-message__inner .desc .text {
	padding-top: 20px;
}
.company-message__inner .desc .text .text__inner {
    display: flex;
    flex-direction: column;
}
.company-message__inner .desc .text .text__inner p {
    padding-top: 15px;
	font-size: 0.85rem;
	line-height: 1.7;
	text-align: justify;
}
.company-message__inner .desc .text .text__inner .text-l p:nth-of-type(1) {
    padding-top: 0;
}
.is-en-page .company-message__inner .desc .text .text__inner p {
	text-align: left;
}
.company-message__inner .desc .text p.sign {
	padding-top: 15px;
	text-align: right;
	font-family: var(--font-min);
	font-size: 1.1rem;
	font-weight: 700;
}
.is-en-page .company-message__inner .desc .text .text__inner p.sign {
	text-align: right;
}
.company-message__inner .desc .text p.sign span {
	font-size: 0.9rem;
	padding-right: 10px;
}

.company-message__inner .desc .text .text__inner p.history {
    margin-left: auto;
    margin-top: 25px;
    padding: 10px;
    background: var(--color-wh);
    border-radius: 4px;
    font-size: 0.8rem;
}

@media screen and (min-width: 768px) {
	.company-message__inner {
		padding: 60px 60px 70px;
	}
    .company-message__inner .desc .image {
        height: 430px;
    }
    .company-message__inner .desc .image img {
        max-width: 330px;
        margin: 25px auto 0;
    }
}
@media screen and (min-width: 1024px) {
	.company-message__inner {
		padding: 90px 60px 100px;
	}
    .company-message__inner .desc .image {
        height: 600px;
    }
    .company-message__inner .desc .image img {
        max-width: 430px;
        margin: 25px auto 0;
    }
    .company-message__inner .desc .text .text__inner {
        flex-direction: row;
        gap: 60px;
        padding-top: 20px;
    }
    .company-message__inner .desc .text .text__inner .text-l,
    .company-message__inner .desc .text .text__inner .text-r {
        position: relative;
        width: calc(50% - 30px);
    }
    .company-message__inner .desc .text .text__inner .text-l::after {
        content: "";
        position: absolute;
        top: 0;
        right: -30px;
        width: 1px;
        height: 100%;
        background: var(--color-bk);
        opacity: 0.2;
    }
    .company-message__inner .desc .text .text__inner p {
        padding-top: 10px;
        font-size: 0.9rem;
    }
    .company-message__inner .desc .text .text__inner .text-r p:nth-of-type(1) {
        padding-top: 0;
    }
    .company-message__inner .desc .text p.sign {
        padding-top: 40px;
        font-size: 1.2rem;
    }
    .company-message__inner .desc .text p.sign span {
        font-size: 1rem;
    }
    .company-message__inner .desc .text .text__inner p.history {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    /*.company-message__inner .desc {
		display: flex;
		flex-direction: row-reverse;
	}
	.company-message__inner .desc {
		align-items: center;
	}
	.company-message__inner .desc .image {
		width: 450px;
		height: 400px;
	}
	.company-message__inner .desc .image img {
		max-width: 330px;
	}
	.company-message__inner .desc .text {
		width: calc(100% - 450px);
		padding-right: 90px;
	}
    .company-message__inner .desc .text {
        width: 60%;
        padding: 40px;
        background: var(--color-wh);
    }
    .company-message__inner .desc .text p {
        font-size: 0.95rem;
    }*/
}
@media screen and (min-width: 1280px) {
	.company-message__inner {
		max-width: 1400px;
		margin: auto;
		padding: 120px 60px 130px;
	}
	.company-message__inner .head h2 {
		font-size: 1.3rem;
		letter-spacing: .05em;
	}
	/*.company-message__inner .desc .image {
		width: 630px;
		height: 500px;
	}
	.company-message__inner .desc .image img {
		max-width: 430px;
	}
	.company-message__inner .desc .text {
		width: calc(100% - 630px);
		padding-right: 140px;
	}*/
    .company-message__inner .desc .text .text__inner {
        gap: 80px;
        padding-top: 30px;
    }
    .company-message__inner .desc .text .text__inner .text-l,
    .company-message__inner .desc .text .text__inner .text-r {
        width: calc(50% - 40px);
    }
    .company-message__inner .desc .text .text__inner .text-l::after {
        right: -40px;
    }
	.company-message__inner .desc .text .text__inner p {
        padding-top: 20px;
		font-size: 1.05rem;
	}
	.company-message__inner .desc .text p.sign {
		padding-top: 50px;
		font-size: 1.4rem;
		letter-spacing: .1em;
	}
	.company-message__inner .desc .text p.sign span {
		font-size: 0.95rem;
		padding-right: 15px;
	}
}

.company-overview {
	z-index: 24;
	position: relative;
	width: 100%;
	background: var(--color-bgy);
	color: var(--color-wh);
}
.company-overview__inner {
	padding: 40px 0 0;
}
.company-overview__inner .head {
	padding: 0 20px;
}
.company-overview__inner .head h2 {
	position: relative;
	padding-left: 60px;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1;
}
.company-overview__inner .head h2::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 50px;
	height: 1px;
	background: var(--color-wh);
	transform: translate(0, -50%);
}
.company-overview__inner .outline {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 30px 20px 50px;
}
.company-overview__inner .outline dl {
	font-size: 0.9rem;
	line-height: 1.6;
}
.company-overview__inner .outline dl dt {
	padding-bottom: 3px;
	border-bottom: 1px solid var(--color-dgy); 
	font-weight: 700;
}
.company-overview__inner .outline dl dd {
	padding-top: 6px;
}
.company-overview__inner .ggmap {
	position: relative;
	padding-bottom: 46%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media screen and (min-width: 768px) {
	.company-overview__inner {
		padding: 60px 0 0;
	}
	.company-overview__inner .head {
		padding: 0 60px;
	}
	.company-overview__inner .head h2 {
		padding-left: 20px;
	}
	.company-overview__inner .head h2::before {
		width: 7px;
		height: 7px;
		margin-top: -1px;
		border-radius: 100%;
	}
	.company-overview__inner .outline {
		padding: 30px 60px 50px;
	}
	.company-overview__inner .outline dl {
		display: flex;
		align-items: center;
		font-size: 0.95rem;
	}
	.company-overview__inner .outline dl dt {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 120px;
		padding: 8px 8px 6px;
		background: var(--color-wh);
		color: var(--color-bk);
		text-align: center;
	}
	.company-overview__inner .outline dl dd {
		display: flex;
		align-items: center;
		width: calc(100% - 120px);
		padding: 8px 8px 6px 25px;
		line-height: 1.5;
	}
	.is-en-page .company-overview__inner .outline dl dt {
		width: 190px;
	}
	.is-en-page .company-overview__inner .outline dl dd {
		width: calc(100% - 190px);
	}
	.company-overview__inner .map {
		padding: 60px;
		background: var(--color-wh);
	}
	.company-overview__inner .ggmap {
		padding-bottom: 40%;
	}
}
@media screen and (min-width: 1280px) {
	.company-overview__inner {
		padding-top: 120px;
	}
	.company-overview__inner .head {
		max-width: 1400px;
		margin: auto;
		padding: 0 60px;
	}
	.company-overview__inner .head h2 {
		font-size: 1rem;
	}
	.company-overview__inner .outline {
		max-width: 1400px;
		margin: auto;
		padding: 40px 60px 110px;
	}
	.company-overview__inner .outline dl {
		font-size: 1.1rem;
	}
	.company-overview__inner .outline dl dt {
		width: 150px;
		padding: 8px 8px 6px;
	}
	.company-overview__inner .outline dl dd {
		width: calc(100% - 150px);
		padding: 8px 8px 6px 45px;
	}
	.company-overview__inner .ggmap {
		max-width: 1280px;
		margin: auto;
		padding-bottom: 20%;
	}
}

/* --------------------------------------------------
 page team
--------------------------------------------------- */

.page-team {
    z-index: 21;
    position: relative;
    width: 100%;
}
.page-team__inner {
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    width: 100%;
	padding: 40px 20px;
}
.member__card {
    width: calc(50% - 5px);
}
.member__card .image {
    background-image: url("assets/images/ceo-bg.png");
}
.member__card .desc {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px 5px 5px;
    text-align: center;
    line-height: 1.6;
}
.member__card .name {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .08em;
    text-indent: .08em;
}
.member__card .position {
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-theme-01);
}
.member__card .history {
    font-size: 0.7rem;
    line-height: 1.4;
    color: var(--color-dgy);
    text-align: justify;
    word-break: break-all;
}

@media screen and (min-width: 768px) {
    .page-team__inner {
        gap: 30px;
        padding: 60px;
    }
    .member__card {
        width: calc(50% - (30px / 2));
    }
}
@media screen and (min-width: 1024px) {
    .page-team__inner {
        gap: 40px;
        padding: 60px;
    }
    .member__card {
        width: calc(33.3333% - (80px / 3));
    }
    .member__card .name {
        font-size: 1rem;
    }
    .member__card .position {
        font-size: 0.8rem;
    }
    .member__card .history {
        font-size: 0.75rem;
    }
}
@media screen and (min-width: 1280px) {
    .page-team__inner {
        max-width: 1400px;
        margin: auto;
        padding: 100px 60px;
    }
    .member__card {
        width: calc(25% - (120px / 4));
    }
    .member__card .desc {
        gap: 8px;
        padding: 15px 0;
    }
    .member__card .name {
        font-size: 1.1rem;
    }
    .member__card .position {
        font-size: 0.9rem;
    }
    .member__card .history {
        font-size: 0.8rem;
    }
}

/* --------------------------------------------------
 page news
--------------------------------------------------- */

.page-news {
    z-index: 21;
    position: relative;
    width: 100%;
}
.page-news__inner {
    z-index: 3;
    position: relative;
    width: 100%;
	padding: 40px 20px;
}
.page-news__inner .news__item::before {
    background: var(--color-dgy);
	opacity: .2;
}
.page-news__inner .news__item__inner a {
	padding: 20px 15px;
}
@media screen and (min-width: 768px) {
    .page-news__inner {
        padding: 60px;
    }
}
@media screen and (min-width: 1024px) {
    .page-news__inner .news__item__inner a {
        padding: 32px 15px 30px;
    }
}
@media screen and (min-width: 1280px) {
	.page-news {
		padding-bottom: 130px;
	}
	.page-news__inner {
		max-width: 1280px;
		margin: 100px auto 0;
		padding: 80px 60px;
		background: var(--color-wh);
    }
}


/* pager
--------------------------------------------------- */

.pager {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 40px 0 0;
    text-align: center;
    font-family: var(--font-en-02);
    font-size: calc(var(--fs)*0.9);
    font-weight: 400;
}
.pager a {
    color: var(--color-theme-01);
    transition: .3s;
}
.pager a:hover {
    color: var(--color-theme-03);
}
.page-numbers {
    position: relative;
    margin: 0 6px;
    padding: 5px 6px 0;
}
.current {
    color: var(--color-bk);
}
@media screen and (min-width: 768px) {
    .pager {
        padding-top: 80px;
    }
}

/* --------------------------------------------------
 page recruit
--------------------------------------------------- */

.page-recruit__mv {
	z-index: 21;
	position: relative;
	width: 100%;
	background: var(--color-wgy);
}
.page-recruit__mv__inner {
	z-index: 3;
	position: relative;
	width: 100%;
}
.page-recruit__mv__inner .head {
	z-index: 6;
	position: relative;
	padding: 30px 20px 50px;
}
/*.page-recruit__mv__inner .head::before {
	content: "";
	position: absolute;
	bottom: -25px;
	left: 50%;
	width: 0.5px;
	height: 50px;
	background: var(--color-bk);
	transform: translate(-50%, 0);
	opacity: 0.5;
}*/
.page-recruit__mv__inner .head h2 {
	font-size: 1.2rem;
	font-weight: 700;
	text-align: center;
}
.page-recruit__mv__inner .image {
	z-index: 5;
	position: relative;
}
.page-recruit__mv__inner .text {
	padding: 30px 20px;
}
.page-recruit__mv__inner .text p {
	font-size: 0.9rem;
	line-height: 1.7;
}

.page-recruit__post {
	z-index: 1;
	position: relative;
	width: 100%;
	padding-top: 60px;
	margin-top: -60px;
	background: var(--color-theme-01);
}
.page-recruit__post__inner {
	z-index: 2;
	position: relative;
	width: 100%;
	padding: 40px 20px 50px;
}
.page-recruit__post__inner .head {
	z-index: 4;
	position: relative;
	width: 100%;
	margin-bottom: 10px;
	padding-bottom: 10px;
}
.page-recruit__post__inner .head::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 80%;
	height: 1px;
	background: var(--color-wh);
	opacity: 0.5;
	transform: translate(-50%, 0);
}
.page-recruit__post__inner h2 {
	width: 100%;
	color: var(--color-wh);
	font-size: 1.2rem;
	letter-spacing: .2em;
	text-indent: .2em;
	text-align: center;
}
.page-recruit__post__inner h3 {
	width: 100%;
	padding: 20px 20px 15px;
	color: var(--color-wh);
	font-size: 1.1rem;
	letter-spacing: .15em;
	text-indent: .15em;
	text-align: center;
}
.post-career {
	z-index: 5;
	position: relative;
}
.post-part {
	z-index: 5;
	position: relative;
	padding-top: 30px;
}
.post-job {
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: relative;
	width: 100%;
}
.job__card {
	display: flex;
	width: 100%;
}
.job__card a {
	width: 100%;
	padding: 15px;
	background: var(--color-wh);
	border-radius: 4px;
	transition: .2s;
}
.job__card a:hover {
	background: var(--color-dwgy);
}
.job__card .title {
	position: relative;
	padding-bottom: 8px;
	font-size: 0.9rem;
	line-height: 1.5;
}
.job__card .title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--color-dwgy);
}
.job__card a:hover .title::after {
	opacity: 0.4;
}
.job__card .desc {
	padding-top: 8px;
}
.job__card .desc p {
	font-size: 0.85rem;
	line-height: 1.5;
}
.page-recruit__intern {
	z-index: 1;
	position: relative;
	width: 100%;
}
.page-recruit__intern__inner {
	z-index: 2;
	position: relative;
	width: 100%;
	padding: 40px 20px;
}
.page-recruit__intern__inner h2 {
	font-size: 1rem;
	line-height: 1.5;
	text-align: center;
}
.page-recruit__intern__inner ul {
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 25px 0 0;
}
.page-recruit__intern__inner ul li {
	width: 100%;
}
.page-recruit__intern__inner ul li a {
	display: flex;
	justify-content: center;
	width: 100%;
	background: var(--color-wh);
}
.page-recruit__intern__inner ul li a img {
	max-width: 200px;
}
.page-recruit__online {
	z-index: 1;
	position: relative;
	width: 100%;
	background: var(--color-wh);
}
.page-recruit__online__inner {
	z-index: 2;
	position: relative;
	width: 100%;
	padding: 40px 20px;
}
.page-recruit__online__inner p {
	text-align: center;
	line-height: 1.5;
}
.page-recruit__online__inner .pitta {
	width: 100%;
	display: flex;
	justify-content: center;
	padding-top: 20px;
}
.page-recruit__online__inner .pitta iframe {
	margin: auto;
}
@media screen and (min-width: 768px) {
	.page-recruit__mv__inner .head {
		padding: 60px 60px 50px;
	}
	.page-recruit__mv__inner .head h2 {
		font-size: 1.3rem;
	}
	.page-recruit__mv__inner .text {
		padding: 50px 60px;
	}
	.page-recruit__mv__inner .text p {
		padding: 40px;
		font-size: 0.95rem;
		border: 1px solid var(--color-dgy);
	}
	
	.page-recruit__post {
		padding-top: 70px;
		margin-top: -70px;
	}
	.page-recruit__post__inner {
		padding: 60px 60px 70px;
	}
	.page-recruit__post__inner .head::before {
		width: 100%;
	}
	.page-recruit__post__inner h2 {
		font-size: 1.25rem;
	}
	.page-recruit__post__inner h3 {
		padding: 30px 60px 25px;
		font-size: 1.15rem;
	}
	.post-job {
		gap: 20px;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.job__card {
		width: calc(50% - 10px);
	}
	.job__card a {
		padding: 15px;
	}
	.page-recruit__intern__inner {
		padding: 70px 60px;
	}
	.page-recruit__intern__inner ul {
		gap: 20px;
		flex-direction: row;
		flex-wrap: wrap;
		padding: 40px 0 0;
	}
	.page-recruit__intern__inner ul li {
		width: calc(50% - 10px);
	}
	
	.page-recruit__online__inner {
		padding: 70px 60px;
	}
}
@media screen and (min-width: 1024px) {
	.page-recruit__post {
		padding-top: 80px;
		margin-top: -80px;
	}
}
@media screen and (min-width: 1280px) {
	.page-recruit__mv__inner .head {
		max-width: 1280px;
		margin: auto;
		padding: 110px 60px 70px;
	}
	.page-recruit__mv__inner .head::before {
		bottom: -45px;
		height: 90px;
	}
	.page-recruit__mv__inner .head h2 {
		font-size: 1.7rem;
		line-height: 1.8;
	}
	.page-recruit__mv__inner .image {
		width: 100%;
		max-width: 1280px;
		margin: auto;
		height: 600px;
	}
	.page-recruit__mv__inner .image .mask,
	.page-recruit__mv__inner .image .mask__inner {
		width: 100%;
		height: 100%;
	}
	.page-recruit__mv__inner .image img {
		width: 100%;
		object-fit: cover;
		object-position: center center;
	}
	.page-recruit__mv__inner .text {
		max-width: 800px;
		margin: auto;
		padding: 80px 60px 120px;
	}
	.page-recruit__mv__inner .text p {
		position: relative;
		padding: 50px;
		font-size: 1.05rem;
		line-height: 2;
		border: 0;
		background: var(--color-wh);
	}
	.page-recruit__mv__inner .text p::after {
		z-index: -1;
		content: "";
		position: absolute;
		top: 20px;
		left: 20px;
		width: 100%;
		height: 100%;
		background: var(--color-theme-02);
	}
	
	.page-recruit__post__inner {
		max-width: 1400px;
		margin: auto;
		padding: 120px 60px 130px;
		overflow: hidden;
	}
	.page-recruit__post__inner .head::before {
		width: 70px;
	}
	.page-recruit__post__inner h2 {
		font-size: 1.6rem;
	}
	.page-recruit__post__inner h3 {
		padding: 40px 60px 35px;
		font-size: 1.35rem;
	}
	.post-job {
		gap: 30px;
	}
	.job__card {
		width: calc(33.3333% - (60px / 3));
	}
	.job__card a {
		padding: 25px;
	}
	.job__card .title {
		padding-bottom: 10px;
		font-size: 1.05rem;
		font-weight: 700;
	}
	.job__card .desc {
		padding-top: 10px;
	}
	.job__card .desc p {
		font-size: 0.95rem;
	}
	
	.page-recruit__intern__inner {
		max-width: 1400px;
		margin: auto;
		padding: 120px 60px;
	}
	.page-recruit__intern__inner h2 {
		font-size: 1.3rem;
	}
	.page-recruit__intern__inner ul {
		gap: 30px;
		justify-content: center;
		padding: 60px 0 0;
	}
	.page-recruit__intern__inner ul li {
		width: calc(33.3333% - (60px / 3));
	}
	.page-recruit__intern__inner ul li a img {
		max-width: 350px;
	}
	
	.page-recruit__online__inner {
		max-width: 1400px;
		margin: auto;
		padding: 90px 60px;
	}
	.page-recruit__online__inner p {
		font-size: 1.3rem;
		font-weight: 700;
	}
	.page-recruit__online__inner .pitta {
		padding-top: 60px;
	}
}

.page-recruit__sango {
    z-index: 1;
    position: relative;
    width: 100%;
    background: var(--color-blu);
}
.page-recruit__sango__inner {
    z-index: 2;
    position: relative;
    width: 100%;
    padding: 40px 20px;
}
.page-recruit__sango__inner h2 {
    padding-bottom: 20px;
    font-size: 1.2rem;
    color: var(--color-wh);
    text-align: center;
}
.page-recruit__sango__inner p {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-wh);
}
.page-recruit__sango__inner .link {
    padding-top: 20px;
}
.page-recruit__sango__inner .link a {
    padding: 15px;
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--color-dgy);
    background: var(--color-wh);
    border-radius: 4px;
    text-decoration: underline;
}
@media screen and (min-width: 768px) {
    .page-recruit__sango__inner {
        padding: 60px 60px;
    }
    .page-recruit__sango__inner h2 {
        padding-bottom: 30px;
        font-size: 1.3rem;
    }
    .page-recruit__sango__inner p {
        text-align: center;
        font-size: 1rem;
    }
    .page-recruit__sango__inner .link a {
        padding: 20px;
        font-size: 0.9rem;
    }
}
@media screen and (min-width: 1024px) {
    .page-recruit__sango__inner h2 {
        font-size: 1.5rem;
    }
    .page-recruit__sango__inner p {
        font-size: 1.1rem;
    }
    .page-recruit__sango__inner .link {
        max-width: 600px;
        margin: auto;
        padding-top: 40px;
    }
    .page-recruit__sango__inner .link a {
        font-size: 1rem;
    }
}


.page-recruit__interview {
    z-index: 21;
    position: relative;
    width: 100%;
}
.page-recruit__interview__inner {
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    width: 100%;
	padding: 40px 20px;
}
.member__card {
    width: calc(50% - 5px);
}
.member__card .image {
    background-image: url("assets/images/ceo-bg.png");
}
.page-recruit__interview__inner .member__card .desc {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 5px;
    padding: 8px 5px 5px;
    text-align: left;
    line-height: 1.6;
}
.page-recruit__interview__inner .member__card .desc .name {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .08em;
    text-indent: .08em;
}
.page-recruit__interview__inner .member__card .desc .sub {
    margin-left: auto;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-theme-01);
}
.page-recruit__interview__inner .member__card .desc .cont {
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--color-bk);
    text-align: justify;
    word-break: break-all;
}

@media screen and (min-width: 768px) {
    .page-recruit__interview__inner {
        gap: 30px;
        padding: 60px;
    }
    .member__card {
        width: calc(50% - (30px / 2));
    }
    .page-recruit__interview__inner .member__card .desc .name {
        font-size: 1.05rem;
    }
    .page-recruit__interview__inner .member__card .desc .sub {
        margin-left: auto;
        padding-bottom: 2px;
        font-size: 0.75rem;
    }
    .page-recruit__interview__inner .member__card .desc .cont {
        width: 100%;
        padding-top: 10px;
        font-size: 0.95rem;
    }
}
@media screen and (min-width: 1024px) {
    .page-recruit__interview__inner {
        gap: 40px;
        padding: 60px;
    }
    .member__card {
        width: calc(33.3333% - (80px / 3));
    }
    .page-recruit__interview__inner .member__card .desc .name {
        font-size: 1.1rem;
    }
    .page-recruit__interview__inner .member__card .desc .sub {
        margin-left: auto;
        padding-bottom: 2px;
        font-size: 0.8rem;
    }
    .page-recruit__interview__inner .member__card .desc .cont {
        width: 100%;
        padding-top: 10px;
        font-size: 1rem;
    }
}
@media screen and (min-width: 1280px) {
    .page-recruit__interview__inner {
        max-width: 1400px;
        margin: auto;
        padding: 100px 60px;
    }
    .member__card {
        width: calc(25% - (120px / 4));
    }
    .member__card .desc {
        gap: 8px;
        padding: 15px 0;
    }
    .member__card .name {
        font-size: 1.1rem;
    }
    .member__card .position {
        font-size: 0.9rem;
    }
    .member__card .history {
        font-size: 0.8rem;
    }
}


/* --------------------------------------------------
 page privacy, terms
--------------------------------------------------- */

.privacy,
.terms {
    z-index: 21;
    position: relative;
    width: 100%;
}
.privacy__inner,
.terms__inner {
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    width: 100%;
    padding: 40px 20px 40px;
}
.privacy__item,
.terms__item {
    width: 100%;
}
.privacy__item h2,
.terms__item h2 {
    padding-bottom: 10px;
    font-size: 1.1rem;
}
.privacy__item .text p,
.terms__item .text p {
    font-size: 0.85rem;
    line-height: 1.6;
    text-align: justify;
}
@media screen and (min-width: 768px) {
    .privacy__inner,
    .terms__inner {
        padding: 60px;
    }
}
@media screen and (min-width: 1280px) {
	.privacy,
	.terms {
		padding-bottom: 130px;
	}
	
    .privacy__inner,
    .terms__inner {
        gap: 60px;
        max-width: 1280px;
        margin: 150px auto 0;
        padding: 120px 150px;
        background: var(--color-wh);
    }
    .privacy__item h2,
    .terms__item h2 {
        font-size: 1.15rem;
    }
    .privacy__item .text p,
    .terms__item .text p {
        font-size: 0.95rem;
    }
}

/* --------------------------------------------------
 page contact
--------------------------------------------------- */

.form {
    z-index: 21;
    position: relative;
    width: 100%;
}
.form__inner {
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    width: 100%;
    padding: 40px 20px 40px;
}
@media screen and (min-width: 768px) {
    .form__inner {
        padding: 60px;
    }
}
@media screen and (min-width: 1280px) {
    .form__inner {
        max-width: 1280px;
        margin: 100px auto 0;
        padding: 120px 150px;
        background: var(--color-wgy);
    }
}

.form-wrap {
    position: relative;
    width: 100%;
}
.form-text {
    width: 100%;
    padding-bottom: 50px;
    font-size: 0.9rem;
    line-height: 1.6;
}
.form-desc {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}
.form-item {
    width: 100%;
}
.form-head {
    display: flex;
    align-items: center;
    width: 100%;
    padding-bottom: 10px;
    font-size: 0.9rem;
}
.form-head span {
    margin-right: 10px;
    font-family: var(--font-jp);
    font-size: 0.8rem;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 3px;
}
.form-head span.req {
    background: var(--color-red);
    color: var(--color-wh);
}
.form-head span.any {
    background: var(--color-blu);
    color: var(--color-wh);
}
.form-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}
.form-item input[type="text"],
.form-item input[type="tel"],
.form-item input[type="email"],
.form-item input[type="date"],
.form-item select,
.form-item textarea {
    display: block;
    width: 100%;
    padding: 0.7em;
    background: var(--color-dwgy);
    color: var(--color-bk);
    line-height: 1;
    outline: none;
    border: none;
}
.form-foot span.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}
.form-wrap .wpcf7-form-control.wpcf7-checkbox {
    display: flex;
    flex-wrap: wrap;
}
.form-wrap span.wpcf7-list-item {
    display: inline;
    position: relative;
    width: 100%;
    align-items: center;
    margin: 0 0 0 3px;
}
.form-wrap .wpcf7-list-item-label {
    padding: 0;
    color: var(--color-bk);
    cursor: pointer;
}
.form-wrap input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}
.form-wrap .wpcf7-list-item-label:before {
    content: '';
    display: inline-block;
    position: relative;
    top: -2px;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    border: 1px solid var(--color-dgy);
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
}
.form-wrap input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 6px;
    width: 7px;
    height: 14px;
    transform: rotate(40deg);
    border-bottom: 2px solid var(--color-dgy);
    border-right: 2px solid var(--color-dgy);
    margin-top: -2px;
}
.form-wrap .form-foot input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
    top: 5px;
}
.form-item .wpcf7-radio {
    display: flex;
    justify-content: flex-start;
}
.form-item .wpcf7-radio .wpcf7-list-item {
    display: flex;
    justify-content: flex-start;
    width: auto;
}
.form-item .wpcf7-radio .wpcf7-list-item.first {
    margin: 0 0 0 5px;
}
.form-item .wpcf7-radio input[type="radio"] {
    opacity: 0;
}
.form-item .wpcf7-radio .wpcf7-list-item-label {
    position: relative;
    padding: 0 0 0 20px;
}
.form-item .wpcf7-radio .wpcf7-list-item-label::before {
    z-index: 1;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 14px;
    height: 14px;
    border: 1px solid var(--color-gy);
    transform: translate(0, -50%);
    border-radius: 100%;
}
.form-item .wpcf7-radio input:checked + .wpcf7-list-item-label::after {
    z-index: 3;
    content: "";
    position: absolute;
    top: 50%;
    left: 2px;
    width: 10px;
    height: 10px;
    background: var(--color-gy);
    transform: translate(0, -50%);
    border-radius: 100%;
}
.form-attention {
    padding: 30px 0 0;
}
.form-attention p {
    font-size: 0.85rem;
    line-height: 1.6;
    text-align: justify;
}
.form-attention p a {
    display: inline;
    text-decoration: underline;
}
.form-attention .checkbox {
    padding: 30px 0 0;
    text-align: center;
    font-size: 0.95rem;
}
.form-wrap .submit {
    padding: 30px 30px 0;
}
.form-wrap input[type="submit"] {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--color-theme-01);
    color: var(--color-wh);
    text-align: center;
    letter-spacing: 0.8em;
    text-indent: 0.8em;
    line-height: 1;
    border: none;
    transition: opacity 0.2s ease-in-out;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.form-wrap input[type="submit"]:hover {
    background: var(--color-theme-03);
    color: var(--color-wh);
}
@media screen and (min-width: 768px) {
    .form-text {
        padding-bottom: 80px;
    }
    .form-item {
        display: flex;
        align-items: center;
        width: 100%;
    }
    .form-head {
        width: 210px;
    }
    .form-foot {
        width: calc(100% - 210px);
    }
    .form-attention {
        padding: 80px 0 0;
    }
    .form-attention p {
        text-align: center;
    }
    .form-wrap .submit {
        max-width: 400px;
        margin: auto;
        padding: 60px 30px 0;
    }
}
@media screen and (min-width: 1024px) {
    .form-head {
        width: 250px;
    }
    .form-foot {
        width: calc(100% - 250px);
    }
}
@media screen and (min-width: 1280px) {
    .form-text {
        font-size: 1rem;
        text-align: center;
    }
    .form-item input[type="text"],
    .form-item input[type="tel"],
    .form-item input[type="email"],
    .form-item input[type="date"],
    .form-item select,
    .form-item textarea {
        background: var(--color-wh);
        border: 1px solid var(--color-dgy);
    }
    .form-attention {
        padding: 70px 0 40px;
        text-align: center;
    }
    .form-head {
        width: 280px;
        font-size: 1rem;
    }
    .form-head span {
        font-size: 0.9rem;
    }
    .form-foot {
        width: calc(100% - 280px);
    }
}

/* --------------------------------------------------
 single
--------------------------------------------------- */

.single {
    z-index: 1;
    position: relative;
    width: 100%;
}
.single__inner {
    z-index: 2;
    position: relative;
    width: 100%;
    padding: 30px 20px;
}
.single__head {
	padding: 25px 0 10px;
}
.single__title h1 {
	font-size: 1.1rem;
}
.single__date {
	padding-top: 5px;
}
.single__date p {
	font-family: var(--font-en-02);
}
.single__contents p {
	padding-top: 15px;
	font-size: 0.9rem;
	line-height: 1.6;
    text-align: justify;
    word-break: break-all;
}
.single__download,
.single__link {
	margin-top: 25px;
}
.single__download a,
.single__link a {
	position: relative;
	padding: 10px 45px 10px 10px;
	border: 1px solid var(--color-dgy);
	font-size: 0.85rem;
	line-height: 1.5;
	text-align: left;
}
.single__download a span,
.single__link a span {
	font-size: 0.75rem;
}
.single__download a::before,
.single__link a::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	width: 20px;
	height: 20px;
	transform: translate(0, -50%);
	background-repeat: no-repeat;
	background-position: center center;
}
.single__download a::before {
	background-image: url("assets/images/icon-download.svg");
}
.single__link a::before {
	background-image: url("assets/images/icon-link.svg");
}
.single__back {
	padding: 40px 0 20px;
	text-align: center;
}
.single__back a {
	display: inline;
	position: relative;
	padding: 10px 15px 10px 45px;
	background: var(--color-theme-02);
	line-height: 1;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: .1em;
}
.single__back a::before,
.single__back a::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 15px;
}
.single__back a::before {
	width: 15px;
	height: 1px;
	background: var(--color-bk);
	transform: translate(0, -50%);
}
.single__back a::after {
	width: 5px;
	height: 5px;
	border-top: 1px solid var(--color-bk);
	border-left: 1px solid var(--color-bk);
	transform: translate(0, -50%) rotate(-45deg);
}
@media screen and (min-width: 768px) {
    .single__inner {
		max-width: 700px;
        margin: auto;
        padding: 80px 60px 60px;
        font-size: 0.95rem;
    }
	.single__head {
		padding: 40px 0 20px;
	}
	.single__title h1 {
		font-size: 1.15rem;
	}
	.single__date {
		padding-top: 8px;
	}
	.single__contents p {
		padding-top: 20px;
		font-size: 0.95rem;
	}
	.single__download,
	.single__link {
		margin-top: 40px;
	}
	.single__download a,
	.single__link a {
		max-width: 500px;
		margin: auto;
		padding: 15px 50px 15px 15px;
		font-size: 0.9rem;
	}
	.single__download a span,
	.single__link a span {
		font-size: 0.8rem;
	}
	.single__download a::before,
	.single__link a::before {
		right: 10px;
		width: 25px;
		height: 25px;
	}
	.single__back {
		padding: 60px 0 30px;
	}
	.single__back a {
		padding: 15px 20px 15px 50px;
	}
}
@media screen and (min-width: 1024px) {
	.single__title h1 {
		font-size: 1.25rem;
	}
}
@media screen and (min-width: 1280px) {
    .single {
        padding: 60px;
	}
    .single__inner {
        max-width: 1000px;
        margin: auto;
        padding: 80px 100px;
		line-height: 1.8;
        background: var(--color-wh);
    }
	.single__contents p {
		font-size: 1rem;
	}
}

/* --------------------------------------------------
 single member
--------------------------------------------------- */

.single-member .single__inner {
	padding: 0 0 40px;
}
.single-member__mv {
	z-index: 21;
	position: relative;
	width: 100%;
	height: 380px;
	background-image: url("assets/images/ceo-bg.png");
	background-position: center center;
	overflow: hidden;
}
.single-member__mv .image {
	z-index: 2;
	position: relative;
	width: 100%;
	height: 100%;
}
.single-member__mv .image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
    object-position: top center;
	margin-left: 40px;
}
.single-member__mv .text {
	z-index: 3;
	position: absolute;
	bottom: 40px;
	left: 20px;
}
.single-member__mv .text h2 {
    padding: 10px 15px 8px;
	font-size: 1.3rem;
	letter-spacing: .1em;
    text-indent: .1em;
    line-height: 1;
    background: var(--color-theme-01);
    color: var(--color-wh);
}
.single-member__mv .text p {
    font-size: 0.9rem;
    font-family: var(--font-en-01);
    font-weight: 700;
    color: var(--color-wh);
}
.single-member__mv .text p.position {
    position: relative;
    margin-top: 10px;
    padding: 3px 0 3px 25px;
    font-size: 0.8rem;
    line-height: 1.3;
    font-family: var(--font-jp);
    color: var(--color-bk);
}
.single-member__mv .text p.position::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 18px;
    height: 1px;
    background: var(--color-bk);
}
.single-member .interview {
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: relative;
	width: 100%;
}
.single-member .interview__item {
	position: relative;
	width: 100%;
}
.single-member .interview__head {
	position: relative;
	width: 100%;
	padding: 20px;
	background: var(--color-wh);
}
.single-member .interview__head h3 {
	display: flex;
	font-size: 1rem;
}
.single-member .interview__head h3 span.num {
	font-size: 0.9rem;
	margin-right: 10px;
	color: var(--color-theme-01);
}
.single-member .interview__desc {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 20px 0;
}
.single-member .interview__desc .text {
	padding: 0 20px;
}
.single-member .interview__desc .text p {
	padding-top: 15px;
	font-size: 0.9rem;
	text-align: justify;
}
.single-member .interview__desc p:nth-of-type(1) {
	padding-top: 0;
}
.single-member .interview__desc .timetable {
	display: flex;
	flex-direction: column;
	padding: 0 20px;
}
.single-member .interview__desc .timetable p {
	padding: 10px;
	line-height: 1;
	text-align: center;
	background: var(--color-theme-01);
	color: var(--color-wh);
	font-weight: 700;
}
.single-member .interview__desc .timetable dl {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 15px 0;
	border-bottom: 1px solid var(--color-wh);
	line-height: 1.4;
}
.single-member .interview__desc .timetable dl dt {
	letter-spacing: .05em;
	font-weight: 700;
	color: var(--color-dgy);
}
.single-member .interview__desc .timetable dl dd {
	font-size: 0.9rem;
	font-weight: 700;
}
@media screen and (min-width: 768px) {
    .single-member .single__inner {
		max-width: 700px;
        margin: auto;
        padding: 80px 60px 60px;
    }
    .single-member__mv .image img {
        margin-left: 60px;
    }
    .single-member__mv .text {
        bottom: 50px;
        left: 30px;
    }
    .single-member__mv .text h2 {
        font-size: 1.3rem;
    }
    .single-member__mv .text p {
        padding-bottom: 10px;
        font-size: 1rem;
    }
    .single-member__mv .text p.position {
        font-size: 0.9rem;
    }
    .single-member .interview {
        padding: 30px 0;
        background: var(--color-wh);
    }
    .single-member .interview__head {
        position: relative;
        padding: 20px 30px 15px;
    }
    .single-member .interview__head::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 300px;
        height: 1px;
        background: var(--color-bgy);
        opacity: 0.6;
    }
    .single-member .interview__desc {
        gap: 30px;
        padding: 30px 0;
    }
    .single-member .interview__desc .text {
        padding: 0 30px;
    }
    .single-member .interview__desc .timetable {
        gap: 5px;
        padding: 0 30px;
    }
    .single-member .interview__desc .timetable p {
        margin-bottom: 15px;
        padding: 15px;
    }
    .single-member .interview__desc .timetable dl {
        flex-direction: row;
        gap: 8px 0;
        padding: 10px;
    }
    .single-member .interview__desc .timetable dl dt {
        width: 140px;
    }
    .single-member .interview__desc .timetable dl dd {
        width: calc(100% - 140px);
    }
}
@media screen and (min-width: 1280px) {
    .single-member {
        padding: 0;
	}
    .single-member .single__inner {
        max-width: 1000px;
        margin: auto;
        padding: 80px 100px;
		line-height: 1.8;
        background: none;
    }
    .single-member__mv {
        height: 480px;
    }
    .single-member__mv .image img {
        margin-left: 80px;
    }
    .single-member__mv .text {
        bottom: 50px;
        left: 50px;
    }
    .single-member__mv .text h2 {
        font-size: 1.5rem;
        letter-spacing: .2em;
        text-indent: .2em;
    }
    .single-member__mv .text p {
        padding-bottom: 10px;
        font-size: 1.1rem;
    }
    .single-member .interview__head {
        padding: 20px 50px 15px;
    }
    .single-member .interview__desc {
        gap: 40px;
        padding: 40px 0;
    }
    .single-member .interview__desc .text {
        padding: 0 50px;
    }
    .single-member .interview__desc .timetable {
        gap: 5px;
        padding: 0 50px;
    }
    .single-member .interview__desc .timetable p {
        margin-bottom: 15px;
        padding: 15px;
    }
    .single-member .interview__desc .timetable dl {
        flex-direction: row;
        gap: 8px 0;
        padding: 10px;
    }
    .single-member .interview__desc .timetable dl dt {
        width: 140px;
    }
    .single-member .interview__desc .timetable dl dd {
        width: calc(100% - 140px);
    }
}

/* --------------------------------------------------
 single recruit
--------------------------------------------------- */

.single-recruit .single__head {
	padding-bottom: 20px;
	border-bottom: 1px solid var(--color-bk);
}
.single-recruit .single__title h1 {
	font-size: 1.2rem;
}
.single-recruit .single__contents {
	padding-top: 20px;
}
.single-recruit__inner {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.single-recruit__inner dl {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.single-recruit__inner dl dt {
	padding: 8px 15px;
	background: var(--color-theme-01);
	color: var(--color-wh);
	line-height: 1.4;
}
.single-recruit__inner dl dd {
	padding: 10px 15px;
	font-size: 0.9rem;
	line-height: 1.5;
}
.single-recruit__link {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 25px;
}
.single-recruit__link a {
	width: 200px;
	padding: 12px 25px;
	text-align: center;
	background: var(--color-bk);
	color: var(--color-wh);
	font-size: 0.9rem;
	line-height: 1;
	border-radius: 30px;
	transition: .2s;
}
.single-recruit__link a:hover {
	background: var(--color-dgy);
}
.single-recruit .single__back {
	margin-top: 40px;
	border-top: 1px solid var(--color-bk);
}
@media screen and (min-width: 1024px) {
	.single-recruit .single__title h1 {
		font-size: 1.5rem;
		padding: 0 15px;
	}
	.single-recruit .single__inner {
		max-width: 900px;
	}
	.single-recruit .single__contents {
		padding-top: 40px;
	}
	.single-recruit__inner {
		gap: 30px;
	}
	.single-recruit__inner dl {
		flex-direction: row;
		gap: 0;
		padding: 0 10px;
	}
	.single-recruit__inner dl dt {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 150px;
		padding: 20px;
	}
	.single-recruit__inner dl dd {
		width: calc(100% - 150px);
		padding: 20px;
		background: var(--color-wh);
	}
	.single-recruit .single__back {
		margin-top: 60px;
	}
}
@media screen and (min-width: 1280px) {
    .single {
        padding: 60px;
	}
    .single-recruit .single__inner {
        max-width: 1200px;
        margin: auto;
        padding: 80px 100px;
		line-height: 1.8;
        background: none;
    }
	.single__contents p {
		font-size: 1rem;
	}
	.single-recruit__inner dl dt {
		width: 200px;
		padding: 30px;
		font-size: 1rem;
		line-height: 1.6;
	}
	.single-recruit__inner dl dd {
		width: calc(100% - 200px);
		padding: 30px;
		font-size: 1rem;
		line-height: 1.6;
	}
	.single-recruit__link {
		padding-top: 40px;
	}
	.single-recruit__link a {
		width: 220px;
		padding: 15px 30px;
		font-size: 1rem;
	}
}


/* --------------------------------------------------
 notfound
--------------------------------------------------- */

.notfound {
    z-index: 1;
    position: relative;
    width: 100%;
    height: 80vh;
    padding: 0;
    background-image: url("assets/images/bg-404.jpg");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
}
.notfound-inner {
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    color: var(--color-wh);
    text-align: center;
}
.notfound-inner h1 {
    padding-top: 30px;
    font-family: var(--font-en-01);
    font-weight: 400;
    font-size: calc(var(--fs)*4);
    line-height: 1;
}
.notfound-inner h1 span {
    display: block;
    padding: 10px 0 40px;
    font-size: calc(var(--fs)*2.2);
}