@charset 'UTF-8';
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');

:root{
    --color-main:#000000;

    --color-g1-s:#268eff;
    --color-g1-e:#ffaecc;

    --color-g2-s:#ffae00;
    --color-g2-m:#8bd6d9;
    --color-g2-e:#77e6da;
    
    --bg-white:rgba(255,255,255,0.5);

    --font-main: "Noto Sans JP", sans-serif;
    --font-en: "Montserrat", sans-serif;

    --transition: all .2s ease;

    --header-height:160px;
    --s-header-height:100px;
}
*,*::before{
    box-sizing:border-box;
}

body{
    background:repeat-y top center/100% url('./img/common/bg.webp');
    margin:0;
    padding:0;
    padding-top:var(--header-height);
}
#main,#page{
    margin:0;
}

h1,h2,h3,h4,h5,h6,p,a,span,li,dt,dd,th,td{
    color:var(--color-main);
    margin:0;
    padding:0;
    font-family:var(--font-main);
    font-optical-sizing: auto;
    letter-spacing:0.1em;
}

.font-en{
    font-family:var(--font-en);
}

.page-inner{
    width:100%;
    max-width:1380px;
    padding:0 20px;
    margin:0 auto;
}

.ls-none{
    list-style:none;
    margin:0;
    padding:0;
}

.img-filter{
    mix-blend-mode:darken;
}



/* HEADER */
.main-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:26px 26px 0;
    height:var(--header-height);
    pointer-events:none;
    transition:var(--transition);
    z-index:9999;
}
.main-header.scrolled{
    padding:13px 26px 0;
    height:var(--s-header-height);
}
.main-header__inner{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
}
.main-header__logo{
    pointer-events:all;
}
.main-header__menusection{
    pointer-events:all;
    display:flex;
    align-items:center;
    gap:66px;
}
.main-header__menus{
    display:flex;
    gap:66px;
}
.main-header__menus a{
    color:var(--color-main);
    text-decoration:none;
}
.main-header__menu{
    position:relative;
    padding:30px 0;
}
.main-header__secmenus{
    position:absolute;
    width:auto;
    transition:var(--transition);
    top:calc(100% - 10px);
    left:-20px;
    background:var(--bg-white);
    border-radius:10px;
    padding: 14px 26px 20px 20px;
    opacity:0;
    pointer-events:none;
}
.main-header__secmenu{
    white-space:nowrap;
}
.main-header__secmenu:not(:last-child){
    margin-bottom:10px;
}
.main-header__menu:hover .main-header__secmenus{
    opacity:1;
    pointer-events:all;
}
.main-header__secmenu a {
        font-size: 14px;
}
.main-header__secmenu a::before {
        content: "・";
        color: #ff94bc;
}

.sp-toggler{
    display:block;
    background:#FFF;
    border:1px solid var(--color-main);
    border-radius:100vh;
    width:76px;
    height:28px;
    position:relative;
    cursor:pointer;
}
.sp-toggler span{
    position:absolute;
    width:calc(28 / 76 * 100%);
    height:1px;
    background:var(--color-main);
    left:calc(24 / 76 * 100%);
    transition:var(--transition);
}
.sp-toggler span:nth-of-type(1){
    top:40%;
}
.sp-toggler span:nth-of-type(2){
    top:60%;
}
.sp-toggler.open span:nth-of-type(1){
    top:50%;
    transform:rotate(15deg);
}
.sp-toggler.open span:nth-of-type(2){
    top:50%;
    transform:rotate(-15deg);
}


/* DRAWER */

.main-drawer{
    position:fixed;
    z-index:9998;
    top:0;
    right:0;
    background:#FFF;
    border-top-left-radius:50px;
    border-bottom-left-radius:50px;
    width:100%;
    max-width:480px;
    padding:var(--header-height) 50px 0;
    height:100vh;
    transform:translateX(101%);
    opacity:0;
    transition:var(--transition);
}
.main-drawer.open{
    opacity:1;
    transform:none;
}
.main-header.scrolled+.main-drawer{
    padding-top:var(--s-header-height);
}
.main-drawer__inner{
    height:100%;
    overflow-y:scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom:50px;
}
.main-drawer__inner::-webkit-scrollbar {
    display:none;
}
.main-drawer__menus a{
    color:var(--color-main);
    text-decoration:none;
}
.main-drawer__menu:not(:last-child){
    margin-bottom:30px;
}
.main-drawer__menu>a{
    font-size:24px;
}
.main-drawer__menu a em{
    display:block;
    font-family:var(--font-en);
    font-style:normal;
    font-weight:500;
    font-size:0.5em;
    opacity:0.6;
}
.main-drawer__secmenus{
    margin-top:14px;
}
.main-drawer__secmenu{
    position:relative;
    font-size:14px;
    padding-left:2em;
}
.main-drawer__secmenu::before{
    content:'-';
    position:absolute;
    top:0;
    left:1em;
}
.main-drawer__secmenu:not(:last-child){
    margin-bottom:12px;
}



/* FOOTER */

