/* ------------------------------------------------------------------------
    Common
------------------------------------------------------------------------  */
/* Anchor Height */
.AH {
	margin-top: -80px;
	padding-top: 120px;
}
@media screen and (min-width:1024px){
    .AH {
	    margin-top: -110px;
	    padding-top: 140px;
    }
}

/* shadow */
.shadow {
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

/* Slick */
.slick-slider {
    visibility: hidden;
}
.slick-slider.slick-initialized {
    visibility: visible !important;
}
.slick-slider .slick-track, .slick-slider .slick-list {
    height: 100%;
}
.slick-track {
	display: flex;
}
.slick-slide {
    position: relative;
	height: inherit;
}
.slick-current{
}
.hide-until-init {
    visibility: hidden;
}
.hide-until-init.slick-initialized {
    visibility: visible;
}

/*** Message_Contents ***/
.Message_Contents{
    position: relative;
    border-radius: 10px;
    background: #fff;
    padding: var(--space-15);
}

.Message_Contents > *{
}
@media(min-width: 1024px) {
    .Message_Contents{
        display: flex;
        column-gap:60px;
    }
    .Message_Contents::after{
        position: absolute;
        left: 50%;
        top: 20px;
        content: '';
        width: 1px;
        height: calc(100% - 40px);
        background: var(--sub-color);
    }
    .Message_Contents > *{
        flex: 1;
    }
}

/* Button */
.Btn_Area{    
    display: flex;
    column-gap:20px;
}
.Btn_Area .Prev .icon-arrow ,
.Btn_Area .Prev_thumb .icon-arrow {
    transform: rotate(180deg);
}
@media(min-width: 1024px) {
    .Btn_Area .Arrow:hover{
        background: none;
        opacity: 1 !important;
    }
    .Btn_Area .Arrow svg{
        transition: all .6s;
    }
    .Btn_Area .Arrow:hover svg{
        color: var(--color-white);
    }
    
}

/* ------------------------------------------------------------------------
    MV
------------------------------------------------------------------------  */
/* BASE */
#MV {
    display: flex;
    width: 100%;
    height: calc(100svh - 110px);
    min-height: 680px;
    margin-top: 15px;
}
#MV .Image_Area{
    height: 100%;
    display: flex;
    overflow: hidden;
}
#MV .Catch_Area{
    flex: 1;
    box-sizing: border-box;
    padding-top: 30px;
    /* animation */
    animation: ConceptIn 1s both;
    animation-delay: 1s;
}

@media screen and (max-width:768px){
    #MV {
        min-height: 410px;
    }
    #MV .Image_Area{
        flex-direction: column;
        width: calc(100% - 90px);
        border-radius: 0 40px 40px 0;
    }
    #MV .Catch_Area{
        width: 90px;
        padding-left: 15px;
    }
}
@media screen and (min-width:769px) and ( max-width:1023px) {
    #MV {
        min-height: 570px;
    }
    #MV .Image_Area{
        width: calc(100% - 150px);
        border-radius: 0 40px 40px 0;
    }
    #MV .Catch_Area{
        width: 150px;
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media screen and (min-width:1024px){
    #MV .Image_Area{
        border-radius: 0 60px 60px 0;
    }
    #MV .Catch_Area{
        padding-left: 30px;
        padding-right: 30px;
    }
}
@media screen and (min-width:1024px) and ( max-width:1830px) {
    #MV .Image_Area{
        width: calc(100% - 225px);
    }
}
@media screen and (min-width:1831px){
    #MV .Image_Area{
        width:calc( ( (100% - 1370px) / 2 ) + 1370px );
    }
}


/* IMAGE */
#MV .Image_Area .Item{
    flex: 1;
}
#MV .Image_Area .Item .Image{
    position: relative;
    height: 100%;
}
#MV .Image_Area .Item:nth-child(1) .Image{ /* animation */
    animation: fadeInImage 1.5s both;
}
#MV .Image_Area .Item:nth-child(2) .Image{ /* animation */
    animation: fadeInImage 1.5s both;
    animation-delay: .5s;
}
#MV .Image_Area .Item .Image img{
    display: none;
}
#MV .Image_Area .Item .Image::before{
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -2;
}
#MV .Image_Area .Item .Image::after{
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    z-index: -1;
}
#MV .Image_Area .Item:nth-child(1) .Image::before{
    background-image: url("../images/mv_image01.jpg");
}
#MV .Image_Area .Item:nth-child(2) .Image::before{
    background-image: url("../images/mv_image02.jpg");
}
#MV .Image_Area .Item:nth-child(1) .Image::after{
    background: rgba(115,75,35,.3);
}
#MV .Image_Area .Item:nth-child(2) .Image::after{
    background: rgba(0,0,0,.3);
}

