@charset "utf-8";

.flex-left,
.flex-right{
    width: 50%;
}
.accent-text.purple{
    color: var(--purple)!important;
}
.accent-text.pink{
    color: #592416!important;
}
.accent-bg.purple{
    background: var(--purple)!important;
}
.accent-bg.pink{
    background: var(--pink)!important;
}

/* -----------------------------------------------------------
    ヘッダー
----------------------------------------------------------- */

.page-header-area{
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff2b 0% 0% no-repeat padding-box;
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}
.header-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-logo{
    display: flex;
    padding-left: 6%;
}
.header-logo a{
    display: flex;
    align-items: center;
}
.header-logo img{
    max-width: 113px;
}
.header-btn-wrapper{
    display: flex;
    height: 73px;
}
.header-btn01{
    text-align: center;
    transition: all 0.3s ease;
    background: var(--accent-color2);
    width: 220px;
}
.header-btn01:last-child{
    border-left: none;
}
.header-btn01 a{
    padding: 20px;
    font-size: 1.6rem;
    font-weight: bold;
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
}

.header-btn02 {
    color: #fff;
    display: block;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    background: var(--accent-color3);
    background-size: 200% 100%;
    width: 216px;
}
.header-btn02 a{
    position: relative;
    font-size: 1.6rem;
    padding: 20px;
    height: 100%;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.header-btn02:hover {
    background-position: 100% 0;
}
.header-btn01 .icon img{
    transition: transform 0.3s ease;
}
.header-btn01:hover .icon img{
    transform: scale(1.2);
    transition: transform 0.3s ease;
}
.header-btn02 .icon img{
    transition: transform 0.3s ease;
}
.header-btn02:hover .icon img{
    transform: scale(1.2);
    transition: transform 0.3s ease;
}


/* -----------------------------------------------------------
    MV
----------------------------------------------------------- */


.mv-bg {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.mv-img {
    width: 100%;
    height: 100%;
}
.mv-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.mv-img {
    width: 100%;
    position: relative;
}
.mv-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    animation: revealImage 0.8s cubic-bezier(0.83, 0, 0.17, 1) forwards;
}
.mv-text-box {
    position: absolute;
    top: 50%;
    left: 3rem;
    width: 50%;
    z-index: 1;
    opacity: 0; 
    animation: popUp 1s ease-out forwards;
    animation-delay: 1s;
}

.mv-text-box img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

@keyframes popUp {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(50%);
    }
    
    50% {
        opacity: 0.5;
        transform: scale(1);
    }
    
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}


@keyframes revealImage {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}




/* -----------------------------------------------------------
    メッセージ
----------------------------------------------------------- */

section.message{
    margin-top: 0;
    overflow: hidden;
}
.message-bg{
    background: url(../image/top/message-bg.webp) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 16rem 0;
    position: relative;
}

.mv-btm-text {
    width: 100%;
    height: 80px;
    position: absolute;
    top: 0px;
    z-index: 1;
    background: url(../image/top/mv-btm-text.svg) repeat-x;
    background-size: auto 40px;
    animation: 20s linear 0s infinite normal none running text-scroll;
}
@keyframes text-scroll{
    100% {
        background-position: -1400px 0px;
    }
}

.text-appearance {
    display: inline-block;
    position: relative;
    opacity: 0;
    transform: translateY(15px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .text-appearance::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--main-color); 
    transform: scaleX(1);
    transform-origin: right;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
  }
  .text-appearance.accent-text::after {
    background: var(--lightblue);
  }
  .text-appearance.purple::after {
    background: var(--purple);
  }
  .text-appearance.pink::after {
    background: var(--pink);
  }
  
  .text-appearance.appear {
    opacity: 1;
    transform: translateY(0) skewY(0);
  }
  
  .text-appearance.appear::after {
    transform: scaleX(0);
  }

.textanimation {
    opacity: 0; /* 初期状態で非表示 */
}

.textanimation.initialized {
    opacity: 1; /* 初期化後に表示 */
}

