
.u-desktop {
	display: block;
}

.u-mobile {
	display: none;
}

.l-header {
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	transition: 0.3s;
	z-index: 900;
}

.l-inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1493px;
	padding-left: 25px;
	padding-right: 25px;
	width: 100%;
}

.l-page-top {
	bottom: 2.5rem;
	position: fixed;
	right: 2.5rem;
	z-index: 1000;
}

.c-page-top {
	background-image: url(../images/common/page-top.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	border-radius: 50%;
	cursor: pointer;
	height: 3.5rem;
	opacity: 0;
	position: relative;
	transition: 0.3s;
	visibility: hidden;
	width: 3.5rem;
	z-index: 1000;
}

.c-page-top::before {
	background-image: url(../images/common/page-top-hover.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	border-radius: 50%;
	content: "";
	display: block;
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	transition: opacity 0.3s;
	width: 100%;
}

.c-page-top.is-active {
	opacity: 1;
	visibility: visible;
}

.c-page-top:hover::before {
	opacity: 1;
}

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

Modules - reusable parts of our design

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

.cd-container {
	margin: 0 auto;
	max-width: 768px; /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
	width: 90%;
}

.cd-container:after {
	clear: both;
	content: "";
	display: table;
}

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

Main components 

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

.cd-header {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: rgba(2, 23, 37, 0.95);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
	height: 70px;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 3;
}

.cd-logo {
	max-width: 622px;
}

.cd-logo img {
	margin-top: 28px;
}

.cd-secondary-nav {
	bottom: auto; /* hidden on small devices */
	display: none;
	position: absolute;
	right: 10em;
	top: 50%;
	transform: translateY(-50%);
}

.cd-secondary-nav li {
	display: inline-block;
	margin-left: 2.2em;
}

.cd-secondary-nav a {
	color: white;
	display: inline-block;
	font-weight: 700;
	text-transform: uppercase;
}

.cd-primary-nav-trigger {
	float: right;
	line-height: 0;
	position: relative;
}

.cd-primary-nav-trigger .cd-menu-text {
	color: white;
	font-weight: 700;
	text-transform: uppercase;
}

.cd-primary-nav-trigger .cd-menu-icon {
	background-color: white;
	height: 5px;
	top: -10px;
	transform: translateX(0%) translateY(-400%);
	transition: background-color 0.3s;
	width: 30px;
}

.cd-primary-nav-trigger .cd-menu-icon::before,
.cd-primary-nav-trigger .cd-menu-icon:after {
	background-color: white;
	content: "";
	height: 100%;
	position: absolute;
	right: 0;
	transition: transform 0.3s, top 0.3s, background-color 0s;
	width: 100%;
}

.cd-primary-nav-trigger .cd-menu-icon::before {
	top: -10px;
}

.cd-primary-nav-trigger .cd-menu-icon::after {
	top: 10px;
}

.cd-primary-nav-trigger .cd-menu-icon.is-clicked {
	background-color: rgba(255, 255, 255, 0);
}

.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before,
.cd-primary-nav-trigger .cd-menu-icon.is-clicked::after { /*  background-color: white;*/
	background-color: #000;
}

.cd-primary-nav-trigger .cd-menu-icon.is-clicked::before {
	top: 0;
	transform: rotate(135deg);
}

.cd-primary-nav-trigger .cd-menu-icon.is-clicked::after {
	top: 0;
	transform: rotate(225deg);
}

.cd-primary-nav { /* this fixes the buggy scrolling on webkit browsers - mobile devices only - when overflow property is applied */
	-webkit-overflow-scrolling: touch; /*  text-align: center;*/ /*  padding: 50px 0;*/
	backface-visibility: hidden;
	background: rgba(0, 0, 0, 0.8);
	height: calc(100vh - 5rem);
	left: 0;
	overflow: auto; /* by default it's hidden - on top of the viewport */
	position: fixed;
	top: 5rem;
	transform: translateY(-100%);
	transition-duration: 0.4s;
	transition-property: transform;
	width: 100%;
	z-index: 10;
}

/* ナビゲーション固定用 */

nav.cd-primary-nav-wrapper {
	height: calc(100vh - 5rem);
	left: 0;
	position: fixed;
	top: 5rem;
	width: 100%;
	z-index: 998;
}

/* body のスクロール無効化 */

body.overflow-hidden {
	height: 100%;
	overflow: hidden;
	position: fixed;
	width: 100%;
}

.cd-primary-nav .cd-label {
	color: #06446e;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 700;
	margin: 2.4em 0 0.8em;
	text-transform: uppercase;
}

.cd-primary-nav .cd-social {
	display: inline-block;
	margin: 0 0.4em;
}

.cd-primary-nav .cd-social a {
	background-image: url("../img/cd-socials.svg");
	background-repeat: no-repeat;
	height: 44px; /* image replacement */
	overflow: hidden;
	padding: 0;
	text-indent: 100%;
	white-space: nowrap;
	width: 44px;
}

.cd-primary-nav .cd-facebook a {
	background-position: 0 0;
}

.cd-primary-nav .cd-instagram a {
	background-position: -44px 0;
}

.cd-primary-nav .cd-dribbble a {
	background-position: -88px 0;
}

.cd-primary-nav .cd-twitter a {
	background-position: -132px 0;
}

.cd-primary-nav.is-visible {
	transform: translateY(0);
}

.cd-intro {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: url("../img/cd-background-img.jpg") no-repeat center center;
	background-size: cover;
	height: 100%;
	position: relative;
	z-index: 1;
}

.cd-intro h1 {
	bottom: auto;
	color: white;
	font-size: 20px;
	font-size: 1.25rem;
	font-weight: 300;
	left: 50%;
	max-width: 1170px;
	position: absolute;
	right: auto;
	text-align: center;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 90%;
}

.cd-main-content {
	position: relative;
	z-index: 1;
}

.cd-main-content p {
	line-height: 1.6;
	margin: 2em 0;
}

.cd-primary-nav.is-visible {
	letter-spacing: 3px;
}

.nav_LeftMenu {
	color: #fff;
	font-size: 0.9em;
	text-align: left;
}

.nav_LeftMenu a {
	color: #fff;
}

.nav_LeftMenu {
	background: rgba(0, 0, 0, 0.5);
	box-sizing: border-box;
	float: left;
	font-size: 14px;
	max-width: 250px;
	min-width: 200px;
	padding-bottom: 300px;
	padding-left: 20px;
	padding-right: 20px;
	width: 30%;
}

.nav_LeftMenu_Saiyou {
	margin-bottom: 50px;
	margin-top: 50px;
}

.nav_LeftMenu_01 span {
	border-bottom: 1px solid #fff;
	display: block;
	margin-bottom: 20px;
	padding-bottom: 10px;
}

.nav_LeftMenu_01 li {
	margin-bottom: 50px;
}

.nav_LeftMenu_02 li,
.nav_LeftMenu_Corp {
	font-size: 15px;
	letter-spacing: 0.1em;
	line-height: 1.4;
	margin-bottom: 16px;
}

.nav_LeftMenu_Corp img {
	display: inline-block;
	width: auto;
}

.nav_Right_Menu {
	box-sizing: border-box;
	float: left;
	padding-left: 30px;
	padding-top: 50px;
	width: 70%;
}

/*****アバウト*****/

#nav_About {
	margin-bottom: 24px;
	margin-top: 80px;
}

.nav_About_Box_Ttl {
	color: #fff;
	font-size: 14px;
	padding-bottom: 20px;
}

.nav_About_Box {
	display: flex;
	flex-wrap: wrap;
}

.nav_About_Box_Child {
	height: auto;
	margin-bottom: 29px;
	margin-right: 19px;
	position: relative; /* max-width: 171px; */
	width: 23%;
}

.nav_About_Box_Child:nth-of-type(4n) {
	margin-right: 0;
}

.nav_About_Box_Child a {
	height: 100%;
	left: 0;
	position: absolute;
	text-indent: -999px;
	top: 0;
	width: 100%;
}

.nav_About_Box_Child_Img img {
	display: block;
	width: 100%;
}

.nav_About_Box_Child_Text {
	background-color: #fff;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0;
	padding-bottom: 10px;
	padding-left: 10px;
	padding-top: 10px;
	position: relative;
}

.nav_About_Box_Child_Text.small {
	max-height: 44px;
	padding-top: 6px;
}

.nav_About_Box_small {
	font-size: 14px;
	line-height: 1.1;
}

.nav_About_Box_Child_Text::after {
	border-bottom: 14px solid #eb687b;
	border-left: 14px solid transparent;
	bottom: 5px;
	content: "";
	height: 0;
	position: absolute;
	right: 5px;
	width: 0;
}

/*****インタビュー*****/

#nav_Interview {
	margin-bottom: 40px;
}

