@charset "UTF-8";
@import url("https://use.typekit.net/zxg0pxv.css");

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-family: "Noto Serif JP", serif;
}

body {
    height: auto;
    overflow-x: hidden;
    font-family: "Noto Serif JP", serif;
}


/* ヘッダー */
/* 流れるテキスト */
.loop_wrap {
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 20px;
    background-color: #D5C8BC;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    font-family: 'Noto Serif JP', sans-serif;
}

.loop_area {
    display: flex;
    animation: loop-slide 75s infinite linear 1s both;
    list-style: none;
    margin: 0;
    padding: 0;
}

.loop_area .content {
    width: 1500px;
}

@keyframes loop-slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
}

@media screen and (max-width: 900px) {

    .loop_wrap {
        height: 15px;
        font-size: 10px;
    }

    .loop_area .content {
        width: 350px;
    }

}

.header {
    width: 100%;
    height: 94px;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #fff;
    z-index: 9999;
}

.header_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 0 25px;
    border-bottom: 1px solid #CBBBAC;
}

.header_logo {
    display: flex;
}

.header_nav {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 73px;
    font-family: 'Noto Serif JP', sans-serif;
}

.header_nav_list,
.header_nav_snslist {
    display: flex;
    gap: 25px;
}

.header_nav_list {
    font-size: 14px;
}

.header_nav_snslist {
    margin: 0 0 0 30px;
}

.header_btn {
    padding: 16px 8px;
    background-color: #CBBBAC;
    color: #fff;
    text-align: center;
    font-size: 14px;
    margin: 0 0 0 30px;
}

.header_btn_text {
    margin: 10px 0 0 0;
} 


