@charset "utf-8";
/*-----------------------------------------------
 * common.css
 * レスポンシブは基本スタイルを引き継ぐ（PCファースト）
 * @media screen and (max-width:768px)
-------------------------------------------------*/
/*-----------------------------------------------
 * Reset, root
 * Bace
 * Modal
 * Header
 * Footer
 * Parts
-------------------------------------------------*/
/*-----------------------------------------------
 * Reset, root
-------------------------------------------------*/
body,div,dl,dt,dd,ul,ol,li,p,h1,h2,h3,h4,h5,h6,th,td,pre,code,blockquote,form,fieldset,legend,input,textarea,figcaption,figure{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,th,var{font-style:normal;font-weight:normal}li{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit}input,textarea,select{font-size:100%}legend{color:#FFF}hr{display:none}img{vertical-align:bottom}select,input,button,textarea{font-size:99%}table{font-size:inherit;font:100%;border-collapse:collapse;border-spacing:0}pre,code,kbd,samp,tt{font-family:monospace;font-size:108%;line-height:100%}.hd{display:block;width:0;height:0;overflow:hidden}.cf:before,.cf:after{content:"";display:table}.cf:after{clear:both}.cf{zoom:1}article,aside,details,figcaption,figure,footer,header,hgroup,hr,menu,nav,section,main{display:block}*{margin:0;padding:0;box-sizing:border-box;max-height:999999px;outline:none;}*:focus{outline: none;}button{background-color:transparent;border:none;cursor:pointer;outline:none;padding:0;}

:root {
	/* デザインサイズ */
	--vw-min: 1366;
	--vh-min: 640;
	--max-percent: 1.6;/* 1920/1200 */

	/* Web fonts（Google Fonts）— 利用時は font-family: var(--font-roboto); 等 */
	--font-shippori: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
	--font-roboto: "Roboto", "Helvetica Neue", Arial, sans-serif;
	--font-cormorant: "Cormorant Infant", "Times New Roman", Times, serif;

	/* フォント  */
	--font-ja: var(--font-shippori);
	--font-en: var(--font-cormorant);
	--font-main:  var(--font-roboto);

	/* カラー */
	--color-white: #FFFFFF;
	--color-black: #000000;

	/* easing */
	--easing-outquart: cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width:768px){
	:root {
		/* デザインサイズ */
		--vw-min: 375;
		--vh-min: 1314;
		--max-percent: 1;
	}
}

.font-shippori{ font-family: var(--font-shippori); }
.font-roboto{ font-family: var(--font-roboto); }
.font-cormorant{ font-family: var(--font-cormorant); }

/*-----------------------------------------------
 * Bace
-------------------------------------------------*/
body{
	-webkit-text-size-adjust: 100%;
	background-color: #fff;
	color: #000;
	font-family: var(--font-main);
	font-size: min(calc(16 / var(--vw-min) * 100vw), 16px);
	font-weight: normal;
	letter-spacing: 0.07em;
	line-height: 1.8;
	word-wrap: break-word;
}
.pc{ display: block; }
.sp{ display: none; }
a{ color: #222; }
a:hover{ text-decoration: none; }
.ah { transition: opacity .3s ease; }
.ah:hover { opacity: .7; }
::selection{
	background: #B7D4F9;
	color: #000;
}
::-moz-selection{
	background: #B7D4F9;
	color: #000;
}
@media screen and (max-width:768px){
	.sp{ display: block; }
	.pc{ display: none; }
	.ah:hover { opacity: 1; }
	body{
		font-size: calc(14 / var(--vw-min) * 100vw);
	}
}

/**
 * scroll bar
 */
::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}
::-webkit-scrollbar-track {
	background: #fff;
}
::-webkit-scrollbar-thumb {
	background: #000;
	margin: 2px;
	box-shadow: none;
}


/**
 * Wrap
 * 大枠のwrap指定
 */
/* fullWrap */
#fullWrap {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	position: relative;
	z-index: 1;
}
.bg{
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 0;
	background: url(../img/common/bg.jpg) no-repeat right top / cover;
	pointer-events: none;
}
@media screen and (max-width:768px){
	.bg{
		background: url(../img/common/bg_sp.jpg) no-repeat right top / cover;
	}
}
/*-----------------------------------------------
 * Modal
-------------------------------------------------*/
/**
 * modalBox
 * 基盤のモーダル
 */
.modalBox{
	-webkit-overflow-scrolling: touch;
	background: rgba(0,0,0,.85);
	display: none;
	width: 100%;
	height: 100%;
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}
.oneModal{
	display: none;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}
.oneModal.is-show {
	display: block;
}

/* oneModalIn */
.oneModalIn{
	display: flex;
	justify-content: center;
	align-items: center;
	height: auto;
	width: 100%;
	min-height: 100%;
	margin: 0 auto;
	position: relative;
}
.oneModalIn__cont{
	padding: 50px 0;
}
@media screen and (max-width:768px){
	.oneModalIn{
		min-width: 100%;
	}
	.oneModalIn__cont{
		width: 100%;
	}
}

/**
 * closeBtn
 */
.closeBtn{
	width: 80px;
	height: 80px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
}
@media screen and (max-width:768px){
	.closeBtn{
		width:50px;
		height:50px;
	}
}

.closeBtn a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.closeBtn__line{
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}
.closeBtn__line:nth-child(1){
    transform: rotate(35deg);
}
.closeBtn__line:nth-child(2){
    transform: rotate(-35deg);
}

/**
 * iframe
 */
/* common */
.commonIframe{
	width: 100%;
	height: 100%;
	display: block;
}

/* youtube */
.youtubeIframeWrap {
	width: 70%;
	max-width: 159.993vh;
	position: relative;
}
@media screen and (max-width:768px){
	.youtubeIframeWrap {
		width: 100%;
		max-width: 100%;
		margin: 50px 0;
	}
}
.youtubeIframeWrap:before{
	content: "";
	display: block;
	padding-top: 56.25%;
	z-index: 0;
}
.youtubeIframe{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

/**
 * Image Modal
 */
.imageModal__image{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
	height: 100vh;
	height: 100svh;
}
.imageModal__image img{
	width: 100%;
	height: 100%;
	object-fit:scale-down;
}



/*-----------------------------------------------
 * Header
-------------------------------------------------*/
.header {
    width: 100%;
    position: sticky;
    top: 0;
}
@media screen and (max-width:768px){
	.header {
		position: absolute;
		bottom: 0;
		pointer-events: none;
	}
}

.header__cont{
	position: relative;
    top: 0;
	width: 100%;
}
@media screen and (max-width:768px){
	.header__cont{
		position: sticky;
		height: min(100vh, 100%);
		z-index: 1;
	}
}


/* inner */
@media screen and (max-width:768px){
	.header__contInner {
		-webkit-overflow-scrolling: touch;
		width: 100%;
		overflow: auto;
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		padding: 0;
		opacity: 1;
		pointer-events: none;
		z-index: 2;
		opacity: 0;
		overscroll-behavior: contain;
		transition: opacity .2s ease-in-out;
	}
	.header.is-active .header__contInner {
		opacity: 1;
		pointer-events: auto;
	}
}


/** 
 * inner
**/
.header__inner{
	width: 100%;
	min-height: 100%;
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.header__inner:before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: #000;
}
.header__innerCont{
	width: 100%;
	position: relative;
	padding: min(calc(24 / var(--vw-min) * 100vw), 24px) min(calc(48 / var(--vw-min) * 100vw), 48px);
	z-index: 1;
}
@media screen and (max-width:768px){
	.header__innerCont{
		padding: calc(96 / var(--vw-min) * 100vw) calc(48 / var(--vw-min) * 100vw);
	}
}



/**
 * headerNav
 */
.headerNav,
.headerNav__inner,
.headerNav__cont {
	width: 100%;
	height: 100%;
}

/**
 * headerNavLists
 */
.headerNavLists {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.headerNavLists .navList {
	height: 100%;
}
@media screen and (max-width:768px){
	.headerNavLists {
		display: block;
	}
	.headerNavLists .navList {
		height: auto;
	}
	.headerNavLists .navList:not(:first-child) {
		margin-top: calc(20 / var(--vw-min) * 100vw);
	}
}

/* a */
.headerNavLists .navList__link {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-weight: 800;
	padding: 0 min(calc(20 / var(--vw-min) * 100vw), 20px);
	position: relative;
	text-decoration: none;
	color: var(--color-white);
}
@media screen and (max-width:768px){
	.headerNavLists .navList__link {
		display: block;
		color: #fff;
		height: auto;
		padding: calc(8 / var(--vw-min) * 100vw) 0;
	}
}

/**
 * navBtn
 */
@media screen and (max-width:768px){
	.header__navBtnWrap {
		background-color: red;
		width: calc(80 / var(--vw-min) * 100vw);
		height: calc(80 / var(--vw-min) * 100vw);
		position: fixed;
		top: 0;
		right: 0;
		z-index: 2;
		pointer-events: auto;
	}
	.header__navBtn {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		position: relative;
		cursor: pointer;
	}
	.header__navBtn__lineWrap {
		display: block;
		width: calc(40 / var(--vw-min) * 100vw);
		height: calc(24 / var(--vw-min) * 100vw);
		position: relative;
	}
	.header__navBtn--line {
		background-color: #000;
		display: block;
		width: 100%;
		height: calc(4 / var(--vw-min) * 100vw);
		margin: auto;
		position: absolute;
	}
	.header__navBtn--line:nth-child(1) {
		top: 0;
		bottom: calc(100% - calc(4 / var(--vw-min) * 100vw));
	}
	.header__navBtn--line:nth-child(2) {
		top: 0;
		bottom: 0;
	}
	.header__navBtn--line:nth-child(3) {
		top: calc(100% - calc(4 / var(--vw-min) * 100vw));
		bottom: 0;
	}
}

/**
 * active
 */
@media screen and (max-width:768px){
	.header__inner:before{
		width: 0%;
		transition: width .25s ease;
	}
	.header.is-active .header__inner:before{
		width: 100%;
	}
	.header__innerCont{
		opacity: 0;
		transition: opacity .3s ease;
	}
	.header.is-active .header__innerCont{
		opacity: 1;
		transition-delay: .15s;
	}
	.header__navBtn--line {
		transition: transform .3s ease, opacity .3s ease;
	}
	.header__navBtn.is-active .header__navBtn--line:nth-child(1) {
		transform: rotate(45deg);
		bottom: 0;
	}
	.header__navBtn.is-active .header__navBtn--line:nth-child(3) {
		transform: rotate(-45deg);
		top: 0;
	}
	.header__navBtn.is-active .header__navBtn--line:nth-child(2) {
		transform: translateX(20%);
		opacity: 0;
	}
}


/*-----------------------------------------------
 * Parts
-------------------------------------------------*/
/**
 * shareLists
 */
.shareLists {
	display: flex;
	gap: min(calc(20 / var(--vw-min) * 100vw), 20px);
}

/* item */
.shareLists__item {
	width: min(calc(24 / var(--vw-min) * 100vw), 24px);
	height: min(calc(24 / var(--vw-min) * 100vw), 24px);
}

/* link */
.shareLists__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
	text-decoration: none;
}
.shareLists__link:before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #000;
	display: block;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: 100%;
	mask-size: 100%;
	transition: background-color .4s ease;
}
.shareLists__link:hover:before {
	background-color: #ff0000;
}

/* 各SNSパーツ */
.shareLists__item.is-x .shareLists__link:before {
	-webkit-mask-image: url(../img/common/sns/icon_x.svg);
	mask-image: url(../img/common/sns/icon_x.svg);
}
.shareLists__item.is-facebook .shareLists__link:before {
	-webkit-mask-image: url(../img/common/sns/icon_fb.svg);
	mask-image: url(../img/common/sns/icon_fb.svg);
}
.shareLists__item.is-line .shareLists__link:before {
	-webkit-mask-image: url(../img/common/sns/icon_line.svg);
	mask-image: url(../img/common/sns/icon_line.svg);
}



/**
* modalOpen
**/
.js-modalOpen{
	cursor: pointer;
}


.footer{
	position: relative;
	padding: calc(230 / var(--vw-min) * 100vw)  calc(40 / var(--vw-min) * 100vw)  calc(80 / var(--vw-min) * 100vw);
}

.footer::after{
	pointer-events: none;
	width: 100%;
	height: 100%;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.5;
	background: linear-gradient(180deg, rgba(193, 193, 193, 0.00) 0%, #AAA 100%);
	z-index: -1;
}

@media screen and (max-width:768px){
	.footer{
		padding: calc(88 / var(--vw-min) * 100vw)  calc(20 / var(--vw-min) * 100vw)  calc(34 / var(--vw-min) * 100vw);
	}
}
.ftBtmBox{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}
.ftTxtWrap{
	display: flex;
	font-size: calc(12 / var(--vw-min) * 100vw);
	color: #151515;
	margin-top: calc(85 / var(--vw-min) * 100vw);
}
.copyright{
	font-size: calc(12 / var(--vw-min) * 100vw);
	color: #151515;
	opacity: 0.5;
}
.ftLink a{
    color: #151515;
    display: inline-block;
    margin: 0 min(calc(6 / var(--vw-min) * 100vw),6px);
}
.ftLink a:last-child{
    margin-right: 0;
}
.ftTxt{
    text-align: right;
	color: #151515;
}
.ot-sdk-show-settings{
	text-decoration: underline;
}
.ot-sdk-show-settings:hover{
	text-decoration: none;
}
@media screen and (max-width:768px){
	.ftBtmBox{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: calc(24 / var(--vw-min) * 100vw);
	}
	.ftTxtWrap{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		font-size: calc(10 / var(--vw-min) * 100vw);
		gap: calc(6 / var(--vw-min) * 100vw);
	}
	.ftTxt{
		text-align: center;
	}
}


/* footer > logo */
.footer__50thLogo{
	display: flex;
	align-items: center;
	justify-content: center;
}
.footer__50thLogoImg{ 
	width: min(calc(192 / var(--vw-min) * 100vw),192px);
	height: auto;
}
@media screen and (max-width:768px){
	.footer__50thLogoImg{ 
		width: calc(128 / var(--vw-min) * 100vw);
		height: auto;
	}
}
.ftLogoWrap{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: min(calc(40 / var(--vw-min) * 100vw), 40px);
	margin-top: min(calc(125 / var(--vw-min) * 100vw), 125px);
}
.ftLogo{
	display: block;
}
.ftLogo._sunrise{
    width: min(calc(162 / var(--vw-min) * 100vw),162px);
    height: auto;
}
.ftLogo._bfn{
    width: min(calc(168 / var(--vw-min) * 100vw),168px);
    height: auto;
}
@media screen and (max-width:767px){
	.ftLogoWrap{
		flex-direction: column;
		justify-content: center;
	}
    .ftLogo._sunrise{
        width: calc(128 / var(--vw-min) * 100vw);
    }
    .ftLogo._bfn{
        width: calc(128 / var(--vw-min) * 100vw);
    }
}

/* SUB PAGE */
.header__logo{
	position: fixed;
	top: min(calc(32 / var(--vw-min) * 100vw), 32px);
	left: 0;
	right: 0;
	z-index: 5;
	margin: auto;
	width: calc(226 / var(--vw-min) * 100vw);
	transition: width .6s ease;
	filter: drop-shadow(2px 2px 5px rgba(255, 255, 255, 0.5)) drop-shadow(2px 2px 5px rgba(255, 255, 255, 0.5)) drop-shadow(2px 2px 10px rgba(255, 255, 255, 0.5));
}
body.is-scrolled .header__logo{
	width: calc(180 / var(--vw-min) * 100vw);
}
.header__logo img{
	width: 100%;
	height: auto;
}
@media screen and (max-width:768px){
	.header__logo{
		top: calc(12 / var(--vw-min) * 100vw);
		width: calc(145 / var(--vw-min) * 100vw);
		filter: drop-shadow(2px 2px 5px rgba(255, 255, 255, 0.5)) drop-shadow(2px 2px 5px rgba(255, 255, 255, 0.5)) drop-shadow(2px 2px 10px rgba(255, 255, 255, 0.5));
	}
	body.is-scrolled .header__logo{
		width: calc(90 / var(--vw-min) * 100vw);
	}
}
.subPage .worksContents{
	padding-top: calc(168 / var(--vw-min) * 100vw);
	position: relative;
}
@media screen and (max-width:768px){
	.subPage .worksContents{
		padding-top: calc(84 / var(--vw-min) * 100vw);
	}
}

/* flowingTxt — mask 1タイル分だけ動かして seamless loop */
@keyframes flowingTxt_loop {
	from {
		-webkit-mask-position: 0 0;
		mask-position: 0 0;
	}
	to {
		-webkit-mask-position: var(--flowing-tile-x) 0;
		mask-position: var(--flowing-tile-x) 0;
	}
}