.nav_Interview_Box_Ttl {
	color: #fff;
	font-size: 12px;
	padding-bottom: 16px;
}

.nav_Interview_Box {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: space-between;
	width: 100%;
}

.nav_Interview_Box_Child {
	display: flex;
	flex-direction: column;
	height: auto;
	justify-content: flex-end;
	position: relative;
	width: calc(33.3333333333% - 1rem);
}

.nav_Interview_Box_Child a {
	height: 100%;
	left: 0;
	position: absolute;
	text-indent: -999px;
	top: 0;
	width: 100%;
}

.nav_Interview_Box_Child_Ttl {
	display: flex;
	margin-bottom: 10px;
}

.nav_Interview_Box_Child_Ttl.mar {
	margin-bottom: 16px;
}

.nav_Interview_Box_Child_Ttl img {
	height: 2.2vw;
	padding-right: 10px;
	width: auto;
}

.nav_Interview_Box_Child_Ttl p {
	color: #fff;
	font-size: 12px;
	letter-spacing: 0.05em;
	line-height: 1.3;
	width: 70%;
}

.nav_Interview_Box_Child_Img img {
	display: block;
	width: 100%;
}

.nav_Interview_Box_Child_Text {
	background-color: #fff;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.05em;
	padding-bottom: 10px;
	padding-left: 10px;
	padding-top: 10px;
}