#MV .Image_Area .Item {
    position: relative;
}
#MV .Image_Area .Item .Year{
    position: absolute;
    right: 20px;
    bottom: 20px;
    
    font-size: 4em;
    line-height: 1em;
    color: #fff;
    text-align: right;
    letter-spacing: .075em;
    font-weight: 700;
    
    opacity: .6;
    z-index: 2;
}
#MV .Image_Area .Item .Year span:not(#yearCount){
    display: block;
    font-size: .5em;
}
@media screen and (min-width:769px){
    #MV .Image_Area .Item .Year{
        right: 40px;
        bottom: 40px;
    }
}


/* CATCH */
#MV .Catch_Area .Contents{
    display: inline-flex;
    align-items: center;
    max-width: 150px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    -webkit-writing-mode: vertical-rl;
    -webkit-text-orientation: upright;
    -ms-writing-mode: tb-rl;
}
#MV .Catch_Area .Contents span {
    color: var(--main-color);
    font-size: 2em;
    line-height: 1em;
    
    writing-mode: horizontal-tb;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    text-orientation: mixed;
    display: inline-block;
}
#MV .Catch_Area .Image{
    margin-bottom: 1.5em;
}
#MV .Catch_Area .Image img{
    max-width: 70px;
}
#MV .Catch_Area h2{
    text-align: center;
    font-size: 1.25em;
    letter-spacing: .15em;
}
@media screen and (min-width:769px){
    #MV .Catch_Area h2{
        font-size: 2em;
        letter-spacing: .05em;
    }
}
@media screen and (min-width:769px) and ( max-width:1023px) {
    #MV .Catch_Area .Image img{
        max-width: 100px;
    }
}
@media screen and (min-width:1024px){
    #MV .Catch_Area .Image img{
        max-width: 130px;
    }
}

/* animation */
@keyframes ConceptIn {
    from {
        margin-left: -10px;
        opacity: 0;
    }
    to {
        margin-left: 0;
        opacity: 1;
    }
}
@keyframes fadeInImage {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeInText {
    from {
        opacity: 0;
    }
    to {
        opacity: .6;
    }
}

/* Add style */
#MV .Image_Area .Item .Image {
        overflow: hidden;
    }
    #MV .Image_Area .Item .Image::before {
        filter: blur(3px);
    }
    #MV .Image_Area .Item:nth-child(1) .Image::after ,
    #MV .Image_Area .Item:nth-child(2) .Image::after {
        background: rgba(0,0,0,.3);
    }
    #MV .Image_Area .Item .Item_Image {
        position: absolute;
        left: 50%;
        top: 10%;
        width: 90%;
        transform:translateX(-50%);
        z-index: 2;
    }
    #MV .Image_Area .Item .Year {
        font-weight: 300;
        font-size: 5.5em;
        line-height: .75em;
    }
    #MV .Image_Area .Item .Year span:not(#yearCount){
        display: block;
        font-size: .5em;
        
    }
    @media screen and (min-width:769px){
        #MV .Image_Area .Item .Item_Image {
            top: 50%;
            transform: translate(-50%,-50%);
        }
    }

/* ------------------------------------------------------------------------
    MESSAGE
------------------------------------------------------------------------  */
#MESSAGE{}
#MESSAGE h3 span {
    color: #129b0c;
}
#MESSAGE .container {
    display: flex;
    align-items: center;
    row-gap:40px;
    column-gap:10%;
}
#MESSAGE .container > *{
    width: 100%;
}
#MESSAGE .container .Message{
}
#MESSAGE .container .Image{
    width: 70%;
}
#MESSAGE .container .Image img{
    border-radius: 10px;
    overflow: hidden;
}
#MESSAGE .container .Image .Name{
    font-size: 1.5em;
    font-weight: 500;
    text-align: right;
    line-height: 1em;
    margin-top: .5em;
}
#MESSAGE .container .Image .Name span{
    font-size: .6em;
    display: block;
}
@media screen and (max-width:1023px){
    #MESSAGE .container {
        flex-direction: column;
        align-items: center;
    }
    #MESSAGE .container .Message{
        order: 2;
    }
    #MESSAGE .container .Image{
        order: 1;
        max-width: 260px;
    }
}
@media screen and (min-width:1024px){
    #MESSAGE .container .Message{
        flex: 1;
    }
    #MESSAGE .container .Image{
        width: 360px;
    }
}

/* ------------------------------------------------------------------------
    HISTORY
------------------------------------------------------------------------  */
#HISTORY {}
#HISTORY h3 span {
    color: var(--main-color);
}