.main-footer{
    margin-top:128px;
}
.main-footer__box{
    padding:60px 0 26px;
    background:var(--bg-white);
    border-top-left-radius:130px;
    border-top-right-radius:130px;
}
.main-footer__inner{
    padding:0 50px;
    width:100%;
    max-width:1800px;
    margin:0 auto;
}
.main-footer__flex{
    display:flex;
    justify-content:space-between;
    gap:60px;
}
.main-footer__address{
    font-size: 16px;
    line-height:2.4;
    margin-top:2em;
}
.main-footer__menusections{
    display:flex;
    justify-content:space-between;
    gap:60px;
    margin-left:auto;
}
.main-footer__menus a{
    color:var(--color-main);
    text-decoration:none;
}
.main-footer__menu,
.main-footer__secmenu{
    line-height:2.4;
}
.main-footer__menu:not(:last-child){
    margin-bottom:34px;
}
.main-footer__secmenu{
    position:relative;
    font-size:12px;
    padding-left:2em;
    line-height:1.4;
}
.main-footer__secmenu:not(:last-child){
    margin-bottom:12px;
}
@media only screen and (max-width:1600px){
    .main-footer__secmenu{
        max-width:180px;
    }
}
.main-footer__secmenu::before{
    content:'-';
    position:absolute;
    left:1em;
    top:0;
}
.main-footer__banner img{
    width:330px;
}
.main-footer__bottoms{
    margin-top:20px;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:44px;
}
.main-footer__bottomlinks li{
    font-size:14px;
}
.main-footer__bottomlinks a{
    color:var(--color-main);
    text-decoration:none;
}
.main-footer__copyright{
    font-size:14px;
}




/* FOOTER BIGLINKS */

.footer-biglinksection{
    margin-top:128px;
}
.footer-biglinks{
    display:flex;
    justify-content:center;
    gap:60px;
}
.footer-biglink{
    width:100%;
    max-width:620px;
}
.footer-biglink a{
    text-decoration:none;
    color:var(--color-main);

    font-size:19px;
    height:160px;
    display:flex;
    align-items:center;
    justify-content:space-between;

    border:1px solid var(--color-main);
    border-radius:100vh;

    padding:0 46px 0 80px;
}
.footer-biglink.link01 a{
    background:linear-gradient(to left, var(--color-g2-s), var(--color-g2-m), var(--color-g2-e));
}
.footer-biglink.link02 a{
    background:linear-gradient(to left, var(--color-g1-s), var(--color-g1-e));
}
.footer-biglink__texts--en{
    display:block;
    font-size:33px;
    font-weight:100;
}
.footer-biglink__icon{
    display:block;
    width:78px;
}


/* COMMON */

.common-sectitle{
    width:133px;
    height:133px;
    border-radius:50%;
    border:1px solid var(--color-main);
    background:linear-gradient(to bottom, var(--color-g1-s), var(--color-g1-e));
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:400;
    letter-spacing:0.2em;
    font-family:var(--font-en);
}

.common-link a{
    color:var(--color-main);
    text-decoration:none;
    font-size:14px;
    font-weight:bold;
    width:200px;
    height:44px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 6px 0 22px;
    border-radius:100vh;
    border:1px solid var(--color-main);
    background:#FFF;
}
.common-link a::after{
    content:'';
    width:35px;
    height:35px;
    background:no-repeat center/contain url('./img/common/icon-btn-grad1.svg');
}
.common-link.center a{
    margin:0 auto;
}

.common-link02 a{
    color:var(--color-main);
    text-decoration:none;
    font-size:14px;
    font-weight:bold;
    width:145px;
    height:32px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid var(--color-main);
}
.common-link02 a::after{
    content:'';
    width:10px;
    height:5px;
    background:no-repeat center/contain url('./img/common/icon-arrow-only.svg');
}







/* TOP */

.top-mv{
    position:relative;
}
.top-mv__flex{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:100px;
    padding-left:40px;
}
@media only screen and (min-width:1660px){
    .top-mv__flex{
        padding-left:0;
    }
}
.top-mv__logosection{
    max-width:580px;
    margin-left:auto;
}
.top-mv__logo{
    margin-bottom:30px;
}
.top-mv__title{
    font-size:22px;
    line-height:2;
    font-weight:400;
}
.top-mv__logosection__image{
    text-align:right;
    width:100%;
    max-width:520px;
}
.top-mv__mainimage{
    width:calc(1030 / 1920 * 100%);
}
@keyframes top-scrollicon{
    0%{
        transform:translateY(-50%);
    }
    100%{
        transform:translateY(0);
    }
}
.top-mv__scroll{
    width:88px;
    position:absolute;
    bottom:50px;
    left:calc(50% - 44px);
    animation: top-scrollicon 1s infinite alternate ease-in-out;
}

.top-concept{
    padding-top:120px;
    overflow:hidden;
}
.top-concept__maintitle{
    text-align:center;
    font-size:32px;
    font-weight:500;
    margin-bottom:120px;
}
.top-concept__flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:100px;
}
.top-concept__content{
    width:600px;
}
.top-concept__titlesection__bg{
    margin-bottom:-78px;
    width:100%;
    max-width:580px;
    position:relative;
    z-index:1;
}
.top-concept__title{
    position:relative;
    z-index:2;
}
.top-concept__text{
    font-size:18px;
    line-height:2;
    margin:2em 0;
}
.top-concept__images{
    width:630px;
}
.top-concept__mainimage{
    margin-left:auto;
    transform:translateX(96px);
    width:100%;
    max-width:560px;
    mix-blend-mode:darken;
}
.top-concept__hv{
    margin-top:-60px;
    width:200px;
}