/* ハンバーガーメニュー */
@media screen and (max-width: 1024px) {

    .header {
        height: 65px;
    }

    .header_logo img {
        width: 130px;
    }

    .header_top {
        height: 50px;
    }

    .header_nav {
        position: fixed;
        top: 10px;
        right: -100%;
        transition: .5s;
        position: fixed;
        top: 0;
        right: 0;
        background-color: #eee;
        min-height: 100vh;
        min-width: 60%;
        padding: 20px 70px 20px 20px;
        line-height: 1.8;
        transition: all .4s;
        transform: translateX(100%);
        display: block;
    }

    .header_nav a {
        display: block;
    }

    .header_nav.active {
        transform: translateX(0);
    }

    .header_nav_list {
        display: block;
    }

    .header_nav_list li{
        line-height: 45px;
        border-bottom: 1px solid #A09388;
        padding: 0 0 0 5px;
    }

    .header_nav_snslist {
        margin: 0;
        padding: 20px 0;
        display: flex;
        position: relative;
        left: 1px;
        gap: 28px;
    }

    .header_btn {
        margin: 0;
        padding: 15px 0;
        border-radius: 3px;
    }

    .init_buttom {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .header_btn_text {
        margin: 0;
    }

    .header_hamburger {
        position: fixed;
        top: 24px; 
        right: 15px;
        z-index: 9999;
        width: 25px;
        height: 30px;
    }

    .header_hamburger span {
        position: absolute;
        top: 20%;
        width: 100%;
        border-top: 2px solid #CBBBAC;
        transform-origin: center;
        transition: all .4s;
    }

    .header_hamburger span:nth-of-type(2) {
        top: 50%;
    }

    .header_hamburger span:nth-of-type(3) {
        top: 80%;
    }
    
    .header_hamburger.active span {
        border-color: #CBBBAC;
        transform: rotate(45deg);
        top: 50%;
    }

    .header_hamburger.active span:nth-of-type(2) {
        transform: none;
        opacity: 0;
    }

    .header_hamburger.active span:nth-of-type(3) {
        transform: rotate(-45deg);
    }

} 

@media screen and (max-width: 480px) {

    .header_nav {
        padding: 20px;
    }

    .header_top {
        padding: 0 0 0 15px;
    }

    .header_nav_list,
    .header_btn {
        font-size: 13px;
    }
    
}




/* メインビジュアル */
.mainvisual {
    width: 100%;
    height: 100%;
}

.mainvisual_img {
    width: 100%;
    height: 100%;
    margin: 94px 0 0 0;
    object-fit: cover;
}
  
/* .mainvisual_text {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background-color: #D5C8BC;
    opacity: .95;
    font-family: YuMincho, 'Yu Mincho', serif;
    padding: 20px;
}

.mainvisual_text h2{
    font-weight: normal;
    font-size: 25px;
    line-height: 150%;
}

.mainvisual_text h3{
    font-weight: normal;
    font-size: 15px;
    padding: 10px 0 0 0;
} */

@media screen and (max-width: 1024px) {

    .mainvisual_img {
        height: 100vw;
        margin: 65px 0 0;
    }

    .mainvisual_text {
        left: 10px;
        bottom: 140px;
        padding: 10px;
    }

    .mainvisual_text h2 {
        font-size: 18px;
    }

    .mainvisual_text h3 {
        font-size: 10px;
        padding: 5px 0 0 0;
    }
}

@media screen and (max-width: 480px) {

    .mainvisual_text {
        left: 0;
        bottom: 200px;
        padding: 10px;
    }

    .mainvisual_text h2 {
        font-size: 12px;
    }

    .mainvisual_text h3 {
        font-size: 8px;
        padding: 5px 0 0 0;
    }
}

/* 事業紹介 */
.businesses {
    margin: 100px 80px 0;
    padding: 0 24px;
    font-family: 'Noto Serif JP', sans-serif;
}

.businesses_title, 
.businesses_subtitle {
    background: linear-gradient(transparent 70%, #E6DDD5 40%);
    padding: 0 4px;
    letter-spacing: 2px;
}

.businesses h1 {
    font-size: 30px;
    text-align: center;
}

.businesses h2 {
    font-size: 17px;
}

.businesses_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 70px 0 50px;
}


/* HPなど */
/* アプリ */
/* 教育教材 */
/* フェムテック */
.hplogolp,
.app,
.education,
.femtech {
    display: block;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 270px;
    height: 270px;
    padding: 25px 20px 20px;
    box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}

.app,
.education,
.femtech {
    padding: 25px;
}


/* 各画像に上の余白指定 */
.hplogolp img,
.app img,
.education img,
.femtech img {
    padding: 40px 0 0 0;
}


/* 事業紹介ボタン */
.businesses_btn a,
.news_btn a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 23px 40px;
    font-weight: bold;
    width: 280px;
    color: #CBBBAC;
    letter-spacing: 2px;
    border: 2px solid #CBBBAC;
    transition: 0.3s;
    margin: 0 auto;
    border-radius: 3px;
}
  
.businesses_btn a::after,
.news_btn a::after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid #CBBBAC;
    border-right: 2px solid #CBBBAC;
    transform: rotate(45deg);
}
  
/* .businesses_btn a:hover {
    text-decoration: none;
    background-color: #bbbbbb;
} */

@media screen and (max-width: 768px) {

    .businesses h1 {
        font-size: 24px;
    }
    
    .businesses h2 {
        font-size: 14px;
    }

    .businesses {
        margin: 70px 25px 0;
    }    

    .businesses_list {
        margin: 40px 0;
    }

    .hplogolp, 
    .app,
    .education,
    .femtech {
        width: 215px;
        height: 215px;
        padding: 20px 10px 10px;
    }

    .app,
    .education,
    .femtech {
        padding: 20px;
    }

    .hplogolp img {
        padding: 10px 0 0 0;
    }

    .hplogolp img,
    .app img,
    .education img,
    .femtech img {
        width: 160px;
        padding: 30px 0 0 0;
    }

}

@media screen and (max-width: 670px) {

    .businesses {
        margin: 30px 0;
    }

}