.textanimation > span {
    overflow: hidden;
    display: inline-block;
}

.textanimation > span > span {
    display: inline-block;
    opacity: 0;
    transform: translateY(80%);
}

.textanimation.show > span > span {
    animation: showTextFromBottom 0.5s forwards;
}

@keyframes showTextFromBottom {
    0% {
        transform: translateY(80%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* -----------------------------------------------------------
    メッセージ - アンカーリンク
----------------------------------------------------------- */
.message-text{
    line-height: 2;
    letter-spacing: 0.1em;
}
/* .message-text::before{
    position: absolute;
    content: "";
    background: url(../image/top/mv-btm-img01.svg) no-repeat;
    width: 12%;
    height: 70%;
    background-size: 100%;
    left: 0;
    bottom: 0;
}
.message-text::after{
    position: absolute;
    content: "";
    background: url(../image/top/mv-btm-img02.svg) no-repeat;
    width: 12%;
    height: 70%;
    background-size: 100%;
    right: -25px;
    bottom: 0;
} */
.ttl-line-wrapper {
    position: relative;
    
}
.ttl-line-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 1px;
    background: #d4d4d4;
}
.ttl-line{
    position: relative;
    background: #fff;
    padding: 0 5rem;
}
.message-ttl{
    position: relative;
    background: #fff;
    padding: 0 5rem;
}
.message-ttl::before{
    position: absolute;
    content: "";
    background: url(../image/top/message-fukidashi.svg) no-repeat;
    background-size: contain;
    width: 80%;
    aspect-ratio: 442/56;
    top: -55px;
}
.anchor-department {
    display: flex;
    justify-content: center;
    gap: 45px;
    flex-wrap: wrap;
    margin-top: 4rem;
}
.anchor-department li {
    width: calc((100% - 90px)/3);
    min-width: 270px;
    font-size: 1.6rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    box-shadow: 2px 7px 12px #00000029;
    animation-duration: 0.6s;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: var(--gray-color);
}
.anchor-department li:hover {
    transform: translateY(-10px);
}

.anchor-department li .text-wrap{
    padding: 1rem 1rem;
    padding-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.anchor-department li a{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.subtext {
    margin-bottom: 1.5rem;
    min-height: 5rem;
    display: flex;
    align-items: end;
    justify-content: center; 
}
.anchor-department li .subtext-arrow {
    position: relative;
    display: inline-block;
    width: 21px;
    height: 12.5px;
    margin-left: 2px;
}
.anchor-department li .subtext-arrow::before,
.anchor-department li .subtext-arrow::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 1.5px);
    width: 3px;
    height: 13px;
    border-radius: 9999px;
    background-color: #fff;
    transform-origin: 50% calc(100% - 1.5px);
}
.anchor-department li .subtext-arrow::before {
    transform: rotate(45deg);
}
.anchor-department li .subtext-arrow::after {
    transform: rotate(-45deg);
}
.anchor-department li .icon {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 2rem;
    width: 90px;  
    height: 90px; 
}
.anchor-department li .ttl{
    font-size: 2.1rem;
    margin-top: 1.5rem;
}
.anchor-department li .anchor-btn {
    display: block;
    background: var(--main-color);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 12px 0;
    line-height: 1;
    width: 100%;
    text-align: center;
}
.anchor-department li .new-tag {
    display: inline-block;
    background: white;
    color: var(--pink);
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    padding: 4px 25px;
    border-radius: 3px;
    position: absolute;
    top: -15px;
    border: 2px solid var(--pink);
}

/* -----------------------------------------------------------
    学科詳細
----------------------------------------------------------- */

#itcreator{
    margin-top: 9rem;
}
.department-section-bg{
    padding: 8.5rem 1rem;
    background: #F8F8F8;
    border: 8px solid var(--accent-color3);
}
.department-section-bg.bg-border_01{
    border: 8px solid var(--accent-color2);
}
.department-section .ttl-wrap .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    margin: 0 auto;
}
.department-section .ttl-wrap .top-txt{
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    margin-top: 2rem;
}
.department-section .ttl-wrap .ttl.ttl-line{
    background: #F8F8F8;
    line-height: 1;
    margin-top: 1.5rem;
}
.department-section .ttl-wrap .btm-txt{
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
    margin-top: 1.8rem;
}
.department-section .white-bg{
    padding: 7rem 10rem;
    margin-top: 4rem;
    border-radius: 12px;
}
.department-section .feature01 .flex-left{
    padding: 4.5rem;
}
.department-section .feature01 .flex-left p{
    line-height: 1.6;
}
.department-section .feature01 .ttl{
    margin: 1.5rem 0 2rem;
}
.department-section .feature01 .feature-tag{
    background: #fff;
    padding: 1px 1.5rem;
    border-radius: 2px;
    position: absolute;
    top: 0;
    left: 0;
}
.department-section .feature01 .flex-right img{
    object-fit: cover;
    width: 100%;   
    height: 100%;
}