.top-business{
    position:relative;
    padding-top:120px;
    padding-bottom:200px;
    overflow:hidden;
}
.top-business__flex{
    display:flex;
    justify-content:space-between;
    gap:30px;
}
.top-business__titlesec{
    width:133px;
}
.top-business__content{
    width:1000px;
}
.top-business__links{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:50px;
}
.top-business__link{
    position:relative;
    padding-top:40px;
    padding-right:10px;
}
.top-business__link__headicon{
    position:absolute;
    top:0;
    left:0;
}
.top-business__link__title{
    font-size:32px;
    font-weight:bold;
    margin-bottom:14px;
}
.top-business__link__title small{
    font-size:calc(26 / 36 * 100%);
}
.top-business__link__imagebox{
    position:relative;
}
.top-business__link__image img{
    border-radius:40px;
    aspect-ratio:335/198;
    object-fit:cover;
    object-position:center;
}
.top-business__link__anker{
    position:absolute;
    z-index:2;
    bottom:-18px;
    right:-10px;
}
.top-business__hv{
    position:absolute;
    width:255px;
    right:calc(1560 / 1920 * 100%);
    bottom:0;
}

.top-company{
    padding-top:120px;
}
.top-company__flex{
    display:flex;
    align-items:center;
}
.top-company__mainimage{
    order:1;
    width:50%;
}
.top-company__mainimage img{
    width:100%;
    max-width:656px;
}
.top-company__content{
    order:2;
    width:50%;
}
.top-company__contentbox{
    padding-right:50px;
    width:100%;
    max-width:calc(1380px / 2);
}


.top-store{
    padding-top:200px;
    overflow:hidden;
}
.top-store__container{
    position:relative;
    padding:80px 0;
    background:var(--bg-white);
}
.top-store__inner{
    width:100%;
    max-width:1760px;
    padding:0 20px;
    margin:0 auto;
}
.top-store__head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
    width:100%;
    max-width:1520px;
    margin-bottom:40px;
}
.top-store__hv{
    position:absolute;
    width:240px;
    right:50%;
    top:-190px;
}
.top-store__title{
    display:flex;
    align-items:center;
    gap:40px;
}
.top-store__title--en{
    font-size:39px;
}
.top-store__title--jp{
    font-size:20px;
}
.top-store__link{
    margin-left:auto;
}
.top-store__slidecontrols{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}
.top-store__slideicon{
    cursor:pointer;
}

.top-store-sliderwrap{
    position:relative;
    background:#FFF;
    padding:54px;
    border-radius:80px 0 0 80px;
}
.top-store-sliderwrap::after{
    content:'';
    position:absolute;
    background:#FFF;
    height:100%;
    top:0;
    left:100%;
    width:calc((100vw - 1720px) / 2);
}
.top-store-slide{
    width:290px !important;
}
.top-store-slide a{
    text-decoration:none;
    color:var(--color-main);
}

.top-store-slide__thumbnail img{
    width:100%;
    aspect-ratio:585/371;
    object-fit:cover;
    object-position:center;
    border-radius:20px;
}
.top-store-slide__shopname{
    margin:20px 0;
    font-size:24px;
    font-weight:400;
}
.top-store-slide__infotext{
    font-size:19px;
    line-height:2;
}

.top-news{
    padding-top:120px;
    padding-bottom:40px;
}
.top-news__flex{
    display:flex;
    justify-content:space-between;
}
.top-news__head{
    width:150px;
}
.top-news__link{
    margin-top:120px;
}
.top-news__container{
    width:1000px;
}








/* NEWS - ARCHIVE */


.archive-category__selector{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}
.archive-category__select a{
    display:block;
    border:1px solid #000;
    background:#FFF;
    color:#000;
    text-decoration:none;
    padding:10px 20px;
    font-size:18px;
    transition:var(--transition);
}
.archive-category__select a:hover,
.archive-category__select.current a{
    background:linear-gradient(to right, var(--color-g1-s), var(--color-g1-e));
}

.archive-main{
    margin-top:100px;
}

.news-archive__article{
    border-top:1px solid var(--color-main);
}
.news-archive__article:last-child{
    border-bottom:1px solid var(--color-main);
}
.news-archive__article a{
    display:block;
    min-height:77px;
    color:var(--color-main);
    text-decoration:none;
    padding:20px 0;
}
.news-archive__article__blocks{
    display:flex;
    height:100%;
    align-items:center;
}

.news-archive__article__date{
    width:180px;
    font-size:20px;
    font-weight:bold;
}
.news-archive__article__category{
    width:180px;
    font-size:12px;
    padding:10px;
    text-align:center;
    border-left:1px solid var(--color-main);
    border-right:1px solid var(--color-main);
}
.news-archive__article__body{
    width:calc(100% - 360px);
    padding-left:40px;
}
.news-archive__article__title{
    margin-bottom:12px;
}
.news-archive__article__excerpt{
    font-size:14px;
    line-height:2em;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp:1;
}

.archive-pagenavi{
    margin-top:100px;
}
.wp-pagenavi{
    display:flex;
    justify-content:center;
    gap:10px;
}
.wp-pagenavi a, .wp-pagenavi span{
    display:flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
    color:#000;
    text-decoration:none;
}
.wp-pagenavi a:hover, .wp-pagenavi span{
    background:#000;
    color:#FFF;
}



/* PAGE COMMON */

.page-mv{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:center;
}
.page-mv__titlesec{
    width:50%;
    padding-left:20px;
}
@media only screen and (min-width:1380px){
    .page-mv__titlesec{
        padding-left:calc((100vw - 1340px) / 2);
    }
}
@media only screen and (min-width:1600px){
    .page-mv__titlesec{
        padding-left:140px;
    }
}
.page-mv__imagesec{
    width:50%;
    padding:0 20px;
}

.page-mv__titles{
    position:relative;
    padding:40px 0;
}
.page-mv__titles::after{
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    width:36px;
    height:1px;
    background:#000;
}
.page-mv__title--en{
    font-size:42px;
}
.page-mv__title{
    font-size:25px;
    font-weight:400;
    margin-top:48px;
}

