@charset "UTF-8";
/**====================================
 * CSS information
 * file name	: common.css
 * author		: libretto works
====================================**/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Noto+Sans+JP:wght@400;500;700&display=swap');

/* body
-------------------------------------------------- */
html {
	font-size: 62.5%;
}
body {
	font-size: 1.6em;
	line-height: 1.9;
	position: relative;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	letter-spacing: 0.08em;
	color: #1a1a1a;
	width: 100%;
	min-width: 1040px;
	height: 100%;
    background: #f5f5f5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    font-feature-settings: "palt" 1;
    transition: .3s;
}
body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
}
body.fade {
    opacity: 0;
}

/* link
-------------------------------------------------- */
a {
	color: #1a1a1a;
	text-decoration: none;
	transition: all .2s;
}
a._underline {
	text-decoration: underline;
}
a._blank {
    display: inline-block;
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="11" height="11" viewBox="0 0 11 11"><path fill="rgb(26, 26, 26)" d="M1,10h8v1H0V2h1v8ZM11,0v8H3V0h8ZM10,1h-6v6h6V1Z"/></svg>') right center no-repeat;
    background-size: 11px auto;
    padding: 0 17px 3px 0;
}
.footer a._blank {
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="11" height="11" viewBox="0 0 11 11"><path fill="rgb(255, 255, 255)" d="M1,10h8v1H0V2h1v8ZM11,0v8H3V0h8ZM10,1h-6v6h6V1Z"/></svg>') right center no-repeat;
    background-size: 11px auto;
}
@media screen and (min-width: 768px) {
	a:hover {
		opacity: 0.7;
	}
	a.btn-cont:hover {
		opacity: 1;
	}
}

/* clear
-------------------------------------------------- */
.clear:after {
	height: 0;
	visibility: hidden;
	content: ".";
	display: block;
	clear: both;
}

/* font
-------------------------------------------------- */
._en {
	font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.04em;
}
._ja {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
}

/* Responsive
-------------------------------------------------- */
.sp {
	display: none;
}

/* img
-------------------------------------------------- */
img {
	width: 100%;
	height: auto;
}
.thumb {
	display: block;
	overflow: hidden;
	position: relative;
	transition: .3s all;
}
.thumb::after {
	display: block;
	content: "";
}
.thumb.overlay::after {
	position: relative;
	background: rgba(0,0,0,0.20);
}
.thumb img,
.thumb video{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .3s all;
}

@media screen and (min-width: 768px) {
a:hover .thumb {
	transform: scale(0.96);
}
a:hover .thumb img {
	width: 115%;
	height: 115%;
	object-fit: cover;
}
}

/* bg
-------------------------------------------------- */
._bg {
    background: #f1f2ed;
}

/* align
-------------------------------------------------- */
._alignC {
    text-align: center;
}
._alignR {
    text-align: right;
}

/* svg
-------------------------------------------------- */
svg {
	display: block;
	width: 100%;
	height: auto;
}


/*/////////////////////////////////////////////////////////////////////////////


              // loading //
	  

/////////////////////////////////////////////////////////////////////////////*/
.loader {
	width: 100%;
	height: 100vh;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999999;
	pointer-events: none;
}
.off.loader {
	animation: loading-bg-off 0.8s forwards;
}
.loader-bg {
	display: block;
	width: 100%;
	height: 100%;
	position: fixed;
	bottom: 0;
	right: 0;
	background: #FFFFFF;
	transform-origin: right top;
}
.loader-logo {
	width: 220px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
	overflow: hidden;
}
.loader-logo p {
	opacity: 0;
}
.on.loader .loader-logo p {
    transition: 0.4s;
    opacity: 1;
}
.off.loader .loader-logo {
    transition: opacity 0.4s .3s;
    opacity: 0;
}

@keyframes op-logo {
	0% {
		transform: translateY(110%);
	}
	100% {
		transform: translateY(0);
	}
}
@keyframes loading-bg-off {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}


/*/////////////////////////////////////////////////////////////////////////////


              // layout //
	  

/////////////////////////////////////////////////////////////////////////////*/

/* container
-------------------------------------------------- */
 #container {
	width: 100%;
	opacity: 1;
}
.motion  #container {
	animation: fade 0.2s  forwards;
}
 #container._bd {
	 border-bottom: 1px solid #d9d9d9;
}

/* contents
-------------------------------------------------- */
#contents {
    overflow: clip;
}

/* section
-------------------------------------------------- */
.section-wrap {
    padding-bottom: 140px;
}
.section-inner {
    max-width: 1640px;
    margin: 0 auto;
	box-sizing: border-box;
    padding-right: 7.3206%;
	padding-left: 7.3206%;
}
.section-inner._0-100 {
    padding-right: 0;
}
.section-inner._100-0 {
    padding-left: 0;
}
.section-low-wrap {
	width: 820px;
	margin: 0 auto;
}
.section-low-inner {
	margin: 40px 0;
}
.flex-col2 {
    display: flex;
    justify-content: space-between;
}
.section-box {
    background: #ffffff;
    padding: 50px 0;
    margin-bottom: 90px;
}