/* BLOCK */
#HISTORY .Block {
    position: relative;
    padding-top: var(--space-30);
    padding-bottom: var(--space-30);
    overflow: hidden;
}
#HISTORY .Block:not(:last-child) {
    margin-bottom: var(--space-30);
}
#HISTORY .Block::before ,
#HISTORY .Block::after {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    border-radius: 0 60px 60px 0;
    overflow: hidden;
    height: 100%;
}
/* padding */
@media screen and (max-width:1023px){
    #HISTORY .Block.Item_Block .Contents ,
    #HISTORY .Block.Technology_Block .Contents{
        padding-right:var(--container-side);
    }
    #HISTORY .Block.Method_Block .Contents{
        padding-left:var(--container-side);
    }
}
@media screen and (min-width:1024px){
    #HISTORY .Block.Item_Block .Contents ,
    #HISTORY .Block.Technology_Block .Contents{
        padding-right:40px;
    }
    #HISTORY .Block.Method_Block .Contents{
        padding-left:40px;
    }
}

/* size */
@media screen and (max-width:1023px){
    #HISTORY .Block::before ,
    #HISTORY .Block::after {
        width: 95%;
    }
}
@media screen and (min-width:1024px) and ( max-width:1400px) {
    #HISTORY .Block::before ,
    #HISTORY .Block::after {
        width: calc( 100% - 25px );
    }
}
@media screen and (min-width:1401px){
    #HISTORY .Block::before ,
    #HISTORY .Block::after {
        width: calc( ( (100% - 1370px) / 2 ) + 1370px );
    }
}

#HISTORY .Block::before {
    background-position: left 50% top 0;
    background-size: 130% auto;
    opacity: .5;
    z-index: -2;
}
#HISTORY .Block::after {
    background: rgba(255, 255, 255, 1);
    z-index: -1;
    transition: all 1.5s;
}
#HISTORY .Block.active::after {
    background: rgba(76, 26, 0, 0.4);
}

/* Method_Block */
#HISTORY .Block.Method_Block::before ,
#HISTORY .Block.Method_Block::after {
    left: inherit;
    right: 0;
    top: 0;
    border-radius: 60px 0 0 60px;
}

@media screen and (max-width:768px){
    #HISTORY .Block.Item_Block::before {
        background-image: url("../images/history_bg01_sp.jpg");
    }
    #HISTORY .Block.Method_Block::before {
        background-image: url("../images/history_bg02_sp.jpg");
    }
    #HISTORY .Block.Technology_Block::before {
        background-image: url("../images/history_bg03_sp.jpg");
    }
}
@media screen and (min-width:769px){
    #HISTORY .Block.Item_Block::before {
        background-image: url("../images/history_bg01_pc.jpg");
    }
    #HISTORY .Block.Method_Block::before {
        background-image: url("../images/history_bg02_pc.jpg");
    }
    #HISTORY .Block.Technology_Block::before {
        background-image: url("../images/history_bg03_pc.png");
    }
}


/* BLOCK */
#HISTORY .Contents {
    display: flex;
    justify-content: space-between;
    row-gap:var(--space-20);
    flex-wrap: wrap;
}
#HISTORY .Contents .Item{
    width: 100%;
}
#HISTORY .Contents .Item.Main{
}
#HISTORY .Contents .Item.Concept{
    position: relative;
    box-sizing: border-box;
    padding-bottom: 70px;
    padding-top: 1.5em;
    color: #FFF;
}
#HISTORY .Contents .Item.Thumb{
    position: relative;
}
#HISTORY .Contents .Item.Message{
}

#HISTORY .Contents .Item .Image{
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
#HISTORY .Contents .Item .Image img{
    display: none;
}
#HISTORY .Contents .Item.Concept .Btn{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 400px;
}
@media screen and (max-width:768px){
    #HISTORY .Contents .Item.Main{
        padding:  0 40px;
        order: 1;
    }
    #HISTORY .Contents .Item.Concept{
        order: 3;
    }
    #HISTORY .Contents .Item.Thumb{
        order: 2;
    }
    #HISTORY .Contents .Item.Message{
        order: 4;
    }
}
@media screen and (min-width:769px){
    #HISTORY .Contents .Item.Main{
        max-width: 42%;
    }
    #HISTORY .Contents .Item.Concept{
        
        max-width: 53%;
    }
    #HISTORY .Contents .Item.Thumb{
    }
    #HISTORY .Contents .Item.Message{
    }
}

/*** Slider ***/
#HISTORY .Contents .Item.Thumb .Thumb_List {}
#HISTORY .Contents .Item.Thumb .Btn_Area{}