.department-accordion .accordion_title {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    padding: 20px 5%;
    text-align: center;
    position: relative;
    z-index: +1;
    cursor: pointer;
    transition-duration: 0.2s;
    width: 360px;
    margin: 0 auto;
    margin-top: 4rem;
}
.department-accordion .icon_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 5%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    box-sizing: border-box;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.2s;
}
.department-accordion .icon {
    display: block;
    width: 18px;
    height: 18px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.2s;
    position: relative;
}
.department-accordion .accordion_title.open 
.icon_wrap {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
}
.department-accordion .icon:before, .department-accordion .icon:after {
    display: flex;
    content: '';
    background-color: #fff;
    width: 21px;
    height: 3px;
    position: absolute;
    top: 9px;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transform-origin: center center;
}
.department-accordion .icon:before {
    width: 3px;
    height: 21px;
    top: 0;
    left: 9px;
}
.department-accordion .accordion_title.open 
.icon_wrap .icon:before {
    content: none;
}
.department-accordion .accordion_title.open 
.icon_wrap .icon:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
/* .department-accordion .accordion_inner {
    max-height: 300px;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
} */
.department-accordion .accordion_inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    transform: translateY(1px);
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 100%
    );
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.4s ease;
}
.department-accordion .accordion_inner.slide-open::after {
    opacity: 0;
}
.department-accordion .ac_inner_wraper {
    min-height: 100px;
}

.department-accordion .accordion_title{
    transition: transform 0.3s ease;
}
.department-accordion .accordion_title:hover{
    transform: scale(1.1);
    transition: transform 0.3s ease;
}



.department-section .feature02,
.department-section .feature03{
    margin-top: 3.5rem;
    position: relative;
}