/*/////////////////////////////////////////////////////////////////////////////


              // header //
	  

/////////////////////////////////////////////////////////////////////////////*/

/* header
-------------------------------------------------- */
.header {
	width: 100%;
	position: relative;
}
.header-logo {
	width: 200px;
	position: absolute;
	left: 2.5622%;
	top: 25px;
	box-sizing: border-box;
	z-index: 99998;
}
.header-logo a {
	display: block;
}
.header-logo svg {
	display: block;
}
.st0 {
    fill: #e40d0d;
}
.st1 {
    fill: #191919;
}
.footer .st1 {
    fill: #ffffff;
}

/* nav
-------------------------------------------------- */
.header-inner {
    width: 100%;
	position: absolute;
	right: 0;
	top: 35px;
    padding: 0 2.5622%;
	z-index: 99997;
    box-sizing: border-box;
}
.g-nav {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.g-nav a {
	color: #FFFFFF;
    font-size: 1.5rem;
    line-height: 43px;
    padding-bottom: 2px;
}
.g-nav ul {
    display: flex;
    justify-content: flex-end;
}
.g-nav .g-nav-inner li {
	margin-left: 26px;
	transform: translateY(20px);
	opacity: 0;
}
.g-nav .g-nav-inner li a {
	display: block;
	position: relative;
}
.sub .g-nav .g-nav-inner li a {
	color: #1a1a1a;
}
.g-nav .g-nav-inner li a::before {
	content: "";
	width: 100%;
	height: 1px;
	background: #FFFFFF;
	position: absolute;
	left: 0;
	bottom: 0;
	transform: scaleX(0);
	transition: .2s;
}
.sub .g-nav .g-nav-inner li a::before {
	background: #1a1a1a;
}
.g-nav .g-nav-cv {
    opacity: 0;
    margin-left: 35px;
}
.g-nav .g-nav-cv li {
    margin-left: 8px;
}
.g-nav .g-nav-cv li a {
    display: block;
    width: 160px;
    text-align: center;
    border-radius: 4px;
}
.g-nav .g-nav-cv li:nth-child(1) a {
    background: #e40d0d;
}
.g-nav .g-nav-cv li:nth-child(2) a {
    background: #1a1a1a;
}

.g-nav li.ac a::before {
	transform: scaleX(1);
}

.motion .g-nav-inner li:nth-child(1) {
	animation: nav-fadeup 0.4s cubic-bezier(0.02, 0.95, 0.4, 1) forwards 0.5s;
}
.motion .g-nav-inner li:nth-child(2) {
	animation: nav-fadeup 0.4s cubic-bezier(0.02, 0.95, 0.4, 1) forwards 0.6s;
}
.motion .g-nav-inner li:nth-child(3) {
	animation: nav-fadeup 0.4s cubic-bezier(0.02, 0.95, 0.4, 1) forwards 0.7s;
}
.motion .g-nav-inner li:nth-child(4) {
	animation: nav-fadeup 0.4s cubic-bezier(0.02, 0.95, 0.4, 1) forwards 0.8s;
}
.motion .g-nav-inner li:nth-child(5) {
	animation: nav-fadeup 0.4s cubic-bezier(0.02, 0.95, 0.4, 1) forwards 0.9s;
}

.motion .g-nav .g-nav-cv {
	transition: opacity 0.6s 0.9s;
    opacity: 1;
}

@keyframes nav-fadeup {
	0% {
		transform: translateY(20px);
		opacity: 0;
	}
	100% {
		transform: translateY(0px);
		opacity: 1;
	}
}

/* hover */
@media screen and (min-width: 768px) {
	.g-nav li a:hover {
		opacity: 1;
	}
	.g-nav li a:hover::before {
		transform: scaleX(1);
	}
}

@media screen and (max-width: 1199px) {
	.g-nav .g-nav-inner li {
        margin-left: 18px;
    }
    .g-nav .g-nav-cv {
        margin-left: 20px;
    }
    .g-nav .g-nav-cv li {
        margin-left: 4px;
    }
    .g-nav .g-nav-cv li a {
        width: 140px;
    }
}
@media screen and (max-width: 1139px) {
	.g-nav a {
        font-size: 1.3rem;
    }
    .g-nav .g-nav-cv li a {
        width: 130px;
    }
}

/* dd-nav-btn
-------------------------------------------------- */
.g-nav .dd-nav-btn > a {
    position: relative;
}
.g-nav .g-nav-sublist {
    display: block;
    width: 240px;
    position: absolute;
    left: 0px;
    top: 58px;
    padding: 10px 20px 10px;
    box-sizing: border-box;
    pointer-events: none;
	transition: .3s;
    box-shadow: #97a4aa66 3px 10px 20px -10px;
    opacity: 0;
    background: rgba(243,45,48,1.00);
}
.g-nav .g-nav-sublist::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #ffffff;
    position: absolute;
    left: 0;
    top: 0;
}
.g-nav .g-nav-sublist li {
    float: none;
    box-sizing: border-box;
    margin-bottom: 10px;
    margin: 0;
    border-bottom: 1px solid #d9d9d9;
}
.g-nav .g-nav-sublist li:last-child {
    border-bottom: none;
}
.g-nav .g-nav-sublist li a {
    font-size: 1.4rem;
    line-height: 1.5;
    padding: 15px 0;
    color: #1a1a1a;
}
.g-nav .g-nav-sublist li a::before {
    display: none;
}