.page-common-sectitle{
    width:133px;
    height:133px;
    border-radius:50%;
    border:1px solid var(--color-main);
    background:linear-gradient(to bottom, var(--color-g1-s), var(--color-g1-e));
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    font-weight:400;
    letter-spacing:0.2em;
}
.page-common-sectitle__title{ 
    font-size:23px;
    font-weight:300;
}
.page-common-sectitle__title--en{
    font-size:12px;
    margin-top:6px;
}




/* COMPANY */

.company-message{
    padding-top:100px;
}
.company-message__flex{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    gap:40px;
}
.company-message__content{
    /*
    width:calc(925 / 1320 * 100%);
    */
    width:100%;
}
.company-message__title{
    margin-top:34px;
    font-size:28px;
    font-weight:400;
}
.company-message__text{
    font-size:17px;
    margin-top:28px;
    line-height:2;
}
.company-message__images{
    /*
    width:calc(340 / 1320 * 100%);
    padding-top:100px;
    */
    width: 100%;
}
.company-message__images__image img{
    max-width:unset;
    width:calc(100% + 20px);
    border-top-left-radius:30px;
    border-bottom-left-radius:30px;
}
@media only screen and (min-width:1380px){
    .company-message__images__image img{
        width:calc((100vw - 1340px) / 2 + 100%);
    }
}
/*
@media only screen and (max-width:1600px){
    .company-message__content{
        width:50%;
    }
    .company-message__images{
        width:45%;
    }
}
@media only screen and (max-width:1379px){
    .company-message__content{
        width:100%;
    }
    .company-message__images{
        width:100%;
        max-width:680px;
        margin-left:auto;
    }
}
*/
.company-message__images__names{
    margin-top:30px;
    text-align:right;
}
.company-message__images__names--div{
    font-size:19px;
}
.company-message__images__names--name{
    font-size: 28px;
}

.company-philosophy{
    padding-top:300px;
}
.company-philosophy__boxes{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:70px 20px;
}
.company-philosophy__box{
    position:relative;
    background:rgba(255,255,255,0.5);
    padding:60px 40px 40px;
    border-radius:40px;
}
.company-philosophy__box__num{
    font-size:32px;
    line-height:1;
    font-weight:100;
    position:absolute;
    padding-bottom:25px;
    top:-16px;
    left:50%;
    transform:translateX(-50%);
}
.company-philosophy__box__num::after{
    content:'';
    position:absolute;
    width:16px;
    height:1px;
    background:#000;
    bottom:0;
    left:calc(50% - 8px);
}
.company-philosophy__box__text{
    font-size:28px;
    font-weight:400;
    line-height:2;
    text-align:center;
}


.company-overview{
    padding-top:200px;
}

.company-overview__dls{
    margin-top:44px;
}
.company-overview__dls dl{
    display:flex;
    justify-content:space-between;
    border-bottom:1px solid #000;
    padding:16px 0;
    font-size:24px;
    margin:0;
}
.company-overview__dls dl dt{
    width:120px;
    text-align-last: justify;
}
.company-overview__dls dl dd{
    width:calc(100% - 160px);
}


.company-history{
    padding-top:200px;
    overflow:hidden;
}
.company-history__sliderwrap{
    margin-top:70px;
}

.company-history__box{
    position:relative;
    background:rgba(255,255,255,0.5);
    padding:85px 60px 60px;
    border-radius:30px;
    position:relative;
    height:100%;
    width:100%;
}
.company-history__box__title{
    position:absolute;
    top:-50px;
    left:60px;
    font-size:100px;
    font-weight:200;
    line-height:1;
    color:#FFF;
}
.company-history__box__title span{
    font-weight:200;
    color:#FFF;
}
.company-history__box__title small{
    font-size:50px;
}

.company-history__box__contents{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}
.company-history__list li:not(:last-child){
    margin-bottom:16px;
}
.company-history__list__year{
    font-size:14px;
    margin-bottom:6px;
}
.company-history__list__text{
    font-size:16px;
}

.company-history__sliderwrap{
    position:relative;
}
.company-history__sliderwrap .swiper-button-prev svg{
    display:none;
}
.company-history__sliderwrap .swiper-button-next svg{
    display:none;
}
.company-history__sliderwrap .swiper-button-prev,
.company-history__sliderwrap .swiper-button-next{
    position:absolute;
    top:calc(50% - 44px);
    width:88px;
    height:88px;
}
.company-history__sliderwrap .swiper-button-prev{
    left:-44px !important;
    background:no-repeat center/contain url('./img/common/icon-slideprev.svg');
}
.company-history__sliderwrap .swiper-button-next{
    right:-44px !important;
    background:no-repeat center/contain url('./img/common/icon-slidenext.svg');
}
.company-history__sliderwrap .swiper-pagination{
    display:flex;
    justify-content:center;
    position:relative !important;
    gap:30px;
}
.company-history__sliderwrap .swiper-pagination-bullet{
    width:18px;
    height:18px;
    background:#FFF;
    opacity: 1 !important;
}
.company-history__sliderwrap .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background:#000;
}

.company-access{
    padding-top:200px;
}
.company-access__map{
    margin-top:100px;
}
.company-access__address{
    text-align:center;
    margin-top:60px;
    font-size:20px;
}




/* SUSTAINABILITY */

.sust-esg__flex{
    margin-top:50px;

    display:flex;
    justify-content:space-between;
}
.sust-esg__content{
    width:calc(650 / 1320 * 100%);
}
.sust-esg__images{
    width:calc(620 / 1320 * 100%);
}
.sust-esg__subtitle{
    font-size:26px;
    font-weight:normal;
    line-height:2;
    margin-bottom:1.2em;
}
.sust-esg__text{
    line-height:2;
}

