/*

■このCSSの役割＝複数ページにわたるCSS基本ファイル
①/css/main.css（サイト全体使用基本css）

■CSSファイル区分メモ
①/css/main.css（サイト全体使用基本css）
②/css/top.css（TOPページのみ使用css）
③/css/under.css（下層ページ共通css）
④/css/archive.css（検索付き一覧ページのみcss）
⑤/css/single.css（子ページ関連のみcss）
⑥/css/page.css（その他ページ分css）（about、rd、rd子ページ）

※基本的には①、③に書いて、追加分やオリジナルなcssはそのほかに書くような形

*/


@charset 'UTF-8';


/*------------------------------------------------------------
    font
------------------------------------------------------------*/

.font-en-l{
    font-family: "quasimoda", sans-serif;
    font-weight: 300;
    font-style: normal;
}
.font-en-r{
    font-family: "quasimoda", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.font-en-m{
    font-family: "quasimoda", sans-serif;
    font-weight: 500;
    font-style: normal;
}
.font-en-sb{
    font-family: "quasimoda", sans-serif;
    font-weight: 600;
    font-style: normal;
}
.font-en-b{
    font-family: "quasimoda", sans-serif;
    font-weight: 700;
    font-style: normal;
}
.font-en-eb{
    font-family: quasimoda, sans-serif;
    font-weight: 800;
    font-style: normal;
}


/*------------------------------------------------------------
    animation
------------------------------------------------------------*/

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}


.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}


/* visual-ripples（波紋アニメーション） */
.visual-ripples-move,
.visual-ripples-move:before,
.visual-ripples-move:after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    animation: ripples 3s infinite;
}

.visual-ripples-move:before,
.visual-ripples-move:after {
    content: "";
}
.visual-ripples-move{
    animation-delay: 1.5s;
}
.visual-ripples-move:before {
    animation-delay: 1.8s;
}

.visual-ripples-move:after {
    animation-delay: 2.1s;
}

@keyframes ripples-sm {
    0% {
        width: 640px;
        height: 640px;
    }
    
    50% {
        width: 660px;
        height: 660px;
    }

    100% {
        width: 640px;
        height: 640px;
    }
}
@keyframes ripples {
    0% {
        width: 0;
        height: 0;
        border: 2px solid rgba(25, 171, 216, 0.8);
    }
    
    100% {
        width: 1100px;
        height: 1100px;
        border: 2px solid rgba(25, 171, 216, 0);
    }
}

.visual-ripples-fixed{
    width: 640px;
    height: 640px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background: #19ABD8;
    border-radius: 50%;
    /*animation: ripples-sm 3s infinite;*/
}
.visual-ripples-fixed:after{
    content: "";
    width: 480px;
    height: 480px;
    background: #089FCE;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}



@media only screen and (max-width:640px) and (max-device-width:1280px){

    @keyframes ripples {
        0% {
            width: 0;
            height: 0;
            border: 2px solid rgba(25, 171, 216, 0.8);
        }
        
        100% {
            width: 560px;
            height: 560px;
            border: 2px solid rgba(25, 171, 216, 0);
        }
    }
    .visual-ripples-fixed{
        width: 320px;
        height: 320px;
    }
    .visual-ripples-fixed:after{
        width: 240px;
        height: 240px;
    }

}



/*------------------------------------------------------------
    Base Fix
------------------------------------------------------------*/

div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, 
p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, 
dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, 
tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, 
legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, 
canvas, details, embed, figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary, time, mark, audio, video,
input, select, textarea {
    margin: 0;
    padding: 0;
    border: 0;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
main{
    overflow: hidden;
}
main > .basic-page > #sections{
    font-family: "Noto Sans JP", system-ui;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.89;
    word-break: break-word;
    color: #1a1a1a;
}
.basic-page a{
    transition: all .3s;
    word-break: break-all;
    color: #089FCE;
}
.basic-page a:hover{
    transition: all .3s;
}
.holdings-footer.page-in-menu {
    padding-bottom: 75px;
}
.holdings-header a, .holdings-titlenav a, .holdings-footer a, .holdings-cta a {
    word-break: break-word;
    white-space: normal;
}
.holdings-titlenav {
    position: relative;
    z-index: 9;
}
.titlenavigation {
    position: relative;
    z-index: 9;
}
.bgWhite{
    background: #fff;
}
.holdings-breadcrumbs__list__item a{
    word-break: break-word;
    white-space: normal;
}
img{
    max-width: 100%;
    height: auto;
}


@media only screen and (max-width:640px) and (max-device-width:1280px){

    .basic-page {
        width: 100%;
    }
    main > .basic-page > #sections{
        font-size: 14px;
    }
    .holdings-footer.page-in-menu {
        padding-bottom: 0;
    }


}


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