/* hover */
@media screen and (min-width: 768px) {
	.dd-nav-btn:hover > .g-nav-sublist {
		top: 43px;
		opacity: 1;
		pointer-events: auto;
	}
}

/* menu-trigger
-------------------------------------------------- */
.menu-trigger {
	display: none;
}

/* fixed nav
-------------------------------------------------- */
.fixed-nav {
	display: none;
}

/*/////////////////////////////////////////////////////////////////////////////


              // footer //
	  

/////////////////////////////////////////////////////////////////////////////*/
.footer {
	padding: 80px 0;
	position: relative;
    background: #1e1e1e;
    color: #ffffff;
}
.footer a {
    color: #ffffff;
}
.footer-top {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	padding-bottom: 40px;
}

/* ft-info
-------------------------------------------------- */
.ft-info {
    width: 340px;
}
.ft-logo {
	width: 180px;
	margin-bottom: 20px;
}
.ft-info dl {
    margin-bottom: 35px;
}
.ft-info dt {
    font-size: 1.5rem;
}
.ft-info dd {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-top: 8px;
}
.sns-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.sns-list li {
    width: 28px;
    margin-right: 25px;
}
.sns-list li svg path {
    fill: #ffffff;
}
.header .sns-list li svg path {
    fill: #1a1a1a;
}

/* ft-nav
-------------------------------------------------- */
.ft-nav {
    margin-top: 35px;
	width: calc(100% - 340px);
	display: flex;
	justify-content: flex-end;
}
.ft-nav ul.ft-nav-wrap {
	margin-left: 7.2639%;
}
.ft-nav ul.ft-nav-wrap > li {
    font-size: 1.6rem;
	margin-bottom: 10px;
}
.ft-nav .ft-nav-inner {
	margin-top: 10px;
}
.ft-nav .ft-nav-inner li {
    margin-bottom: 2px;
}
.ft-nav .ft-nav-inner li > a {
    display: block;
	font-size: 1.4rem;
    padding-left: 20px;
    position: relative;
}
.ft-nav .ft-nav-inner li > a::before {
	content: "";
    width: 10px;
    height: 1px;
    background: rgba(255,255,255,0.40);
    position: absolute;
    left: 0;
    top: 50%;
}

/* footer-btm
-------------------------------------------------- */
.footer-btm p {
    font-size: 1.4rem;
}
.footer-btm ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.footer-btm ul li {
    font-size: 1.3rem;
    margin-right: 22px;
}
.footer-btm .copyright {
	font-size: 1.2rem;
    letter-spacing: 0.04em;
    margin-top: 20px;
}
.footer .pagetop {
    position: absolute;
    right: 7.3206%;
    bottom: 80px;
}
.footer .pagetop a {
    display: block;
    width: 80px;
    height: 80px;
    box-sizing: border-box;
    border: 1px solid #999999;
    border-radius: 50%;
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="15" height="12" viewBox="0 0 15 12"><path fill-rule="evenodd" stroke="rgb(255, 255, 255)" stroke-width="2px" stroke-linecap="round" stroke-linejoin="round" fill="none" d="M2.035,8.109 L7.003,2.881 L11.971,8.109"/></svg>') no-repeat center center;
    background-size: 15px auto;
}