.features-tag{
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    text-align: center;
    padding: 3px 15px;
    padding-top: 6px;
    font-weight: 500;
    font-size: 1.8rem;
}
.features-tag.center{
    left: 50%;
    transform: translateX(-50%);
    margin-top: 6rem;
}
.department-section .feature02-bg,
.department-section .feature03-bg{
    background:var(--gray-color);
    border: 3px solid var(--main-color);
    padding: 9rem 3rem 3rem;
}
.department-section .feature03-bg{
    background: transparent;
}
.department-section .feature02 .text-wrap .ttl,
.department-section .feature03 .text-wrap .ttl{
    font-size: 4.4rem;
    text-align: center;
    position: relative;
}
.department-section .feature02 .text-wrap .ttl::before,
.department-section .feature03 .text-wrap .ttl::before{
    content: "";
    position: absolute;
    background: url(../image/top/fukidashi04.svg) no-repeat;
    width: 191px;
    height: 51px;
    background-size: contain;
    background-position: center;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
}
.department-section .feature03 .text-wrap .ttl::before {
    background: url(../image/top/department01-fukidashi02.svg) no-repeat;
    width: 422px;
    height: 54px;
    background-size: contain;
    background-position: center;
}
.department-section .feature03 .text-wrap .ttl.fukidashi02::before{
    width: 192px;
    height: 52px;
    background: url(../image/top/fukidashi03.svg) no-repeat;
    background-size: contain;
    background-position: center;
}
.department-section .feature03 .text-wrap .ttl.fukidashi05::before{
    background: url(../image/top/fukidashi05.svg) no-repeat;
    width: 431px;
    height: 52px;
}
.department-section .feature03 .text-wrap .ttl.fukidashi06::before{
    background: url(../image/top/fukidashi06.svg) no-repeat;
    width: 206px;
    height: 52px;
    background-size: contain;
    background-position: center;
}
.department-section .cross-img{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    margin-right: 3rem;
}
.department-section .cross-img .cross-img-left{
    background: var(--lightblue);
    padding: 5px 30px 5px 90px;
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    position: relative;
    border-radius: 5px;
}
.department-section .cross-img .cross-img-left::before{
    content: "";
    background: url(../image/top/department01-feature02-img01left.png) no-repeat;
    position: absolute;
    width: 110px;
    height: 120px;
    background-size: contain;
    left: -30px;
    bottom: 0;
}
.department-section .cross-img .cross-img-right{
    background: #559DF2;
    padding: 5px 85px 5px 30px;
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    position: relative;
    border-radius: 5px;
}
.department-section .cross-img .cross-img-right::before{
    content: "";
    background: url(../image/top/department01-feature02-img01right.png) no-repeat;
    position: absolute;
    width: 110px;
    height: 120px;
    background-size: contain;
    right: -30px;
    bottom: 0;
}
.dli-close {
    display: inline-block;
    vertical-align: middle;
    color: var(--lightblue);
    line-height: 1;
    width: 2.2rem;
    height: 3px;
    background: currentColor;
    border-radius: 0.1em;
    position: relative;
    transform: rotate(45deg);
    margin: 0 1.5rem;
}
.dli-close::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transform: rotate(90deg);
}
.department-section .feature02 .text-wrap p{
    margin-top: 2rem;
    line-height: 2;
}
.department-section .feature02 .img-wrapper{
    margin-top: 3rem;
    gap: 4rem;
    justify-content: center;
}
.department-section .feature03 .job-image-wrapper{
    display: flex;
    margin: 0 5rem;
    margin-top: 2rem;
    gap: 2.5rem;
    border-bottom: 1px solid #D6D6D6;
    padding-bottom: 2rem;
}
.department-section .feature03 .job-image-wrapper .flex-left{
    width: auto;
    max-width: 178px;
}
.department-section .feature03 .job-image-wrapper .flex-right{
    width: auto;
}
.department-section .feature03 .job-image-wrapper .flex-left img,
.department-section .feature03 .job-image-wrapper .flex-right img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.department-section .feature03 .job-image-wrapper .txt{
    line-height: 1.8;
    margin-top: 1.8rem;
}
.btm-text{
    background: var(--gray-color);
    border-radius: 5px;
    margin-top: 4rem;
}
.btm-text .ttl{
    color: #fff;
    padding: 4px;
    text-align: center;
    font-size: 1.8rem;
}
.btm-text p {
    padding: 1rem 2rem;
}
.btm-text ul.btm-text-list li{
    font-size: 1.5rem;
    position: relative;
}
.btm-text ul.btm-text-list li::before{
    content: "";
    position: absolute;
    left: -1.2rem;
    top: 55%;  
    transform: translateY(-50%);  
    width: 7px;  
    height: 7px; 
    background-color: var(--lightblue);  
    border-radius: 50%;
}
.department-section .text-future{
    position: relative;
    margin-top: 10rem;
    background: var(--gray-color);
    padding-top: 3rem;
}
.department-section .text-future .ttl-en {
    text-align: center;
    font-size: 10rem;
    opacity: 0.22;
    line-height: 1;
    position: absolute;
    top: -40px;
    z-index: 10;
    left: -50px;
    display: inline-block;
    transform: rotate(353deg);
}
.department-section .text-future .ttl{
    text-align: center;
    line-height: 1.3;
    padding: 2rem;
    position: relative;
}
.department-section .text-future .txt{
    background: var(--gray-color);
    line-height: 2;
    padding: 3rem 5rem 4rem;
}
.department-section .text-future .txt p{
    background-color: #fff;
    padding: 2rem;
}