/*.aem-GridColumn{
    position: relative;
    z-index: 9;
}*/
/*.titlenavigation {
    position: relative;
    z-index: 9;
}*/
.holdings-header__sub__nav{
    border-bottom: 1px solid #ccc;
}
.holdings-header__subchild {
    background-color: #F2F2F2;
    border-top: none;
    color: #666;
    text-align: center;
    font-size: 12px;
    position: relative;
}


@media only screen and (max-width:640px) and (max-device-width:1280px){

    /*.holdings-titlenav {
        position: relative;
        z-index: 9;
    }*/


}



/*------------------------------------------------------------
    common Parts
------------------------------------------------------------*/

.unicom-pc{
    display: block;
}
.unicom-sp{
    display: none;
}

.unicom-container{
    width: 980px;
    margin: 0 auto;
}
.unicom-container-md{
    width: 1116px;
    margin: 0 auto;
}
.unicom-container-lg{
    width: 1240px;
    margin: 0 auto;
}


/* tag-parts */
.tag-item {
    font-size: 11px;
    display: inline-block;
    color: #666;
    font-weight: 500;
}
.tag-item:before{
    content: "#";
    color: #089FCE;
}

/* swiper-parts */
.slider-btn{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.swiper-btn-prev{
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    background: #089FCE;
    border: 1px solid #089FCE;
    color: #fff;
    transition: all .3s;
    cursor: pointer;
}
.swiper-btn-prev .material-symbols-outlined{
    font-weight: 700;
    position: relative;
    right: 1px;
    font-size: 28px;
}
.swiper-btn-prev:hover{
    color: #089FCE;
    background: #fff;
}
.swiper-btn-next{
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: #089FCE;
    color: #fff;
    border: 1px solid #089FCE;
    font-weight: 700;
    transition: all .3s;
    cursor: pointer;
}
.swiper-btn-next .material-symbols-outlined{
    font-weight: 600;
    position: relative;
    left: 1px;
    font-size: 28px;
}
.swiper-btn-next:hover{
    color: #089FCE;
    background: #fff;
}
.swiper-button-disabled{
    background: none !important;
    cursor: auto;
    border: 1px solid #F5F5F7;
}
.swiper-button-disabled:hover{
    color: #fff;
}

@media only screen and (max-width:640px) and (max-device-width:1280px){

    .unicom-pc{
        display: none !important;
    }
    .unicom-sp{
        display: block;
    }
    .unicom-container{
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    .unicom-container-md{
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    .unicom-container-lg{
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .top-media-section-control{
        margin-top: 32px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .swiper-btn-prev{
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }
    .swiper-btn-prev .material-symbols-outlined{
        font-size: 24px;
    }
    .swiper-btn-next{
        width: 40px;
        height: 40px;
    }
    .swiper-btn-next .material-symbols-outlined{
        font-size: 24px;
    }

    .top-media-section-control .main-btn{
        margin-top: 0;
    }
    .top-media-section-control .main-btn a{
        font-size: 14px;
        padding: 10px 20px;
    }



}

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

    .top-media-section-control .main-btn a .w320{
        display: none;
    }

}




/*------------------------------------------------------------
    btn Parts
------------------------------------------------------------*/

/* main-btn */
.main-btn{
    margin-top: 40px;
    text-align: center;
}
.main-btn a{
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
    border-radius: 32px;
    padding: 11px 29px;
    display: inline-block;
    border: 1px solid #089FCE;
    background: rgb(0,65,192);
    background: linear-gradient(90deg, rgba(0,65,192,1) 0%, rgba(8,159,206,1) 100%);
}
.main-btn a:hover{
    color: #089FCE;
    background: #fff;
}


/* text-btn */
.text-btn {
    margin-top: 24px;
    line-height: 1;
}
.text-btn a {
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    line-height: 1.45;
}
.text-btn a:hover{
    color: #666;
}
.text-btn a .text-btn-underline{
    text-decoration: underline;
}
.text-btn a:hover .text-btn-underline{
    text-decoration: none;
}
.text-btn a .material-symbols-outlined{
    font-size: 18px;
    font-weight: 600;
    margin-left: 6px;
    position: relative;
    top: 1px;
}


/* .icon-main-btn */
.main-btn.icon-main-btn{
    margin-top: 32px;
}
.main-btn.icon-main-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px 14px 32px;
}
.main-btn.icon-main-btn a .material-symbols-outlined {
    margin-left: 10px;
}


/* .btn-circle-decorate */
.btn-circle-decorate{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: #089FCE;
    border: 1px solid #089FCE;
    color: #fff;
    transition: all .3s;
    position: absolute;
    top: 26px;
    right: 24px;
}
.btn-circle-decorate .material-symbols-outlined {
    font-weight: 600;
    position: relative;
    left: 1px;
}
a:hover .btn-circle-decorate{
    color: #089FCE;
    background: #fff;
}

/* .back-btn */
.main-btn.back-btn{

}
.main-btn.back-btn a{
    background: #666666;
    border: 1px solid #666666;
}
.main-btn.back-btn a:hover{
    background: #fff;
    color: #666666;
}

@media only screen and (max-width:640px) and (max-device-width:1280px){

    .main-btn{
        margin-top: 32px;
    }
    .main-btn a {
        font-size: 15px;
        padding: 12px 24px;
    }
    .text-btn a{
        font-size: 14px;
    }

    .main-btn.icon-main-btn a{
        padding: 12px 16px 12px 24px;
    }
    .main-btn.icon-main-btn a .material-symbols-outlined {
        margin-left: 8px;
        font-size: 22px;
    }

    .btn-circle-decorate {
        width: 28px;
        height: 28px;
        top: 22px;
        right: 20px;
    }
    .btn-circle-decorate .material-symbols-outlined{
        font-size: 20px;
    }

}







/*------------------------------------------------------------
    News List Parts
------------------------------------------------------------*/

/* ul.sm-news-list */
ul.sm-news-list{

}
ul.sm-news-list > li {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-right: 24px;
    transition: all .3s;
}
ul.sm-news-list > li:not(:first-of-type){
    margin-top: 12px;
}
.news-list-date{
    width: 90px;
    font-family: "quasimoda", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    letter-spacing: 0.25px;
}
.news-list-category {
    width: 100px;
    font-size: 12px;
    text-align: center;
    border-radius: 4px;
    background: #222222;
    color: #fff;
    line-height: 1;
    padding: 6px 8px;
    box-sizing: border-box;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.news-list-title{
    width: calc(100% - 90px - 100px);
    font-size: 15px;
    line-height: 1.6;
    box-sizing: border-box;
    padding-left: 20px;
}
.news-list-title a{
    position: relative;
    color: #1a1a1a;
    text-decoration: underline;
}
.news-list-title a:hover{
    color: #666;
    text-decoration: none;
}


@media only screen and (max-width:640px) and (max-device-width:1280px){

    .news-list-date{
        font-size: 14px;
        width: auto;
        margin-right: 16px;
    }
    .news-list-category{
        font-size: 12px;
        padding: 5px 10px;
        width: auto;
    }
    ul.sm-news-list .news-list-title {
        width: 100%;
        padding-left: 0;
        display: block;
        line-height: 1.6;
        margin-top: 6px;
        font-size: 14px;
    }
    ul.sm-news-list > li{
        padding-right: 16px;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid #D7E8F0;
    }
    ul.sm-news-list > li:not(:first-of-type){
        margin-top: 16px;
    }


}







/*------------------------------------------------------------
    研究開発領域 List Parts
------------------------------------------------------------*/

/* ul.sm-rd-list */
ul.sm-rd-list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: -10px;
}
ul.sm-rd-list > li{
    padding: 10px;
}
ul.sm-rd-list > li > a {
    display: inline-flex;
    align-items: center;
    color: #1a1a1a;
    padding: 8px 8px 8px 24px;
    background: #fff;
    border-radius: 50px;
    box-shadow: rgba(9,35,64,0.1) 4px 6px 16px 4px;
}
ul.sm-rd-list > li > a:hover{
    background: #089FCE;
    color: #fff;
}
ul.sm-rd-list > li > a:hover .sm-rd-list-decorate{
    color: #089FCE;
    background: #fff;
}
.sm-rd-list-name{
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
}
.sm-rd-list-decorate {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: #089FCE;
    color: #fff;
    margin-left: 14px;
    transition: all .3s;
}
.sm-rd-list-decorate .material-symbols-outlined{
    font-weight: 600;
    position: relative;
    left: 1px;
    font-size: 20px;
}

/* ul.sm-rd-list li.color-blue */
ul.sm-rd-list > li.color-blue .sm-rd-list-decorate{
    background: #0255A7;
}
ul.sm-rd-list > li.color-blue > a:hover{
    background: #0255A7;
    color: #fff;
}
ul.sm-rd-list > li.color-blue > a:hover .sm-rd-list-decorate{
    color: #0255A7;
    background: #fff;
}

/* ul.sm-rd-list li.color-green */
ul.sm-rd-list > li.color-green .sm-rd-list-decorate{
    background: #009C64;
}
ul.sm-rd-list > li.color-green > a:hover{
    background: #009C64;
    color: #fff;
}
ul.sm-rd-list > li.color-green > a:hover .sm-rd-list-decorate{
    color: #009C64;
    background: #fff;
}

/* ul.sm-rd-list li.color-orange */
ul.sm-rd-list > li.color-orange .sm-rd-list-decorate{
    background: #CC6500;
}
ul.sm-rd-list > li.color-orange > a:hover{
    background: #CC6500;
    color: #fff;
}
ul.sm-rd-list > li.color-orange > a:hover .sm-rd-list-decorate{
    color: #CC6500;
    background: #fff;
}

@media only screen and (max-width:640px) and (max-device-width:1280px){

    ul.sm-rd-list{
        margin: -7.5px;
    }
    ul.sm-rd-list > li{
        padding: 7.5px;
    }
    ul.sm-rd-list > li > a {
        padding: 8px 8px 8.5px 16px;
    }

    .sm-rd-list-name{
        font-size: 14px;
    }
    .sm-rd-list-decorate{
        width: 25px;
        height: 25px;
        margin-left: 10px;
    }
    .sm-rd-list-decorate .material-symbols-outlined{
        font-size: 18px;
    }

}



/* ul.lg-rd-list */
ul.lg-rd-list{
    display: flex;
    flex-wrap: wrap;
    margin: -24px -12px 0;
}
ul.lg-rd-list > li{
    width: 50%;
    box-sizing: border-box;
    padding: 24px 12px 0;
}
.lg-rd-card {
    background: #fff;
    border-radius: 16px;
    display: block;
    box-shadow: rgba(9, 35, 64, 0.1) 4px 6px 16px 4px;
    padding: 26px 28px 28px;
    position: relative;
}
.lg-rd-card-name{
    font-size: 22px;
    line-height: 1.6;
    font-weight: 700;
    color: #1a1a1a;
}
.lg-rd-card-info {
    margin-top: 16px;
}
.lg-rd-card-copy{
    line-height: 1.6;
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 500;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    height: 26px;
}
.lg-rd-card-description {
    font-size: 14px;
    color: #3A3A3A;
    margin-top: 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    height: 80px;
}
a.lg-rd-card:hover{
    box-shadow: none;
    opacity: 0.6;
}

/* ul.lg-rd-list li.color-blue */
ul.lg-rd-list > li.color-blue .btn-circle-decorate{
    background: #0255A7;
    border: 1px solid #0255A7;
}
ul.lg-rd-list > li.color-blue > a:hover .btn-circle-decorate{
    color: #0255A7;
    background: #fff;
}

/* ul.lg-rd-list li.color-green */
ul.lg-rd-list > li.color-green .btn-circle-decorate{
    background: #009C64;
    border: 1px solid #009C64;
}
ul.lg-rd-list > li.color-green > a:hover .btn-circle-decorate{
    color: #009C64;
    background: #fff;
}

/* ul.lg-rd-list li.color-orange */
ul.lg-rd-list > li.color-orange .btn-circle-decorate{
    background: #CC6500;
    border: 1px solid #CC6500;
}
ul.lg-rd-list > li.color-orange > a:hover .btn-circle-decorate{
    color: #CC6500;
    background: #fff;
}

@media only screen and (max-width:640px) and (max-device-width:1280px){

    ul.lg-rd-list{
        margin: -16px 0 0;
    }
    ul.lg-rd-list > li{
        width: 100%;
        padding: 16px 0 0;
    }
    .lg-rd-card{
        padding: 24px;
    }
    .lg-rd-card-name{
        font-size: 18px;
        line-height: 1.56;
    }
    .lg-rd-card-info{
        margin-top: 16px;
    }
    .lg-rd-card-copy {
        font-size: 15px;
        line-height: 1.56;
    }

}








/*------------------------------------------------------------
    トピックス List Parts
------------------------------------------------------------*/

/* ul.sm-topics-list */
ul.sm-topics-list{
    display: flex;
    flex-wrap: wrap;
    margin: -24px -12px 0;
}
ul.sm-topics-list > li{
    width: calc(100% / 3);
    box-sizing: border-box;
    padding: 24px 12px 0;
}
.topics-card{
    background: #fff;
    border-radius: 16px;
    display: block;
    box-shadow: rgba(9,35,64,0.1) 4px 6px 16px 4px;
}
.topics-list-thumb{
    border-radius: 16px 16px 0 0;
    border-bottom: 1px solid #D7E8F0;
    overflow: hidden;
}
.topics-list-thumb img{
    object-fit: cover;
    width: 100%;
    height: 192px;
    border-radius: 16px 16px 0 0;
    display: block;
    transition: all .3s;
    transform: scale(1);
}
.topics-list-thumb iframe{
    width: 100%;
    height: 192px;
    border-radius: 16px 16px 0 0;
    display: block;
    transition: all .3s;
    transform: scale(1);
}
.topics-list-content {
    padding: 16px 16px 24px;
    display: block;
}
.topics-list-info{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.topics-list-date {
    font-size: 13px;
    color: #666666;
    font-family: "quasimoda", sans-serif;
    font-weight: 500;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.25px;
}
.topics-list-category{
    font-size: 12px;
    line-height: 1;
    background: #F5F5F7;
    padding: 5px 10px;
    color: #1a1a1a;
    font-weight: 500;
}
.topics-list-title {
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    font-weight: 500;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 52px;
}
.topics-list-tags {
    display: flex;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-height: 1;
    margin-top: 6px;
}
.topics-list-tags .tag-item:not(:first-of-type) {
    margin-left: 8px;
}

a.topics-card:hover{
    opacity: 0.6;
    box-shadow: none;
}
a.topics-card:hover .topics-list-thumb img{
    transform: scale(1.1);
}
a.topics-list-content:hover{
    opacity: 0.6;
}

@media only screen and (max-width:640px) and (max-device-width:1280px){

    .topics-list-title {
        font-weight: 600;
        font-size: 15px;
        height: 48px;
        margin-bottom: 12px;
    }
    .topics-list-tags{
        margin-top: 10px;
    }

    ul.sm-topics-list{
        margin: -16px 0 0;
    }
    ul.sm-topics-list > li{
        width: 100%;
        padding: 16px 0 0;
    }
    .topics-list-content{
        padding: 12px 0 0;
    }

}










/*------------------------------------------------------------
    インタビュー List Parts
------------------------------------------------------------*/

/* ul.sm-interview-list */
ul.sm-interview-list{
    display: flex;
    flex-wrap: wrap;
    margin: -24px -12px 0;
}
ul.sm-interview-list > li{
    width: calc(100% / 3);
    box-sizing: border-box;
    padding: 24px 12px 0;
}
.interview-card{
    background: #fff;
    border-radius: 16px;
    display: block;
    box-shadow: rgba(9,35,64,0.1) 4px 6px 16px 4px;
}
.interview-list-thumb{
    border-radius: 16px 16px 0 0;
    border-bottom: 1px solid #D7E8F0;
    overflow: hidden;
}
.interview-list-thumb img{
    object-fit: cover;
    width: 100%;
    height: 192px;
    border-radius: 16px 16px 0 0;
    display: block;
    transition: all .3s;
    transform: scale(1);
}
.interview-list-thumb iframe{
    object-fit: cover;
    width: 100%;
    height: 192px;
    border-radius: 16px 16px 0 0;
    display: block;
}
.interview-list-content {
    padding: 16px 16px 24px;
    display: block;
}
.interview-list-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.interview-list-date {
    font-size: 13px;
    color: #666666;
    font-family: "quasimoda", sans-serif;
    font-weight: 500;
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.25px;
}
.interview-list-category{
    font-size: 12px;
    line-height: 1;
    background: #F5F5F7;
    padding: 5px 10px;
    color: #1a1a1a;
    font-weight: 500;
    display: inline-block;
}
.interview-list-title {
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    font-weight: 500;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 52px;
    margin-bottom: 6px;
}
.interview-list-tags {
    display: flex;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-height: 1;
    margin-top: 4px;
}
.interview-list-tags .tag-item:not(:first-of-type) {
    margin-left: 8px;
}

a.interview-card:hover{
    opacity: 0.6;
    box-shadow: none;
}
a.interview-card:hover .interview-list-thumb img{
    transform: scale(1.1);
}
a.interview-list-content:hover{
    opacity: 0.6;
}






@media only screen and (max-width:640px) and (max-device-width:1280px){

    .interview-list-title{
        font-size: 15px;
        font-weight: 600;
        height: 48px;
        margin-bottom: 12px;
    }

}










/*------------------------------------------------------------
    メンバー List Parts
------------------------------------------------------------*/

/* ul.sm-member-list */
ul.sm-member-list{
    display: flex;
    flex-wrap: wrap;
    margin: -24px -12px 0;
}
ul.sm-member-list > li{
    width: calc(100% / 3);
    box-sizing: border-box;
    padding: 24px 12px 0;
}
.member-card{
    background: #fff;
    border-radius: 16px;
    display: block;
    box-shadow: rgba(9,35,64,0.1) 4px 6px 16px 4px;
    padding: 16px 16px 22px;
}
.member-list-head{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 14px;
}
.member-list-photo{
    width: 72px;
    border-radius: 50%;
}
.member-list-photo img{
    display: block;
    width: 100%;
    height: 72px;
    object-fit: cover;
    border-radius: 50%;
}
.member-list-text{
    width: calc(100% - 72px);
    box-sizing: border-box;
    padding-left: 12px;
    color: #1a1a1a;
}
.member-list-name{
    font-size: 17px;
    line-height: 1;
    font-weight: 600;
}
.member-list-info {
    font-size: 13px;
    line-height: 1.5;
    margin-top: 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.member-list-profile{
    font-size: 13px;
    line-height: 1.6;
    color: #666666;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.member-list-tags {
    display: flex;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-height: 1;
    margin-top: 8px;
}
.member-list-tags .tag-item:not(:first-of-type) {
    margin-left: 8px;
}

a.member-card:hover{
    box-shadow: none;
    opacity: 0.6;
}


@media only screen and (max-width:640px) and (max-device-width:1280px){

    .member-list-tags{
        margin-top: 10px;
    }

}





/*------------------------------------------------------------
    プロジェクト List Parts
------------------------------------------------------------*/

/* ul.sm-project-list */
ul.sm-project-list{
    display: flex;
    flex-wrap: wrap;
    margin: -24px -6px 0;
}
ul.sm-project-list > li{
    width: calc(100% / 4);
    box-sizing: border-box;
    padding: 24px 6px 0;
}
a.project-card{

}
.project-list-thumb{
    border-radius: 16px;
    overflow: hidden;
}
.project-list-thumb img{
    border-radius: 16px;
    overflow: hidden;
    display: block;
    width: 100%;
    height: 145px;
    object-fit: cover;
    transition: all .3s;
    transform: scale(1);
}
.project-list-content{
    margin-top: 8px;
}
.project-list-name{
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    color: #1a1a1a;
}

a.project-card:hover{
    opacity: 0.6;
}
a.project-card:hover .project-list-thumb img{
    transform: scale(1.1);
}


@media only screen and (max-width:640px) and (max-device-width:1280px){

    ul.sm-project-list{
        margin: -16px -7.5px 0;
    }
    ul.sm-project-list > li{
        width: 50%;
        padding: 16px 7.5px 0;
    }
    .project-list-thumb img{
        height: 28vw;
    }
    .project-list-content{
        margin-top: 6px;
    }
    .project-list-name{
        font-size: 13px;
    }

}



/*------------------------------------------------------------
    組織体制 List Parts
------------------------------------------------------------*/

/* ul.organization-list */
ul.organization-list{
    column-count: 2;  /* 2列にする */
    column-gap: 24px; /* 列間の余白 */
    padding: 0;
    margin: -24px 0 0;
}
ul.organization-list > li {
    background: #fff;
    border-radius: 16px;
    display: block;
    padding: 26px 28px 32px;
    position: relative;
    box-sizing: border-box;
    display: inline-block; /* column内でブロック要素を扱う */
    width: 100%; /* 列の幅にフィット */
    margin-top: 24px; /* 要素の間の余白 */
    break-inside: avoid; /* 要素が途中で切れないようにする */
}
.organization-card {
    
}
.organization-card > .organization-card-box:not(:first-of-type){
    margin-top: 20px;
}
.organization-card-name{
    font-size: 22px;
    line-height: 1.6;
    font-weight: 700;
    color: #1a1a1a;
}
.organization-card-info{
    margin-top: 16px;
}
.organization-card-copy{
    line-height: 1.6;
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 500;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    height: 26px;
}
.organization-card-description {
    font-size: 15px;
    color: #3A3A3A;
    /*margin-top: 8px;*/
}
a.organization-card:hover{
    box-shadow: none;
    opacity: 0.6;
}

.organization-card-link{
    margin-top: 16px;
}
.organization-card-link > .text-btn{
    margin-top: 0;
}
.organization-card-link > .text-btn:not(:first-of-type){
    margin-top: 12px;
}
.organization-card-link > .text-btn a{
    font-size: 14px;
}
.organization-card-link > .text-btn a .material-symbols-outlined{
    font-size: 16px;
}

ul.organization-list > li .btn-circle-decorate{
    top: 28px;
}
ul.organization-list > li .btn-circle-decorate .material-symbols-outlined{
    font-weight: 500;
    font-size: 20px;
}


@media only screen and (max-width:640px) and (max-device-width:1280px){

    ul.organization-list{
        column-count: 1;
        margin-top: -16px;
    }
    ul.organization-list > li{
        margin-top: 16px;
        padding: 24px 24px 28px;
    }
    .organization-card-name{
        font-size: 18px;
        line-height: 1.56;
    }
    .organization-card-info{
        margin-top: 12px;
    }
    .organization-card-copy{
        font-size: 15px;
        line-height: 1.56;
        display: block;
        height: auto;
    }
    .organization-card-description {
        font-size: 14px;
    }
    ul.organization-list > li .btn-circle-decorate{
        top: 17px;
    }
    ul.organization-list > li .btn-circle-decorate .material-symbols-outlined{
        font-size: 18px;
    }
    .organization-card > .organization-card-box:not(:first-of-type){
        margin-top: 24px;
    }

}




/*------------------------------------------------------------
    パナソニックグループ採用窓口 Parts
------------------------------------------------------------*/

aside#commmon-recruit {
    background: #007AC7;
    padding: 108px 0;
    position: relative;
}
aside#commmon-recruit:before{
    content: "";
    display: block;
    width: 100%;
    height: calc(108px + 465px / 2);
    background: #f5f5f7;
    position: absolute;
    top: 0;
    left: 0;
}
.commmon-recruit-visual{
    position: relative;
}
.commmon-recruit-visual-box {
    height: 434px;
    background-image: url(/jp/phd/img/common/recruit_visual.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.commmon-recruit-visual-copy{
    text-align: center;
    margin-bottom: 12px;
}
.commmon-recruit-visual-copy figure {
    text-align: center;
    margin: 4px 0;
}
.commmon-recruit-visual-copy figure img {
    height: 96px;
    display: block;
    margin: auto;
}
.commmon-recruit-visual-copy figure:nth-of-type(2) img{
    height: 108px;
}

.common-recruit-content {
    position: relative;
}
.common-recruit-content-whitebox {
    color: #fff;
    padding: 64px 0 0;
    text-align: center;
}
.common-recruit-content-title {
    font-size: 32px;
    line-height: 1.5;
    font-weight: 700;
}
.common-recruit-content-whitebox p {
    margin-top: 24px;
}

ul.common-recruit-content-link{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 40px auto 0;
}
ul.common-recruit-content-link li{
    padding: 0 16px;
}
ul.common-recruit-content-link li a{
    font-weight: 800;
    line-height: 1.5;
    font-size: 17px;
    color: #007AC7;
    background: #fff;
    border-radius: 32px;
    width: 280px;
    text-align: center;
    padding: 12px 32px;
    display: inline-block;
    border: 1px solid #fff;
    box-sizing: border-box;
    position: relative;
}
ul.common-recruit-content-link li a .material-symbols-outlined {
    position: absolute;
    right: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    font-weight: 500;
}
ul.common-recruit-content-link li a:hover{
    background: #007AC7;
    color: #fff;
}


@media only screen and (max-width:640px) and (max-device-width:1280px){

    aside#commmon-recruit{
        padding-top: 72px;
        padding-bottom: 72px;
    }
    .commmon-recruit-visual .unicom-container-lg{
        padding: 0;
    }
    .commmon-recruit-visual-box{
        height: 50vw;
    }
    .common-recruit-content {
        bottom: 0;
        margin-bottom: 0;
    }
    .commmon-recruit-visual-copy{
        margin-bottom: 8px;
    }
    .commmon-recruit-visual-copy figure img{
        height: 14vw;
    }
    .commmon-recruit-visual-copy figure:nth-of-type(2) img {
        height: 16vw;
    }
    .common-recruit-content-whitebox{
        padding: 40px 0 0;
    }
    .common-recruit-content-title{
        font-size: 22px;
        line-height: 1.56;
    }
    .common-recruit-content-whitebox p{
        margin-top: 24px;
        text-align: left;
    }

    ul.common-recruit-content-link{
        margin-top: 24px;
        display: block;
        max-width: 280px;
    }
    ul.common-recruit-content-link li{
        padding: 0;
    }
    ul.common-recruit-content-link li:not(:first-of-type){
        margin-top: 16px;
    }
    ul.common-recruit-content-link li a{
        width: 100%;
        font-size: 16px;
        padding: 12px 0;
    }

}