/*/////////////////////////////////////////////////////////////////////////////


              // ctaArea //
	  

/////////////////////////////////////////////////////////////////////////////*/
.ctaArea {
    padding: 90px 0 95px;
    background: #ffffff;
    position: relative;
}
.ctaArea-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.ctaArea-flex li {
    width: 47%;
}
.ctaArea-flex li a {
    display: block;
    border-top: 4px solid #e40d0d;
    padding: 50px 0 0;
    position: relative;
}
.ctaArea-ttl {
    margin-bottom: 10px;
}
.ctaArea-ttl .enttl {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e40d0d;
}
.ctaArea-ttl .ttl {
    font-size: 3.0rem;
    font-weight: 700;
}
.ctaArea-flex li a .arrow {
    right: 10px;
    bottom: 30px;
}
.arrow {
    display: block;
    width: 60px;
    height: 60px;
    box-sizing: border-box;
    border: 1px solid #999999;
    border-radius: 50%;
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="12" height="15" viewBox="0 0 12 15"><path fill-rule="evenodd" stroke="rgb(26, 26, 26)" stroke-width="2px" stroke-linecap="round" stroke-linejoin="round" fill="none" d="M2.891,2.035 L8.119,7.003 L2.891,11.971 "/></svg>') no-repeat center center;
    background-size: 12px auto;
    position: absolute;
    transition: all .2s;
}
.arrow._wht {
    border: 1px solid #ffffff;
    border-radius: 50%;
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="12" height="15" viewBox="0 0 12 15"><path fill-rule="evenodd" stroke="rgb(255, 255, 255)" stroke-width="2px" stroke-linecap="round" stroke-linejoin="round" fill="none" d="M2.891,2.035 L8.119,7.003 L2.891,11.971 "/></svg>') no-repeat center center;
    background-size: 12px auto;
}

@media screen and (min-width: 768px) {
    .ctaArea-flex li a:hover {
        opacity: 1;
    }
    .ctaArea-flex li a:hover .arrow {
        width: 70px;
        height: 70px;
		border: 1px solid #e40d0d;
        background: #e40d0d url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="12" height="15" viewBox="0 0 12 15"><path fill-rule="evenodd" stroke="rgb(255, 255, 255)" stroke-width="2px" stroke-linecap="round" stroke-linejoin="round" fill="none" d="M2.891,2.035 L8.119,7.003 L2.891,11.971 "/></svg>') no-repeat center center;
        background-size: 12px auto;
        right: 5px;
        bottom: 25px;
	}
}

/*/////////////////////////////////////////////////////////////////////////////


              // common parts //
	  

/////////////////////////////////////////////////////////////////////////////*/

/* ===============================================
    title
=============================================== */

/* page-ttl
-------------------------------------------------- */
.page-ttl {
    width: 100%;
    height: 520px;
    padding: 230px 0 0;
    margin-bottom: 80px;
    box-sizing: border-box;
    position: relative;
}
.page-ttl,
.page-ttl a {
    color: #ffffff;
}
.sub .page-ttl,
.sub .page-ttl a {
    color: #1a1a1a;
}
.sub .page-ttl {
    height: auto;
    padding: 195px 0 60px;
    margin-bottom: 90px;
    background: #ffffff;
}
.page-ttl .thumb {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.page-ttl .thumb::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(42,44,46,0.50);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.page-ttl-inner {
    padding: 0 7.3206%;
    position: relative;
    z-index: 2;
}
.page-ttl-inner._flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.page-ttl-cont .enttl {
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1.5;
}
.page-ttl-cont .ttl {
    font-size: 5.4rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.08em;
    padding: 20px 0 85px;
    opacity: 0;
    transition: 1s 0.2s;
}
.sub .page-ttl-cont .ttl {
    padding: 10px 0 50px;
}
.sub .page-ttl-cont .ttl._detail {
    font-size: 4.6rem;
    padding: 16px 0 50px;
}
.sub .page-ttl-cont .enttl .date {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 500;
    margin-left: 25px;
}
.motion .page-ttl .ttl {
    opacity: 1;
}

/* breadcrumb
-------------------------------------------------- */
.breadcrumb {
	display: flex;
	justify-content: flex-start;
    align-items: center;
	flex-wrap: wrap;
}
.breadcrumb li {
	position: relative;
	padding-right: 17px;
	margin-right: 9px;
	font-size: 1.4rem;
}
.breadcrumb li::after {
	content: "";
    width: 7px;
    height: 10px;
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="6.5" height="9.5" viewBox="0 0 6.5 9.5"><path fill-rule="evenodd" stroke="rgb(255, 255, 255)" stroke-width="1px" stroke-linecap="round" stroke-linejoin="round" fill="none" d="M1.201,1.153 L4.806,4.492 L1.201,7.829 "/></svg>') no-repeat center center;
    background-size: 7px auto;
	position: absolute;
	right: 0;
	top: 50%;
    transform: translateY(-36%);
}
.sub .breadcrumb li::after {
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="6.5" height="9.5" viewBox="0 0 6.5 9.5"><path fill-rule="evenodd" stroke="rgb(26, 26, 26)" stroke-width="1px" stroke-linecap="round" stroke-linejoin="round" fill="none" d="M1.201,1.153 L4.806,4.492 L1.201,7.829 "/></svg>') no-repeat center center;
    background-size: 7px auto;
}
.breadcrumb li:last-child {
    padding-right: 0;
	margin-right: 0;
}
.breadcrumb li:last-child::after {
	display: none;
}

/* page-subnav
-------------------------------------------------- */
.page-subnav {
    width: 270px;
    padding: 10px 0 10px 50px;
    border-left: 1px solid rgba(255,255,255,0.60);
    box-sizing: border-box;
}
.page-subnav-ttl {
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.60);
    padding-bottom: 8px;
    margin-bottom: 22px;
}
.page-subnav li {
    margin: 14px 0 0;
}
.page-subnav li a {
    display: block;
    position: relative;
    padding-left: 45px;
}
.page-subnav li a::before {
    content: "";
}
.page-subnav li a::before,
.page-subnav li a::after {
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: .2s;
    box-sizing: border-box;
}
.page-subnav li a::before {
    border: 1px solid #ffffff;
}
.page-subnav li a::after {
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="12" height="15" viewBox="0 0 12 15"><path fill-rule="evenodd" stroke="rgb(255, 255, 255)" stroke-width="2px" stroke-linecap="round" stroke-linejoin="round" fill="none" d="M2.891,2.035 L8.119,7.003 L2.891,11.971 "/></svg>') no-repeat right 10px center;
    background-size: 8px auto;
}
.page-subnav li.ac a::before {
    border: 1px solid #e40d0d;
    background: #e40d0d;
}