/* Button */
#HISTORY .Contents .Item.Thumb .Btn_Area{
    position: absolute;
    right: 0;
    top: 0;
    margin-top: -60px;
}
@media(max-width: 768px) {
    #HISTORY .Contents .Item.Thumb {
        padding-top: 50px;
    }
    #HISTORY .Contents .Item.Thumb .Btn_Area{
        margin-top: 0;
    }
}
@media(min-width: 1024px) {
    #HISTORY .Contents .Item.Thumb .Btn_Area{
        margin-top: -80px;
    }
    
}
/* LIST */
#HISTORY .Contents .Item.Thumb .Thumb_List{
    margin: 0 -20px;
}
#HISTORY .Contents .Item.Thumb .Thumb_List .Image{
    margin:0 20px;
}
@media(max-width: 768px) {
    #HISTORY .Contents .Item.Thumb .Thumb_List{
        margin: 0 -5px;
    }
    #HISTORY .Contents .Item.Thumb .Thumb_List .Image{
        margin:0 5px;
    }
}
@media screen and (min-width:769px) and ( max-width:1023px) {
    #HISTORY .Contents .Item.Thumb .Thumb_List{
        margin: 0 -10px;
    }
    #HISTORY .Contents .Item.Thumb .Thumb_List .Image{
        margin:0 10px;
    }
}
@media(min-width: 1024px) {
    #HISTORY .Contents .Item.Thumb .Thumb_List{
        margin: 0 -20px;
    }
    #HISTORY .Contents .Item.Thumb .Thumb_List .Image{
        margin:0 20px;
    }
}

/* ------------------------------------------------------------------------
    STORY
------------------------------------------------------------------------  */
#STORY {
    padding-bottom: var(--space-50);
}
#STORY h3 span {
    color: var(--color-blue);
}
/* BLOCK */
#STORY .Block {
    height: 1500px;
    position: relative;
    padding-top: var(--space-30);
    padding-bottom: var(--space-30);
}
@media(min-width: 461px) {
    #STORY .Block {
        height: 1000px;
    }
}
#STORY .Block .Contents {
    display: flex;
    align-items: center;
    justify-content: space-between;
    row-gap: var(--space-20);
    flex-wrap: wrap;
}
#STORY .Block .Item{
    width: 100%;
    box-sizing: border-box;
}
#STORY .Block .Item.Concept{
}
#STORY .Block .Item.Main{
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
#STORY .Block .Item.Message{
}
@media(max-width: 1023px) {
    #STORY .Block .Contents {
        justify-content: center;
    }
    #STORY .Block .Item.Main{
        max-width: 60%;
        min-width: 260px;
    }
    /* order */
    #STORY .Block .Item.Concept{
        order: 2;
    }
    #STORY .Block .Item.Main{
        order: 1;
    }
    #STORY .Block .Item.Message{
        order: 3;
    }
}
@media(min-width: 1024px) {
    #STORY .Block .Contents {
    }
    #STORY .Block .Item.Concept{
        max-width: 52%;
    }
    #STORY .Block .Item.Main{
        max-width: 43%;
    }
    #STORY .Block .Item.Message{
    }
}

/* Contents */
#STORY .Block .Contents{
    position: sticky;
    left: 0;
    top: 90px;
}
#STORY .Block .Contents::after{
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    filter: blur(30px);
    background: rgba(255,255,255,.8);
    z-index: -1;
}
@media(min-width: 1024px) {
    #STORY .Block .Contents{
        top: 120px;
    }
}

/* padding / margin / Btn */
#STORY .Block.abload .Concept{
    margin-left: auto;
}
#STORY .Block.business .Concept{
    margin-right: auto;
}
#STORY .Block .Concept .Btn{
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap:15px;
    margin-top: var(--space-20);
}
@media(max-width: 769px) {
    #STORY .Block .Concept .Btn{
        justify-content: center;
    }
}
@media(min-width: 1024px) {
    #STORY .Block.abload .Concept{
        margin-left: auto;
    }
    #STORY .Block.business .Concept{
        margin-right: auto;
    }
    #STORY .Block .Concept .Btn{
        margin-top: var(--space-20);
        
    }
}

/* Message_contents */
#STORY .Message_Contents{
    margin-top: var(--space-20);
    box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.1);
}