@media screen and (max-width: 510px) {

    .businesses {
        margin: 50px 0 0;
        padding: 0 15px;
    }    

    /* .businesses_title_span {
        display: inline-block;
    } */

    .businesses h2 {
        font-size: 14px;
        line-height: normal;
    }

    .subtitle_mini {
        font-size: 8px;
    }

    .businesses_list {
        gap: 10px;
    }
    
    .hplogolp, 
    .app,
    .education,
    .femtech {
        width: 160px;
        height: 160px;
        padding: 10px;
    }

    .app,
    .education,
    .femtech {
        padding: 15px;
    }

    .hplogolp img {
        padding: 5px 0 0 0;
    }

    .hplogolp img {
        width: 110px;
        padding: 10px 0 0;
    }

    .app img,
    .education img,
    .femtech img {
        width: 110px;
        padding: 20px 0 0;
    }

}


/* お知らせ */
.news {
    margin: 150px 0 0;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    gap: 160px;
    height: 300px;
}

.news h1 {
    font-size: 30px;
    text-align: center;
    font-family: 'Noto Serif JP', sans-serif;
    padding: 0 0 70px;
} 

.news_title {
    background: linear-gradient(transparent 70%, #E6DDD5 40%);
    padding: 0 4px;
    letter-spacing: 2px;
}

.news_filter {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin: 30px;
}

.news_filter button {
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    font-size: 16px;
}

.news_filter button:hover,
.news_filter button.selected {
    border-bottom: 1px solid #CBBBAC;
}

.news_list {
    border-top: 1px solid #CBBBAC;
}

.news_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #CBBBAC;
}

.date_category_title {
    display: flex;
    align-items: center;
}

.date_new {
    display: flex;
    align-items: center;
}

.news_item .date {
    color: #A09388;
}

.news_item .date {
    padding: 0 130px 0 0;
}

.news_item .new {
    flex: 1;
    color: #FFF;
    background-color: #CBBBAC;
    padding: 3px 10px;
    font-size: 14px;
    margin: 0 60px 0 15px;
}

.category_title {
    padding: 0 250px 0 0;
}

.news_item .category {
    font-size: 14px;
    padding: 0 0 6px 0;
}

.news_item .title {
    flex: 6;
    color: #000;
}

.news_item .link {
    flex: 1;
    text-align: right;
    color: #CBBBAC;
    font-weight: bold;
}

@media screen and (max-width: 1024px) {

    .news {
        display: block;
    }

    .category_title {
        padding: 0;
    }

}

@media screen and (max-width: 768px) {

    .news {
        margin: 70px 0 0;
        display: block;
    }

    .news h1 {
        font-size: 24px;
        padding: 0 0 50px;
    }

    .news_filter {
        justify-content: center;
        gap: 20px;
        margin: 25px auto;
    }

    .news_filter button {
        padding: 10px;
        font-size: 14px;
    }

    .news_item {
        padding: 10px;
    }

    .date_category_title {
        display: block;
        align-items: center;
    }

    .news_item .date,
    .news_item .date1 {
        font-size: 14px;
        color: #A09388;
    }

    .news_item .new {
        padding: 2px 7px;
        font-size: 12px;
        margin: 0 0 0 13px;
        max-width: 45px;
    }

    .news_item .category {
        font-size: 12px;
        padding: 8px 0 5px;
    }
    
    .news_item .title {
        font-size: 14px;
        flex: 6;
        color: #000;
    }

    .category_title_link {
        display: flex;
    }

}

@media screen and (max-width: 480px) {

    .news {
        padding: 0 12px;
    }

    .news_filter {
        justify-content: center;
        gap: 10px;
        margin: 20px auto;
    }

    .news_filter button {
        padding: 5px;
        font-size: 14px;
    }

    .news_item .new {
        padding: 2px 7px;
        font-size: 12px;
        margin: 0 0 0 10px;
        max-width: 45px;
    }

}