/* hover */
@media screen and (min-width: 768px) {
	.page-subnav li a:hover {
		opacity: 1;
	}
    .page-subnav li a:hover::before {
		border: 1px solid #e40d0d;
		background: #e40d0d;
        transform: translateY(-50%) scale(1.25);
	}
}

/* detail-page-top
-------------------------------------------------- */
.detail-page-top {
    padding: 140px 0 0;
    margin-bottom: 25px;
}
.detail-page-top .breadcrumb {
	justify-content: flex-end;
}

/* page-lead
-------------------------------------------------- */
.page-lead {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 80px;
}
.page-lead .ttl {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

/* sec-ttl
-------------------------------------------------- */
.sec-ttl-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative
}
.sec-ttl .enttl {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    color: #e40d0d;
}
.sec-ttl .ttl {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.5;
    padding-top: 2px;
}
.sec-ttl + .txt {
    margin-top: 25px;
}
.sec-ttl-wrap .lead {
    font-size: 1.8rem;
}

/* sec-subttl
-------------------------------------------------- */
.sec-subttl {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}
.sec-subttl .ttl {
    font-size: 3.0rem;
    font-weight: 700;
    line-height: 1.5;
    margin-right: 20px;
}
.sec-subttl .enttl {
    font-weight: 700;
    line-height: 1.5;
    color: #e40d0d;
}

/* article-ttl
-------------------------------------------------- */
.article-ttl {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 10px;
}
.article-lead {
    font-size: 1.8rem;
    text-align: center;
}
.article-lead + .btn {
    margin-top: 30px;
}

/* txt-slider 
-------------------------------------------------- */
.txt-slider li {
    font-size: 12.8rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-right: 0.5em;
    opacity: 0.08;
}
.txt-slider._wht li {
    color: #ffffff;
    opacity: 0.9;
}

/* ===============================================
    btn
=============================================== */

/* btn
-------------------------------------------------- */
.btn a,
.btn .inner {
	width: 280px;
	display: inline-block;
	position: relative;
	box-sizing: border-box;
    color: #ffffff;
	text-align: left;
	padding: 15px 45px 15px 30px;
    border-radius: 4px;
	background: #1a1a1a;
	transition: .2s;
    overflow: hidden;
    cursor: pointer;
}
.btn a::after {
    content: "";
    width: 44px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 15px;
    transition: .2s;
}
.btn a::after {
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="12" height="15" viewBox="0 0 12 15"><path fill-rule="evenodd" stroke="rgb(255, 255, 255)" stroke-width="2px" stroke-linecap="round" stroke-linejoin="round" fill="none" d="M2.891,2.035 L8.119,7.003 L2.891,11.971 "/></svg>') no-repeat center center;
    background-size: 8px auto;
}
.btn a span {
    display: block;
    position: relative;
    border-right: 1px solid rgba(255,255,255,0.40);
    line-height: 28px;
    padding-bottom: 2px;
}
/* hover */
@media screen and (min-width: 768px) {
	.btn a:hover {
		opacity: 1;
        background: #e40d0d;
	}
	
}

/* ===============================================
    content-col2
=============================================== */
.content-col2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 120px;
}
.content-col2-side {
    width: 22.2984%;
    position: sticky;
    top: 100px;
    left: 0;
    z-index: 1;
}
.content-col2-side._static {
    position: static;
}
.content-col2-main {
    width: 71.3550%;
}
.content-block {
    position: relative;
    padding: 55px 0 0;
    margin-top: 90px;
}
.content-block:first-child {
    margin-top: 0;
}
.content-block::before,
.content-block::after {
    content: "";
    height: 1px;
    position: absolute;
    top: 0;
}
.content-block::before {
    width: 60px;
    left: 0;
    background: #e40d0d;
}
.content-block::after {
    width: calc(100% - 65px);
    background: #cccccc;
    right: 0;
}
.cont-ttl {
    margin-bottom: 35px;
}
.cont-ttl._flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.cont-ttl .ttl {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.06em;
}
.cont-ttl .lead {
    font-size: 1.8rem;
    margin-top: 25px;
}