.gamecreator .department-section-bg {
    border: 8px solid var(--purple);
}
.gamecreator .ttl-line-wrapper::before{
    background-image: repeating-linear-gradient(-55deg, transparent, transparent 10px, rgba(154, 85, 168, 0.2) 10px, rgba(154, 85, 168, 0.2) 12px);
}
.gamecreator.department-section .feature02-bg,
.gamecreator.department-section .feature03-bg {
    border: 3px solid var(--purple);
    background: #F8F8F8;
}
.gamecreator.department-section .feature03-bg{
    background: #fff;
}
.gamecreator.department-section .feature02 .text-wrap .ttl::before {
    background: url(../image/top/department02-fukidashi01.svg) no-repeat;
    background-size: contain;
}
.gamecreator.department-section .feature03 .text-wrap .ttl::before{
    background: url(../image/top/department02-fukidashi02.svg) no-repeat;
    background-size: contain;
}
.gamecreator.department-section .cross-img .cross-img-left{
    background: #9A55A8;
}
.gamecreator.department-section .cross-img .cross-img-left::before{
    background: url(../image/top/department02-feature02-img01left.png) no-repeat;
    background-size: contain;
}
.gamecreator.department-section .cross-img .cross-img-right{
    background: #6555A8;
}
.gamecreator.department-section .cross-img .cross-img-right::before{
    background: url(../image/top/department02-feature02-img01right.png) no-repeat;
    background-size: contain;
}
.gamecreator.department-section .feature03 .job-image-wrapper{
    border-bottom: 1px solid #D6D6D6;
}
.gamecreator.department-section .dli-close{
    color: var(--purple);
}

.gamecreator.department-section .text-future .ttl{
    background: var(--text-color);
}
.gamecreator.department-section .text-future .ttl::after{
    background-image: url(../image/top/department02-btm-img.png);
    background-size: contain;
    right: -30px;
}

.design .department-section-bg {
    border: 8px solid var(--pink);
}
.design .ttl-line-wrapper::before{
    background-image: repeating-linear-gradient(-55deg, transparent, transparent 10px, rgba(235, 102, 133, 0.2) 10px, rgba(235, 102, 133, 0.2) 12px);
}
.design.department-section .text-wrap.top-text{
    font-size: 4.1rem;
    text-align: center;
    position: relative;
}
.design.department-section .top-detail{
    background: #FFFCFC;
    border: 3px solid var(--pink);
    border-radius: 10px;
    padding: 3rem;
    margin-top: 3rem;
}
.design.department-section .top-detail .flex{
    justify-content: center;
    align-items: center;
    gap: 3rem;
}
.design.department-section .top-detail .flex-left {
    max-width: 247px;
}
.design.department-section .top-detail .flex-right {
    max-width: 208px;
}

