/* ------------------------------------------------------------------------
    Common
------------------------------------------------------------------------  */
/* Anchor Height */
.AH {
	margin-top: -70px;
	padding-top: 70px;
}

/* Header_Btn */
.Header_Btn{}
/* icon */
.Header_Btn a{
    width: 70px;
    height: 50px;
    
    border-left: 1px solid #323232;
    
    display: flex;
    justify-content: center;
    align-items:center;
}
.Header_Btn a i{
    position: relative;
    width: 100%;
}
.Header_Btn a i img{
    width: 30px;
    height: 30px;
    padding-top: 10px;
    padding-bottom: 20px;
    margin: 0 auto;
}
.Header_Btn a i:after{
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0;
    bottom: 0;
    content: 'CONTACT';
    font-size: 10px;
    line-height: 1.5em;
}
.Header_Btn a.XUMA i:after{
    content: 'XUMA公式HP';
}
.Header_Btn a.inquiry i:after{
    content: 'CONTACT';
}
@media screen and (min-width:1024px){
    .Header_Btn a{
        width: 80px;
        height: 60px;
    }
}

/* shadow */
.shadow {
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}


/* ------------------------------------------------------------------------
    Button
------------------------------------------------------------------------  */
.Btm-Btn {
    margin-top: var(--space-30);
}
.Btm-Btn > *{
	display:inline-block;
	width: 100%;
	text-align: center;
}
.color-btn {
	display: inline-block;
	padding: 12px 35px;
	font-weight: 500;
	color: #fff !important;
	background: var(--main-color) !important;
	border-radius: 50px;
	border-color: var(--main-color) !important;
	border-width: 0px;
    
    transition: all .6s;
}
.blue-btn.bg-orange {
	background-color: #f0bd5d !important;
	border-color: #f0bd5d !important;
}
.blue-btn.bg-green {
	background-color: var(--color-green) !important;
	border-color: #3CB371 !important;
}


.Download {
    position: relative;
    padding-right: 30px;
}
.Download:after {
    position: absolute;
    right: 0;
    top:50%;
    transform: translateY(-50%);
    content: '';
    width: 16px;
    height: 20px;
    background-image: url("../images/download.svg");
    background-repeat: no-repeat;
    background-size: cover;
}

/* ------------------------------------------------------------------------
    MV
------------------------------------------------------------------------  */
#MV {
    position: relative;
    overflow: hidden;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.parallax {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/mv_image02.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -3;
    transform: translateZ(0);
    will-change: transform; /* この行を追加 */
}

#MV:after {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -2;
}


#MV .container > *{
    display: flex;
    justify-content: center;
}
#MV h2{
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}
#MV p{
    color: #fff;
}
@media screen and (min-width:769px){
    #MV {
        height: 400px;
    }
    #MV h2{
        font-size: 30px;
    }
}

/* ------------------------------------------------------------------------
    SELECT_SERVICE
------------------------------------------------------------------------  */
#SELECT_SERVICE {}
#SELECT_SERVICE h2{
    margin-bottom: var(--space-20);
}
/* BASE */
#SELECT_SERVICE .Service{
    display: flex;
    flex-wrap: wrap;
    row-gap:20px;
    column-gap:20px;
}
#SELECT_SERVICE .Service .Item{
    width: 100%;
    border-radius: 15px;
    border: 2px solid #ccc;
    box-sizing: border-box;
    padding: var(--space-15);
    transition: all .3s;
}
@media screen and (min-width:1024px){
    #SELECT_SERVICE .Service{
        flex-wrap: nowrap;
    }
    #SELECT_SERVICE .Service .Item{
        flex: 1;
    }
    #SELECT_SERVICE .Service .Item:nth-child(1):hover{
        border-color: var(--main-color);
        background: #fcfcfc;
    }
    #SELECT_SERVICE .Service .Item:nth-child(2):hover{
        border-color: var(--color-green);
        background: #fcfcfc;
    }
    #SELECT_SERVICE .Service .Item:nth-child(3):hover{
        border-color: var(--color-beige);
        background: #fcfcfc;
    }
}
/* Icon */
.IconBox {
    width: 64px;
    aspect-ratio: 1;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1em;
}
.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.IconBox.Main {
    background: var(--main-color);
}
.IconBox.Green {
    background: var(--color-green);
}
.IconBox.Beige {
    background: var(--color-beige);
}


