@charset "utf-8";
/* CSS Document */

/* -------------------------------- root -------------------------------- */
:root{
    --header_height: 100px;
    --logo_size: clamp(3.438rem, 2.787rem + 3.25vw, 6.688rem);
    --g_nav_size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    --font_memu-catch-subtitle: "Lato", sans-serif;
    --font_mvname-title: "Raleway", sans-serif;
    --font_size_title: clamp(1.875rem, 1.8rem + 0.38vw, 2.25rem);
    --lineheight_title-text: 1.4;
}

@media all and (max-width:767px) {
    :root{
        --header_height: 60px;
    }
}

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

html {
	scroll-behavior: smooth;
    scroll-padding-top: var(--header_height);
    font-family: "Lato", sans-serif;
}

img {
    width: 100%;
}

p,table{
    font-size: clamp(0.875rem, 0.85rem + 0.13vw, 1rem);
    line-height: var(--lineheight_title-text);
    word-break: auto-phrase;
}

.sp{
    display: none;
}

@media all and (max-width:767px) {
    .sp{
        display: block;
    }

    .pc{
        display: none;
    }
    
}

.grecaptcha-badge { visibility: hidden; }



@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}

/* -------------------------------- header -------------------------------- */

header{
    width: 100%;
    height: var(--header_height);
    background: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

header .header_inner{
    width: 95%;
    margin: 0 auto;
    margin-right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font_memu-catch-subtitle);
    font-weight: 700;
    font-style: normal;
    height: 100%;
}

header .header_logo{
    width: var(--logo_size);
}

header .pc.g_menu{
    width: calc(100% - var(--logo_size));
    max-width: 790px;
    margin-left: 10px;
    height: 100%;
}

header .pc.g_menu a{
    color: rgba(51,51,51,1);
    width: 100%;
    transition: all 0.8s;
    background:rgba(0,0,0,0);
}

header .pc.g_menu a:hover{
    background: linear-gradient(90deg, rgba(113,178,226,1) 0%, rgba(143,103,169,1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: rgba(0,0,0,0);
}

header .pc.g_menu nav{
    height: 100%;
}

header .pc.g_menu ul{
    display: flex;
    justify-content: space-around;
    height: 100%;
}

header .pc.g_menu ul li{
    font-size: var(--g_nav_size);
    text-align: center;
    line-height: var(--lineheight_title-text);
    letter-spacing: 0.1em;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

header .pc.g_menu ul .pcnav_contact{
    color: #fff;
    width: 150%;
    transition: all 1s;
    position:relative;
    z-index:0;
}

header .pc.g_menu ul .pcnav_contact::before{
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    z-index: -1;
    top: 0;
    left:0;
    transition:0.5s;
    background:#000;
}

header .pc.g_menu ul .pcnav_contact::after{
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    z-index: -2;
    top: 0;
    left:0;
    background:linear-gradient(90deg, #71b2e2,#8f67a9);
}

header .pc.g_menu ul .pcnav_contact:hover::before{
    opacity:0;
}

header .pc.g_menu ul li span{
    font-size: calc(var(--g_nav_size) - 0.4rem);
    display: block;
    letter-spacing: 0;
}

@media all and (max-width:767px) {
    /* -------------------------------- sp メニューボタン-------------------------------- */
    .sp.g_menu{
        background: #000;
        width: 65px;
        height: 45px;
        border-radius: 10px 0 0 10px;
		transition: all 0.5s;
        position: fixed;
        top: 7.5px;
        right: 0;
	}
	
	.sp.g_menu .openbtn{
		display: block;
		cursor: pointer;
		width: 65px;
		height: 45px;
		position: relative;
        color: #fff;
	}

	.openbtn span{
		display: inline-block;
		position: absolute;
		right: 10px;
		height: 1px;
		border-radius: 1px;
		background-color: #fff;
		transition: all 0.5s;
	  }

	.openbtn span:nth-of-type(1) {
        width: 35px;
		top:13px;	
	}

	.openbtn span:nth-of-type(2) {
		top:18px;
        width: 25px;
	}

	.openbtn span:nth-of-type(3) {
		top:23px;
        width: 15px;
	}

    .openbtn span:nth-of-type(4) {
        background-color: transparent;
        top: 28px;
        font-size: 9px;
    }

    /* ----- sp メニューボタン active ----- */
    .sp.g_menu.is-active{
        right: 117px;
    }

	.openbtn.is-active span:nth-of-type(2){
		width: 35px;
	}

	.openbtn.is-active span:nth-of-type(3){
		width: 35px;
	}

    /* -------------------------------- sp nav-------------------------------- */

    .sp.sp_nav{
        background: #000;
        height: 300px;
        width: 117px;
        position: fixed;
        top: 7.5px;
        right: -117px;
        z-index: 999;
        border-radius: 0 0 0 10px;
        transition: all 0.5s;
    }

    .sp.sp_nav a{
        color: #fff;
    }

    .sp.sp_nav ul{
        margin: 60px 0 0 1.5em;
    }

    .sp.sp_nav ul li{
        font-size: var(--g_nav_size);
        line-height: var(--lineheight_title-text);
        letter-spacing: 0.1em;
        width: 100%;
        height: 100%;
        margin-bottom: 1em;
    }

    .sp.sp_nav ul li span{
        font-size: 9px;
        display: block;
        letter-spacing: 0;
    }

    /* ----- sp ナビ active ----- */

    .sp.sp_nav.is-active{
        right: 0;
    }


}

/* -------------------------------- mv -------------------------------- */

#mv{
    margin-top: var(--header_height);
    height: calc(90vh - var(--header_height));
    position: relative;
    z-index: 0;
}

#mv::after{
    content: "";
    width: 100%;
    height: calc(90vh - var(--header_height));
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    z-index: 1;
}

#mv img{
    position: fixed;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: var(--header_height);
    left: 0;
    z-index: -1;
}

#mv .mv_text{
    color: #fff;
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    line-height: var(--lineheight_title-text);
}