/* BG_Images */
.BG_Images {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}
.BG_Images .Item{
    position: absolute;
    content: '';
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -2;
    
    transition-property: all;
    transition-duration: 1.5s;
    transition-delay: 0.3s;
    
    filter: blur(15px);
    opacity: 0;
}
.BG_Images .Item.active {
    filter: blur(0px);
    opacity: 1;
}
.BG_Images .Item {
    width: 100%;
}
/* size */
.BG_Images .Item:nth-child(1){
    max-width: 450px;
}
.BG_Images .Item:nth-child(2){
    max-width: 350px;
}
.BG_Images .Item:nth-child(3){
    max-width: 350px;
}
.BG_Images .Item:nth-child(4){
    max-width: 350px;
}
.BG_Images .Item:nth-child(5){
    display: none;
    max-width: 200px;
}
/* position-top */
.BG_Images .Item:nth-child(1){
    top: 50px;
    margin-top: -60px;
}
.Block.business .BG_Images .Item:nth-child(1){
    margin-top: 0;
}
.BG_Images .Item:nth-child(2){
    top: 500px;
}
.BG_Images .Item:nth-child(3){
    top: 650px;
}
.BG_Images .Item:nth-child(4){
    top: 850px;
}
.BG_Images .Item:nth-child(5){
    top: 1050px;
}
/* position-abload */
.abload .BG_Images .Item:nth-child(1){
    right:0;
}
.abload .BG_Images .Item:nth-child(2){
    right:10%;
}
.abload .BG_Images .Item:nth-child(3){
    left: 5%;
}
.abload .BG_Images .Item:nth-child(4){
    left:40%;
}
.abload .BG_Images .Item:nth-child(5){
    right:10%;
}
/* position-business */
.business .BG_Images .Item:nth-child(1){
    left:0;
}
.business .BG_Images .Item:nth-child(2){
    left:10%;
}
.business .BG_Images .Item:nth-child(3){
    right: 5%;
}
.business .BG_Images .Item:nth-child(4){
    right:40%;
}
.business .BG_Images .Item:nth-child(5){
    left:10%;
}
@media(max-width: 460px) {
    /* size */
    .BG_Images .Item:nth-child(1){
        max-width: 200px;
    }
    .BG_Images .Item:nth-child(2){
        max-width: 180px;
    }
    .BG_Images .Item:nth-child(3){
        max-width: 200px;
    }
    .BG_Images .Item:nth-child(4){
        max-width: 180px;
    }
    .BG_Images .Item:nth-child(5){
        display: block;
    }
    /* position-top */
    .BG_Images .Item:nth-child(1){
        top: 0;
        margin-top: 0px;
    }
    .BG_Images .Item:nth-child(2){
        top: 300px;
    }
    .BG_Images .Item:nth-child(3){
        top: 550px;
    }
    .BG_Images .Item:nth-child(4){
        top: 850px;
    }
    .BG_Images .Item:nth-child(5){
        display: block;
    }
}
@media screen and (min-width:461px) and ( max-width:768px) {
    /* size */
    .BG_Images .Item:nth-child(1){
        max-width: 200px;
    }
    .BG_Images .Item:nth-child(2){
        max-width: 180px;
    }
    .BG_Images .Item:nth-child(3){
        max-width: 200px;
    }
    .BG_Images .Item:nth-child(4){
        max-width: 180px;
    }
    .BG_Images .Item:nth-child(5){
    }
    /* position-top */
    .BG_Images .Item:nth-child(1){
        top: 0;
        margin-top: -40px;
    }
    .BG_Images .Item:nth-child(2){
        top: 250px;
    }
    .BG_Images .Item:nth-child(3){
        top: 450px;
    }
    .BG_Images .Item:nth-child(4){
        top: 700px;
    }
    .BG_Images .Item:nth-child(5){
    }
}
@media screen and (min-width:769px) and ( max-width:1023px) {
    /* size */
    .BG_Images .Item:nth-child(1){
        max-width: 300px;
    }
    .BG_Images .Item:nth-child(2){
        max-width: 280px;
    }
    .BG_Images .Item:nth-child(3){
        max-width: 300px;
    }
    .BG_Images .Item:nth-child(4){
        max-width: 280px;
    }
    /* position-top */
    .BG_Images .Item:nth-child(2){
        top:400px;
    }
    
}

/* MODAL */
.Company_Name {
    font-weight: 500;
    font-size: 1.125em;
    line-height: 1.5em;
    padding-bottom: .5em;
    margin-bottom: .5em;
    border-bottom: 2px solid var(--main-color);
}
.modal-body .Close_Btn {
    position: sticky;
    top: 5px;
}
.modal-body .Close_Btn a{
    margin-left: auto;
    margin-right: 5px;
    width: 32px;
    aspect-ratio: 1;
    border-radius: 99px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1em;
    border:1px solid #666;
    background: #fff;
    z-index: 5;
}
.modal-body .modal-content {
    margin-top: -40px;
}
@media(min-width: 769px) {
    .Company_Name {
        font-size: 1.25em;
    }
    
    .modal-body .Close_Btn {
        top: 10px;
    }
    .modal-body .Close_Btn a{
        top: 10px;
        width: 40px;
        margin-right: 10px;
    }
}


/* Add Contents */
.Add_Contents {
	margin-top: var(--space-20);
}

/* Group */
.Add_Contents .Group{
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: var(--space-20);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-20);
}
.Add_Contents .Group .Item .Image{
	border-radius: 7px;
	overflow: hidden;
}
.Add_Contents .Group .Item p{
	text-align: center;
	margin-top: .5em;
	font-size: .875em;
	font-weight: 500;
}
@media(max-width: 768px) {
}