/* Title */
.Service_Name {
    font-size: 1.25em;
    font-weight: 700;
    margin-bottom: 1em;
}
.Service_SubName {
    font-size: .875em;
    color: #999;
}
.Service_Message {
}
.Service_Cost {
    margin-top: 1em;
    padding-top: 1em;
    border-top: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    row-gap:.5em;
}
.Service_Cost p{
    display: flex;
    font-size: .875em;
    line-height: 1.5em;
    font-weight: 700;
}
.Service_Cost p span{
    min-width: 7em;
}

/* ------------------------------------------------------------------------
    SERVICE
------------------------------------------------------------------------  */
#SERVICE {}
.Service{
    position: relative;    
}
.Service:not(:last-child){
    margin-bottom: var(--space-50);
}
.Service .container{
    position: relative;
}
.Service .container .Item{
    width: 100%;
}
.Service .container .Item.Detail .Message{
}
.Service .PC {}
.Service .SP {}
@media screen and (max-width:1023px){
    .Service .PC {display: none;}
    .Service .container .Item.Image{
        margin-bottom: 30px;
    }
}
@media screen and (min-width:1024px){
    .Service .SP {display: none;}
    .Service .container .Item.Detail{
        padding-top: 50px;
    }
    .Service .container .Item.Detail .Message{
        max-width: calc(100% - 340px);
        padding-left: 1em;
    }
    .Service .container .Item.Image{
        position: absolute;
        right: 0;
        top: 0;
        width: 300px;
        z-index: -1;
    }
}
/* Service_Message */
.Service .Message .Message_Title {
    font-size: 1.25em;
    font-weight: 500;
    margin-bottom: 1em;
}

/* Service_image */
.Service .Service_Image {
    position: relative;
    margin-top: var(--space-20);
}
.Service .Service_Image:before {
    position: absolute;
    left: 0;
    top: 50%;
    content: '';
    width: 100%;
    height: 60%;
    transform: translateY(-50%) scale(0,1);
    transform-origin: left;
    background: var(--main-color);
    z-index: -1;
    transition: all .8s;
}
.Service .Service_Image.active:before {
    transform: translateY(-50%) scale(1,1);
}
.Service .Service_Image .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.Service .Service_Image .Image01{
    max-width: calc(100% / 2.5);
}
.Service .Service_Image .Message{
    position: relative;
    color: #fff;
    font-weight: 500;
    text-align:center;
    line-height: 1.3em;
}
.Service .Service_Image .Message:after {
    position: absolute;
    right: -1em;
    top: 50%;
    content: '';
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-left: 6px solid #fff;
    border-right: 0;
}
.Service .Service_Image .Image02{
    max-width: calc(100% / 4);
}
@media screen and (min-width:769px){
    .Service .Service_Image:before {
        height: 40%;
    }
    .Service .Service_Image .container{
        padding-right: 7%;
    }
    .Service .Service_Image .Image01{
        max-width: calc(100% / 3);
    }
    .Service .Service_Image .Message{
        font-size: 1.125em;
    }
    .Service .Service_Image .Message:after {
        right: -1.5em;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 10px solid #fff;
    }
    .Service .Service_Image .Image02{
        max-width: calc(100% / 5);
    }
}