#mv .mv_text .mv_text_catch{
    font-family: var(--font_memu-catch-subtitle);
    font-weight: 700;
    font-size: clamp(3.813rem, 2.775rem + 5.19vw, 9rem);

}

#mv .mv_text .mv_text_name{
    font-family: var(--font_mvname-title);
    font-weight: 600;
    letter-spacing: 0.49em;
    font-size: clamp(1.875rem, 1.8rem + 0.38vw, 2.25rem);
}

.blur-box{
    animation-name: blur;
    animation-duration: 1.8s;
    animation-fill-mode:forwards;
}

@keyframes blur{
    from {
      filter: blur(10px);
    }
  
    to {
      filter: blur(0);
    }
  }

/* -------------------------------- scroll down -------------------------------- */

.scroll_wrap{
    position: absolute;
    bottom: 0;
    right: 5%;
    z-index: 3;
}

#scroll-down {
    display: block;
    position: relative;
    text-align:center;
}
.arrow-down {
    display: block;
    margin: 0 auto;
    width: 10px;
    height: 38px;
}

#scroll-title {
    display: block;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    color: #fff;
  font-family: var(--font_memu-catch-subtitle);
  font-size:14px;
  font-weight: 700;
  letter-spacing:.1em;
  position: absolute;
  top: -250px;
  right: -0.5em;
}

#scroll-title a{
    color: #fff;
}

#scroll-down::before {
    -webkit-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
    /* Safari 4+ */
    
    -moz-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
    /* Fx 5+ */
    
    -o-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
    /* Opera 12+ */
    
    animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
    /* IE 10+, Fx 29+ */
    
    position: absolute;
    bottom: 0px;
    right: 10%;
    width: 1px;
    height: 150px;
    background: #fff;
    content: ' ';
}

@-webkit-keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}
@-moz-keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}
@-o-keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}
@keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}


/* --------------------------------main content -------------------------------- */

body{
	position: relative;
}

article{
    padding-top: clamp(5.625rem, 4.537rem + 5.44vw, 11.063rem);
    padding-bottom: clamp(2.5rem, 0.5rem + 10vw, 12.5rem);
    background: #fff;
    position: relative;
}

