@charset "UTF-8";

/*
	vw基準値
	pc：1400px
	sp：375px
*/

/* ********* common ********* */

/* sideFloatMenu */
.sideFloatMenu.is_opened {
	right: 0;
}
.sideFloatMenu{
	right: max(-10vw,-140px);
}

main img{
	width: 100%;
}
/* section */
section > .secInner {
	width: min(100%, 1201px);
	margin: auto;
}

/* heading */
.commonSection .ttlSec{
	font-size: var(--40px);
    font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	color: #5E5D5D;
    text-align: left;
}
@media screen and (max-width:768px){
	.commonSection .ttlSec{
		font-size: 28px;
	}
}

/* button */
.btnArwRight span{
	background: #8B585E;
    border: 1px solid #8B585E;
	width: min(21.43vw, 300px);	
}
.btnArwRight span:before {
    background: url(/homelounge/totikatuyo/img/icon_arw_white_bold.svg) no-repeat center;
}
.btnArwRight.white span{
	background: #fff;
    border: 1px solid #fff;
	color: #000000;
}
.btnArwRight.white span:before {
    background: url(/homelounge/totikatuyo/img/icon_arw_black.svg) no-repeat center;
}
@media not screen and (max-width:768px){
	.btnArwRight:hover span:before {
		background: url(/homelounge/totikatuyo/img/icon_arw_dred_bold.svg) no-repeat center;
	}
	.btnArwRight.white:hover{
		opacity: 1!important;
	}
	.btnArwRight.white:hover span{
		background: #000000;
		border: 1px solid #fff;
		color: #fff;
	}
	.btnArwRight.white:hover span:before {
		background: url(/homelounge/totikatuyo/img/icon_arw_white_bold.svg) no-repeat center;
	}
}
@media screen and (max-width:768px){
	.btnArwRight span{
		width: 72vw;
        height: 14.67vw;
        border-radius: 10vw;
	}
	.btnArwRight.white:hover span:before {
		background: url(/homelounge/totikatuyo/img/icon_arw_black.svg) no-repeat center;
		right: 4vw;
        width: 1.6vw;
        height: 2.93vw;
	}
}


/* ********* mvSection ********* */
.mvSection{
	position: relative;
}
.mvSection::after{
	content: '';
    background: url(/homelounge/totikatuyo/img/topnew/bg_mv.png) no-repeat center/contain;
    width: calc(100vw * 0.35);
    max-width: 494px;
    height: calc(100vw * 0.21);
    max-height: 307px;
    display: inline-block;
    position: absolute;
    bottom: -28px;
    right: 35px;
}
@media screen and (max-width:1600px){
	.mvSection::after{
		width: calc(100vw * 0.28);
		max-width: 395px;
		height: calc(100vw * 0.17);
		max-height: 246px;
		right: 10px;
	}
}
@media screen and (max-width:1260px){
	.mvSection::after{
		width: calc(100vw * 0.24);
		max-width: 336px;
		height: calc(100vw * 0.144);
		max-height: 209px;
		right: 0;
	}
}

/* 初期非表示 */
.mvSection .mvSlider {
    display: none;
}
.mvSection .mvSlider.slick-initialized{
    display: block;
}

/* 拡大 */
@keyframes zoomUp {
	0% {
	  transform: scale(1);
	}
	100% {
	  transform: scale(1.1); /* 拡大率 */
	}
}
.mvSection .add-animation {
	animation: zoomUp 7s linear 0s normal both;
}

.slider-container {
	display: flex;
	width: 100%;
	margin: 0 auto;
	height: calc( 100vh - 80px);
    background: #ECE7E3;
}
.slider-container .slider-left {
	position: relative;
	width: 50%;
	height: 100%;
    z-index: 1;
}
.slider-container .slider-left .slick-slide {
	height: 100%;
}
.slider-container .slider-left img {
	width: 100%;
	height: calc( 100vh - 80px);
	object-fit: cover;
}
.slider-container .slider-right {
    position: relative;
    z-index: 1;
    width: 50%;
    height: 100%;
    padding: min(7.14vh, 100px) min(3.57vw, 50px) min(14.28vh, 200px);
}
.slider-container .slider-right .textBox .heading{
	margin-bottom: 46px;
}
.slider-container .slider-right .textBox .heading img{
	width: 100%;
}
.slider-container .slider-right .textBox .leadTxt{
	color: #586166;
	font-size: var(--16px);
    line-height: 2.12;
}
.slider-container .slick-dots {
    position: absolute;
    display: flex;
    gap: 6px;
	right: -230px;
	bottom: 27px;
    z-index: 1;
}
.slider-container .slick-dots li button {
	position: relative;
	width: 40px;
	height: 3px;
	background-color: #D0D0D0;
	font-size: 0;
	cursor: pointer;
}
.slick-dots li button.active::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;
	background: #65363B;
	animation: fillBar 4s linear forwards;
}
/* 左から右に色が伸びるアニメーション */
@keyframes fillBar {
	from {
		width: 0%;
	}
	to {
		width: 100%;
	}
}