/* Example */
.Service .Example {
    position: relative;
    display: flex;
    
    margin-top: var(--space-20);
    margin-bottom: var(--space-20);
}
.Service .Example .Block{
    margin-top: 0;
    margin-bottom: 0;
}
@media screen and (min-width:1024px){
    .Service .Example {
        padding-top: 4em;
        justify-content: center;
    }
    .Service .Example .Block{
        position: absolute;
        top: 1.5em;
        margin-left: 5%;
    }
}
/* Title */
.Service .Example .Block .Sub{
    display: inline-block;
    font-weight: 500;
    transform: rotate(-10deg);
    color: #fff;
    padding: 0 .5em;
    border-radius: 5px;
    background: var(--main-color);
    
    margin-bottom: 1em;
}
.Service .Example .Block .Block_Title{
    position: relative;
    font-weight: 500;
    font-size: 1.5em;
    letter-spacing: 0.1em;
    color: var(--main-color);
    margin-bottom: .5em;
    padding: 0 .25em;
    text-align: center;
}
.Service .Example .Block .Block_Title:before,
.Service .Example .Block .Block_Title:after{
    position: absolute;
    top: 50%;
    content: '';
    
    width: 2px;
    height: 100%;
    background: var(--main-color);
}
.Service .Example .Block .Block_Title:before {
    left: 1em;
    transform: rotate(-15deg) translateY(-50%);
}
.Service .Example .Block .Block_Title:after {
    right: 1em;
    transform: rotate(15deg) translateY(-50%);
}
.Service .Example .Block .Block_Title span{
    color: var(--base-color);
    font-size: .875em;
}

/* Text */
.Service .Example .Block .Text{
    display: flex;
}
.Service .Example .Block .Text p{
    line-height: 1.5em;
}
.Service .Example .Block .Text p:nth-child(1){
    width: 1.5em;
}

@media screen and (min-width:1024px){
    .Service .Example .Block .Sub{
        margin-left: .5em;
    }
    /* Title */
    .Service .Example .Block .Block_Title{
        padding-left: 1em;
        padding-right: 1em;
        font-size: 2em;
    }
    .Service .Example .Block .Block_Title span{
        font-size: .75em;
    }
    .Service .Example .Block .Block_Title:before {
        left: 0;
    }
    .Service .Example .Block .Block_Title:after {
        right: 0;
    }
}
/* ------------------------------------------------------------------------
    LINEUP
------------------------------------------------------------------------  */
#LINEUP{
    margin-bottom: 0;
}
#LINEUP .Lineup_Block:not(:last-child) {
    padding-bottom: var(--space-30);
    margin-bottom: var(--space-30);
}
#LINEUP .Main_Contents{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap:20px;
}
/* IMAGE */
#LINEUP .Main_Contents .Image{
    border-radius: 5px;
    overflow: hidden;
}
/* TEXT */
#LINEUP .Main_Contents .Text{
}
#LINEUP .Main_Contents .Text .title_area{
    margin-bottom: 1.5em;
    position: relative;
}
#LINEUP .Main_Contents .Text .title_area h3{
    position: relative;
    font-size: 1.5em;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 1.3em;
    margin-bottom: .5em;
    padding-left: 60px;
}
#LINEUP .Main_Contents .Text .title_area h3 span{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    width: 50px;
    aspect-ratio: 1;
    font-weight: 500;
    font-size: .875em;
    background: var(--main-color);
    border-radius: 5px;
}
/* color */
#LINEUP #SERVICE1 .Main_Contents .Text .title_area h3 span{
    background: var(--main-color);
}
#LINEUP #SERVICE2 .Main_Contents .Text .title_area h3 span{
    background: var(--color-green);
}
#LINEUP #SERVICE3 .Main_Contents .Text .title_area h3 span{
    background: var(--color-beige);
}

#LINEUP .Main_Contents .Text .title_area:before{
    position: absolute;
    left: 0;
    bottom: -10px;
    content: '';
    width: 3em;
    height: 1px;
    background: var(--main-color);
}