.design.department-section .triangle-wrap{
    text-align: center;
    margin-top: 3.5rem;
    margin-bottom: 2rem;
}
.design.department-section .triangle {
    display: inline-block;
    width: 90px;
    height: 30px;
    background: #fad9e0;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
ul.course-list{
    margin-top: 16rem;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 6rem 1rem;
}
ul.course-list li{
    width: calc((100% - 60px)/2);
    display: flex;  
    flex-direction: column; 
}
ul.course-list li:nth-of-type(1){
    position: relative;
}
ul.course-list li:nth-of-type(1)::before{
    position: absolute;
    content: "";
    background: url(../image/top/department03-course01.svg) no-repeat;
    width: 295px;
    height: 90px;
    background-size: contain;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
}
ul.course-list li:nth-of-type(2){
    position: relative;
}
ul.course-list li:nth-of-type(2)::before{
    position: absolute;
    content: "";
    background: url(../image/top/department03-course02.svg) no-repeat;
    width: 362px;
    height: 90px;
    background-size: contain;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
}
ul.course-list li .ttl-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    background: var(--pink);
    gap: 7px;
    border-radius: 5px 5px 0px 0px;
}
ul.course-list li:nth-of-type(2) .ttl-wrap{
    background: #EB6675;
}
ul.course-list li:nth-of-type(3) .ttl-wrap{
    background: #C64467;
}
ul.course-list li:nth-of-type(4) .ttl-wrap{
    background: #A2204A;
}
ul.course-list li .ttl-wrap .icon-img{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    background: #fff;
}
ul.course-list li .ttl-wrap .ttl{
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
}
ul.course-list li .course-contents{
    border: 3px solid var(--pink);
    border-radius: 0px 0px 5px 5px;
    flex: 1;
    background: #fff;
}
ul.course-list li:nth-of-type(2) .course-contents{
    border: 3px solid #EB6675;
}
ul.course-list li:nth-of-type(3) .course-contents{
    border: 3px solid #C64467;
}
ul.course-list li:nth-of-type(4) .course-contents{
    border: 3px solid #A2204A;
}
ul.course-list li .course-inner{
    padding: 4rem 3rem;
}
ul.course-list li .course-contents .tag{
    background: var(--pink);
    padding: 1px 10px;
    color: #fff;
    display: inline-block;
    margin-top: 3rem;margin-bottom: 1rem;
    font-size: 1.6rem;
}
ul.course-list li:nth-of-type(2) .course-contents .tag{
    background: #EB6675;
}
ul.course-list li:nth-of-type(3) .course-contents .tag{
    background: #C64467;
}
ul.course-list li:nth-of-type(4) .course-contents .tag{
    background: #A2204A;
}
ul.course-list li .course-contents .float-wrapper{
    position: relative;
}
ul.course-list li .course-contents .tag.float{
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
}
ul.course-list li .course-contents .img{
    margin-bottom: 2rem;
}
ul.course-list li .course-contents .txt{
    line-height: 1.8;
}
ul.course-list li .course-contents .list-marker{
    margin-left: 2rem;
    position: relative;
}
ul.course-list li .course-contents .list-marker::before{
    content: "";
    position: absolute;
    left: -1.5rem;
    top: 50%;  
    transform: translateY(-50%);  
    width: 7px;  
    height: 7px; 
    background: var(--pink);  
    border-radius: 50%;
}
ul.course-list li:nth-of-type(2) .list-marker::before{
    background: #EB6675;
}
ul.course-list li:nth-of-type(3).list-marker::before{
    background: #C64467;
}
ul.course-list li:nth-of-type(4) .list-marker::before{
    background: #A2204A;
}

/* -----------------------------------------------------------
    フッター
----------------------------------------------------------- */

footer{
    padding: 8rem 0 5.5rem;
}
.footer-wrapper .flex-left .flex{
    gap: 4rem;
    margin-top: 1.7rem;
}
.footer-wrapper .flex-left{
    width: 100%;
}
.footer-wrapper .flex-right{
    max-width: 300px;
}
.footer-btn{
    color: #fff;
    display: block;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    background:var(--text-color);
    transition: transform 0.3s ease;
    max-width: 300px;
    margin: 0 auto;
}
.footer-btn:hover{
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
.footer-btn a{
    color: #fff;
    position: relative;
    font-size: 1.6rem;
    padding: 20px 70px 20px 90px;
    height: 100%;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-btn a::before {
    position: absolute;
    content: "";
    background: url(../image/top/icon-link-blank.svg) no-repeat;
    background-size: contain;
    width: 12px;
    height: 12px;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}
.copyright{
    font-size: 1.2rem;
    color: #CBCBCB;
    text-align: center;
    margin-top: 4.5rem;
}