.nav_Interview_Box_Child_Text::after {
	border-bottom: 14px solid #fdd469;
	border-left: 14px solid transparent;
	bottom: 5px;
	content: "";
	height: 0;
	position: absolute;
	right: 5px;
	width: 0;
}

.nav_Interview_Box_Child_Text span {
	background-color: #fff;
	font-size: 10px;
}

/*****スペシャル*****/

.nav_Special {
	display: flex;
	gap: 2rem;
	max-width: 742px;
}

.nav_Special_title {
	color: #FFFFFF;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0.1em;
	margin-bottom: 16px;
}

.nav_Special_img {
	max-width: 200px;
}

.nav_Special_Box_Ttl {
	color: #fff;
	font-size: 14px;
	padding-bottom: 20px;
}

.nav_Special_box {
	display: flex;
	gap: 1rem;
}

.nav_Special_Like {
	float: left;
	margin-right: 50px;
	max-width: 30%;
}

.nav_Special_Like img {
	width: 100%;
}

.nav_Special_Movie {
	float: left;
}

.nav_movie_title {
	color: #FFFFFF;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0.1em;
	margin-bottom: 16px;
}

.nav_movie_wrap {
	display: flex;
	flex-direction: column;
}

.nav_movie_box {
	width: 100%;
}

.nav_movie_box:last-of-type {
	margin-right: 0;
}

.nav_movie_bg {
	background-image: url(../img/header_movie_bg.png);
	background-size: 100% 100%;
	padding: 10px 5px;
}

.nav_movie_img {
	-o-object-fit: cover;
	max-width: 130px;
	min-height: 90px;
	object-fit: cover;
	width: 100%;
}

.nav_movie_text {
	color: #FFFFFF;
	font-size: 14px;
	letter-spacing: 0;
	line-height: 1;
	margin-bottom: 1rem;
}

.header__logo--sp {
	display: none;
}