/* System */
.Add_Contents .Subtitle {
	position: relative;
	display: flex;
	justify-content: center;
	font-size: 15px;
	padding: 1em;
	box-sizing: border-box;
	margin-bottom: var(--space-20);
}
.Add_Contents .Subtitle::before {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%) scale(0,1);
	transform-origin: left;
	transition: all .6s;
	content: '';
	width: 100vw;
	height: 100%;
	background: var(--blue-transparent);
	z-index: -1;
}
.Add_Contents .Subtitle.active::before {
	transform: translateX(-50%) scale(1,1);
}
.Add_Contents .System_Heading {
	position: relative;
	
	text-align: center;
	font-size: 14px;
	line-height: 1.8em;
	font-weight: 500;
	padding: 0.5em 1em;
	box-shadow: 4px -4px #2d9fa3;
	outline: 2px solid #fff;
	border: 2px solid #2d9fa3;
	
	margin-bottom: var(--space-20);
}
.Add_Contents .System_Image {
}
.Add_Contents .System_Image img{
	width: auto;
	margin: 0 auto;
}
@media screen and (min-width:1024px){
	.Add_Contents .Subtitle {
        font-size: 26px;
    }
	.Add_Contents .System_Heading {
		font-size: 22px;
	}
}


/* ------------------------------------------------------------------------
    CONNECTING
------------------------------------------------------------------------  */
#CONNECTING{
    position: relative;
    padding-bottom: var(--space-50);
}
#CONNECTING::before{
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: var(--beige-mask);
    z-index: -2;
}
#CONNECTING h3 {
    padding-left: 1em;
}
#CONNECTING h3 span {
    color: var(--color-beige);
}

/* Block */
#CONNECTING .Contents {
    display: flex;
    flex-direction: column;
    row-gap:var(--space-40);
    margin-top: var(--space-30);
}
#CONNECTING .Contents .Block.employment{/* 雇用 */
}
#CONNECTING .Contents .Block.support{/* 支援 */
}
#CONNECTING .Contents .Block.concept{/* コンセプト */
}

/*** employment ***/
#CONNECTING .Contents .Block.employment{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap:var(--space-20);
}
#CONNECTING .Contents .Block.employment > *{
    width: 100%;
}
#CONNECTING .Contents .Block.employment .Image_Area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    max-width: 90%;
    min-width: 240px;
    margin: 0 auto;
}
@media(min-width: 1024px) {
    #CONNECTING .Contents .Block.employment .Image_Area {
        gap:20px;
        max-width: 100%;
    }
}

/* Image */
#CONNECTING .Contents .Block.employment .Image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#CONNECTING .Contents .Block.employment .Image_Area > .Image:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

#CONNECTING .Contents .Block.employment .Image_Area > .Image:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
}

#CONNECTING .Contents .Block.employment .Image_Area > .Image:nth-child(3) {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}
#CONNECTING .Contents .Block.employment .Image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 7px;
    overflow: hidden;
}
@media(min-width: 1024px) {
    #CONNECTING .Contents .Block.employment{
        justify-content: space-between;
    }
    #CONNECTING .Contents .Block.employment .Image_Area{
        width: 43%;
    }
    #CONNECTING .Contents .Block.employment .Message_Area{
        width: 52%;
    }
}

/*** support ***/
#CONNECTING .Contents .Block.support{
    display: flex;
    flex-direction: column;
    row-gap:var(--space-20);
}
#CONNECTING .Contents .Block.support .Image_Area{
    display: flex;
    row-gap:10px;
    column-gap:10px;
    padding:0 5%;
}
#CONNECTING .Contents .Block.support .Image_Area .Image{
    border-radius: 7px;
    overflow: hidden;
}
#CONNECTING .Contents .Block.support .Message_Area{
}
#CONNECTING .Contents .Block.support .Subtitle{
    display: flex;
    justify-content: center;
}
/* Image */
@media(max-width: 1023px) {    
    #CONNECTING .Contents .Block.support .Image_Area{
        flex-wrap: wrap;
        order:1;
    }
    #CONNECTING .Contents .Block.support .Image_Area .Image{
        width: calc(50% - 10px);
    }
    #CONNECTING .Contents .Block.support .Message_Area{
        order:2;
    }
}
@media(min-width: 1024px) {
    #CONNECTING .Contents .Block.support .Image_Area{
        column-gap:20px;
    }
    #CONNECTING .Contents .Block.support .Image_Area .Image{
        flex: 1;
    }
}

