@charset "utf-8";
/* CSS Document */
/* ---------- cate1 ---------- */
.cate1{
	padding-left: 0;
}
.cate1 .box_wrap{
	gap: 50px;
	justify-content: flex-start;
}
.cate1 .box_wrap .leftbox{
	position: relative;
    z-index: 3;
	width: calc(40% - 25px);
	flex-direction: column;
	gap: 100px;
	margin-left: clamp(-100px, -5vw, -60px);
}
.cate1 .box_wrap .leftbox .txtbox{
	align-items: flex-start;
}

.cate1 .box_wrap .rightbox {
    position: relative;
    width: calc(60% - 25px);
    min-height: clamp(220px, 45vw, 600px);
	overflow: visible;
	z-index: 1;
}
.cate1 .box_wrap .rightbox > img {
    position: absolute;
    display: block;
    object-fit: cover;
}
.cate1 .box_wrap .rightbox > img:nth-of-type(1) {
    top: 0%;
    left: 0;
    width: 100%;
    z-index: 1;
}
.cate1 .box_wrap .rightbox > img:nth-of-type(2) {
    left: 5%;
    bottom: -15%;
    width: 40%;
    z-index: 3;
}

/* ---------- cate2 ---------- */
.cate2 .box_wrap {
    position: relative;
    background-color: #fff;
    padding: clamp(60px, 6vw, 90px) clamp(50px, 7vw, 100px);
    border-radius: 18px;
    gap: clamp(50px, 7vw, 100px);
    align-items: center;
}
.cate2 .box_wrap .leftbox{
    width: calc(50% - 50px);
}
.cate2 .box_wrap .leftbox,
.cate2 .box_wrap .rightbox {
    width: calc(50% - 50px);
}
.cate2 .box_wrap .leftbox {
    justify-content: center;
    align-items: center;
}
.cate2 .box_wrap .leftbox img {
    width: clamp(240px, 24vw, 380px);
    max-width: 100%;
}
.cate2 .box_wrap .rightbox {
    align-items: flex-start;
}
.cate2 .box_wrap::after {
    content: "";
    position: absolute;
    top: clamp(50px, 5vw, 75px);
    bottom: clamp(50px, 5vw, 75px);
    left: 50%;
    width: 1px;
    background-image: repeating-linear-gradient(
        to bottom,
        #262626 0,
        #262626 3px,
        transparent 3px,
        transparent 5px
    );
}
/* ---------- cate3 ---------- */
.cate3 .titlebox {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 22px 10px;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
}
.cate3 .titlebox::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 6px;
    background-image:
        linear-gradient(#262626, #262626),
        linear-gradient(#262626, #262626);
    background-size:
        100% 2px,
        100% 1px;
    background-position:
        left top,
        left 5px;
    background-repeat: no-repeat;
}
.cate3 .titlebox::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6px;
    background-image:
        linear-gradient(#262626, #262626),
        linear-gradient(#262626, #262626);
    background-size:
        100% 1px,
        100% 2px;
    background-position:
        left top,
        left 4px;
    background-repeat: no-repeat;
}
.cate3 .titlebox h2 {
    position: relative;
    padding-left: 28px;
}
.cate3 .titlebox h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 1.2em;
    background-color: #262626;
    transform: translateY(-50%);
}
.cate3 .box_wrap{
	flex-direction: column;
	gap: 100px;
}
.cate3 .box_wrap .boxitem{
	gap: 50px;
}
.cate3 .box_wrap .boxitem .txtbox{
	width: calc(60% - 25px);
	flex-direction: column;
	gap: 10px;
	align-items: flex-start;
}
.cate3 .box_wrap .boxitem .imgbox{
	width: calc(40% - 25px);
}
.cate3 .box_wrap .boxitem .txtbox .topbox{
	gap: 8px;
}
.cate3 .box_wrap .boxitem .txtbox .bottombox{
	align-items: flex-start;
	width: 90%;
	margin-left: auto;
}
.cate3 .box_wrap .boxitem .txtbox .topbox .num {
    font-family: "Cormorant Infant", serif;
    font-size: clamp(86px, 8vw, 130px);
    line-height: 0.8;
    font-weight: 700;
    color: #C1CDD5;
    -webkit-text-stroke: 2px #262626;
    text-stroke: 2px #262626;
}
.cate3 .box_wrap .boxitem .txtbox .topbox .point {
    position: relative;
    padding-left: 34px;
	font-size: clamp(18px, 1.6vw, 25px);
	font-family: "Cormorant Infant", serif;
	font-weight: 700;
}
.cate3 .box_wrap .boxitem .txtbox .topbox .point::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 22px;
    height: 1px;
    background-color: #262626;
    transform: translateY(-50%);
}
.cate3 .box_wrap .boxitem:nth-of-type(even) {
    flex-direction: row-reverse;
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
	.cate1{
		padding-left: 60px;
	}
    .cate1 .box_wrap {
        flex-direction: column;
        gap: 70px;
		justify-content: center;
    }
    .cate1 .box_wrap .leftbox {
        width: 90%;
        flex-direction: column;
        gap: 70px;
		margin-left: 0;
    }

    .titlebox0 {
        margin-bottom: 40px;
    }

    .cate1 .box_wrap .rightbox {
        width: 80%;
        margin: 0 auto;
    }
	.cate1 .box_wrap .rightbox > img:nth-of-type(1) {
		width: 90%;
	}
	.cate1 .box_wrap .rightbox > img:nth-of-type(2) {
		left: 60%;
		bottom: -15%;
		width: 40%;
		z-index: 3;
	}

    .cate2 .box_wrap {
        flex-direction: column;
        gap: 50px;
        padding: 60px 40px;
    }

    .cate2 .box_wrap .leftbox,
    .cate2 .box_wrap .rightbox {
        width: 100%;
    }

    .cate2 .box_wrap .leftbox {
        position: relative;
        padding-bottom: 50px;
    }

    .cate2 .box_wrap .leftbox img {
        width: clamp(180px, 30vw, 220px);
    }

    .cate2 .box_wrap::after {
        content: none;
    }

    .cate2 .box_wrap .leftbox::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 100%;
        height: 1px;
        transform: translateX(-50%);
        background-image: repeating-linear-gradient(
            to right,
            #262626 0,
            #262626 3px,
            transparent 3px,
            transparent 5px
        );
    }
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
    .cate1 .box_wrap .rightbox {
        width: 100%;
    }
    .cate1 .box_wrap .rightbox > img:nth-of-type(2) {
        left: 55%;
        bottom: -15%;
    }
    .cate1 .box_wrap .leftbox {
        width: 100%;
    }
    .cate1 {
        padding-left: 50px;
    }
	.cate3 .titlebox h2 {
		padding-left: 15px;
	}
	.cate3 .titlebox {
		gap: 15px;
	}
	.cate3 .box_wrap .boxitem {
		flex-direction: column-reverse;
	}
	.cate3 .box_wrap .boxitem:nth-of-type(even) {
		flex-direction: column-reverse;
	}
	.cate3 .box_wrap .boxitem .txtbox {
		width: 90%;
	}
	.cate3 .box_wrap .boxitem .imgbox {
		width: 70%;
	}
	.cate3 .box_wrap {
		gap: 70px;
	}
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.cate1 {
        padding-left: 20px;
    }
    .cate1 .box_wrap .rightbox > img:nth-of-type(2) {
        bottom: 0%;
    }
    .cate1 .box_wrap {
        gap: 50px;
    }
	.cate2 .box_wrap .leftbox {
        padding-bottom: 30px;
    }
	.cate2 .box_wrap {
        gap: 30px;
		padding: 60px 20px;
		border-radius: 5px;
    }
	.cate3 .titlebox {
        flex-direction: column;
		align-items: flex-start;
		gap: 5px;
    }
    .cate3 .titlebox h2 {
        padding-left: 0px;
    }
	.cate3 .titlebox h2::before {
		content: none;
	}
	.cate3 .box_wrap {
		gap: 50px;
	}
	.cate3 .box_wrap .boxitem .txtbox .bottombox {
		width: 100%;
	}
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