body a.contact_right{
	position: fixed;
	top: 50%;
	right: 5%;
	transform: translatey(-50%);
	text-transform: uppercase;
    writing-mode: vertical-rl;
    color: #fff;
  	font-family: var(--font_memu-catch-subtitle);
 	font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
  	font-weight: 700;
 	letter-spacing: .4em;
	color: #000;
	z-index: 999;
	opacity: 0;
	transition: all 1.5s;
}

body a.indicate{
	opacity: 1;
}

article section{
    width: 90%;
    max-width: 1500px;
    margin: 220px auto 0;
    text-align: center;
    position: relative;
    z-index: 0;
}

article section h2{
    width: fit-content;
    margin: 0 auto 60px;
    font-family: var(--font_mvname-title);
    font-weight: 700;
    font-size: var(--font_size_title);
    line-height: var(--lineheight_title-text);
    letter-spacing: 0.2em;
    position: relative;
    z-index: 2;
    text-align: center;
}

article section h2 span{
    display: block;
    font-size: calc(var(--font_size_title) * 0.5);
    padding: 1em 5em;
    border-top: #333 1px solid;
    letter-spacing: 0.15em;
}

article section .subtitle{
    font-family: var(--font_mvname-title);
    font-weight: 700;
    font-size:  calc(var(--font_size_title) * 0.6);
    letter-spacing: 0.1em;
    margin-bottom: 30px;
}

article section .subtitle_btn{
    background: #E0E7EE;
    border-radius: 24px;
    font-size:  calc(var(--font_size_title) * 0.55);
    padding: 0.5em 0;
    font-weight: 700;
    margin: 0 auto;
    margin-bottom: 20px;
}

.scroll-block {
    opacity: .1;
    transition: all 1.5s;
  }
  
.scroll-block.blockIn {
    opacity: 1;
  }

.page{
	text-align:left;
	line-height: 1.5em;
	animation: fadein 3s forwards;
	margin-top: 100px;
}

.page h3{
	font-family: var(--font_mvname-title);
    font-weight: 700;
    font-size:  calc(var(--font_size_title) * 0.6);
    letter-spacing: 0.1em;
    margin-bottom: 1em;
	margin-top: 50px;
}

.page ul{
	margin-top: 1em;
}

.page ul li{
	list-style: dotted;
	margin-left: 2em;
	padding-left: 1em;
}

/* -------------------------------- about -------------------------------- */

article section#about{
    margin-top: 0;
}

article section#about::after{
    content: "";
    width: 50%;
    height: 100%;
    position: absolute;
    background: url(../img/aboutus_bg.svg) no-repeat;
    background-position: top left;
    background-size: contain;
    top: calc(clamp(1.875rem, 1.25rem + 3.13vw, 5rem) * -1);
    left: 0;
}


article section .about_inner{
    margin-bottom: 140px;
}

article section .about_inner_text p{
    margin-bottom: 1em;
    line-height: 1.8;
}



/* -------------------------------- about 強みと特徴 -------------------------------- */

.point_wrap{
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
}

.point_wrap img{
    width: 70%;
    min-width: 209px;
    margin: 30px 0;
}

.point_wrap .point_inner{
    max-width: 440px;
    flex: 1;
    margin: 0 auto;
}

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

    .point_area{
        overflow: hidden;
    }

    .point_wrap{
        column-gap: 0;
    }

    .point_wrap .point_inner{
        max-width: 800px;
        width: 110%;
        padding: 0 15px;
    }

    .point_area h3{
        height: calc(var(--header_height) + 50px);
        line-height: calc(var(--header_height) + 150px);
        vertical-align: bottom;
    }
}



/* -------------------------------- company -------------------------------- */

article section#company::after{
    content: "";
    width: 50%;
    height: 100%;
    position: absolute;
    background: url(../img/company_bg.svg) no-repeat;
    background-position: top right;
    background-size: contain;
    top: calc(clamp(1.875rem, 1.25rem + 3.13vw, 5rem) * -1);
    right: 0;
}

.company_inner table{
    border-collapse: collapse;
	width: 90%;
	max-width: 800px;
	margin: 0 auto;
	margin-bottom: 128px;
}

.company_inner table tr{
	border-bottom: 1px solid #333;
	text-align: left;
	height: 75px;
}