.sust-esg02{
    padding-top:50px;
}
.sust-esg02>.page-inner{
    position:relative;
}
.sust-esg02__hv{
    position:absolute;
    right:0;
    top:0;
}

.sust-esgarticle:not(:last-child){
    margin-bottom:80px;
}
.sust-esgarticle__titles{
    margin-bottom:25px;
}
.sust-esgarticle__title--en{
    font-size:40px;
    font-weight:100;
}
.sust-esgarticle__title--jp{
    font-size:20px;
    font-weight: bold;
    margin-top:5px;
}
.sust-esgarticle__flex{
    display:flex;
    justify-content:space-between;
}
.sust-esgarticle__image{
    width:400px;
}
.sust-esgarticle__content{
    width:calc(100% - 450px);
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:50px;
}
.sust-esgarticle__list li{
    border-top:1px solid #000;
}
.sust-esgarticle__list li:last-child{
    border-bottom:1px solid #000;
}
.sust-esgarticle__list li a{
    display:block;
    position:relative;
    color:#000;
    text-decoration:none;
    padding:18px 0;
    padding-right:50px;
}
.sust-esgarticle__list li a::after{
    content:'';
    width:30px;
    height:50px;
    background:no-repeat center/contain url('./img/common/icon-pdf.svg');
    position:absolute;
    top:calc(50% - 25px);
    right:10px;
}

.sust-csr{
    padding-top:300px;
}
.sust-csr__head{
    display:flex;
    justify-content:space-between;
}
.sust-csr__head__content{
    width:calc(650 / 1320 * 100%);

    position:relative;
    display:flex;
    align-items:flex-end;
}
.sust-csr__head__image{
    width:calc(660 / 1320 * 100%);
}
.sust-csr__head__title{
    margin-top:50px;
    font-size:24px;
}
.sust-csr__head__hv{
    position:absolute;
    top:0;
    right:0;
}

.sust-csr__articles{
    margin-top:90px;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:50px;
}
.sust-csr__article__title{
    margin:34px 0;
    font-size:28px;
    height:3.2em;
}


.sust-articles{
    padding-top:0px;
}

.sust-articles__subtitle{
    font-size:32px;
    font-weight:bold;
    text-align:center;
    margin-bottom:40px;
}
.sust-articles__maintitle{
    text-align:center;
    margin-bottom:30px;
}
.sust-articles__maintitle img{
    filter:brightness(0);
}
.sust-articles__mainsubtitle{
    margin-bottom:60px;
    text-align:center;
    font-size:20px;
    line-height:2;
}

.sust-article:not(:last-child){
    margin-bottom:50px;
}
.sust-article{
    display:flex;
    align-items:flex-end;
    padding:50px;
    border-radius:50px;
    background:#FFF;
    justify-content:space-between;
}

.sust-article__head__icons{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}
.sust-article__head__icon{
    width:100px;
}

.sust-article__titles{
    margin-top:40px;
}
.sust-article__title{
    font-size:22px;
    font-weight:400;
    line-height:1.9;
}

.sust-article__lists{
    margin:40px 0 0;
}
.sust-article__list{
    font-size:16px;
    font-weight:bold;
}
.sust-article__list:not(:last-child){
    margin-bottom:12px;
}

.sust-article__content{
    width:calc(100% - 580px);
}
.sust-article__image{
    width:520px;
}
.sust-article__image img{
    border-radius:30px;
}



/* BUSINESS */

.business-mv{
    padding-top:150px;
    align-items:flex-start;
}
.business-mv .page-mv__titles{
    padding-top:0;
}
.business-mv__text{
    font-size:19px;
    line-height:2;
    margin-top:1em;
    font-weight:normal;
}
.business-mv__imagesec{
    width:30%;
    max-width:580px;
    margin-right:calc(240 / 1920 * 100vw);
}

.business-mainimage{
    padding:80px 60px 0;
}

.business-concept{
    padding-top:60px;
}
.business-concept>.page-inner{
    position:relative;
    padding-top:130px;
}
.business-concept__flex{
    display:flex;
    flex-wrap:wrap;
    gap:50px;
}
.business-concept__titles{
    width:350px;
}
.business-concept__title__hv{
    position:relative;
    margin-top:-70px;
}
.business-concept__subtitle{
    font-size:34px;
    line-height:2;
    font-weight:normal;
}
.business-concept__text{
    line-height:2;
    margin-top:2em;
}
.business-concept__hv{
    position:absolute;
    top:0;
    right:0;
}

.business-concept__articles{
    margin-top:100px;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:160px;
}

.business-concept__article__head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:50px 0 20px;
}
.business-concept__article__title{
    font-size:32px;
    font-weight: 400;
    line-height:1;
}
.business-concept__article__text{
    line-height:2;
}
.business-concept__article__tag{ 
    padding:4px 16px;
    border-radius:100vh;
    border:1px solid #000;
    font-size:14px;
}
.business-concept__article__tag.tag01{
    background:linear-gradient(to right,var(--color-g1-e), var(--color-g1-s));
}
.business-concept__article__tag.tag02{
    background:linear-gradient(to right,var(--color-g2-e), var(--color-g2-s));
}

.business-phar{
    background:no-repeat top center/1920px url('./img/business/bg-phar.webp');
    padding-top:220px;
    padding-bottom:330px;
}

.business-phar__articles{
    margin-top:180px;
}
.business-phar__article.article01:not(:last-child){
    margin-bottom:120px;
}
.business-phar__article.article02:not(:last-child){
    margin-bottom:220px;
}