#LINEUP .Main_Contents .Text .title_area p{
    font-size: 1.125em;
    font-weight: 500;
    color: var(--main-color);
}
/* color */
#LINEUP #SERVICE1 .Main_Contents .Text .title_area p{
    color: var(--main-color);
}
#LINEUP #SERVICE2 .Main_Contents .Text .title_area p{
    color: var(--color-green);
}
#LINEUP #SERVICE3 .Main_Contents .Text .title_area p{
    color: var(--color-beige);
}

.system {
    display: flex;
    border: 1px solid #666;
    margin-bottom: 1em;
}
.system p{
    padding: 5px 1em;
    box-sizing: border-box;
    line-height: 1.5em;
    font-size: .875em;
}
.system p:nth-child(1){
    background: #666;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10em;
}
.system p:nth-child(2){
    flex: 1;
}

/* OVERVIEW */
#LINEUP .Overview{
    position: relative;
    margin-top: var(--space-30);
    padding-top: var(--space-30);
    padding-bottom: var(--space-30);
}
#LINEUP .Overview:before{
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    background: var(--main-color);
    width: 0;
    height: 100%;
    z-index: -2;
    
}
#LINEUP .Overview:before{
    transition: all .8s;
}
#LINEUP .Overview.active{
    opacity: 1;
}
#LINEUP .Overview.active:before{
    width: 100%;
}
#LINEUP .Overview .Mov{
    max-width: 950px;
    margin: 0 auto;
}

#LINEUP .Overview .Detail{
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    grid-row-gap: 20px;
    margin-top: var(--space-20);
    margin-bottom: var(--space-20);
}
#LINEUP .Overview .Detail .Item{
    width: 100%;
    color: #fff;
}
#LINEUP .Overview .Heading02{
    color: #fff;
}
#LINEUP .Overview .Heading02:before, 
#LINEUP .Overview .Heading02:after {
    background: #fff;
}

#LINEUP .Overview .Message{
    color: #fff;
}
#LINEUP .Overview .Price{
    text-align: center;
    color: #fff;
}
#LINEUP .Overview .Message,
#LINEUP .Overview .Form-Btn{
    margin-top: var(--space-20);
    margin-bottom: var(--space-20);
}
@media screen and (max-width:1023px){
    #LINEUP .Main_Contents .Image{
        width: 100%;
        margin-bottom: 1em;
    }
    #LINEUP .Main_Contents .Text{
        width: 100%;
    }
    #LINEUP .Overview .Message{
        margin-top: 0;
    }
}
@media screen and (min-width:1024px){
    #LINEUP .Overview:before{
    }
    #LINEUP .Main_Contents .Image{
        flex: 1;
    }
    #LINEUP .Main_Contents .Text{
        flex: 1;
    }
    #LINEUP .Main_Contents{
        max-width: 90%;
        margin: 0 auto;
    }
    #LINEUP .Lineup_Block:nth-child(odd) .Main_Contents .Image{
        order: 2;
    }
    #LINEUP .Lineup_Block:nth-child(odd) .Main_Contents .Text{
        order: 1;
    }
    #LINEUP .Overview .Detail .Item{
        max-width: calc( (100% - 40px) / 3 );
    }
}

/* Box */
.Box{
    display: flex;
    flex-wrap: wrap;
    row-gap:20px;
    column-gap:20px;
    margin-bottom: 1.5em;
}
.Box .Item{
    width: 100%;
    display: flex;
    border: 1px solid #fff;
    box-sizing: border-box;
    text-align: center;
    font-weight: 500;
    color: #fff;
}
.Box .Item p{
    padding: 5px 1em;
    display: flex;
    justify-content: center;
}
.Box .Item p:nth-child(1){
    width: 10em;
    background: #fff;
    color: var(--main-color);
}
.Box .Item p:nth-child(2){
    flex: 1;
}
.Box .Item.Full p:nth-child(1){
    width: 20em;
}
@media screen and (max-width:600px){
    .Box .Item{
        flex-wrap: wrap;
    }
    .Box .Item p{
        width: 100% !important;
    }
}
@media screen and (min-width:1024px){
    .Box .Item{
        flex: calc( (100% - 20px) / 2 );
    }
}