/*** concept ***/
#CONNECTING .Contents .Block.concept{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    row-gap:var(--space-20);
}
#CONNECTING .Contents .Block.concept > *{
    width: 100%;
}
#CONNECTING .Contents .Block.concept .Image_Area{
}
#CONNECTING .Contents .Block.concept .Image_Area .Image{
    border-radius: 7px;
    overflow: hidden;
}
#CONNECTING .Contents .Block.concept .Message_Area{
}
@media(max-width: 1023px) {
    #CONNECTING .Contents .Block.concept .Image_Area{
        order:1;
        padding: 0 5%;
    }
    #CONNECTING .Contents .Block.concept .Message_Area{
        order:2;
    }
}
@media(min-width: 1024px) {
    #CONNECTING .Contents .Block.concept .Image_Area{
        max-width: 32%;
    }
    #CONNECTING .Contents .Block.concept .Message_Area{
        max-width: 57%;
    }
}


/* ------------------------------------------------------------------------
    VOICE
------------------------------------------------------------------------  */
/* Base */
#VOICE {
}
#VOICE .Block:not(:last-child){
    margin-bottom: var(--space-30);
    padding-bottom: var(--space-30);
    border-bottom: 1px solid var(--sub-color);
}


/* Title */
#VOICE .Voice_Title {
    text-align: center;
    margin-bottom:40px;
}
#VOICE .Voice_Title p{
    display: inline-block;
    margin: 0 auto;
    position: relative;
    padding: 0 1.5em;
    font-size: 17px;
    font-weight: 500;
}
#VOICE .Voice_Title p::before,
#VOICE .Voice_Title p::after{
    position: absolute;
    top: 0;
    content: '';
    width: 14px;
    aspect-ratio: 17 / 40;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#VOICE .Voice_Title p::before{
    left: 0;
    background-image: url("../images/voice_title_l.svg");
}
#VOICE .Voice_Title p::after{
    right: 0;
    background-image: url("../images/voice_title_r.svg");
}
/* color */
#VOICE .employee .Voice_Title {
    color: var(--rex-color);
}
#VOICE .supplier .Voice_Title {
    color: var(--color-blue);
}
#VOICE .customer .Voice_Title {
    color: var(--color-beige);
}
@media screen and (min-width:769px) and ( max-width:1023px) {
    #VOICE .Voice_Title p{
        font-size: 24px;
    }
}
@media(min-width: 1024px) {
    #VOICE .Voice_Title p{
        font-size: 30px;
    }
}

/* Sub_Title */
#VOICE .Sub_Title{
    font-size: 18px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    margin-bottom: 1em;
}
@media(min-width: 769px) {
    #VOICE .Sub_Title{
        font-size: 22px;
    }
}

/* Message_Area */
#VOICE .Message_Area{
    display: flex;
    flex-wrap: wrap;
    row-gap:20px;
    margin-bottom: var(--space-20);
}
#VOICE .Message_Area > * {
    width: 100%;
}
#VOICE .Message_Area .Image{
}
#VOICE .Message_Area .Message{
}
@media(max-width: 1023px) {
    #VOICE .Message_Area .Image img{
        max-width: 60%;
        min-width: 260px;
        margin: 0 auto;
    }
}
@media(min-width: 1024px) {
    #VOICE .Message_Area{
        column-gap: 30px;
        align-items: center;
    }
    #VOICE .Message_Area .Image{
        max-width: 320px;
    }
    #VOICE .Message_Area .Message{
        flex: 1;
    }
}

/* Slide */
#VOICE .Btn_Area {
    justify-content: flex-end;
    margin-bottom: 20px;
}
@media(min-width: 1024px) {
    #VOICE .Btn_Area .Arrow:hover{
        background: var(--main-color);
        border-color:var(--main-color);
    }
    
}

#VOICE .Voice.slide {
}
#VOICE .Voice.slide .Item{
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    row-gap:20px;
    
    margin-left: calc(100vw * 0.05);
    margin-right: calc(100vw * 0.05);
}
#VOICE .Voice.slide .Item > * {
    width: 100%;
}
#VOICE .Voice.slide .Item .Image{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
#VOICE .Voice.slide .Item .Message{
    box-sizing: border-box;
}
@media(max-width: 1023px) {
    #VOICE >*:not(.customer) .Voice.slide .Item .Image{
        border-radius: 9999px;
        aspect-ratio: 1;
        overflow: hidden;
        max-width: 50%;
        min-width: 140px;
    }
	#VOICE >*.customer .Voice.slide .Item .Image{
        border-radius: 7px;
        aspect-ratio: 1;
        overflow: hidden;
        max-width: 50%;
        min-width: 140px;
    }
}
@media screen and (min-width:769px) and ( max-width:1023px) {
    #VOICE .Voice.slide .Item{
        margin-left: 20px;
        margin-right: 20px;
    }
}
@media(min-width: 1024px) {
    #VOICE .Voice.slide .Item{
        justify-content: space-between;
        margin-left: 20px;
        margin-right: 20px;
        border:1px solid var(--base-color);
        border-radius: 10px;
        overflow: hidden;
    }
    #VOICE .Voice.slide .Item .Image{
        width: 25%;
    }
    #VOICE .Voice.slide .Item .Message{
        width: 75%;
        padding: 1.5em;
    }
    #VOICE .supplier .Voice.slide .Item .Image{
        width: 40%;
    }
    #VOICE .supplier .Voice.slide .Item .Message{
        width: 60%;
        padding: 1.5em;
    }
}

