/*-------------------------------------------------
    モジュール
-------------------------------------------------*/
/* sp_section */
.sp_section{
    padding: 100px 0;
}
@media screen and (max-width: 768px) {
    .sp_section{
        padding: 60px 0;
    }  
}

/* special_mv */
.special_mv{
    background-color: #000;
    color: #fff;
    padding: 80px 0;
}
.special_mv_inner{
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.sp_head_label{
    display: inline-block;
    font-size: 2.4rem;
    font-weight: bold;
    border: 1px solid #fff;
    padding: 4px 24px;
    margin-bottom: 24px;
}
.sp_head_lv1{
    font-size: 4.0rem;
    line-height: 1.6;
    font-weight: bold; 
    margin-bottom: 40px; 
}
.sp_head_highlight{
    background-color: #fff;
    color: #000;
    display: inline-block;
    line-height: 1.0;
    padding: 12px 16px;
    margin-bottom: 8px;
}
.special_mv_image{
    flex-shrink: 0;
}
.special_mv_image img{
    width: auto;
    height: auto;
    max-width: 100%;
}


@media screen and (max-width: 768px) {
    .special_mv{
        padding: 40px 16px;
    }
    .special_mv_inner{
        flex-direction: column;
        gap: 24px;
    }
    .sp_head_label{
        font-size: 1.8rem;
        padding: 4px 20px;
        margin-bottom: 16px;
    }
    .sp_head_lv1{
        font-size: 2.2rem;
        margin-bottom: 24px; 
    }
    .sp_head_highlight{
        line-height: 1.0;
        padding: 12px 8px;
        margin-bottom: 4px;
    }
}

/* mv_cta_btn */
a.mv_cta_btn{
	display: block;
	width: 100%;
	max-width: 480px;
	background-color: #333;
	margin: 0 auto;
	padding: 20px;
	color: #fff;
	position: relative;
}
a.mv_cta_btn::after{
	content: "";
	display: inline-block;
	position: absolute;
	right: 24px;
	top: 50%;
	width: 12px;
	height: 12px;
	border: solid #fff;
	border-width: 2px 2px 0 0;
	transform: rotate(45deg) translateY(-50%);
    transition: .25s;
}
a.mv_cta_btn span{
	font-size: 2.4rem;
    line-height: 1.0;
	font-weight: bold;
    display: block;
    text-align: center;
}
a.mv_cta_btn:hover{
    opacity: 0.9;
}
a.mv_cta_btn:hover::after{
	right: 20px;
}
a.mv_cta_btn .btn_text_s{
    display: block;
    font-size: 1.5rem;
    margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
    a.mv_cta_btn span{
        font-size: 2.0rem;
    }
    a.mv_cta_btn .btn_text_s{
        font-size: 1.3rem;
    }
}


/* 吹き出しパーツ */
.voice_area{
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.voice_box{
	display: flex;
	gap: 0 30px;
}
.voice_icon{
	width: 100px;
	height: 100px;
	flex-shrink: 0;
}
.voice_icon img{
	width: auto;
	max-width: 100%;
}
.voice_text{
	border: 2px solid #000;
	width: 100%;
	position: relative;
	padding: 20px;
	display: flex;
	align-items: center;
}
.voice_text::before,
.voice_text::after{
	content: "";
    display: inline-block;
    position: absolute;
    top: 28px;
    width: 20px;
    height: 24px;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
.voice_text::before{
	background-color: #000;
	left: -20px;
}
.voice_text::after{
	background-color: #fff;
	left: -17px;
}
.voice_text p{
	margin-bottom: 0;
}
.voice_box.rv{
	flex-direction: row-reverse;
}
.rv .voice_text::before,
.rv .voice_text::after{
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.rv .voice_text::before{
	left: inherit;
	right: -20px;
}
.rv .voice_text::after{
	left: inherit;
	right: -17px;
}
@media screen and (max-width: 768px) {
    .voice_icon {
        width: 60px;
        height: 60px;
    }
    .voice_text {
        padding: 16px;
    }
    .voice_text::before,
    .voice_text::after{
        top: 16px;
    }
}


/* role_box */
.role_box {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "title image" "text  image";
    column-gap: 16px;
    gap: 20px 0;
    align-items: start;
	background-color: #eee;
	border: 1px solid #000;
    padding: 20px 40px;
    margin-bottom: 24px;
}
.role_box.last_box{
    margin-bottom: 0 !important;
}
.role_box_head {
    grid-area: title;
    margin: 0;
    align-self: flex-end;
    font-size: 2.4rem;
    line-height: 1.6;
    font-weight: bold;
}
.role_box_img {
    grid-area: image;
    max-width: 200px;
    width: auto;
    height: auto;
    display: block;
    justify-self: center;
    align-self: flex-start;
}
.role_box_text {
    grid-area: text;
}
@media screen and (max-width: 768px) {
    .role_box {
        grid-template-columns: 1fr auto;
        grid-template-areas: "title" "image" "text";
        margin: 0 auto 24px;
        padding: 20px;
    }
    .role_box_head {
        font-size: 2.0rem;
        line-height: 1.6;
    }
    .role_box_img {
        max-width: 140px;
    }
    .role_box_text p{
        margin-bottom: 1.4rem;
    }
}

/* colx_box */
.colx_box{
    display: flex;
	gap: 24px 8px;
    justify-content: space-between;
    align-items: center;
}
.colx_box_head{
	font-size: 2.4rem;
	line-height: 1.6;
	font-weight: bold;
}
.head_lg{
    display: inline-block;
	font-size: 3.6rem;
}
@media screen and (max-width: 768px) {
    .colx_box{
        flex-direction: column;
        align-items: flex-start;
    }
    .colx_box_head{
        font-size: 1.8rem;
    }
    .head_lg{
        font-size: 2.4rem;
        line-height: 1.4;
    }
}

/* cols3_box（横3並び） */
.cols3_box{
	display: flex;
	gap: 30px;
	margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
    .cols3_box{
        flex-direction: column;
        align-items: center;
    }
}

/* wide_highlight */
.wide_highlight{
	background-color: #000;
	color: #fff;
	padding: 80px 0;
}
@media screen and (max-width: 768px) {
    .wide_highlight{
        padding: 60px 0;
    }
}

/* split_box */
.split_area{
	padding: 40px;
	background-color: #3D3D3D;
	margin-bottom: 60px;
}
.split_box{
	display: flex;
	gap: 40px 80px;
	position: relative;
}
.split_box .parts_plus{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 100px;
	height: 100px;
    z-index: 2;
}
.parts_plus span{
	position: relative;
	display: block;
}
.parts_plus span::before,
.parts_plus span::after{
	content: "";
	display: inline-block;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 4px;
	height: 110px;
	background-color: #000;
}
.parts_plus span::after{
	transform: rotate(90deg) ;
}
.split_inner{
	width: calc(50% - 40px);
	background-color: #fff;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.split_box_text{
    text-align: center;
    font-size: 2.4rem;
    font-weight: bold;
}
@media screen and (max-width: 768px) {
    .split_area {
        padding: 24px;
        margin-bottom: 40px;
    }
    .split_box {
        flex-direction: column;
    }
    .split_inner {
        width: 100%;
        padding: 24px 0;
        min-height: inherit;
    }
    .split_box_text {
        font-size: 1.8rem;
    }
    .split_box .parts_plus {
        width: 60px;
        height: 60px;
    }
    .parts_plus span::before,
    .parts_plus span::after{
        height: 60px;
    }
}

/* ft_cta */
.ft_cta_area{
	background-color: #ddd;
	text-align: center;
	padding: 80px 16px;
}
.cta_head{
	font-size: 3.6rem;
	line-height: 1.4;
	font-weight: bold;
	margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
    .ft_cta_area{
        padding: 60px 16px;
    }
    .cta_head{
        font-size: 2.4rem;
    }
}

/* cta_btn */
a.cta_btn{
	display: block;
	width: 100%;
	max-width: 480px;
	background-color: #000;
	margin: 0 auto;
	padding: 20px;
	color: #fff;
	position: relative;
}
a.cta_btn::after{
	content: "";
	display: inline-block;
	position: absolute;
	right: 24px;
	top: 50%;
	width: 12px;
	height: 12px;
	border: solid #fff;
	border-width: 2px 2px 0 0;
	transform: rotate(45deg) translateY(-50%);
    transition: .25s;
}
a.cta_btn span{
	font-size: 2.4rem;
	font-weight: bold;
    display: block;
    text-align: center;
}
p.cta_btn_label{
	margin-bottom: 16px;
	font-weight: bold;
}
a.cta_btn:hover{
    opacity: 0.9;
}
a.cta_btn:hover::after{
	right: 20px;
}
@media screen and (max-width: 768px) {
    a.cta_btn span{
        font-size: 2.0rem;
    }
    p.cta_btn_label{
        margin-bottom: 8px;
    }
}

/* lp_head */
.sp_head_lv2{
	font-size: 3.6rem;
	line-height: 1.4;
	font-weight: bold;
	margin-bottom: 40px;
	text-align: center;
}
.sp_head_lv2 .head_s{
	font-size: 2.4rem;
}
.sp_head_lv2 .head_lg{
	font-size: 4.6rem;
}
@media screen and (max-width: 768px) {
    .sp_head_lv2{
        font-size: 2.4rem;
    }
    .sp_head_lv2 .head_lg{
        font-size: 2.8rem;
    }
    .sp_head_lv2 .head_s{
        font-size: 1.8rem;
    }
}

/* head_area_wide */
.head_area_wide{
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 96px 16px;
    position: relative;
}
.head_area_lv2{
	font-size: 3.6rem;
	line-height: 1.6;
	font-weight: bold;
}
.head_area_wide::after{
    content: "";
    display: inline-block;
    position: absolute;
    bottom: -63px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 64px;
    background-color: #000;
    clip-path: polygon(50% 100%, 0 0, 100% 0); /* 下向き三角形 */
}
@media screen and (max-width: 768px) {
    .head_area_wide{
        padding: 64px 16px;
    }
    .head_area_lv2{
        font-size: 2.4rem;
        line-height: 1.4;
    }
    .head_area_wide::after{
        bottom: -39px;
        width: 80px;
        height: 40px;
    }
}

/* text */
.ornament{
	color: #FF7E3F;
}
.text_md{
    font-size: 2.0rem;
}

.dot_text{
    background-image: radial-gradient(circle at center, #FEC787 24%, transparent 24%);
    background-position: top right;
    background-repeat: repeat-x;
    background-size: 1em 0.2em;
    padding-top: 10px;
    letter-spacing: 0;
    font-feature-settings: normal;
}
@media screen and (max-width: 768px) {
    .text_md{
        font-size: 1.6rem;
    }
}

/*-------------------------------------------------
    デザイン（fixturemate）
-------------------------------------------------*/
.fixturemate .special_mv{
    background-image: url(/images/stratasys/fixturemate/bg_mv.jpg);
    background-position: center center;
    background-size: cover;
}
.fixturemate .sp_head_label {
    border: 1px solid #FF7E3F;
    color: #FF7E3F;
}
.fixturemate .sp_head_indent{
    padding-left: 8px;
}
.fixturemate a.mv_cta_btn {
    background-color: #FF7E3F;
}
.fixturemate .parts_plus span::before,
.fixturemate .parts_plus span::after {
    background-color: #FF7E3F;
}
.fixturemate .voice_area {
    max-width: 840px;
    margin: 0 auto;
}
.fixturemate .voice_text {
    border: 2px solid #FF7E3F;
    border-radius: 8px;
    font-weight: bold;
    font-size: 2.0rem;
}
.fixturemate .voice_text::before {
    background-color: #FF7E3F;
}
.fixturemate .role_box {
    background-color: #FFF5EA;
    border: 1px solid #FF7E3F;
}
.fixturemate .colx_box {
    gap: 16px 8px;
}
.fixturemate .colx_box_text .colx_box_head:first-child{
    margin-bottom: 32px;
}
.fixturemate .ft_cta_area {
    background-color: #FD6D27;
    background-image: url(/images/stratasys/fixturemate/bg_ft_cta.png);
    background-position: center center;
    background-size: cover;
    color: #fff;
    padding-bottom: 92px;
}
.fixturemate .cta_btn_label{
    font-size: 2.0rem;
}
.fixturemate .head_area_wide{
    background-image: url(/images/stratasys/fixturemate/bg_head.png);
    background-position: center center;
    background-size: cover;
}
.fixturemate .split_area {
    background-color: #828282;
}
.fixturemate .split_box_text{
    font-size: 3.6rem;
    line-height: 1.2;
}
.fixturemate .split_box_maker{
    font-size: 4.0rem;
    font-weight: bold;
    position: relative;
    margin-bottom: 24px;
}
.fixturemate .split_box_maker::after{
    content: "";
    display: inline-block;
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 54px;
    height: 2px;
    background-color: #FF7E3F;
    transform: translateX(-50%);
}
.fixturemate .split_inner{
    position: relative;
    min-height: 294px;
    justify-content: stretch;
    padding-top: 60px;
    border: 2px solid #fff;
}
.fixturemate .split_inner{
    background: url(/images/stratasys/fixturemate/index_14.jpg) no-repeat 0 0;
    background-size: cover;
}
.fixturemate .split_inner:last-child{
    background: url(/images/stratasys/fixturemate/index_15.jpg) no-repeat 0 0;
    background-size: cover;
}
.fixturemate .split_box_maker,
.fixturemate .split_box_text{
    position: relative;
    z-index: 1;
    color: #fff;
}
.fixturemate .split_inner::before{
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44,44,44,0.87);
}
@media screen and (max-width: 768px) {
    .fixturemate .special_mv{
        background-image: url(/images/stratasys/fixturemate/bg_mv_sp.png);
        background-position: center center;
        background-size: cover;
    }
    .fixturemate .mv_logo{
        display: block;
        width: 60%;
        margin: 0 auto;
    }
    .fixturemate .sp_head_indent{
        padding-left: 4px;
    }
    .fixturemate .voice_text {
        font-size: 1.6rem;
    }
    .fixturemate .ft_cta_area {
        padding-bottom: 60px;
    }
    .fixturemate .ft_cta_area {
        background-color: #FD6D27;
        background-image: url(/images/stratasys/fixturemate/bg_ft_cta_sp.png);
        background-position: center center;
        background-size: cover;
        padding-bottom: 60px;
    }
    .fixturemate .cta_btn_label{
        font-size: 1.6rem;
    }
    .fixturemate .dot_text{
        padding-top: 5px;
    }
    .fixturemate .split_box_text{
        font-size: 2.8rem;
    }
    .fixturemate .split_box_maker{
        font-size: 3.2rem;
    }
    .fixturemate .split_inner {
        min-height: 254px;
        justify-content: center;
        padding: 0;
    }
}