/* SLICK */
.slider {
}
@media screen and (min-width:769px){
    .slider {
        width: 80%;
        margin: auto;
    }
}
.slider .slick-slide {
    transition: transform 0.3s, opacity 0.3s; /* アニメーションのスムーズ化 */
    transform: scale(0.9); /* デフォルトは小さめ */
    padding: 10px 0;
}
.slider .slick-slide{
    width: 100%;
    height: 320px;
    border-radius: 3px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.slider .slick-slide.slick-center {
    transform: scale(1); /* アクティブなスライドは元のサイズ */
    opacity: 1; /* 不透明度100% */
}

.slider .slick-slide:not(.slick-center) {
    opacity: .5;
}
.slick-next.slick-disabled:before, .slick-prev.slick-disabled:before {
    opacity: 0 !important;
}
.slider .slick-center {
  opacity: 1;
}
.slick-prev, .slick-next {
  z-index: 1000;
}
.slick-slide {
}
/* Item */
.Slide_Item {
    position: relative;
}
.Slide_Item .Text_Area{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    padding: 1.5em .5em;
    box-sizing: border-box;
    text-align: center;
    line-height: 1.5em;
    font-weight: 500;
    color: #fff;
    transition: all .6s;
    opacity: 1;
}
.Slide_Item .Text_Area:before{
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(77, 193, 183, .8);
    transition: all .6s;
    opacity: 1;
    z-index: -1;
}
.slider .slick-slide:not(.slick-center).Slide_Item .Text_Area{
    opacity: 0;
}
.slider .slick-slide:not(.slick-center).Slide_Item .Text_Area:before{
    width: 0;
}
@media screen and (min-width:769px){
    .Slide_Item .Text_Area{
        font-size: 1.125em;
        font-weight: 500;
        
    }
}


/* ------------------------------------------------------------------------
    CUSTOM
------------------------------------------------------------------------  */
#CUSTOM{}
#CUSTOM .example {
    position: relative;
    margin-top: var(--space-20);
    margin-bottom: var(--space-20);
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
}
#CUSTOM .example:before {
    position: absolute;
    left: 50%;
    top: 0;
    content: '';
    width: 100vw;
    height: 100%;
    transform: translateX(-50%) scale(0,1);
    transform-origin: left;
    transition: all .8s;
    background: var(--sub4-color);
    z-index: -3;
}
#CUSTOM .example.active:before {
    transform: translateX(-50%) scale(1,1);
}


/* ------------------------------------------------------------------------
    SAMPLE
------------------------------------------------------------------------  */
/* Button */
.Sample_Button {
    position: relative;
    margin-top: var(--space-40);
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
}
.Sample_Button:before {
    position: absolute;
    left: 50%;
    top: 0;
    content: '';
    background: var(--sub4-color);
    width: 100vw;
    height: 100%;
    transform: translateX(-50%) scale(0,1);
    transform-origin: left;
    transition: all .8s;
    z-index: -2;
}
.Sample_Button.active:before {
    transform: translateX(-50%) scale(1,1);
}
.Sample_Button .Message ,
.Sample_Button .Button{
    display: flex;
    justify-content: center;
}
.Sample_Button .Message {
    margin-bottom: 1em;
    font-size: .875em;
    line-height: 1.5em;
}
.Sample_Button .Button a{
	position: relative;
	width: 100%;
    max-width: 320px;
    padding-top: .5em;
    padding-bottom: .5em;
    padding-right: 1em;
    padding-left: 1em;
	border-radius: 999px;
    text-align: center;
    box-sizing: border-box;
	
    background: var(--main-color);
    color: #fff;
	border: 1px solid #fff;
	font-size: 14px;
	cursor: pointer;
}
.Sample_Button .Button a:hover{
    opacity: .7;
    background: #fff;
    color: #323232;
    border: 1px solid var(--main-color);
}