.slider-container .slider-text {
    font-family: 'Noto Serif JP', serif;
	position: absolute;
	color: #65363B;
	font-size: var(--14px);
	font-weight: 400;
	line-height: 1.7;
	left: 50px;
	bottom: 45px;
}
@media not screen and (max-width:768px){
	.slider-container .slider-text.setSp{
		display: none!important;
	}
	.slider-container .slider-right .textBox .heading img{
		max-width: min(30.7vw, 430px);
		height: auto;
		max-height: calc(100vh - 400px);
		object-fit: contain;
		object-position: left top;
	}
}
@media screen and (min-width: 768px) and (max-width: 952px) and (orientation: landscape) {
	.header__inner {
		height: 50px;
	}
	.header__menuButton {
		width: 50px;
		height: 50px;
	}
	.main--totikatuyo {
		padding-top: 50px;
	}

	.slider-container .slider-left img{
		height: calc(100vh - 50px);
	}
	.slider-container .slider-right .textBox .heading{
		margin-bottom: 20px;
	}
	.slider-container .slider-right .textBox .heading img{
        max-height: calc(100vh - 280px);
	}
	.slider-container {
		height: calc(100vh - 50px);
	}
	.slider-container .slider-text{		
		left: auto;
	}
	.slider-container .slick-dots{
		right: auto;
        left: calc(50vw + min(3.57vw, 50px));
	}
	.header_nav_wrap {
        top: 50px;
    }
}
@media screen and (max-width:768px){
	.mvSection::after{
        background: url(/homelounge/totikatuyo/img/topnew/bg_mv_sp.png) no-repeat;
        background-size: 100% auto;
        background-position: right;
        width: 100%;
        max-width: 385px;
        max-height: 202px;
        height: 100%;
        bottom: -35px;
        right: 0;
	}
	.slider-container {
		display: block;
		height: auto;
	}
	.slider-container .slider-left {
		position: relative;
		width: 100%;
		height: 100%;
	}
	.slider-container .slider-left img {
		height: auto;
		object-fit: fill;
	}
	.slider-container .slider-right {
		width: 100%;
		padding: 32px 20px 175px;
	}
	.slider-container .slider-right .textBox .heading{
		margin-bottom: 34px;
	}
	.slider-container .slider-right .textBox .heading img{
		max-width: 344px;
	}
	.slider-container .slider-right .textBox .leadTxt{
		font-size: 14px;
		line-height: 1.7;
	}
	.slider-container .slick-dots {
		right: auto;
		left: 20px;
		bottom: 10px;
		gap: 4px;
    }
	.slider-container .slick-dots li button {
		width: 26px;
		height: 2px;
	}
	.slider-container .slider-text {
		color: #fff;
		font-size: 12px;
		font-weight: bold;
		line-height: 1.25;
		left: 20px;
		bottom: 24px;
        text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
	}
	.slider-container .slider-text.setPc{
		display: none!important;
	}
}