/* ===============================================
    anchor-link
=============================================== */
.anchor-link {
    width: 100%
    z-index: 9999;
}
.anchor-link-inner {
    width: 13.6163vw;
    padding-bottom: 90px;
}
.anchor-link-ttl {
	font-size: 1.2rem;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid #cccccc;
}
.anchor-link li {
	margin: 16px 0;
}
.anchor-link li a {
	display: block;
	position: relative;
    font-size: 1.6rem;
	line-height: 1.6;
}
.anchor-link li a.current {
	padding-left: 20px;
    color: #e40d0d;
}
.anchor-link li a::before {
	content: "";
	width: 10px;
	height: 10px;
    background: #e40d0d;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-40%);
	border-radius: 50%;
	transition: .2s;
    box-sizing: border-box;
    opacity: 0;
}
.anchor-link li a.current::before {
	opacity: 1;
}

/* ===============================================
    page-nav
=============================================== */
.page-nav {
    padding: 65px 70px;
    margin-bottom: 100px;
    background: #ffffff;
}
.page-nav-ttl {
    margin-bottom: 30px;
}
.page-nav-ttl .ttl {
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1.5;
}
.page-nav-ttl .enttl {
    font-size: 3.8rem;
    font-weight: 700;
    color: #e40d0d;
    line-height: 1.5;
}
.page-nav ul {
    display: flex;
    justify-content: space-between;
}
.page-nav ul li {
    width: 31.3840%;
}
.page-nav ul li a {
    display: block;
    font-size: 1.8rem;
    line-height: 1.5;
    padding: 25px 0 25px 28px;
    border-bottom: 1px solid #cccccc;
    border-top: 1px solid #cccccc;
    position: relative;
}
.page-nav ul li a::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #1a1a1a;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.page-nav ul li.ac a {
    border-bottom: 1px solid #e40d0d;
    border-top: 1px solid #e40d0d;
}
.page-nav ul li.ac a::before {
    background: #e40d0d;
}

/* ===============================================
    parallax
=============================================== */
.parallax01,
.parallax02,
.parallax03 {
    position: relative;
}
.parallax-inner {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.parallax-img {
	transition: none !important;
	position: relative;
}
.parallax-img span {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	transition: none !important;
}
.parallax-img.thumb img {
	width: 110%;
	height: 110%;
}

/* ===============================================
    table
=============================================== */
dl.table {
	width: 100%;
	display: flex;
    justify-content: space-between;
    align-items: stretch;
	flex-wrap: wrap;
}
dl.table dt {
	width: 23%;
	border-top: 1px solid #cccccc;
	padding: 32px 20px 32px 0;
	box-sizing: border-box;
    position: relative;
}
dl.table dt::after {
    content: "";
    width: 1px;
    height: 50px;
    background: #e5e5e5;
    position: absolute;
    right: 0;
    top: 10px;
}
dl.table dd {
	width: 77%;
	border-top: 1px solid #cccccc;
	padding: 32px 0 24px 35px;
	box-sizing: border-box;
}
dl.table dd p {
	padding-bottom: 10px;
}

table.type01 {
	width: 100%;
	border-top: 1px solid #cccccc;
	border-left: 1px solid #cccccc;
}
table.type01 th,
table.type01 td {
	border-bottom: 1px solid #cccccc;
	border-right: 1px solid #cccccc;
	vertical-align: middle;
	line-height: 1.6;
    padding: 10px 20px;
}
table.type01 th {
	background: #333333;
    color: #ffffff;
    text-align: center;
}
table.type01 td {
    font-size: 1.5rem;
    font-weight: 400;
    background: #ffffff;
}
table.type01 .w17 {
	width: 17%;
}
table.type01 .w32 {
	width: 32%;
}

/* ===============================================
    list-disc 
=============================================== */
.list-disc {
}
.list-disc > li {
	line-height: 1.7;
	padding: 4px 0 4px 20px;
    box-sizing: border-box;
    position: relative;
}
.list-disc > li::before {
	content: "";
    width: 8px;
    height: 8px;
    background: #e40d0d;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 15px;
}
.list-disc._gry > li::before {
    background: #666666;
}
.list-note li {
	text-indent: -1.5em;
	line-height: 1.7;
	padding: 2px 0 2px 20px;
    position: relative;
}

.list-note li::before {
	content: "※ ";
}

/*/////////////////////////////////////////////////////////////////////////////


              // Slider //
	  

/////////////////////////////////////////////////////////////////////////////*/
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}
.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
/* Arrows */
.slick-prev,
.slick-next {   
    position:  absolute;
	bottom: -60px;
	width: 60px;
	height: 60px;
	overflow: hidden;
	font-size: 0;
    line-height: 0;
	display: block;
	cursor: pointer;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 13px auto;
	background-color: rgba(255, 255, 255, 1.00);
	z-index: 999;
	transition: .2s;
	border-radius: 50%;
    border: 1px solid #999999;
    box-sizing: border-box;
}
.slick-prev {
	background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="12" height="15" viewBox="0 0 12 15"><path fill-rule="evenodd" stroke="rgb(26, 26, 26)" stroke-width="2px" stroke-linecap="round" stroke-linejoin="round" fill="none" d="M8.109,11.996 L2.881,7.028 L8.109,2.061 "/></svg>');
	left: 0px;
}
.slick-next {
	background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="12" height="15" viewBox="0 0 12 15"><path fill-rule="evenodd" stroke="rgb(26, 26, 26)" stroke-width="2px" stroke-linecap="round" stroke-linejoin="round" fill="none" d="M2.891,2.035 L8.119,7.003 L2.891,11.971 "/></svg>');
	left: 72px;
}
.slick-prev:active,
.slick-prev:focus,
.slick-next:active,
.slick-next:focus,
.slick-slide a {
    outline: none;
}
.slick-next.slick-disabled {
	opacity: 0 !important;
}
.flow-slider .slick-prev,
.flow-slider .slick-next {
    bottom: inherit;
    top: 33.5%;
}
.flow-slider .slick-prev {
    left: -10px;
}
.flow-slider .slick-next {
    left: inherit;
    right: -10px;
}
.gallery-slider .slick-prev,
.gallery-slider .slick-next {
    bottom: inherit;
    top: 50%;
    transform: translateY(-50%);
}
.gallery-slider .slick-prev {
    left: -10px;
}
.gallery-slider .slick-next {
    left: inherit;
    right: -10px;
}