.container {
	box-sizing: border-box;
	height: auto;
	margin: 0 auto;
	max-width: 1200px;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
}

.container.interview {
	box-sizing: border-box;
	height: auto;
	margin: 0 auto;
	max-width: 1400px;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
}


.p-header {
	background-color: #F7EC19;
	height: 5rem;
	width: 100%;
	z-index: 999;
}

.p-header__inner {
	height: 100%;
}

.p-header__content {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: space-between;
	padding-left: 1.875rem;
}

.p-header__logo {
	width: 29.6875rem;
}

.p-header__logo-link {
	display: block;
	transition: opacity 0.3s;
}

.p-header__logo-link:hover {
	opacity: 0.7;
}

.p-header__logo-image {
	height: auto;
	width: 100%;
}

.p-header__entry {
	height: 100%;
	margin-left: auto;
}

.p-header__entry-link {
	-webkit-text-decoration: none;
	align-items: center;
	background-color: #F77C63;
	color: #FFFFFF;
	display: flex;
	font-size: 1rem;
	font-weight: 700;
	height: 100%;
	justify-content: center;
	padding: 0 1.875rem;
	text-decoration: none;
	transition: background-color 0.3s;
}

.p-header__entry-link:hover {
	background-color: #f55332;
	opacity: 1;
}

.p-header__menu-button {
	align-items: center;
	background-color: #2069B3;
	border: none;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	height: 5rem;
	padding: 0;
	position: relative;
	width: 5rem;
}

.p-header__menu-lines {
	height: 1.75rem;
	margin-top: 1.1875rem;
	position: relative;
	width: 2rem;
}

.p-header__menu-line {
	background-color: #FFFFFF;
	display: block;
	height: 0.25rem;
	left: 0;
	position: absolute;
	transition: transform 0.3s, opacity 0.3s;
	width: 2rem;
}

.p-header__menu-line:nth-child(1) {
	top: 0;
}

.p-header__menu-line:nth-child(2) {
	top: 0.75rem;
}

.p-header__menu-line:nth-child(3) {
	top: 1.5rem;
}

.p-header__menu-text {
	color: #FFFFFF;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-top: 0.375rem;
}

.p-header__entry-link {
	-webkit-text-decoration: none;
	align-items: center;
	background-color: #F77C63;
	color: #FFFFFF;
	display: flex;
	font-size: 1rem;
	font-weight: 700;
	height: 100%;
	justify-content: center;
	padding: 0 1.875rem;
	position: relative;
	text-decoration: none;
	transition: background-color 0.3s;
}