.business-phar__article__flex{
    display:flex;
    gap:70px;
}
.business-phar__article__flex.flex02{
    flex-direction:row-reverse;
}

.business-phar__article__image{
    width:470px;

    position:relative;
    z-index:1;
}
.business-phar__article__image--main{
    position:relative;
    z-index:2;
}
.business-phar__article__image--bg{
    position:absolute;
    max-width:unset;
    width:470px;
    z-index:1;
}
.business-phar__article__image.image01 .business-phar__article__image--bg{
    top:128px;
    left:276px;
}
.business-phar__article__image.image02 .business-phar__article__image--bg{
    top:128px;
    right:276px;
}

.business-phar__article__content{
    width:500px;

    position:relative;
    z-index:2;
}

.business-phar__article__head{
    display:flex;
    gap:30px;
    align-items:center;
    margin-bottom:50px;
}
.business-phar__article__num{
    font-size:30px;
    font-weight:100;
}
.business-phar__article__title{
    font-size:24px;
    font-weight:bold;
    line-height:1.8;
}
.business-phar__article__text{
    line-height:2;
}

.business-cs__box{
    background:var(--bg-white);
    padding:100px 0;
    border-radius:130px;
}
.business-cs__box>.page-inner{
    position:relative;
}
.business-cs__flex{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
}
.business-cs__content{
    width:600px;
}
.business-cs__point{
    width:600px;
}
.business-cs__box__hv{
    position:absolute;
    top:-200px;
    right:0;
}

.business-cs__title{
    padding:40px;
    border-radius:100vh;
    border:1px solid #000;
    background:linear-gradient(to right,var(--color-g1-s), var(--color-g1-e));
    display:flex;
    align-items:center;
    gap:12px;
}
.business-cs__title__icon{
    display:block;
    line-height:1;
}
.business-cs__title__text{
    font-size:31px;
    font-weight:bold;
    display:flex;
    align-items:center;
    gap:0.7em;
}
.business-cs__title__text small{
    font-size:22px;
}

.business-cs__subtitle{
    margin:50px 0;
    font-size:34px;
    font-weight:normal;
    line-height:2;
}
.business-cs__text{
    font-size:18px;
}
.business-cs__subtext{
    margin-top:50px;
}