.Sample_Button .Image{
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-10%);
    width: 200px;
    opacity: 0;
    transition: all 1s;
}
.Sample_Button .Image.active{
    transform: translateY(-50%);
    opacity: 1;
}
@media screen and (max-width:768px){
    .Sample_Button .Image{
        display: none;
    }
}

/* ------------------------------------------------------------------------
    List
------------------------------------------------------------------------  */
.List {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1em;
    row-gap:1.5em;
}
.List .Item {
    width: 100%;
    display: flex;
    column-gap: 1em;
}
.List .Item .Num{
    width: 1.5em;
    height: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
}
.List .Item .Message{
    width: calc(100% - 2.5em);
}
.List .Item .Message span{
    display: block;
    font-size: 1.25em;
    font-weight: 700;
    margin-bottom: .5em;
}
/* Contents */
.List .Item .Num{
    
    text-align: center;
    font-weight: 500;
    font-size: 1.5em;
    background: rgba(255,255,255,.7);
    color: #333;
    margin-bottom: 1em;
}
@media screen and (max-width:1023px){
    .List .Item .Num{
        border-radius: 5px;
    }
}
@media screen and (min-width:1024px){
    .List .Item {
        flex: 1;
        display: block;
    }
    .List .Item .Num,
    .List .Item .Message{
        width: 100%;
    }
    .List .Item .Num{
        padding: .5em 0;
        font-size: 2em;
        clip-path: polygon(95% 0%, 100% 50%, 95% 100%, 0% 100%, 5% 50%, 0% 0%);
    }
}

/* ------------------------------------------------------------------------
    NUMBER_USE
------------------------------------------------------------------------  */
#NUMBER_USE{
}
#NUMBER_USE .List{
    display: flex;
    flex-wrap: wrap;
    column-gap: 1em;
    row-gap:1.5em;
}
#NUMBER_USE .List .Item{
    width: 100%;
}
#NUMBER_USE .List .Item h3{
    display: flex;
    column-gap: .5em;
    align-items: center;
    font-size: 1.35em;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 1.5em;
    margin-bottom: 1.5em;
}
#NUMBER_USE .List .Item h3 span{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    width: 1.5em;
    height: 1.5em;
    font-weight: 500;
    font-size: .875em;
    background: var(--main-color);
    border-radius: 5px;
}
#NUMBER_USE .List .Item .Num{
    text-align: end;
    font-weight: 500;
    font-size: 1.125em;
    letter-spacing: 0.1em;
}
#NUMBER_USE .List .Item .Num span{
    font-size: 2.5em;
    vertical-align: baseline;
}
#NUMBER_USE .Caution {
    display: flex;
    justify-content: center;
    margin-top: 2em;
    padding: 5px;
    box-sizing: border-box;
    background: rgba(235,235,235,1);
    border-radius: 7px;
}
@media screen and (min-width:1024px){
    #NUMBER_USE .List .Item{
        flex: 1;
    }
    #NUMBER_USE .List .Item .Num{
        text-align: center;
    }
}

/* ------------------------------------------------------------------------
    ABOUT
------------------------------------------------------------------------  */
/* About Us */
ul.About-List {
    display: flex;
    flex-wrap: wrap;
    column-gap:1em;
}
ul.About-List li{
    width: 100%;
}
@media screen and (min-width:1024px){
    ul.About-List li{
        flex: 1;
    }
}
ul.About-List li{
	box-sizing:border-box;
}
.about_ttl {
	background:#323232;
	color:#fff;
	padding:.1em 0;
	text-align:center;
	margin-bottom:1em;
}
.about_txt {
	padding-left:.5em;
	padding-right:.5em;
}