@media screen and (max-width: 350px) {

    .news_filter {
        justify-content: center;
        gap: 8px;
        margin: 15px auto;
    }

    .news_filter button {
        padding: 7px;
        font-size: 12px;
    }

}


/* お問い合わせ */
.contact {
    background-color: rgba(203, 187, 172, 0.75);
    margin: 150px 0 0;
    font-family: 'Noto Serif JP', sans-serif;
    padding: 35px 24px;
}

.contact_title {
    background: linear-gradient(transparent 70%, #D2C2B7 40%);
    padding: 0 4px;  
}

.contact h1 {
    font-size: 30px;
    letter-spacing: 2px;
    text-align: center;
    color: #fff;
}

.contact_btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 40px;
    font-size: 18px;
    font-weight: bold;
    width: 360px;
    color: #fff;
    letter-spacing: 2px;
    border: 2px solid #fff;
    transition: 0.3s;
    margin: 0 auto;
    border-radius: 3px;
}
  
/* .contact_btn a:hover {
    text-decoration: none;
    background-color: #bbbbbb;
} */

.contact_text {
    color: #fff;
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 170%;
    font-weight: 500;
    margin: 30px auto;
    text-align: center;
}

@media screen and (max-width: 1024px) {

    .contact_text_span {
        display: inline-block;
    }
}

@media screen and (max-width: 768px) {

	.contact {
        margin: 70px 0 0 0;
        padding: 30px 24px;
    }

    .contact h1 {
        font-size: 24px;
    }

    .contact_btn a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 23px 25px;
        font-size: 15px;
        font-weight: bold;
        width: 280px;
        color: #fff;
        letter-spacing: 2px;
        border: 2px solid #fff;
        transition: 0.3s;
        margin: 30px auto;
    }
      
    .contact_btn a::after {
        content: '';
        width: 10px;
        height: 10px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(45deg);
    }

    .contact_text {
        font-size: 14px;
    }
    
}

@media screen and (max-width: 480px) {

    .contact {
        margin: 70px 0 0 0;
        padding: 30px 15px;
    }
}


/* フッター */
.footer {
    display: flex;
    padding: 25px 0;
    margin: 0 50px;
    justify-content: center;
}

.footer_context {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.footer_group {
    display: grid;
    grid-template-columns: repeat(auto-fit, 120px);
    gap: 5px 10px;
    justify-content: center;
}

.footer_title {
    font-size: 14px;
    font-weight: bold;
}

.footer_li {
    padding: 8px 0;
    width: 140px;
    font-size: 12px;
    font-family: 'Noto Serif JP', sans-serif;
}

/* 下 */
.logo_sns_group {
    display: flex;
    gap: 20px;
    align-items: center;
    color: #fff;
    background-color: #CBBBAC;
    padding: 50px;
}

.logo_sns_ul {
    padding: 20px 0 0;
}

.logo_sns_li {
    display: flex;
    gap: 30px;
}

.footer_mail {
    color: #000;
    padding-left: 50px;
}

.footer_text {
    padding: 5px 0;
    color: #000;
    font-size: 12px;
    text-align: center;
    font-family: 'Noto Serif JP', sans-serif;
    background-color: #D5C8BC;
}


@media screen and (max-width: 768px) {

    .footer_context {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .footer_title {
        font-size: 16px;
    }

    .footer_mail {
        font-size: 14px;
    }

    .footer_li {
        font-size: 12px;
        padding: 8px 0;
    }
    
    .footer_text {
        font-size: 10px;
    }
    
    .footer_title {
        font-size: 14px;
    }

    .logo_sns_group {
        display: block;
        text-align: center;
    }

    .logo_sns_ul {
        display: flex;
        justify-content: center;
        padding: 20px 0;
    }

}

@media screen and (max-width: 480px) {

    .footer {
        margin: 0 24px;
    }
}