.business-cs__point__box{
    position:relative;
    background:linear-gradient(to right, #5bbd97, #eeecaf);
    padding:40px;
    border-radius:40px;
}
.business-cs__point__box__hv{
    position:absolute;
    right:-20px;
    top:-120px;
}
@media only screen and (min-width:1600px){
    .business-cs__point__box__hv{
        right:-120px;
    }
}
.business-cs__point__box__title{
    font-size:24px;
    font-weight:bold;
    color:#FFF;
    margin-bottom:18px;
}
.business-cs__point__list li{
    position:relative;
    padding-left:2.2em;
    font-size:16px;
}
.business-cs__point__list li:not(:last-child){
    margin-bottom:12px;
}
.business-cs__point__list__num{
    position:absolute;
    top:0;
    left:0;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#000;
    background:#FFF;
    border:1px solid #000;
    border-radius:50%;
    font-size:17px;
    font-weight:100;
    width:28px;
    height:28px;
}



/* PHARMACY - ARCHIVE */

.ph-archive__filter__box{
    padding:100px;
    border-radius:100px;
    background:rgba(255,255,255,0.7);
    box-shadow:0 0 26px rgba(66,66,66,0.2);
}
.ph-archive__filter__title{
    font-size:19px;
    font-weight:bold;
    margin-bottom:2em;
    display:flex;
    gap:14px;
    align-items:center;
}
.ph-archive__filter__title span{
    color:#666666;
    font-size:16px;
    font-weight:300;
}
.ph-archive_filter__link{
    display:flex;
    gap:43px;
}
.ph-archive_filter__link:not(:last-child){
    margin-bottom:44px;
}
.ph-archive__filter__link__cat{
    width:112px;
}
.ph-archive__filter__link__children{
    width:calc(100% - 155px);

    display:flex;
    flex-wrap:wrap;
    gap:16px;
}
.ph-archive__filter__link__cat a,
.ph-archive__filter__link__children a{
    width:112px;
    height:33px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:100vh;
    border:1px solid #000;
    color:#000;
    font-size:15px;
    text-decoration:none;
}
.ph-archive__filter__link__cat a{
    background:linear-gradient(to right, var(--color-g1-s), var(--color-g1-e));
}
.ph-archive__filter__link__cat a:hover,
.ph-archive__filter__link__children a:hover{
    background:#000;
    color:#FFF;
}

.ph-archive__articles__cat{
    padding-top:120px;
}
.ph-archive__articles__term{
    padding-top:120px;
}

.ph-archive__articles__term__title{
    font-size:44px;
    font-weight:400;
}
.ph-archive__articles__term__title small{
    font-size:21px;
}
.ph-archive__articles__term__subtitle{
    margin-bottom:40px;
    font-size:14px;
    font-weight:400;
    font-family:var(--font-en);
}

.ph-archive__stores{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.ph-archive__store{
    position:relative;
    padding:34px;
    border-radius:86px;
    background:rgba(255,255,255,0.7);
    box-shadow:0 0 26px rgba(66,66,66,0.2);
}

.ph-archive__store__icon{
    position:absolute;
    top:-20px;
    right:40px;

    width:85px;
    height:106px;
    background:no-repeat center/contain url('./img/pharmacy/icon-red.webp');
}
.ph-archive__store__icon.red{
    background-image:url('./img/pharmacy/icon-red.webp');
}
.ph-archive__store__icon.blue{
    background-image:url('./img/pharmacy/icon-blue.webp');
}
.ph-archive__store__icon.green{
    background-image:url('./img/pharmacy/icon-green.webp');
}
.ph-archive__store__icon.orange{
    background-image:url('./img/pharmacy/icon-orange.webp');
}

.ph-archive__store__head{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:center;
}
.ph-archive__store__head__image{
    width:168px;
    order:1;
}
.ph-archive__store__head__image img{
    aspect-ratio:1;
    width:100%;
    height:auto;
    object-fit:cover;
    object-position:center;
    border-radius:40px;
}
.ph-archive__store__head__title{
    width:calc(100% - 188px);
    order:2;
}
.ph-archive__store__head__title--name{
    font-size:20px;
    font-weight:bold;
}

.ph-archive__store__body{
    margin:20px 0;
}
.ph-archive__store__body dl{
    margin:0;
    display:flex;
    font-size:12px;
}
.ph-archive__store__body dl:not(:last-child){
    margin-bottom:10px;
}
.ph-archive__store__body dl dt{
    width:44px;
    font-weight:normal;
}
.ph-archive__store__body dl dd{
    width:calc(100% - 44px);
}

.ph-archive__store__link a{
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    border-radius:100vh;
    height:44px;
    width:100%;
    border:1px solid #000;
    text-decoration:none;
    color:#000;
    font-size:14px;
    font-weight:bold;
}
.ph-archive__store__link a::after{
    content:'';
    position:absolute;
    width:34px;
    height:34px;
    top:calc(50% - 17px);
    right:5px;
    background:no-repeat center/contain url('./img/common/icon-btn-grad1.svg');
}
.ph-archive__store__link a:hover{
    background:#000;
    color:#FFF;
}


/* PHARMACY - SINGLE */

.ph-single__head__icon{
    display:block;
    margin:0 auto;
    width:85px;
    height:106px;
    background:no-repeat center/contain url('./img/pharmacy/icon-red.webp');
}
.ph-single__head__icon.red{
    background-image:url('./img/pharmacy/icon-red.webp');
}
.ph-single__head__icon.blue{
    background-image:url('./img/pharmacy/icon-blue.webp');
}
.ph-single__head__icon.green{
    background-image:url('./img/pharmacy/icon-green.webp');
}
.ph-single__head__icon.orange{
    background-image:url('./img/pharmacy/icon-orange.webp');
}

.ph-single__head__titles{
    text-align:center;
    margin-top:30px;
}
.ph-single__head__area span{
    display:inline-block;
    font-size:18px;
    font-weight:bold;
    padding:8px 24px;
    border-radius:100vh;
    background:#FFF;
    border:1px solid #000;
    margin:0 auto;
}
.ph-single__head__shopname{
    font-size:36px;
    font-weight:bold;
    margin-top:20px;
}

.ph-single__gallery{
    margin-top:50px;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:50px;
}
.ph-single__gallery img{
    width:calc((100% - 50px) / 2);
    border-radius:30px;
}

.ph-single__body{
    width:100%;
    max-width:900px;
    margin:0 auto;
    margin-top:50px;
}
.ph-single__body dl{
    margin:0;

    display:flex;
    flex-wrap:wrap;

    padding:30px 0;
}
.ph-single__body dl:not(:last-child){
    border-bottom:1px solid #000;
}
.ph-single__body dl dt{
    width:190px;
    font-size:18px;
    font-weight:bold;
    line-height:2;
}
.ph-single__body dl dd{
    width:calc(100% - 190px);
    font-size:18px;
    line-height:2;
}

.ph-single__map{
    margin-top:50px;
}
.ph-single__map iframe{
    width:100%;
}

.ph-single__link a{
    width:360px;
    height:60px;
    border-radius:100vh;
    border:1px solid #000;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:bold;
    text-decoration:none;
    color:#000;
    background:#FFF;
    margin:0 auto;
}
.ph-single__link a::after{
    content:'';
    position:absolute;
    top:5px;
    right:5px;
    width:50px;
    height:50px;
    background:no-repeat center/contain url('./img/common/icon-btn-grad1.svg');
}

.phar-file:not(:last-child){
    margin-bottom:10px;
}
.phar-file a{
    display:flex;
    align-items:center;
    gap:6px;
    color:#000;
}

.ph-line__link a{
    width:300px;
    height:60px;
    line-height:1;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:bold;
    gap:14px;
    border-radius:100vh;
    border:1px solid #000;
    background:#FFF;
    color:#000;
    text-decoration:none;
}

.ph-single__linkbtns{
    margin:50px 0;

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}

.ph-single__posts{
    margin-bottom:50px;
}
.ph-single__post__title{
    text-align:center;
    font-size:24px;
    margin-top:80px;
    margin-bottom:2em;
}



/* NEWS SINGLE */

.single-head{
    padding-bottom:80px;
    border-bottom:1px solid #000;
}

.single-head__meta{
    margin-top:30px;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
}
.single-head__cat span{
    display:block;
    font-size:16px;
    padding:6px 20px;
    border:1px solid #000;
}
.single-head__date{
    font-weight:bold;
}

.single-body{
    margin-top:100px;
    width:100%;
    max-width:900px;
    margin:100px auto 0;
}

.single-thumbnail{
    text-align:center;
    margin-bottom:100px;
}

.single-bottom{
    margin-top:100px;
}



/* EDITOR CONTENT */
.editor-content>*{
	margin-bottom:30px;
	line-height:2;
}
.editor-content h1{
	font-size:32px;
	font-weight:bold;
}
.editor-content h2{
	font-size:24px;
	font-weight:bold;
}
.editor-content h3{
	font-size:22px;
	font-weight:bold;
}
.editor-content h4{
	font-size:18px;
	font-weight:bold;
}
.editor-content h5,
.editor-content h6{
	font-weight:bold;
}
.editor-content p{
	font-size:18px;
}
.editor-content ul,
.editor-content ol{
	padding-left:1.2em;
}
.editor-content ul{
	list-style:disc;
    margin-left:0;
}
.editor-content ol{
	list-style:decimal;
    margin-left:0;
}
.editor-content li{
	padding-bottom:14px;
}

.editor-content h1:not(:first-child),
.editor-content h2:not(:first-child),
.editor-content h3:not(:first-child),
.editor-content h4:not(:first-child),
.editor-content h5:not(:first-child),
.editor-content h6:not(:first-child){
    margin-top:60px;
}


/* ANIMATION */
.fadein {
    opacity : 0.1;
    transform : translate(0, 50px);
    transition : all 800ms;
}
.fadeinr {
    opacity : 0.1;
    transform : translate(50px, 0);
    transition : all 800ms;
}
.fadeinb {
    opacity : 0.1;
    transform : translate(0, 50px);
    transition : all 800ms;
}
.fadeint {
    opacity : 0.1;
    transform : translate(0, -50px);
    transition : all 800ms;
}
.fadeinl {
    opacity : 0.1;
    transform : translate(-50px, 0);
    transition : all 800ms;
}
.fadeino {
    opacity : 0.1;
    transition : all 800ms;
}

.fadein.scrollin, .fadeinr.scrollin, .fadeinb.scrollin, .fadeint.scrollin, .fadeinl.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}
.fadeino.scrollin {
   opacity : 1;
}

@supports (-ms-ime-align:auto) {
.fadein {
    opacity : 1;
    transform : inherit;
    transition : inherit;
}
.fadeinr {
    opacity : 1;
    transform : inherit;
    transition : inherit;
}
.fadeinb {
    opacity : 1;
    transform : inherit;
    transition : inherit;
}
.fadeint {
    opacity : 1;
    transform : inherit;
    transition : inherit;
}
.fadeinl {
    opacity : 1;
    transform : inherit;
    transition : inherit;
}
.fadeino {
    opacity : 1;
    transition : inherit;
}

.fadein.scrollin, .fadeinr.scrollin, .fadeinb.scrollin, .fadeint.scrollin, .fadeinl.scrollin {
    opacity : 1;
    transform : inherit;
}
.fadeino.scrollin {
   opacity : 1;
}
}/* @ supports end */

@media only screen and (max-width:1280px){
/* ANIMATION */
.fadein,
.fadeinr,
.fadeinl,
.fadeinb,
.fadeint{
    opacity : 0.1;
    transform : translate(0, 50px);
    transition : all 800ms;
}
}/* fade animation wrap over */



.clear_from_top.ef,
.inner-clear_from_top.ef>*{
	-webkit-clip-path: inset(0 0 100% 0);
	clip-path: inset(0 0 100% 0);
	transition:all .8s ease;
}
.clear_from_bottom.ef,
.inner-clear_from_bottom.ef>*{
	-webkit-clip-path: inset(100% 0 0 0);
	clip-path: inset(100% 0 0 0);
	transition:all .8s ease;
}
.clear_from_left.ef,
.inner-clear_from_left.ef>*{
	-webkit-clip-path: inset(0 100% 0 0);
	clip-path: inset(0 100% 0 0);
	transition:all .8s ease;
}
.clear_from_right.ef,
.inner-clear_from_right.ef>*{
	-webkit-clip-path: inset(0 0 0 100%);
	clip-path: inset(0 0 0 100%);
	transition:all .8s ease;
}
.clear_from_lefttop.ef,
.inner-clear_from_lefttop.ef>*{
	-webkit-clip-path: inset(0 100% 100% 0);
	clip-path: inset(0 100% 100% 0);
	transition:all .8s ease;
}
.clear_from_righttop.ef,
.inner-clear_from_righttop.ef>*{
	-webkit-clip-path: inset(0 100% 0 100%);
	clip-path: inset(0 100% 0 100%);
	transition:all .8s ease;
}
.clear_from_leftbottom.ef,
.inner-clear_from_leftbottom.ef>*{
	-webkit-clip-path: inset(100% 100% 0 0);
	clip-path: inset(100% 100% 0 0);
	transition:all .8s ease;
}
.clear_from_rightbottom.ef,
.inner-clear_from_rightbottom.ef>*{
	-webkit-clip-path: inset(100% 0 0 100%);
	clip-path: inset(100% 0 0 100%);
	transition:all .8s ease;
}
.clear_from_top.ef.scrollin,
.clear_from_bottom.ef.scrollin,
.clear_from_left.ef.scrollin,
.clear_from_right.ef.scrollin,
.inner-clear_from_top.ef.scrollin>*,
.inner-clear_from_bottom.ef.scrollin>*,
.inner-clear_from_left.ef.scrollin>*,
.inner-clear_from_right.ef.scrollin>*,
.clear_from_lefttop.ef.scrollin,
.clear_from_righttop.ef.scrollin,
.clear_from_leftbottom.ef.scrollin,
.clear_from_rightbottom.ef.scrollin,
.inner-clear_from_lefttop.ef.scrollin>*,
.inner-clear_from_righttop.ef.scrollin>*,
.inner-clear_from_leftbottom.ef.scrollin>*,
.inner-clear_from_rightbottom.ef.scrollin>*{
	-webkit-clip-path: inset(0);
	clip-path:inset(0);
}