.company_inner table tr:first-child{
    border-top: 1px solid #333;
}

.company_inner table tr th,
.company_inner table tr td{
	padding: 10px 0;
	vertical-align: middle;
}

.company_inner table tr td{
    padding-left: 2em;
}

.company_inner table tr th{
	padding-left: 2em;
}


/* -------------------------------- works -------------------------------- */

article section#works::after{
    content: "";
    width: 50%;
    height: 100%;
    position: absolute;
    background: url(../img/works_bg.svg) no-repeat;
    background-position: top left;
    background-size: contain;
    top: calc(clamp(1.875rem, 1.25rem + 3.13vw, 5rem) * -1);
    left: 0;
}

.works_wrap{
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
    flex-wrap:wrap;
    position: relative;
    z-index: 1;
}

.works_inner{
    flex: 1;
    min-width: 30%;
    margin-bottom: 60px;
}

.works_inner_content_img{
    position: relative;
    margin-bottom: 1em;
}

.works_inner_content_img::after{
    content: "";
    display: block;
    padding-top: 100%;
}

.works_inner_content_img img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    object-fit: cover;
}

.works_inner_content{
    text-align: left;
}

.toggle {
	display: none;
}

@media all and (max-width:767px) {
    .works_wrap{
        flex-direction: column;
    }

    .works_inner{
        margin-bottom: 20px;
    }
    
    .subtitle_btn{
        position: relative;
    }

    .subtitle_btn::before{		/*タイトル横の矢印*/
        content:"";
        width: 0;
        height: 0;
        border-style: solid;
        border-top: 3px solid transparent;
        border-bottom: 3px solid transparent;
        border-left: 4px solid #000;
        border-right: 0;
        position: absolute;
        top:calc( 50% - 3px );
        left: 35%;
        transition: all 0.3s;
    }

    .works_inner_content{
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transform: translateZ(0);
        transition: all 0.3s;
    }

    .works_inner_content {		/*本文*/
        height: 0;
        margin-bottom:10px;
        padding:0 20px;
        overflow: hidden;
    }
	
    .toggle:checked + .label + .works_inner_content{	/*開閉時*/
        height: auto;
        padding:20px ;
        margin-bottom: 40px;
        transition: all .3s;
    }

    .toggle:checked + .label .subtitle_btn::before {
        transform: rotate(90deg) !important;
    }
}

/* -------------------------------- movie -------------------------------- */

.mv_thumb:hover{
    cursor: pointer;
}

.movie_view_pop {
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	z-index: 99999;
	visibility: hidden;
	opacity: 0;
	transition: all 0.8s;
}

.movie_view_pop.visible {
	visibility: visible;
	opacity: 1;
}

.movie_view_pop .wrapper {
	width: 80vw;
	height: 80vh;
	margin: 2rem auto;
	position: relative;
}

.movie_view_pop iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.movie_view_pop .close {
	position: absolute;
	top: 0;
	right: -60px;
	z-index: 9999;
	height: 40px;
	width: 40px;
	cursor: pointer;
}

.movie_view_pop .border1, .movie_view_pop .border2 {
	width: 40px;
	height: 2px;
	background: #fff;
}

.movie_view_pop .border1 {
	transform: rotate(45deg) translate(13px, 13px);
}

.movie_view_pop .border2 {
	transform: rotate(135deg) translate(12px, -12px);
}

@media all and (max-width:767px) {
    .movie_view_pop .close {
        right: 0;
        left: 0;
    }
}

/* -------------------------------- contact -------------------------------- */

article section#contact::after{
    content: "";
    width: 50%;
    height: 100%;
    position: absolute;
    background: url(../img/contact_bg.svg) no-repeat;
    background-position: top right;
    background-size: contain;
    top: calc(clamp(1.875rem, 1.25rem + 3.13vw, 5rem) * -1);
    right: 0;
}

.contact_wrap{
    display: flex;
}

.contact_inner{
    width: 50%;
    position: relative;
    z-index: 3;
}

.contact_inner:first-of-type{
    background: url(../img/Contact.png) no-repeat;
    background-position: bottom center;
    background-size: 50%;
}