.p-header__entry-link::after {
	background-image: url(../images/common/arrow-white.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 0.625rem;
	margin-left: 0.625rem;
	width: 0.625rem;
}

/* ハンバーガーメニューの×アニメーション */

.p-header__menu-lines.is-clicked .p-header__menu-line:nth-child(1) {
	transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.p-header__menu-lines.is-clicked .p-header__menu-line:nth-child(2) {
	opacity: 0;
}

.p-header__menu-lines.is-clicked .p-header__menu-line:nth-child(3) {
	transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

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

    .u-desktop {
        display: none;
    }
    
    .u-mobile {
        display: block;
    }
}

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

    .cd-header {
        background: transparent;
        box-shadow: none;
        height: 80px;
    }
    
    .cd-secondary-nav {
        display: block;
    }
    
    .cd-primary-nav-trigger {
        background-color: transparent;
        bottom: auto;
        height: 30px;
        line-height: 30px; /*    width: 100px;*/
        padding-left: 1em;
        right: 0;
        transform: translateY(-75%);
    }
    
    .cd-primary-nav-trigger .cd-menu-text {
        display: inline-block;
    }
    
    .cd-primary-nav-trigger .cd-menu-icon {
        left: auto;
        right: 1em;
        transform: translateX(0) translateY(-50%);
    }
    
    .cd-intro h1 {
        font-size: 30px;
        font-size: 1.875rem;
    }
    
    }
    
    @media only screen and (min-width: 1170px) {
    
    .cd-header {
        backface-visibility: hidden;
        transform: translate3d(0, 0, 0);
        transition: background-color 0.3s;
    }
    
    .cd-header.is-fixed {
        background-color: rgba(2, 23, 37, 0.96);
        position: fixed;
        top: -80px;
        transition: transform 0.3s;
    }
    
    .cd-header.is-visible {
        transform: translate3d(0, 100%, 0);
    }
    
    .cd-intro {
        height: 700px;
    }
    
    .cd-main-content p {
        font-size: 20px;
        font-size: 1.25rem;
    }
    
    }
    
    @media only screen and (min-width: 1200px) {
    
    .nav_About_Box_Child_Text {
        background-color: #fff;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0;
        padding-bottom: 10px;
        padding-left: 10px;
        padding-top: 10px;
        position: relative; /* min-height: 44px; */
    }
    
    }
    
    @media screen and (min-width: 1200px) {
    
    .nav_Interview_Box_Child_Ttl p {
        font-size: 14px;
        position: relative;
        top: -3px;
    }
    
    .nav_Interview_Box_Child_Ttl img {
        height: 28px;
    }
    
    .nav_Interview_Box_Child_Text {
        font-size: 14px;
    }
    
    .nav_Interview_Box_Child_Text span {
        font-size: 12px;
    }
    
    }
    
    
    @media screen and (max-width: 1200px) {
    
    .nav_Special {
        flex-wrap: wrap;
    }
    
    .nav_movie_container {
        margin-left: 0;
    }
    
    .nav_movie_img {
        max-width: 100%;
    }
    
    }
    
    @media screen and (max-width: 1157px) {
    
    .nav_About_Box_Child:nth-of-type(4n) {
        margin-right: 19px;
    }
    
    .nav_About_Box_Child {
        max-width: 171px;
        width: 100%;
    }
    
    }
    
    @media screen and (max-width: 880px) {
    
    .nav_Interview_Box_Child_Ttl img {
        padding-right: 5px;
    }
    
    }
    
    @media only screen and (max-width: 768px) {
    
    .cd-logo {
        max-width: inherit;
        max-width: 300px;
        position: relative;
        top: -5px;
    }
    
    .cd-logo h1 {
        display: inline-block;
    }
    
    .cd-primary-nav-trigger .cd-menu-text {
        display: inline-block;
        position: relative;
        top: -10px;
    }
    
    .cd-primary-nav-trigger {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translate(-50%, 50%);
    }
    
    .cd-primary-nav {
        height: 100%;
        top: 0;
    }
    
    .cd-primary-nav .container {
        padding-left: 0;
        padding-right: 0;
        padding-top: 40px;
    }
    
    .nav_LeftMenu {
        margin-left: 0;
        margin-right: 20px;
        max-width: inherit;
        min-width: inherit;
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
    }
    
    }
    
    
    @media screen and (max-width: 767px) {
    
    nav.cd-primary-nav-wrapper {
        height: calc(100vh - 3.75rem);
        top: 3.75rem;
    }
    
    
    .p-header {
        height: 3.75rem;
    }
    
    .p-header__content {
        padding-left: 0.5rem;
    }
    
    .p-header__logo {
        width: 11.8125rem;
    }
    
    .p-header__entry-link {
        font-size: 0.875rem;
        padding: 0 1.25rem;
    }
    
    .p-header__menu-button {
        height: 3.75rem;
        width: 3.75rem;
    }
    
    .p-header__menu-lines {
        margin-top: 0.625rem;
    }
    
    .p-header__entry-link {
        font-size: 0.875rem;
        padding: 0 1.25rem;
    }

}


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

    .cd-primary-nav .container {
        padding-top: 50px;
    }
    
    }


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

    .cd-logo img {
        width: 80%;
    }
    
    .cd-primary-nav {
        background-color: rgba(0, 0, 0, 0.9);
    }
    
    .nav_LeftMenu {
        background: none;
        box-sizing: border-box;
        float: none;
        padding-bottom: 0;
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
    }
    
    }