/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 50px;
}
.slick-dots {
    position: absolute;
    top: 50%;
    right: 2.75%;
    transform: translateY(-50%);
    display: block;
    width: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    z-index: 2;
}
.slick-dots li {
    position: relative;
    display: block;
    width: 10px;
    height: 10px;
    margin: 20px 0 !important;
    padding: 0 !important;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
	padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #ffffff;
	border-radius: 5px;
}
.slick-dots li.slick-active button {
    background: #e40d0d;
}

/* hover */
@media screen and (min-width: 768px) {
	.slick-prev:hover,
	.slick-next:hover {
		opacity: 0.5;
	}
}

/*/////////////////////////////////////////////////////////////////////////////


              // motion //
	  

/////////////////////////////////////////////////////////////////////////////*/

/* ef txtef
-------------------------------------------------- */
.txtef-wrap {
	display: block;
	overflow: hidden;
}
.txtef {
	display: block;
	transform: translateY(105%);
}
.eft.on .txtef-wrap:nth-child(1) .txtef {
    transition: 1s cubic-bezier(0.76, 0.09, 0.215, 1);
    transform: translateY(0);
}
.eft.on .txtef-wrap:nth-child(2) .txtef {
    transition: 1s cubic-bezier(0.76, 0.09, 0.215, 1) .1s;
    transform: translateY(0);
}
.eft.on .txtef-wrap:nth-child(3) .txtef {
    transition: 1s cubic-bezier(0.76, 0.09, 0.215, 1) .2s;
    transform: translateY(0);
}
.eft.on .txtef-wrap:nth-child(4) .txtef {
    transition: 1s cubic-bezier(0.76, 0.09, 0.215, 1) .3s;
    transform: translateY(0);
}
@keyframes ef-txt {
	0% {
		transform: translateY(105%); }
	100% {
		transform: translateY(0); }
}

/* ttl-overlay
-------------------------------------------------- */
@keyframes ttl-overlay {
	0% {
		transform: scaleX(1);
	}
	100% {
		transform: scaleX(0);
	}
}

/* ttl-fadeup
-------------------------------------------------- */
@keyframes ttl-fadeup {
	0% {
		transform: translateY(100%);
	}
	100% {
		transform: translateY(0);
	}
}

/* fade
-------------------------------------------------- */
.mf {
	opacity:0;
}
.mf.on {
	transition: opacity 1s !important;
	opacity: 1;
}
@-webkit-keyframes fade {
	0% {
		opacity: 0; }
	100% {
		opacity: 1; }
}
@keyframes fade {
	0% {
		opacity: 0; }
	100% {
		opacity: 1; }
}