/* Name */
#VOICE .Voice.slide .Item .Message .Name{
    position: relative;
    font-weight: 500;
    padding: 5px 1em;
    border: 1px solid var(--base-color);
    border-radius: 7px;
    margin-bottom: 1.5em;
    line-height: 1.5em;
}
#VOICE .Voice.slide .Item .Message .Name::before{
    position: absolute;
    content: '';
    left: 5px;
    top: 5px;
    width: 100%;
    height: 100%;
    border-radius: 7px;
    z-index: -1;
}
#VOICE .Voice.slide .Item .Message .Name::after{
    position: absolute;
    left: 1.5em;
    bottom: 0;
    content: '';
    width: 1px;
    height: 1em;
    background: var(--base-color);
    margin-bottom: -.75em;
    transform-origin: 50% 50%;
    transform: rotate(10deg);
}
/* Comment */
#VOICE .Voice.slide .Item .Message .Comment{
}
@media(max-width: 768px) {
    #VOICE .Voice.slide .Item .Message .Comment{
        padding: 1em;
        font-size: .875em;
        background: var(--sub2-color);
        border-radius: 7px;
    }
}

/* Color */
#VOICE .employee .Voice.slide .Item .Message .Name::before{
    background: var(--main-transparent);
}
#VOICE .supplier .Voice.slide .Item .Message .Name::before{
    background: var(--blue-transparent);
}
#VOICE .customer .Voice.slide .Item .Message .Name::before{
    background: var(--beige-transparent);
}

/* ------------------------------------------------------------------------
    BOOKLET
------------------------------------------------------------------------  */
/* Base */
#BOOKLET{
}

#BOOKLET .Message{
    
    text-align: center;
}
#BOOKLET .Btm_Message {
    text-align: center;
}

#BOOKLET .Message .Title span {
    left: 50%;
    transform: translateX(-50%);
}

#BOOKLET .Booklet_Container{
    display: flex;
    align-items: center;
    justify-content: center;
}
#BOOKLET .Booklet_Container .Booklet_Contents{
    width: 100%;
    max-width: 450px;
}
#BOOKLET .Booklet_Container .Booklet_Contents a{
    position: relative;
    margin-bottom: 1.5em;
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
}
#BOOKLET .Booklet_Container .Booklet_Contents a::before{
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url("../images/history_bg01_pc.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 7px;
    z-index: -2;
}
#BOOKLET .Booklet_Container .Booklet_Contents a::after{
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    border-radius: 7px;
    z-index: -1;
}
#BOOKLET .Booklet_Container .Booklet_Contents a .Inner{
    position: relative;
    border:1px solid #fff;
    padding-left: 15px;
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
}
#BOOKLET .Booklet_Container .Booklet_Contents a .Inner .Image{
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;
}
#BOOKLET .Booklet_Container .Booklet_Contents a .Inner .Booklet_Title{
    width: 100%;
    text-align: center;
    padding-left: .5em;
    padding-right: .5em;
    padding-top: .5em;
    padding-bottom: .5em;
    box-sizing: border-box;
    background: #fff; /* 任意の背景色 */
    border-radius: 7px;
}
#BOOKLET .Booklet_Container .Booklet_Contents a .Inner .Booklet_Title p{
    font-size: 8px;
    font-weight: 500;
}
#BOOKLET .Booklet_Container .Booklet_Contents a .Inner .Booklet_Title h3{
    font-size: 20px;
    font-weight: 700;
    color: var(--main-color);
}
@media(min-width: 1024px) {
    #BOOKLET .Booklet_Container{
        margin-top: 120px;
    }
    
    #BOOKLET .Booklet_Container .Booklet_Contents{
        max-width: 750px;
    }
    #BOOKLET .Booklet_Container .Booklet_Contents a .Inner{
        padding-left: 160px;
    }
    #BOOKLET .Booklet_Container .Booklet_Contents a .Inner .Image{
        position: absolute;
        left: 10px;
        bottom: 10px;
        width: 140px;
    }
    #BOOKLET .Booklet_Container .Booklet_Contents a .Inner .Booklet_Title{
        padding-left: 15%;
        padding-right: 0;
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
        border-radius: 0px;
    }
    #BOOKLET .Booklet_Container .Booklet_Contents a .Inner .Booklet_Title p{
        font-size: 1.125em;
    }
    #BOOKLET .Booklet_Container .Booklet_Contents a .Inner .Booklet_Title h3{
        font-size: 26px;
    }
}