/* ********* purposeSection ********* */
.purposeSection{
	color: #5E5D5D;
	font-weight: 300;
}
.purposeSection .secInner{
	padding:  min(4.64vw, 65px) min(1.43vw, 20px) min(5vw, 70px);
}
.purposeSection .ttlSec{	
    position: relative;
}
.purposeSection .ttlSec:after{	
	content: '';
	position: absolute;
	background:#707070;
	width: 100%;
	height: 1px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
	z-index: -1;
}
.purposeSection .ttlSec .ttl{	
	background: #fff;
    padding-right: 40px;
}
.purposeSection .leadTxt{
	font-size: var(--20px);
    line-height: 1.75;
	margin: var(--37px) 0 var(--65px);
}
.purposeSection .col_layout{
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	padding-bottom: min(5vw, 65px);
	border-bottom: 1px solid #707070;
}
.purposeSection .col_layout .item{
	width: calc( (100% - 80px) / 3);
}
.purposeSection .col_layout .item a:hover{
	opacity: 1;
}
.purposeSection .col_layout .item .text{
	font-size: var(--18px);
    line-height: 1.6;
	margin-top: var(--26px);
}
.purposeSection .imgBox{
	position: relative;
}
.purposeSection .imgBox:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0);
	transition: all .3s cubic-bezier(.215,.61,.355,1);
}
.purposeSection a:hover .imgBox:before{
	background: rgba(0, 0, 0, 0.4);
}
.purposeSection a:hover .text{
	opacity: 0.8;
}
.purposeSection .imgBox .imgText{
	position: absolute;
    width: 100%;
	max-width: 198px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.purposeSection .imgBox .imgText.img3{
	max-width: 304px;
}
@media screen and (max-width:768px){
	.purposeSection .secInner{
		padding: 52px 20px 65px;
	}
	.purposeSection .ttlSec .ttl{
		padding-right: 22px;
	}
	.purposeSection .leadTxt{
		font-size: 14px;
		margin: 13px 0 28px;
	}
	.purposeSection .col_layout{
		gap: 30px;
		padding-bottom: 35px;
	}
	.purposeSection .col_layout .item{
		width: 100%;
	}
	.purposeSection .col_layout .item .text{
		font-size: 12px;
		line-height: 1.8;
		margin-top: 13px;
	}
	.purposeSection .imgBox .imgText{
		width: 56%;
		max-width: 100%;
	}
	.purposeSection .imgBox .imgText.img3{
		width: 77%;
		max-width: 100%;
	}
}

/* ********* contentSection ********* */
.contentSection{
	background: #EDE7E3;
	color: #545350;
}
.contentSection .secInner{
	padding:  min(7.85vw,110px) min(1.43vw, 20px) min(8.04vw,120px);
}
.contentSection .col_layout{
	display: flex;
	flex-wrap: wrap;
	gap: 47px 38px;
	margin-top: var(--50px);
}
.contentSection .col_layout .item{
	width: calc( (100% - 76px) / 3);
    font-weight: 300;
	font-size: var(--15px);
}
.contentSection .col_layout .item a{
	transition: all .3s cubic-bezier(.215,.61,.355,1);
}
.contentSection .bnrBox {
    margin-bottom: 15px;
}
.contentSection .item .category{
	margin-bottom: 13px;
	line-height: 2;
}
.contentSection .item .category .sub{
	font-size: 12px;
	margin-bottom: 6px;
	line-height: 1.25;
}
.contentSection .item .category .text{
	font-size: 17px;
	font-weight: 600;
	text-decoration: underline;
	line-height: 1.47;
}
.contentSection .item .title{
	line-height: 1.66;
}
.contentSection .item .labelBox{
	display: flex;
	gap: 18px;
	margin-top: 16px;
}
.contentSection .item .labelBox .label:before{
	content: '';
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
	display: inline-flex;
	margin-right: 8px;
	align-items: center;
	justify-content: center;
	padding-top: 10px;
}
.contentSection .item .labelBox .label.--column:before{
	background-image: url(/homelounge/totikatuyo/img/icon_column.png);
	width: var(--26px);
    height: var(--18px);
}
.contentSection .item .labelBox .label.--movie:before{
	background-image: url(/homelounge/totikatuyo/img/icon_movie.png);
	width: var(--22px);
    height: var(--16px);
}
.contentSection .item .labelBox .label.--shindan:before{
	background-image: url(/homelounge/totikatuyo/img/icon_shindan.png);
	width: var(--18px);
    height: var(--23px);
}
@media screen and (max-width:768px){
	.contentSection .secInner{
		padding: 50px 20px 84px;
	}
	.contentSection .col_layout{
		gap: 48px;
		margin-top: 42px;
	}
	.contentSection .col_layout .item{
		width: 100%;
		font-size: 12px;
	}
	.contentSection .bnrBox {
		margin-bottom: 14px;
	}
	.contentSection .item .category{
		margin-bottom: 8.5px;
	}
	.contentSection .item .category .sub{
		font-size: 10px;
		margin-bottom: 5px;
	}
	.contentSection .item .category .text{
		font-size: 15px;
	}
	.contentSection .item .labelBox{
		gap: 16px;
		margin-top: 8px;
	}
	.contentSection .item .labelBox .label.--column:before{
		width: 25px;
		height: 17px;
	}
	.contentSection .item .labelBox .label.--movie:before{
		width: 21px;
		height: 15px;
	}
	.contentSection .item .labelBox .label.--shindan:before{
		width: 17px;
		height: 22px;
	}
}

/* ********* gallerySection ********* */
.gallerySection{
    background: #000000 url(/homelounge/totikatuyo/img/topnew/bg_gallery.png) no-repeat;
    background-position: center;
    background-size: cover;
    color: #fff;
}
.gallerySection .secInner{
	padding:  min(6.07vw,85px) min(1.43vw, 20px);
}
.gallerySection .col_layout{
	display: flex;
	flex-wrap: wrap;
	gap: 0;
}
.gallerySection .col_layout .item{
	width: 50%;
}
.gallerySection .ttlSec img{
	max-width: 446px;
}
.gallerySection .text{
    font-weight: 300;
	font-size: var(--20px);
    line-height: 1.7;
	margin-top: var(--27px);
}
.gallerySection .bttn {
	margin-top: var(--65px);
}
.gallerySection .bttn a{
	display: inline-block;
}
@media screen and (max-width:768px){
	.gallerySection{
		background: #000000;
	}
	.gallerySection .secInner{
		padding:  0 0 65px;
	}
	.gallerySection .col_layout{
		gap: 8px;
	}
	.gallerySection .col_layout .item{
		width: 100%;
	}
	.gallerySection .col_layout .item.summary{
		padding: 0 20px;
	}
	.gallerySection .ttlSec{
		text-align: center;
	}
	.gallerySection .ttlSec img{
		max-width: 266px;
	}
	.gallerySection .text{
		max-width: 290px;
		margin: 13px auto 0;
		font-size: 14px;
	}
	.gallerySection .bttn {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		max-width: 270px;
		margin: 40px auto 0;
	}
}


/* ********* shindanSection ********* */
.shindanSection .secInner{
	padding:  min(6.43vw,90px) min(1.43vw, 20px) min(4.64vw, 65px);
}
.shindanSection .col_layout{
	display: flex;
	flex-wrap: wrap;
	gap: 110px;
}
.shindanSection .col_layout .item{
	width: calc( (100% - 110px) / 2);
}
.shindanSection .ttlSec img{
	max-width: 490px;
}
.shindanSection .text{
	color: #5E5D5D;
    font-weight: 300;
	font-size: var(--20px);
    line-height: 1.7;
	margin-top: var(--42px);
}
.shindanSection .bttn {
	margin-top: var(--65px);
}
.shindanSection .bttn a{
	display: inline-block;
}
.shindanSection .bg_item img{
	max-width: 488px;
}
@media screen and (max-width:768px){
	.shindanSection .secInner{
		padding: 40px 20px 65px;
	}
	.shindanSection .col_layout{
        flex-direction: column-reverse;
		gap: 18px;
	}
	.shindanSection .col_layout .item{
		width: 100%;
	}
	.shindanSection .ttlSec{
		text-align: center;
	}
	.shindanSection .ttlSec img{
		max-width: 343px;
	}
	.shindanSection .text{
		font-size: 14px;
		max-width: 284px;
		margin: 14px auto 0;
	}
	.shindanSection .bttn {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		max-width: 270px;
		margin: 12px auto 0;
	}
	.shindanSection .bg_item{
		text-align: center;
	}
	.shindanSection .bg_item img{
		max-width: 270px;
	}
	.shindanSection .btnArwRight:hover span{
		background: #8b585e;
		color: #fff;
		border-color: #8b585e;
	}
	.shindanSection .btnArwRight:hover span:before {
		background: url(/homelounge/totikatuyo/img/icon_arw_white_bold.svg) no-repeat center;
        right: 4vw;
        width: 1.6vw;
        height: 2.93vw;
	}
}

/* consultSection  */
.consultSection > .secInner {
    width: min(100%, 1400px);
    padding: 0 min(7.14vw, 100px);
    margin: auto;
}
.consultSection .ttlSec {
    font-size: var(--28px);
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 3px;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .consultSection {
        padding: 16vw 0;
    }
	.consultSection > .secInner {
		width: 100%;
        padding: 0 5.33vw;
	}
	.consultSection .ttlSec {
		font-size: 5.33vw;
        letter-spacing: 0;
        line-height: 1.5;
	}
}