/* fade up
-------------------------------------------------- */
.mfu {
	opacity:0;
	transform:translateY(80px);
}
span.mfu {
	display: block;
}
.mfu.on {
    transition: 2s cubic-bezier(0.075, 0.82, 0.165, 1) !important;
    opacity: 1;
    transform: translateY(0);
}

/* fade up list
-------------------------------------------------- */
.mful li {
	opacity: 0;
	transform: translateY(80px);
}
.mful.on li:nth-child(1) {
    transition: 2s cubic-bezier(0.075, 0.82, 0.165, 1);
    opacity: 1;
    transform: translateY(0);
}
.mful.on li:nth-child(2) {
    transition: 2s cubic-bezier(0.075, 0.82, 0.165, 1) .2s;
    opacity: 1;
    transform: translateY(0);
}
.mful.on li:nth-child(3) {
    transition: 2s cubic-bezier(0.075, 0.82, 0.165, 1) .4s;
    opacity: 1;
    transform: translateY(0);
}
.mful.on li:nth-child(4) {
    transition: 2s cubic-bezier(0.075, 0.82, 0.165, 1) .6s;
    opacity: 1;
    transform: translateY(0);
}
.mful.on li:nth-child(5) {
    transition: 2s cubic-bezier(0.075, 0.82, 0.165, 1) .8s;
    opacity: 1;
    transform: translateY(0);
}
.mful.on li:nth-child(6) {
    transition: 2s cubic-bezier(0.075, 0.82, 0.165, 1) 1.0s;
    opacity: 1;
    transform: translateY(0);
}
.mful.on li:nth-child(7) {
    transition: 2s cubic-bezier(0.075, 0.82, 0.165, 1) 1.2s;
    opacity: 1;
    transform: translateY(0);
}
.mful.on li:nth-child(8) {
    transition: 2s cubic-bezier(0.075, 0.82, 0.165, 1) 1.4s;
    opacity: 1;
    transform: translateY(0);
}
@-webkit-keyframes ef-fadeup {
	0% {
		opacity:0;
		transform:translateY(80px); }
	100% {
		opacity:1;
		transform:translateY(0%); }
}
@keyframes ef-fadeup {
	0% {
		opacity:0;
		transform:translateY(80px); }
	100% {
		opacity:1;
		transform:translateY(0%); }
}

/* fade down
-------------------------------------------------- */
.mfd {
	opacity:0;
	-webkit-transform:translateY(-80px);
	transform:translateY(-80px);
}
span.mfd {
	display: block;
}
.mfd.on {
	-webkit-animation: ef-fadedown 2s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
	animation: ef-fadedown 2s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
}
@-webkit-keyframes ef-fadedown {
	0% {
		opacity:0;
		transform:translateY(-80px); }
	100% {
		opacity:1;
		transform:translateY(0%); }
}
@keyframes ef-fadedown {
	0% {
		opacity:0;
		transform:translateY(-80px); }
	100% {
		opacity:1;
		transform:translateY(0%); }
}

/* fade left
-------------------------------------------------- */
.mfl {
	opacity: 0;
	transform: translateX(-40px);
}
.mfl.on {
	animation: ef-fadeleft 2s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
}
@keyframes ef-fadeleft {
	0% {
		opacity: 0;
		transform: translateX(-40px); }
	100% {
		opacity: 1;
		transform: translateY(0%); }
}

/* fade right
-------------------------------------------------- */
.mfr {
	opacity: 0;
	transform: translateX(40px);
}
.mfr.on {
	animation: ef-faderight 2s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
}
@keyframes ef-faderight {
	0% {
		opacity: 0;
		transform: translateX(40px); }
	100% {
		opacity: 1;
		transform: translateY(0%); }
}

/* ef txtef mask
-------------------------------------------------- */
.mtm {
	display: inline-block;
	position: relative;
}
.mtm::after {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.80);
	position: absolute;
	left: 0;
	top: 0;
	transform-origin: right center;
}
.mtm._gry::after {
	background: rgba(248,248,248,0.80);
}
.mtm._blk::after {
	background: rgba(42,44,46,0.80);
}
.mtm.on::after  {
	animation: ef-scaleX 1.4s cubic-bezier(0.04, 0.8, 0.35, 1) forwards;
}

/* ef scaleX
-------------------------------------------------- */
.ef .thumb::before {
	content: "";
	width: calc(100% + 2px);
	height: calc(100% + 2px);
	position: absolute;
	left: 0;
	top: 0;
	background: #FFFFFF;
	z-index: 2;
	transform-origin: right center;
}
.ef._gry .thumb::before {
    background: #f7f7f7;
}
.ef.on .thumb::before {
    transition: 0.70s cubic-bezier(0.76, 0.09, 0.215, 1);
    transform: scaleX(0);
}
@keyframes ef-scaleX {
	0% {
		transform: scaleX(1); }
	100% {
		transform: scaleX(0); }
}