/* ------------------------------------------------------------------------
    IDEA / SUPPORT
------------------------------------------------------------------------  */
#IDEA .container,
#SUPPORT .container{
    display: flex;
    row-gap:20px;
    align-items: center;
}
#IDEA .container .Item,
#SUPPORT .container .Item{
    width: 100%;
}
#IDEA .container .Item.Image,
#SUPPORT .container .Item.Image{
    
}
#IDEA .container .Item.Image img,
#SUPPORT .container .Item.Image img{
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}
@media screen and (max-width:768px){
    #IDEA .container,
    #SUPPORT .container{
        flex-wrap: wrap;
    }
    #IDEA .container .Item.Image img,
    #SUPPORT .container .Item.Image img{
        width: 160px;
    }
}
@media screen and (min-width:769px){
    #IDEA .container,
    #SUPPORT .container{
        justify-content: space-between;
    }
    #IDEA .container .Item.Image,
    #SUPPORT .container .Item.Image{
        width: 250px;
    }
    #IDEA .container .Item.TxtArea,
    #SUPPORT .container .Item.TxtArea{
        width: calc(100% - 290px);
    }
    #SUPPORT .container .Item.Image{
        order: 2;
    }
    #SUPPORT .container .Item.TxtArea{
        order:1;
    }
}

/* ------------------------------------------------------------------------
    CONTACT US
------------------------------------------------------------------------  */
#CONTACT_US {
    position: relative;
    margin-top: var(--space-40);
    padding-top: var(--space-30);
    padding-bottom: var(--space-30);
    margin-bottom: 0;
    color: #fff;
}
#CONTACT_US:before{
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    background: var(--main-color);
    width: 0;
    height: 100%;
    z-index: -2;
    transition: all .8s;
}
#CONTACT_US.active:before{
    width: 100%;
}

#CONTACT_US h3{
    width: 100%;
    position: relative;
    padding: .5em 1em;
    box-sizing: border-box;
    text-align: center;
    font-size: 1.5em;
    font-weight: 500;
    margin-bottom: var(--space-20);
    color: #fff;
}

#CONTACT_US .Message{
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-20);
}
#CONTACT_US .Message span{
    font-size: 1.25em;
    font-weight: 500;
    color: chocolate;
    margin-right: 5px;
    margin-left: 5px;
}
#CONTACT_US .Message span em{
    display: inline-block;
    font-size: 1.5em;
    vertical-align: baseline;
    padding: 0 3px;
}

/* ------------------------------------------------------------------------
    LIST
------------------------------------------------------------------------  */
#LIST {
}
#LIST .Block{
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap:30px;
}
#LIST .Block .Item{
    width: 100;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0px 0px 15px -5px #777777;
}
@media screen and (min-width:769px){
    #LIST .Block .Item{
        position: relative;
        width: calc( (100% - 60px) / 3 );
    }
}

/* IMAGE */
#LIST .Block .Item .Image{
    position: relative;
    width: 100%;
    height: 200px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-sizing: border-box;
    
    display: flex;
    justify-content: center;
    align-items: center;
}
#LIST .Block .Item.Nego .Image::before{
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
}
#LIST .Block .Item.Nego .Image::after{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    content: '交渉中';
    text-align: center;
    background: rgba(0,0,0,.5);
    padding: .5em 0;
    color: #fff;
    font-size: 1.25em;
    font-weight: 700;
}

/* TEXT */
#LIST .Block .Item .Text{
    padding: var(--space-15);
    box-sizing: border-box;
}
#LIST .Block .Item .Text .Name{
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: .5em;
    line-height: 1.5em;
    color: var(--main-color);
}
#LIST .Block .Item .Text .Message{
    margin-bottom: 1em;
}

/* Price */
#LIST .Block .Item .Price{
    padding: var(--space-15);
    margin-top: .5em;
    border-top:1px solid #ccc;
    font-weight: 500;
}
#LIST .Block .Item .Price .Heading{
    font-size: .875em !important;
    color: #999;
    margin-bottom: 0;
}

/* Btn */
#LIST .Block .Item .Btn{
    background: var(--main-color);
    padding: .5em 0;
}
@media screen and (min-width:769px){
    #LIST .Block .Item .Btn{
        width: 100%;
    }
}