.contact_inner p{
    margin-bottom: 1em;
    line-height: 1.8;
    text-align: left;
}

.contact_form_wrap{
	margin: 0 auto;
    font-weight: 700;
}

.contact_form > p{
	font-weight: 400;
}

.contact_form_wrap .required{
	color: #F23A3C;
}

.contact_form_wrap div{
	margin: 45px 0 51px;
}

span.wpcf7-list-item{
	display: block;
	margin: 0 0 1em 0;
	font-weight: 600;
}

.contact_form dt{
	text-align: left;
}

.contact_form dd input{
	width: 100%;
	height: 32px;
	border: #707070 solid 0.5px;
	border-radius: 5px;
    appearance: none;
	-webkit-appearance: none;
}

.contact_form dd  textarea{
	width: 100%;
}

.contact_form_btn{
	text-align: center;
	margin-top: 37px;
    position: relative;
    z-index: 3;
    transition: all 1s;
}

.contact_form_btn input{
	width: 100%;
	height: 50px;
	font-weight: 700;
	text-align: center;
	border: none;
	color: #fff;
	display: block;
    appearance: none;
	-webkit-appearance: none;
    position: absolute;
    z-index: 3;
    background: transparent;
    cursor: pointer;
}

.contact_form_btn::before{
    content:"";
    width:100%;
    height: 50px;
    position:absolute;
    z-index: 2;
    top: 0;
    left:0;
    transition:0.5s;
    background:#000;
}

.contact_form_btn::after{
    content:"";
    width:100%;
    height:50px;
    position:absolute;
    z-index: 1;
    top: 0;
    left:0;
    background:linear-gradient(90deg, #71b2e2,#8f67a9);
}

.contact_form_btn:hover::before{
    opacity:0;
}

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

    .contact_wrap{
        flex-direction: column;
    }

    .contact_inner{
        width: 100%;
    }

    .contact_inner p{
        text-align: center;
    }

    .contact_form_wrap p{
        text-align: left;
    }

    .contact_inner:first-of-type{
        background: none;
    }

    .contact_inner:last-of-type{
        background: url(../img/Contact.png) no-repeat;
        background-position: bottom center;
        background-size: 50%;
        padding-bottom: 60px;
    }

}


/* -------------------------------- footer -------------------------------- */

footer{
    background: #000;
    height: clamp(3.75rem, 2.3rem + 7.25vw, 11rem);
    position: relative;
    color: #fff;
    font-family: var(--font_mvname-title);
}

footer a{
    color: #fff;
}

footer .footer_title{
    font-size: clamp(0.75rem, 0.65rem + 0.5vw, 1.25rem);
    font-weight: 600;
    letter-spacing: 0.49em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    letter-spacing: 0.65em;
    line-height: var(--lineheight_title-text);
}

footer .footer_privacy-policy{
    font-size: clamp(0.625rem, 0.575rem + 0.25vw, 0.875rem);
    font-weight: 400;
    position: absolute;
    bottom: 20px;
    right: 50px;
    letter-spacing: 0.15em;
    line-height: var(--lineheight_title-text);
}

@media all and (max-width:767px) {
    footer .footer_privacy-policy{
        bottom: 5px;
        right: 10px;
    }
}

.product_wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1em;
    row-gap: 10em;
}

.product_wrap .product_item{
    width: calc(100% / 3.3);
    max-width: 500px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.product_wrap .product_item .product_item_img{
    transition: all 0.5s;
}

.product_wrap .product_item > h3{
    margin: 1em 0 0.5em;
}

.product_wrap .product_item > p{
    flex-grow: 1;
    min-height: 3em;
}

.access_btn {
    text-align: right;
    margin-top: 0.5em;
}


.access_btn a{
    background-color: #000;
    color: #fff;
    padding: 0.5em 1em;
    transition: all 0.5s;
}

.access_btn a:hover,
.product_wrap .product_item .product_item_img:hover{
    opacity: 0.5;
}

@media all and (max-width:1023px) {
    .product_wrap .product_item{
        width: 48%;
    }
}


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

    .product_wrap{
        justify-content: center;
        row-gap: 7em;
    }

    .product_wrap .product_item{
        width: 100%;
    }
}