@charset "utf-8";

/*==================================================
---COMMON
====================================================*/

body {
    line-height: 28px;
    animation-duration: 1.5s;
    overflow: auto;
    position: relative;
    z-index: -2;
    font-feature-settings: "palt";
    min-width: 1380px;
    color: #111;
    word-wrap: break-word;
}




body a {
    color: #111;
}

img {
    -webkit-backface-visibility: hidden;
    vertical-align: bottom;
}

.spheader {
    display: none;
}

.bodyWrap {
    position: relative;
    z-index: -1;
}

.sameFade {
    opacity: 0;
    transform: translate(0, 2px);
    transition: 1.5s cubic-bezier(0.36, 0.14, 0, 1) 0s;
}

.sameFade.scrollin {
    opacity: 1;
    transform: translate(0);
}

.rightFade {
    opacity: 0;
    transform: translateX(2rem);
    transition: opacity 1.3s, transform 1.3s cubic-bezier(.25, .46, .45, .94), mask-position 1.3s cubic-bezier(.39, .575, .565, 1), -webkit-mask-position 1.3s cubic-bezier(.39, .575, .565, 1);
}

.rightFade.scrollin {
    opacity: 1;
    transform: translateX(0);
}





/*

.header {
    box-sizing: border-box;
    top: 0;
    min-width: 1380px;
}
*/


/*/////////////////////////////////////////////////////////////////////////////

              // loading //

/////////////////////////////////////////////////////////////////////////////*/
.loadingInner {
    display: block;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
}

.loadingInner__bg {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    bottom: 0;
    right: 0;
    background: #ededed;
    transform-origin: right top;
}

.loadingAniWrap .loadingInner__bg {
    animation: loadingInner-bg 0.75s cubic-bezier(.50, .14, 0.2, 1) forwards;
}


.loadingAniWrap.off .loadingInner__bg {
    animation: close 0.75s cubic-bezier(.50, .14, 0.2, 1) forwards;
}


@keyframes loadingInner-bg {
    0% {}

    100% {
        transform: scalex(0);
    }
}


@keyframes close {
    0% {
        transform-origin: left top;
        transform: scalex(0);
    }

    100% {
        transform-origin: left top;
        transform: scalex(1);
    }
}

.loadingInner__bar {
    width: 0;
    height: 5px;
    background: #FFFFFF;
    position: fixed;
    top: 0;
    left: 0;
    transition: all 0.2s linear 0s;
}

.loadingInner {
    animation: opnone 0.75s cubic-bezier(.50, .14, 0.2, 1) forwards;
}


@keyframes opnone {
    0% {}

    100% {
        height: 0;
    }
}

@keyframes fadeopa {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


@-webkit-keyframes maskEffect {
    0% {
        transform: translateX(-100%);
    }

    30% {
        transform: translateX(0);
    }



    100% {
        transform: translateX(100%);
    }
}



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

    30% {
        transform: translateX(0);
    }



    100% {
        transform: translateX(101%);
    }
}


.hero {
    position: relative;
    overflow: hidden;

}

.hero::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #333;
    z-index: 4;
    opacity: .1;
}

.hero .swiper-slide img {
    height: 100vh;
    height: var(--viewport-height);
    /* カスタムプロパティを使用して調整された高さを適用 */
    width: 100%;
    object-fit: cover;
    object-position: bottom;
}

.heroSns {
    position: absolute;
    left: 54px;
    z-index: 6;
    top: 56%;
}

.heroSns a {
    display: block;
    margin-bottom: 7px;
}


.textAnime {
    display: flex;
    overflow: hidden;
    color: #aa8f7b;
}

.blurFade.scrollin {
    opacity: 1;
    filter: blur(0);
}

.blurFade {
    opacity: 0;
    transition: 1.3s cubic-bezier(0.36, 0.14, 0, 1) 0s;
    filter: blur(20px);
}

.textAnime span {
    display: block;
    transform: translate(0, 101%);
}

.textAnime.-visible span {
    -webkit-transition: -webkit-transform 1.2s cubic-bezier(0.36, 0.14, 0, 1);
    transition: -webkit-transform 1.2s cubic-bezier(0.36, 0.14, 0, 1);
    -o-transition: transform 1.2s cubic-bezier(0.36, 0.14, 0, 1);
    transition: transform 1.2s cubic-bezier(0.36, 0.14, 0, 1);
    transition: transform 1.2s cubic-bezier(0.36, 0.14, 0, 1), -webkit-transform 1.2s cubic-bezier(0.36, 0.14, 0, 1);
    -webkit-transform: translate(0, 0%) skewX(0deg);
    -ms-transform: translate(0, 0%) skewX(0deg);
    transform: translate(0, 0%) skewX(0deg);
}

.textAnime span:nth-child(2) {
    transition-delay: 0.025s;
}

.textAnime span:nth-child(3) {
    transition-delay: 0.050s;
}

.textAnime span:nth-child(4) {
    transition-delay: 0.075s;
}

.textAnime span:nth-child(5) {
    transition-delay: 0.10s;
}

.textAnime span:nth-child(6) {
    transition-delay: 0.125s;
}

.textAnime span:nth-child(7) {
    transition-delay: 0.150s;
}

.textAnime span:nth-child(8) {
    transition-delay: 0.175s;
}

.textAnime span:nth-child(9) {
    transition-delay: 0.2s;
}

.textAnime span:nth-child(10) {
    transition-delay: 0.225s;
}

.textAnime span:nth-child(11) {
    transition-delay: 0.250s;
}

.textAnime span:nth-child(12) {
    transition-delay: 0.275s;
}

.textAnime span:nth-child(13) {
    transition-delay: 0.3s;
}

.textAnime span:nth-child(14) {
    transition-delay: 0.325s;
}

.pcHeader.change-color {
    background-color: #B70E1C;
    transition: 0.4s;
    padding: 18px 54px;
}

.pcHeader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    transition: 0.3s;
    display: flex;
    padding: 56px 54px;
    align-items: center;
    justify-content: space-between;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: normal;
    box-sizing: border-box;
    min-width: 1380px;
}

.pcHeader a {
    color: #fff;
}

.pcHeader nav .jafont {
    display: flex;
    align-items: center;
    font-size: 13px;
    margin-top: -25px;
    column-gap: 38px;
}



.pcHeader .Navright {
    display: flex;
    align-items: center;
    column-gap: 40px;
}

.pcHeader .navListBox {
    display: flex;
    column-gap: 31px;
    align-items: center;
}

.pcHeader .lang {
    color: #fff;
    font-size: 15px;
    font-family: goldenbook, serif;
    font-weight: 700;
}

.headerContact a {
    background: #B70E1C;
    color: #fff;
    display: block;
    width: 244px;
    position: relative;
    border-radius: 100vw;
    box-sizing: border-box;
    font-size: 13px;
    font-weight: normal;
    padding: 16px 34px;
    transition: 0.4s
}

.pcHeader.change-color .headerContact a {
    background-color: #111;
    transition: 0.4s;
}

.headerContact a::after {
    content: "";
    position: absolute;
    background-image: url(../img/headerMail.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 39px;
    height: 39px;
    right: 19px;
    top: 10px;
}

.pcHeader .menu > li.menu__single {
    position: relative;
}

li.menu__single ul.menu__second-level {
    position: absolute;
    top: 20px;
    width: 100%;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

li.menu__single ul.menu__second-level li {
    white-space: nowrap;
}

li.menu__single:hover ul.menu__second-level {
    top: 26px;
    visibility: visible;
    background: #b70e1c;
    opacity: 1;
    padding: 0 7px;
    width: auto;
}

.pcHeader .menu {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.pcHeader .menu > li a {
    display: block;
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: normal;
    font-size: 13px;
}

ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

ul.menu__third-level {
    visibility: hidden;
    opacity: 0;
}

ul.menu__fourth-level {
    visibility: hidden;
    opacity: 0;
}

.pcHeader .menu > li:hover {
    -webkit-transition: all .5s;
    transition: all .5s;
}

.menu__second-level li a {
    text-decoration: underline;

}

.menu__third-level li a {}


/* floatクリア */
.pcHeader .menu:before,
.pcHeader .menu:after {
    content: " ";
    display: table;
}

.pcHeader .menu:after {
    clear: both;
}

.init-bottom {
    position: relative;
    padding-right: 25px;
}

.init-bottom:after {
    content: "";
    position: absolute;
    background-image: url(../img/plus.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 9px;
    height: 9px;
    right: 5px;
    top: 10px;
}

.hero .swiper-pagination {
    position: absolute;
    z-index: 6;
    font-size: 51px;
    bottom: 7.5%;
    color: #fff;
    transition: 1s;
    text-align: left;
    left: 54px;
    font-family: goldenbook, serif;
    font-style: normal;
    letter-spacing: 0;
}

/* 現在のスライド番号 */
.hero .swiper-pagination-current {
    font-size: 51px;
    margin-right: -6px;
    transition: 1s;
}


/* スライド総数 */
.hero .swiper-pagination-total {
    font-size: 36px;
    margin-left: -11px;
    opacity: .5;
    transition: 1s;
}


.hero .acrollD {
    position: absolute;
    left: 54px;
    bottom: 4%;
    z-index: 6;
}

.hero .acrollD p {
    position: relative;
    padding-left: 36px;
    font-size: 18px;
    font-family: goldenbook, serif;
    color: #fff;
}

.hero .acrollD p::after {
    content: "";
    position: absolute;
    background-image: url(../img/dArrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 27px;
    height: 27px;
    left: 0;
    top: 0;
}

.hero .mainCopy {
    position: absolute;
    top: 57%;
    z-index: 6;
    left: 150px;
}

.hero .mainCopy p {
    overflow: hidden;
    color: #fff;
      font-family: source-han-sans-cjk-ja, sans-serif;
}

.hero .heroja01 {
    font-size: 45px;
    line-height: 127%;
    margin-bottom: 20px;
    font-weight: 300;
}



.hero .heroja02 {
    font-size: 23px;
    line-height: 100%;
    letter-spacing: .08em;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}


.hero.scrollin .heroja01 span {
    animation: titleBtmFade 1s cubic-bezier(.36, .14, 0, 1) 4s both;
}

.hero.scrollin .heroja02 span {
    animation: titleBtmFade 1s cubic-bezier(.36, .14, 0, 1) 4.3s both;
}

.hero .mainCopy span {
    -webkit-transform: translate(0, 100%);
    transform: translate(0, 100%);
    display: block;
    line-height: 125%;
}

@keyframes titleBtmFade {
    0% {
        -webkit-transform: translate(0, 100%);
        transform: translate(0, 100%);
    }

    100% {
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
    }
}










.heroNews {
    position: absolute;
    right: 54px;
    z-index: 6;
    display: flex;
    bottom: 4%;
    background: #fff;
    border-radius: 6px;
    align-items: center;
    column-gap: 19px;
}

.heroNews img {
    width: 109px;
    height: 95px;
    object-fit: cover;
    border-radius: 6px 0 0 6px;
    object-position: center;
}

.heroNews .day {
    font-size: 12px;
    font-family: goldenbook, serif;
}

.heroNews .cat {
    font-size: 18px;
    font-family: "ivypresto-display", serif;
    font-weight: 300;
    font-style: italic;
}

.heroNews .inFlex {
    display: flex;
    align-items: baseline;
    column-gap: 9px;
}

.heroNews .textBox {
    padding-right: 136px;
    position: relative;
}

.heroNews .post {
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 284px;
    font-size: 13px;
}

.heroNews .textBox::after {
    content: "";
    position: absolute;
    background-image: url(../img/barrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 35px;
    height: 35px;
    right: 28px;
    top: 15px;
}

.heroNews .textBox::before {
    content: "";
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    width: 1px;
    background: #D6D6D6;
    height: 100%;
    right: 93px;
    top: 0;
}




#aboutus {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/aboutBg.png);
    padding: 320px 80px;
    margin-bottom: 160px;
}

.aboutusInner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    color: #fff;
    align-content: center;
    justify-content: space-between;
}

.aboutusInner .enTitle {
    font-family: "ivypresto-display", serif;
    font-weight: 300;
    font-style: italic;
    font-size: 65px;
    margin-bottom: 90px;
}

.aboutusInner .subEntitle {
    font-family: goldenbook, serif;
    font-size: 15px;
    margin-bottom: 48px;
}

.aboutusInner img {
    width: 100%;
    max-width: 348px;
    opacity: 0;
    transition: 2.5s;
    transform: scale(1.3);
    object-fit: cover;
}

.aboutusInner .imgBox.scrollin img {
    animation: fadeopa 1.4s cubic-bezier(0.36, 0.14, 0, 1) forwards;
    transform: scale(1);
}

@keyframes fadeopa {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.aboutusInner .imgBox {
    overflow: hidden;
    opacity: 0;
    display: none;
}

.heroNews img {
    transition: 2s;
}

.heroNews {
    transition: .4s;
}


.heroNews .imgBox {
    overflow: hidden;
    border-radius: 6px 0 0 6px;
}

.heroNews .post span {
    position: relative;
}

.heroNews .post span::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #111;
    bottom: 0;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 1s;
}



.newsInner .heroNews .post span::after {
    background: #fff;
}



.productsInner img {
    width: 100%;
    max-width: 501px;
    opacity: 0;
    transition: 2.5s;
    transform: scale(1.3);
    object-fit: cover;
}

.productsInner .imgBox {
    overflow: hidden;
    width: 66%;
}

.productsInner .imgBox.scrollin img {
    animation: fadeopa 1.4s cubic-bezier(0.36, 0.14, 0, 1) forwards;
    transform: scale(1);
}

.productsInner .inFlex .textBox {
    width: 61%;
}




.aboutusInner h2 {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-size: 27px;
    margin-bottom: 10px;
    letter-spacing: .2em;
    font-weight: 100;
}

.aboutusInner .minEnTitle {
    font-family: goldenbook, serif;
    font-size: 15px;
    margin-bottom: 24px;
    letter-spacing: .03em;
}

.aboutusInner h3 {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-size: 19px;
    font-weight: 100;
    letter-spacing: .15em;
    line-height: 34px;
    margin-bottom: 36px;
}

.aboutusInner .des {
    font-family: source-han-sans-cjk-ja, sans-serif;
    line-height: 30px;
    font-weight: 400;
    font-size: 13px;
    margin-bottom: 44px;
    letter-spacing: .15em;
}

.commonBtnBox a {
    width: 244px;
    box-sizing: content-box;
    background: #B70E1C;
    color: #fff;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: normal;
    border-radius: 100vw;
    padding: 19px 30px;
    font-size: 13px;
    position: relative;
    display: block;
    overflow: hidden;
}


/*
.commonBtnBox a::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #111;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    z-index: 3;
    border-radius: 100vw;
}
*/

.commonBtnBox a span {
    position: relative;
    display: inline-block;
    z-index: 5;
}

/*
.commonBtnBox a:hover::before {
    animation: maskEffect 2s cubic-bezier(.36, .14, 0, 1) forwards;
}

@keyframes maskEffect {

    0% {
        transform: translateX(-105%);
    }

    30% {
        transform: translateX(0);
    }

    36% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(101%);
    }

}
*/
.commonBtnBox a:hover {
    background: #111;
}

.commonBtnBox a {
    position: relative;
    overflow: hidden;
    transition: all .4s cubic-bezier(.161, .83, .43, 1);
}

.commonBtnBox a::before,
.commonBtnBox a::after {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
}

.commonBtnBox a::before {
    content: attr(data-replace);
    height: 100%;
    top: 18px;
    left: 31px;
    opacity: 0;
    transform-origin: 50% 100%;
    transform: translate(0, 10%);
    transition: .4s, transform .4s cubic-bezier(.36, .14, 0, 1);
}

.commonBtnBox a:hover::before {
    transform: translate(0, 0);
    opacity: 1;
}

.commonBtnBox a span {
    display: inline-block;
    transition: .4s, transform .4s cubic-bezier(.36, .14, 0, 1);
}

.commonBtnBox a:hover span {
    transform: translate(0, -40%);
    opacity: 0;
    transform: translateY(-40%) scaleY(0);
}

.pointBtn a p {
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: .4s, transform .4s cubic-bezier(.36, .14, 0, 1);
}

.pointBtn p::before,
.pointBtn p::after {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
}

.pointBtn p::after {
    content: attr(data-replace);
    height: 100%;
    top: 0;
    opacity: 0;
    transform-origin: 50% 100%;
    transform: translate(0, 30%);
    transition: .4s, transform .4s cubic-bezier(.36, .14, 0, 1);
}

.pointBtn:hover p::after {
    transform: translate(0, 0);
    opacity: 1;
}

.pointBtn span {
    display: inline-block;
    transition: .4s, transform .4s cubic-bezier(.36, .14, 0, 1);
}

.pointBtn:hover span {
    transform: translate(0, -40%);
    opacity: 0;
    transform: translateY(-40%) scaleY(0);
}

.pointBtn {
    padding-right: 50px;
    position: relative;
    display: inline-block;
}

.pointBtn::after {
    content: "";
    position: absolute;
    background-image: url(../img/barrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 35px;
    height: 35px;
    right: 0;
    top: -3px;
}



.pointBtnWrap {
    text-align: right;
}

#Story .pointBtnWrap {
    text-align: left;
}

#Story .pointBtnWrap p {
    color: #fff;
}


#Story .pointBtnWrap .pointBtn::after {
    background-image: url(../img/warrow.svg);
}



.featureInner .pointBtnWrap {
    text-align: center;
}



#snsBox a:hover .pointBtn p::after {
    transform: translate(0, 0);
    opacity: 1;
}

#snsBox a:hover .pointBtn span {
    transform: translate(0, -40%);
    opacity: 0;
    transform: translateY(-40%) scaleY(0);
}


.researchInner .pointBtnWrap {
    text-align: left;
}








footer .pointBtnWrap p {
    color: #B70E1C;
}

footer .pointBtn p {
    font-size: 13px;
}


.foA {
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: .4s, transform .4s cubic-bezier(.36, .14, 0, 1);
}

.foA::before,
.foA::after {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
}

.foA::after {
    content: attr(data-replace);
    height: 100%;
    top: 0;
    opacity: 0;
    transform-origin: 50% 100%;
    transform: translate(0, 30%);
    transition: .4s, transform .4s cubic-bezier(.36, .14, 0, 1);
}





.foA span {
    display: inline-block;
    transition: .4s, transform .4s cubic-bezier(.36, .14, 0, 1);
}





/* ==========================
  同じテキストが下から上にスライドしてくる
========================== */
.h_nav {
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: .4s, transform .4s cubic-bezier(.36, .14, 0, 1);
}

.h_nav::before,
.h_nav::after {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
}

.h_nav::after {
    content: attr(data-replace);
    height: 100%;
    top: 0;
    opacity: 0;
    transform-origin: 50% 100%;
    transform: translate(0, 30%);
    transition: .4s, transform .4s cubic-bezier(.36, .14, 0, 1);
}

.h_nav:hover::after {
    transform: translate(0, 0);
    opacity: 1;
}

.h_nav span {
    display: inline-block;
    transition: .4s, transform .4s cubic-bezier(.36, .14, 0, 1);
}

.h_nav:hover span {
    transform: translate(0, -40%);
    opacity: 0;
    transform: translateY(-40%) scaleY(0);
}






.commonBtnBox {
    position: relative;
    width: 305px;
}

.commonBtnBox::after {
    content: "";
    position: absolute;
    background-image: url(../img/warrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 35px;
    height: 35px;
    right: 17px;
    top: 17px;
    z-index: 5;
}

.McommonBtnBox::after {
    content: "";
    position: absolute;
    background-image: url(../img/headerMail.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 39px;
    height: 39px;
    right: 19px;
    top: 10px;
}

.McommonBtnBox a {
    box-sizing: border-box;
    padding: 16px 30px;
}

.McommonBtnBox {
    width: 250px;
}

.change-color .McommonBtnBox a {
    background: #111;
}

.McommonBtnBox a::before {
    top: 16px;
}



#products {
    margin-bottom: 260px;
    padding: 0 80px;
}

.productsInner .enTItle {
    font-family: "ivypresto-display", serif;
    font-weight: 300;
    font-style: italic;
    font-size: 65px;
    margin-bottom: 22px;
}

.productsInner h2 {
    font-size: 13px;
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: bold;
    margin-bottom: 42px;
}


.productsInner .textBox > div {
    position: sticky;
    top: 50%;
    padding-bottom: 85px;
}


.productsInner .des {
    font-size: 13px;
    line-height: 25px;
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: 500;
    margin-bottom: 42px;
}

.productsInner .mainBox {
    width: 67%;
}

.productsInner {
    display: flex;
    justify-content: space-between;
    max-width: 1500px;
    margin: 0 auto;
    column-gap: 79px;
}

.productsInner img {
    width: 100%;
    max-width: 501px;
}

.productsInner .inFlex {
    display: flex;
    column-gap: 35px;
    margin-bottom: 82px;
}

.productsInner .nam {
    margin-bottom: 99px;
    color: #838383;
    margin-top: 30px;
    font-family: "ivypresto-display", serif;
    font-weight: 300;
    font-style: italic;
    position: relative;
}

.productsInner .nam::after {
    content: "";
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    width: 74%;
    height: 1px;
    background: #D6D6D6;
    right: 0;
    top: 14px;
}

.productsInner h3 {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    margin-bottom: 40px;
    font-weight: 100;
    font-size: 20px;
}

.desCon {
    font-size: 13px;
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 100px;
    letter-spacing: .1em;
}

.pointBtn a {
    display: inline-block;
    font-size: 13px;
    position: relative;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: normal;
    color: #111;
    padding-right: 50px;
}



.pointBtn {
    text-align: right;
}

#Story {
    background: #242424;
    padding: 103px 54px;
    padding-bottom: 160px;
}

#Story .enTItle {
    margin-bottom: 50px;
    font-family: goldenbook, serif;
    font-size: 15px;
}
#Story h3 {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    margin-bottom: 38px;
    line-height: 44px;
    font-size: 29px;
    letter-spacing: .1em;
}

#Story .StoryInner {
    position: relative;
}

.storyBtn {
    right: 11%;
    bottom: -63px;
    z-index: 3;
    position: absolute;
}

.StoryInner .imgBox img {
    width: 100%;
}

#Story .titleBox {
    text-align: center;
    color: #fff;
}

#Story .titleBox p {
    font-size: 65px;
    text-align: center;
    font-family: "ivypresto-display", serif;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 32px;
}

#Story .titleBox h2 {
    font-size: 13px;
}

#Story .titleBox {
    margin-bottom: 46px;
}



.StoryInner .des {
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: .1em;
    margin-bottom: 39px;
    font-size: 13px;
}

.StoryInner .mainBox {
    position: absolute;
    z-index: 3;
    color: #fff;
    top: 54%;
    left: 24%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.StoryInner .pointBtn {
    text-align: left;
}

.StoryInner .pointBtn a {
    color: #fff;
}

.StoryInner .pointBtn a::after {
    content: "";
    position: absolute;
    background-image: url(../img/warrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 35px;
    height: 35px;
    right: 0;
    top: -3px;
}


.aboutusInner {
    column-gap: 49px;
}
#feature {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/feature01.png);
    padding: 230px 80px;
}

#feature .mainBox {
    text-align: center;
    max-width: 728px;
    margin: 0 auto;
    margin-top: 63px;
}

#feature .mainBox h2 {
    font-size: 25px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    line-height: 44px;
    letter-spacing: .1em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

#feature .mainBox .des {
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 28px;
    letter-spacing: .1em;
}


#feature .desBox {
    padding: 34px 0;
    border-bottom: solid 1px #707070;
    border-top: solid 1px #707070;
    margin-bottom: 37px;
}

#feature .aten {
    font-size: 22px;
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: 500;
    margin-bottom: 70px;
    color: #414141;
}
#feature .enTIttle {
    padding: 0 23px;
    position: relative;
    font-family: "ivypresto-display", serif;
    font-weight: 300;
    font-style: italic;
    font-size: 16px;
    max-width: 472px;
    margin: 0 auto;
}

#feature .enTIttle::after {
    content: "";
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    width: 40%;
    height: 1px;
    left: 0;
    top: 14px;
    background: #707070;
}

#feature .enTIttle::before {
    content: "";
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    width: 40%;
    height: 1px;
    right: 0;
    top: 14px;
    background: #707070;
}

#feature .enTIttleBox {
    margin-bottom: 29px;
}

#feature .pointBtn {
    text-align: center;
}

#parara {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/parara.png);
    height: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 181px;
}

#parara p {
    font-size: 60px;
    /* font-family: "ivypresto-display", serif; */
    font-weight: 300;
    /* font-style: italic; */
    line-height: 76px;
    margin-bottom: 54px;
    font-family: source-han-sans-cjk-ja, sans-serif;
}
#parara h2 {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    font-size: 25px;
    letter-spacing: .1em;
}

.researchInner {
    max-width: 1500px;
    margin: 0 auto;
    margin-bottom: 264px;
}

#research {
    padding: 0 80px;
    padding-top: 20px;
    overflow: hidden;
}

.researchInner .titleBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 54px;
}

.researchInner .enTitle {
    font-family: "ivypresto-display", serif;
    font-weight: 300;
    font-style: italic;
    font-size: 65px;
    margin-bottom: 25px;
}

.researchInner .inFlex {
    display: flex;
    margin-top: 18px;
    margin-bottom: 6px;
    align-items: baseline;
    column-gap: 8px;
}

.researchInner .inFlex .day {
    font-family: goldenbook, serif;
    font-size: 12px;
}

.researchInner .inFlex .cat {
    font-family: "ivypresto-display", serif;
    font-weight: 300;
    font-style: italic;
    font-size: 18px;
}


.researchInner .swiper-slideImg {
    overflow: hidden;
}

.researchInner .swiper-slideImg img {
    transition: 1s;
    height: 500px;
    object-fit: cover;
}

.researchInner .postTitle {
    font-size: 13px;
    letter-spacing: .1em;
    text-decoration: underline;
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: 500;
    margin-bottom: 35px;
    /* text-overflow: ellipsis; */
    /* overflow: hidden; */
    /* white-space: nowrap; */
}

.researchInner .pointBtn {
    text-align: right;
}

.pointBtn p {
    display: inline-block;
    font-size: 12px;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: normal;
    position: relative;
    color: #111;
}

/*

.pointBtn p::after {
    content: "";
    position: absolute;
    background-image: url(../img/barrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 35px;
    height: 35px;
    right: 0;
    top: -3px;
}

*/










.researchInner h2 {
    font-size: 13px;
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: bold;
    margin-bottom: 33px;
}

.researchInner .swiper-pointer-events {
    position: relative;
}

.researchInner .textBox .des {
    font-size: 13px;
    line-height: 25px;
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: 500;
    letter-spacing: .1em;
}

.swiper-containerWraper2 img {
    width: 100%;
}


#news {
    background: #515458;
    padding: 156px 80px;
}


.newsInner .flex {
    display: flex;
    justify-content: center;
    column-gap: 138px;
}

.newsInner .heroNews {
    position: static;
    margin-bottom: 20px;
    background: rgb(255 255 255 / 27%);
    color: #fff;
}

.newsInner {
    color: #fff;
}

.swiper-container2 {
    position: relative;
}

.newsInner .enTitle {
    font-family: "ivypresto-display", serif;
    font-weight: 300;
    font-style: italic;
    font-size: 65px;
    margin-bottom: 25px;
}

.newsInner .heroNews .post {
    width: 450px;
}

.newsInner .titleBox > div {
    position: sticky;
    top: 59%;
    padding-bottom: 85px;
}

#snsBox {
    background: #515458;
}

.snsBoxInner {
    display: flex;
}

.snsBoxInner > div {
    border: solid 1px #797C7E;
    padding: 16px;
    margin-left: -1px;
    width: 33%;
}

.snsBoxInner .textBox {
    text-align: center;
}



.snsBoxInner a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgb(255 255 255);
    height: 536px;
    position: relative;
    transition: .4s;
}


/*
.snsBoxInner a:hover {
    background: rgba(255, 255, 255, 0.03);
}
*/


.snsBoxInner .enTitle {
    font-family: "ivypresto-display", serif;
    font-weight: 300;
    font-style: italic;
    font-size: 23px;
    margin-bottom: 0;
}
.snsBoxInner h2 {
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: bold;
    font-size: 10px;
    margin-bottom: 29px;
}
.newsInner .heroNews img {
    width: 189px;
    height: 133px;
}

.newsInner .heroNews .textBox::after {
    background-image: url(../img/warrow.svg);
}

.newsInner h2 {
    font-size: 13px;
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: bold;
    margin-bottom: 33px;
}

.snsBoxInner .pointBtn {
    position: absolute;
    color: #fff;
    bottom: 20px;
    right: 20px;
}



#contact {
    position: relative;
    cursor: pointer;
    height: 629px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.contactInner {
    margin-top: 43px;
}

#contact::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -2;
    left: 0;
    background-image: linear-gradient(311deg, rgba(183, 14, 28, 1), rgba(196, 94, 103, 1));
}

#contact .bgEntitle {
    position: absolute;
    top: 44%;
    left: 50%;
    font-family: "ivypresto-display", serif;
    font-weight: 300;
    font-style: italic;
    font-size: 321px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: -1;
    opacity: .07;
}

#contact a {
    color: #fff;
    display: block;
}

#contact:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    left: 0;
    transition: 0.5s;
    background-image: linear-gradient(126deg, rgba(183, 14, 28, 1), rgba(196, 94, 103, 1));
}

#contact:hover:before {
    opacity: 0;
}



#contact .enTitle {
    font-family: "ivypresto-display", serif;
    font-weight: 300;
    font-style: italic;
    font-size: 65px;
    margin-bottom: 25px;
}

#contact h2 {
    font-size: 13px;
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: bold;
    margin-bottom: 18px;
}

#contact .des {
 font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: 100;
    font-size: 19px;
    letter-spacing: .1em;
    margin-bottom: 44px;
    line-height: 31px;
}


footer {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/footer.png);
    padding: 126px 80px 20px 80px;
}

.footerInner {
    max-width: 1200px;
    margin: 0 auto;
}

footer .flex {
    display: flex;

    justify-content: space-between;
    margin-bottom: 103px;
}

footer .inFlex {
    display: flex;
    column-gap: 150px;
    justify-content: space-between;
    width: 43%;
}

footer .inFlex ul {
    list-style: none;
}

footer .inFlex ul a {
    font-size: 13px;
        font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: normal;
    display: block;
    margin-bottom: 18px;
}

footer .subNav {
    text-align: right;
    color: #808080;
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-size: 14px;
    margin-top: 297px;
}

footer .subNav a {
    color: #808080;
    display: inline-block;
}

footer .inFlex > div {
    width: 58%;
}

footer .pointBtn a {
    color: #B70E1C;
}

footer small {
    display: flex;
    font-family: source-han-sans-cjk-ja, sans-serif;
    color: #808080;
    font-size: 12px;
}

footer .inFlex .rBoxWrap {
    width: 70%;
}

footer .pageTop {
    position: absolute;
    right: 54px;
    color: #7E7E7E;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: normal;
    padding-top: 28px;
    font-size: 13px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: mixed;
    text-orientation: mixed;

}

footer .pageTop a {
    color: #7E7E7E;
    display: block;
}

footer .pageTop::after {
    content: "";
    position: absolute;
    background-image: url(../img/pagetop.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 15px;
    height: 19px;
    right: 5px;
    top: 0px;
}

.udHero {
    position: relative;
    overflow: hidden;
}

.udHero::after {
    content: "";
    position: absolute;
    background-size: contain;
    background: rgba(0, 0, 0, 0.45);
    background-repeat: no-repeat;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
}

.udHero .heroSns {
    position: absolute;
    top: 53%;
    left: 54px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.udHero .heroSns a {
    display: block;
}

.udHero .imgBox img {
    width: 100%;
    height: 100vh;
    object-fit: cover
}

.udHero .titleBox {
    position: absolute;
    top: 53%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: #fff;
}

.udHero .titleBox p {
    font-size: 65px;
    font-family: ivypresto-display,
        serif;
    font-family: "ivypresto-display", serif;
    font-weight: 300;
    font-style: italic;
}

.udHero .titleBox h2 {
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: bold;
    font-size: 13px;
    margin-top: 30px;
}


.udHero .imgBox img {
    transition: 2.5s;
    transform: scale(1.3);
    opacity: .4;
   height: 600px;
}

.udHero .imgBox {
    overflow: hidden;
}

.udHero .imgBox.scrollin img {
    animation: fadeopa 1.4s cubic-bezier(0.36, 0.14, 0, 1) forwards;
    transform: scale(1);
}


.indexList {
    background: #515458;
    padding: 113px 80px;
}

.indexListInner {
    max-width: 1500px;
    margin: 0 auto;
    padding-left: 63px;
    box-sizing: border-box;
    column-gap: 24px;
    display: flex;
    position: relative;
}

.indexListInner::after {
    content: "Index";
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 15px;
    color: #D1D1D1;
    left: 0;
    top: 0;
    font-family: goldenbook, serif;
}


.indexListInner > div {
    width: 25%;
}

.indexListInner a {
    display: block;
    text-align: center;
    background: rgba(255, 255, 255, 0.07);
    border: #727272 solid 1px;
    border-radius: 3px;
    color: #fff;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    padding: 28px 0;
    font-size: 18px;
    position: relative;
}

.indexListInner a::after {
    content: "";
    position: absolute;
    background-image: url(../img/ddarrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 35px;
    height: 35px;
    right: 17px;
    top: 25px;
}



.categoryListBox {
    background: #515458;
    padding: 113px 80px;
}

.categoryListBox__content {
    max-width: 1500px;
    margin: 0 auto;
    padding-left: 63px;
    box-sizing: border-box;
    column-gap: 24px;
    display: flex;
    list-style: none;
    position: relative;
}

.categoryListBox__content::after {
    content: "Category";
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 15px;
    color: #D1D1D1;
    left: 0;
    top: 0;
    font-family: goldenbook, serif;
}


.categoryListBox__content > li {
    width: 25%;
}

.categoryListBox__content a {
    display: block;
    text-align: center;
    background: rgba(255, 255, 255, 0.07);
    border: #727272 solid 1px;
    border-radius: 3px;
    color: #fff;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    padding: 28px 0;
    font-size: 18px;
    position: relative;
}

.categoryListBox__content .catAc a {
    background: #B70E1C;
    border: solid #B70E1C 1px;
}


.categoryListBox__content .current-cat a {
    background: #B70E1C;
    border: solid #B70E1C 1px;
}

/*
.indexListInner a::after {
    content: "";
    position: absolute;
    background-image: url(../img/ddarrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 35px;
    height: 35px;
    right: 17px;
    top: 25px;
}
*/






















#concept {
    color: #FAF8F4;
    padding: 194px 0;
}

#concept .aboutusInner img {
    max-width: none;
}

#concept .aboutusInner {
    color: #111;
    align-items: center;
    padding: 0 80px;
    margin-bottom: 172px;
}


#concept .imgFlex {
    display: flex;
    column-gap: 87px;
    margin-left: 26px;
}

#concept .imgFlex > div {
    width: 100%;
}

#concept .imgFlex img {
    width: 100%;
}


#concept .udabout03 {
    margin-top: 107px;
}

#BrandStory {
    background: #242424;
    position: relative;
    color: #fff;
    padding: 100px;
    padding-bottom: 200px;
}

#BrandStory::after {
    content: "";
    position: absolute;
    background: #242424;
    background-size: contain;
    background-repeat: no-repeat;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    top: -520px;
}

#BrandStory .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    flex-direction: row-reverse;
    column-gap: 74px;
}

#BrandStory .flex img {
    width: 100%;
    max-width: 650px;
}



#BrandStory .enTitle {
    font-family: goldenbook, serif;
    font-size: 15px;
    margin-bottom: 50px;
    letter-spacing: .08em;
}

#BrandStory h3 {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    font-size: 24px;
    margin-bottom: 56px;
    letter-spacing: .08em;
}

#BrandStory .des {
    font-size: 14px;
    line-height: 30px;
    font-family: source-han-sans-cjk-ja, sans-serif;
    letter-spacing: .1em;
    font-weight: 400;
}


#interview {
    background: #515458;
    padding: 98px 80px 165px 80px;
    color: #fff;
}

#interview .interviewInner {
    max-width: 1500px;
    margin: 0 auto;
}

#interview .interviewInner .enTitle {
 font-family: source-han-sans-cjk-ja, sans-serif;
    font-size: 24px;
    margin-bottom: 45px;
}

#interview .interviewInner .flex {
    display: flex;
    justify-content: space-between;
}

#interview .interviewInner .flex > a {
    width: 49%;
    display: block;
    color: #fff;
}


#interview .interviewInner .flex .imgBox img {
    width: 100%;
    border-radius: 12px;
    transition: 1s;
}




#interview .interviewInner .flex .imgBox {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-bottom: 35px;
}

#interview .interviewInner .flex .imgBox::after {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.28);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}




#interview .interviewInner .flex .playBox {
    position: absolute;
    top: 54%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}

#interview .interviewInner h3 {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    margin-bottom: 33px;
    letter-spacing: .06em;
    font-size: 16px;
}

#interview .interviewInner .des {
    font-size: 13px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    line-height: 28px;
    letter-spacing: .06em;
}



#ourCharacteristics {
    background: #FAF8F4;
    padding: 206px 80px;
}

.ourCharacteristicsInner {
    max-width: 1500px;
    margin: 0 auto;
}

.ourCharacteristicsInner .flex {
    display: flex;
    align-items: center;
    margin-bottom: 130px;
    padding-top: 65px;
    position: relative;
    justify-content: space-between;
}

/*
.ourCharacteristicsInner .flex::after{
    content: "";
    position: absolute;
    background-image: url(../img/crn01.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 63px;
    height: 63px;
    right: 0;
    left: 0;
    margin: 0 auto;
    top: 0;
    }
*/

.ourCharacteristicsInner .flex .crnN {
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    top: 0;
    text-align: center;
}

.ourCharacteristicsInner .flex .crnN img {
    width: 63px;
}


.ourCharacteristicsInner .flex::before {
    content: "";
    position: absolute;
    background: #707070;
    background-size: contain;
    background-repeat: no-repeat;
    width: 1px;
    height: 86%;
    right: 0;

    left: 0;
    margin: 0 auto;
    bottom: 0;
}
.ourCharacteristicsInner h3 {
    font-size: 30px;
    margin-bottom: 44px;
    font-family: goldenbook, serif;
}

.ourCharacteristicsInner .flexR {
    flex-direction: row-reverse;
}


.ourCharacteristicsInner .flex img {
    width: 100%;
}

.ourCharacteristicsInner .flex > div {
    width: 40%;
}

.ourCharacteristicsInner h4 {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    display: inline-block;
    font-size: 31px;
    line-height: 42px;
    color: #b70e1c;
    padding-left: 12px;
    border-left: solid 5px;
    margin-bottom: 44px;
}

.ourCharacteristicsInner .des {
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 28px;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
    max-width: 700px;
}

.swiper-scrollbar-drag {
    background: #B70E1C;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
    left: 0;
    bottom: -71px;
    height: 3px;
}

#MainRaw {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/MainRaw.png);
    padding: 199px 80px 127px 80px;
    margin-bottom: 158px;
}

#MainRaw .flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#MainRaw .flex > div {
    width: 47%;
    color: #fff;
}

#MainRaw .imgBox {
    text-align: center;
}

#MainRaw .imgBox img {
    max-width: 550px;
    width: 100%;
}

.swiper {
    max-width: 1200px;
    margin: 0 auto;
}

#MainRaw h4 {
    font-family: goldenbook, serif;
    margin-bottom: 25px;
    opacity: .4;
    font-size: 16px;
}

#MainRaw h5 {
    font-size: 29px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    letter-spacing: .05em;
}

#MainRaw hr {
    height: 1px;
    border-top: 1px solid rgba(255, 255, 255, 0.66);
    margin: 43px 0;
}

#MainRaw .country {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    font-size: 18px;
    margin-top: -18px;
}

#MainRaw .des {
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 28px;
}


#MainRaw .MainRawInner {
    max-width: 1500px;
    margin: 0 auto;
}

#MainRaw .MainRawInner h3 {
    font-size: 22px;
    color: #fff;
    font-family: goldenbook, serif;
    margin-bottom: 35px;
    opacity: .67;
}



#MainRaw .swiper-button-prev::after,
#MainRaw .swiper-button-next::after {

    bottom: 0;
    content: "";
    height: 0;
    margin: auto;
    position: absolute;
    top: 0;
    width: 0;

}

/* 前への矢印カスタマイズ */

#MainRaw .swiper-button-prev::after {
    background-image: url(../img/llarrowsp.svg);
    content: "";
    width: 32px;
    height: 59px;
}

/* 次への矢印カスタマイズ */

#MainRaw .swiper-button-next::after {
    background-image: url(../img/arroesp.svg);
    content: "";
    width: 32px;
    height: 59px;
}

/* ページネーションの余白 */
#MainRaw .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
#MainRaw .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0;
    display: block;
}

/* ページネーションのサイズと色 */
#MainRaw .swiper-pagination-bullet {
    background-color: red;
    height: 13px;
    width: 13px;
    transition: .4s;
}

#MainRaw .swiper-pagination-bullet-active {
    transform: scale(1.7);
    margin: 0 6px !important;
}



#MainRaw .swiper-pagination-bullet:nth-last-child(4) {
    background: #FFC400;
}

#MainRaw .swiper-pagination-bullet:nth-last-child(3) {
    background: #F40000;
}

#MainRaw .swiper-pagination-bullet:nth-last-child(2) {
    background: #00FFCE;
}

#MainRaw .swiper-pagination-bullet:nth-last-child(1) {
    background: #1400FF;
}

#MainRaw .swiper-pagination-bullet {
    opacity: var(--swiper-pagination-bullet-inactive-opacity, 1);
}

#MainRaw .swiper-horizontal > .swiper-pagination-bullets,
#MainRaw .swiper-pagination-bullets.swiper-pagination-horizontal,
#MainRaw .swiper-pagination-custom,
#MainRaw .swiper-pagination-fraction {
    display: flex;
    align-items: center;
    column-gap: 7px;
    justify-content: center;
}

#MainRaw .swiper {
    padding-bottom: 61px;
}

#MainRaw .swiper-button-prev::after, #MainRaw .swiper-button-next::after {
    top: -354px;
}


#TypeOf {
    padding: 100px 80px;
}

.TypeOfIiner {
    max-width: 1500px;
    margin: 0 auto;
}

#TypeOf h3 {
    font-size: 13px;
    color: #111;
    font-family: goldenbook, serif;
    margin-bottom: 64px;
    opacity: .67;
}





#TypeOf .mainBox {
    border: solid 1px rgba(112, 112, 112, 0.15);
    padding: 63px 113px 20px 113px;
}

#TypeOf .flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#TypeOf .flex > div {
    width: 47%;
}

#TypeOf .solutionOp {
    position: relative;
    cursor: pointer;
    overflow: hidden;

}

#TypeOf .solutionOpWrap {
    margin-bottom: 60px;
}


#TypeOf .solutionOp .imgBox img {
    width: 100%;
    transition: .4s;
}

#TypeOf .solutionOp .textBox {
/*    opacity: 0;*/
    transition: .4s;
    top: 30px;
    position: absolute;
    z-index: 2;
    left: 30px;
    bottom: 30px;
    right: 30px;
    height: auto;
    color: #fff;
    overflow: auto;
}

#TypeOf .solutionOp .textBox h4 {
    font-size: 16px;
    text-decoration: underline;
    text-transform: capitalize;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    margin-bottom: 10px;
}

#TypeOf .solutionOp .textBox .des {
    font-size: 13px;
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 50px;
}

#TypeOf h5 {
    font-size: 20px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    margin-bottom: 18px;
}

#TypeOf .aten {
    font-size: 10px;
    font-family: goldenbook, serif;
    margin-top: 5px;
    opacity: .48;
    display: none;
    text-align: right;
}
#TypeOf .solutionOp::after {
    content: "";
    position: absolute;
    background: rgb(0 0 0 / 54%);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 0;
    left: 0;
    right: 0;
    transition: .4s;
    top: 0;
    /* opacity: 0; */
}





.desaop {
    background: #FAF8F4;
    padding: 104px 80px;
}

.desaopInner {
    display: flex;
    column-gap: 10%;
    max-width: 1500px;
    margin: 0 auto;
    align-items: flex-end;
}

.desaopInner .enTitle {
    font-family: goldenbook, serif;
    font-size: 15px;
    margin-bottom: 46px;
}

.desaopInner h3 {
    font-size: 28px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    line-height: 42px;
    letter-spacing: .05em;
}

.desaopInner .des {
    font-size: 13px;
    line-height: 28px;
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: 400;
}


.udpara {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/udpara.png);
    height: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.EfficacyChat {
    padding-bottom: 10px !important;
}

#PatentPha {
    background: #F4F4F4;
    margin-bottom: 165px;
    text-align: center;
    padding: 170px 80px 130px 80px;
}

#PatentPha .enTitle {
    font-family: goldenbook, serif;
    font-size: 27px;
    margin-bottom: 46px;
}

#PatentPha h3 {
    font-size: 26px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    line-height: 42px;
    margin-bottom: 33px;
    letter-spacing: .05em;
}

#PatentPha .imgBox img {
    width: 100%;
    max-width: 933px;
}

#PatentPha .des {
    font-size: 13px;
    margin-bottom: 37px;
    line-height: 28px;
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: 400;
    letter-spacing: .05em;
}


#Whatis {
    padding: 170px 80px 170px 80px;
    background: #252525;
    color: #fff;
}

#Efficacy p {
    margin-bottom: 39px;
}

#Efficacy {
    margin-top: 80px;
    padding: 230px 80px 13px 80px;
    background: #FAF8F4;
}

#Effectiveness {
    padding: 170px 80px 170px 80px;
}

.udComnFd {
    padding: 0 80px;
}

.udComnFdInner {
    max-width: 1500px;
    margin: 0 auto;
    align-items: center;
    display: flex;
    justify-content: space-between;
    column-gap: 40px;
}

.udComnFdInner img {
    width: 100%;
}

.udComnFdInner .textBox {
    width: 60%;
}

.udComnFd .enTitle {
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-size: 24px;
    margin-bottom: 46px;
}
.udComnFd h3 {
    font-size: 22px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    line-height: 40px;
    margin-bottom: 26px;
}
.udComnFd .des {
    font-size: 13px;
    line-height: 30px;
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: 400;
    letter-spacing: .05em;
}

.paperWrap {
    padding: 0 80px;
    margin-bottom: 28px;
}

.paperWrapIIner {
    border: solid 1px rgba(112, 112, 112, 0.29);
    padding: 63px 113px 60px 113px;
    max-width: 1500px;
    box-sizing: border-box;
    margin: 0 auto;
}

.paperWrapIIner .flex3 {
    display: flex;
    column-gap: 18px;
    justify-content: space-between;
}

.paperWrapIIner .flex3>div{
    display: flex;
    flex-direction: column;
}
.paperWrapIIner .flex3 .imgBox{
        flex-grow: 1;
}

.paperWrapIIner .flex3 h5 {
    text-align: center;
    border-bottom: solid 1px;
    font-size: 18px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    padding: 10px 0;
    margin-bottom: 11px;
}

.paperWrapIIner .otDes {
    padding-left: 15px;
    border-left: solid 1px #111;
    font-size: 13px;
    line-height: 30px;
    margin-bottom: 62px;
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: 400;
    letter-spacing: .05em;
}

.paperWrapIIner .flex3 .desBox {
    background: #F4F4F4;
    padding: 31px 23px;
    margin-top: 6px;
}

.paperWrapIIner .flex3 .desBox p {
    font-size: 13px;
    line-height: 28px;
    letter-spacing: .05em;
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: 400;
}


.paperWrapIIner .flex2 {
    display: flex;
    justify-content: space-between;
}

.paperWrapIIner .flex2 h5 {
    font-size: 18px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    padding-bottom: 7px;
    margin-bottom: 31px;
    border-bottom: solid 1px #707070;
}

.paperWrapIIner .flex2 p {
    font-size: 13px;
    line-height: 30px;
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: 400;

}

.paperWrapIIner .flex2 .subtitle {
    margin-bottom: 42px;
}

.paperWrapIIner .flex2 .subTitle {
    text-decoration: underline;
    font-size: 18px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    margin-bottom: 30px;
}

.paperWrapIIner .aten {
    margin-top: 10px;
    font-size: 10px;
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: 400;
    line-height: 23px;
}

.paperWrapIIner .bgBox {
    background: #F4F4F4;
    padding: 37px 42px;
}

.paperWrapIIner .flex2 > div {
    width: 48%;
}







.paperWrap .titleBox h4 {
    font-size: 25px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    line-height: 40px;
    margin-bottom: 15px;
}

.paperWrap .titleBox .enTitle {
    font-family: goldenbook, serif;
    font-size: 15px;

}

.paperWrap .titleBox {
    margin-bottom: 54px;
}

.paperWrap .des {
    font-size: 13px;
    line-height: 30px;
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: 400;
    letter-spacing: .05em;
    margin-bottom: 60px;
}


.paperWrap .imgBox img {
    max-width: 100%;
}



#Regenerative {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/RegenerativeBg.png);
    color: #fff;
    padding: 199px 80px 90px 80px;
}


#Regenerative .trackrecord {
    background: rgba(255, 255, 255, 0.06);
    padding: 58px 92px;
    box-sizing: content-box;
    margin-top: 160px;
    color: #111;
}

#Regenerative .trackrecordInner {
    background: rgba(255, 255, 255, 0.53);
    max-width: 1500px;
    margin: 0 auto;
    padding: 70px 110px 100px 110px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

#Regenerative .trackrecordInner::after {
    content: "";
    position: absolute;
    background-image: url(../img/mapBg.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 66%;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

#Regenerative .trackrecord h4 {
    font-size: 25px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    margin-bottom: 10px;
}

#Regenerative .trackrecord .enTItle {
    font-family: goldenbook, serif;
    font-size: 20px;
}
#Regenerative .trackrecord .flex {
    display: flex;
    column-gap: 17px;
    justify-content: space-between;
    text-align: center;
    position: relative;
    z-index: 2;
}

#Regenerative .trackrecord .flex h5 {
    font-size: 18px;
    text-decoration: underline;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    margin-bottom: 31px;
    letter-spacing: .05em;
}

#Regenerative .trackrecord .titleBox {
    margin-bottom: 50px;
}

#Regenerative .trackrecord .flex .des {
    letter-spacing: .05em;
    font-size: 18px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    line-height: 35px;
}

#Regenerative .trackrecord .flex .des span {
    display: inline-block;
    font-size: 50px;
}

#Regenerative .trackrecord .flex > div {
    background: rgba(255, 255, 255, 0.6);
    width: 31%;
    box-sizing: content-box;
    padding: 90px 48px;
    position: relative;
}

#Regenerative .trackrecord .aten {
    position: absolute;
    font-size: 12px;
    bottom: 7px;
    right: 20px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    letter-spacing: .05em;
}

.udProBox {
    margin-bottom: 20px;
}

.udProBox h3 {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    font-size: 20px;
    margin-bottom: 25px;
}

.udProBox h4 {
    border-bottom: solid 1px rgba(112, 112, 112, 0.33);
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    letter-spacing: .05em;
    font-size: 16px;
    padding-bottom: 8px;
    position: relative;
    margin-bottom: 18px;
}

.udProBox h4::after {
    content: "";
    position: absolute;
    background: #707070;
    background-size: contain;
    background-repeat: no-repeat;
    width: 109px;
    height: 1px;
    bottom: -1px;
    left: 0;
}

.udProBox .mainDes {
    font-size: 16px;
    border-left: 4px #b70e1c solid;
    /* background: #d7867d; */
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: 400;
    color: #b70e1c;
    line-height: 28px;
    padding-left: 10px;
    /* padding: 0 21px; */
    margin-bottom: 49px;
    letter-spacing: .05em;
}

#Regenerative .trackrecord .flex .namBox .des {
    font-size: 28px;
    margin-bottom: 29px;
}

.udProBoxInnre {
    display: flex;
    column-gap: 65px;
    padding-right: calc((100% - 1500px) / 2);
}

.udProBoxlast {
    margin-bottom: 50px;
}

.udProBoxInnre .imgBox {
    width: 57%;
    overflow: hidden;
}

.udProBoxInnre .imgBox img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    opacity: 0;
    transition: 2.5s;
    transform: scale(1.3);
}



.udProBoxInnre .imgBox.scrollin img {
    animation: fadeopa 1.4s cubic-bezier(0.36, 0.14, 0, 1) forwards;
    transform: scale(1);
}




.udProBoxInnre .nam {
    margin-bottom: 99px;
    color: #838383;
    margin-top: 30px;
    font-family: "ivypresto-display", serif;
    font-weight: 300;
    font-style: italic;
    position: relative;
}

.udProBoxInnre .nam::after {
    content: "";
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    width: 40%;
    height: 1px;
    background: #D6D6D6;
    left: 103px;
    top: 14px;
}

.udProBoxInnre .textBox {
    width: 38%;
    margin-top: 160px;
    padding-right: 50px;
    margin-bottom: 30px;
}

.udProBoxInnre .textBox > div {
    position: sticky;
    top: 31%;
}

.udProBoxInnre .textBox .des {
    font-size: 15px;
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: 100;
    line-height: 28px;
    margin-bottom: 49px;
    letter-spacing: .05em;
}




.bogo-language-switcher .current {
    display: none;
}

.bogo-language-switcher {
    display: flex;
    justify-content: space-between;
    column-gap: 26px;
    align-items: center;
    position: relative;
    width: 111px;
}

.bogo-language-switcher::after {
    content: "";
    position: absolute;
    background: #fff;
    background-size: contain;
    background-repeat: no-repeat;
    width: 1px;
    height: 14px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

ul.bogo-language-switcher li {
    list-style: none outside none;
    width: 43px;
    text-align: center;
    padding: 0;
}

.bogo-language-switcher a {
    transition: .4s;
}

.bogo-language-switcher a:hover {
    opacity: .4;
}


/*==================================================
---form
====================================================*/
.form {
    max-width: 1500px;
    margin: 0 auto;
    padding: 80px 40px;
    background: #fff;
    margin-bottom: 71px;
    position: relative;
    /* margin-top: 30px; */
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    letter-spacing: .05em;
}

.formSchoolBox {
    width: 100%;
}

.formSchoolBox .inputBg {
    margin-bottom: 10px;
}


.form p {
    text-align: center;
    line-height: 28px;
    color: #333;
    margin-bottom: 45px;
    font-weight: bold;
}

.form_flexBox {
    display: flex;
    border-bottom: solid 1px #DFDFDF;
    padding-bottom: 48px;
    margin-bottom: 48px;
}

.form_flexBox_list {
    width: 529px;
    position: relative;
    font-weight: 500;
    padding-top: 17px;
    font-size: 15px;
}

.mandatory {
    position: absolute;
    right: 15px;
    color: #fff;
    top: 11px;
    font-size: 13px;
    background: #B70E1C;
    padding: 1px 20px;
}


.any {
    position: absolute;
    right: 15px;
    color: #fff;
    top: 11px;
    font-size: 13px;
    background: #848484;
    padding: 1px 20px;
}


.inputBg {
    width: 100%;
}

input {
    width: 100%;
    box-sizing: border-box;
    height: 56px;
    background: #fbfbfb;
    border: 1px solid #E5E5E5;
    padding: 0 15px;
}

::placeholder {
    color: rgba(0, 0, 0, 0.19);
}

textarea {
    width: 100%;
    box-sizing: border-box;
    background: #fbfbfb;
    border: 1px solid #E5E5E5;
    padding: 15px 15px;
}

.privacypBox {
    text-align: center;
}

.form .privacyp {
    display: inline-block;
    font-size: 15px;
    font-weight: 100;
    margin-bottom: 31px;
}

.form .privacyp a {
    text-decoration: underline;
    color: #B70E1C;
}


.form .nmber {
    font-size: 25px;
    color: #011640;
}

.checkbox {
    display: flex;
    align-content: center;
    justify-content: center;
}

.checkbox input {
    width: 10%;
    margin-top: -3px;
    height: 25px;
}

.checkbox p {
    width: 315px;
}

.form_contentBox {
    margin-bottom: 50px;
    max-width: 860px;
    margin: 0 auto;
}

.submitBox {
    margin: 0 auto;
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.submitBox input {
    color: #fff;
    border: solid 1px #B70E1C;
    font-size: 16px;
    background: #B70E1C;
    border-radius: 100vw !important;
    height: 78px;
    letter-spacing: .1em;
    cursor: pointer;
    transition: .4s;
    margin: 0 auto;
}

.submitBox input:hover {
    background: #B70E1C;
    color: #fff;
}

.mw_wp_form .error {
    font-size: 13px;
    margin-top: 8px;
}

.thanyouMail {
    max-width: 750px;
    margin: 0 auto;
    margin-bottom: 78px;
    padding: 0 25px;
    margin-top: 30px;
}

.thanyouMail h3 {
    font-size: 30px;
    margin-bottom: 25px;
    color: #B70E1C;
    font-family: "ivypresto-display", serif;
    font-weight: 300;
    font-style: italic;
}

.thanyouMail p {
    line-height: 30px;
    color: #333;
    font-weight: bold;
    font-size: 13px;
}

.thanyouMail .blackBtn {
    margin: 0 auto;
    margin-top: 25px;
}

.thanyouMail .cmmnBtn {
    text-align: center;
    margin-top: 25px;
}

.mw_wp_form .error {
    font-size: 78% !important;
}

input[type="text"] {
    -webkit-appearance: none;
    border-radius: 0;
}

textarea {
    -webkit-appearance: none;
    border-radius: 0;
}


select {
    width: 52%;
    box-sizing: border-box;
    height: 56px;
    background: #f4f3f1;
    border: 1px solid #f4f3f1;
    padding: 0 15px;
}


input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    box-sizing: border-box;
    cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}

.submitBox .button_back {
    background: #4a4a4a;
    border: solid 1px #d3d2d2;
    margin: 0 5px;
    color: #fff;
}

.mw_wp_form_preview .form_flexBox_list {
    padding-top: 0;
}

.mw_wp_form_preview .mandatory {
    top: -3px;
}

.mw_wp_form_preview .Any {
    top: -3px;
}

.mw_wp_form_preview .submitBox {
    width: auto;
    margin-bottom: 180px;
    margin-top: 20px;
}

#privacyPolicy {
    max-width: 1025px;
    margin: 0 auto;
    padding: 0 25px;
}

.birthBgBox {
    display: flex;
}

.birthBgBox > div {
    width: 50%;

}


.birthBgBox input {
    width: 90%;
}

.selectinner {
    position: relative;
}

.selectinner::after {
    position: absolute;
    position: absolute;
    content: "";
    background-image: url(../img/selectArrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 15px;
    height: 17px;
    top: 62%;
    left: 77%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.selectinnerEntry::after {
    left: 47%;
}

.selectinner span {
    position: absolute;
}

.birthBgBox select {
    width: 90%;
}

select {
    -webkit-border-radius: 0;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mw_wp_form_preview .privacypBox {
    display: none;
}

.mw_wp_form_preview .checkbox p {
    position: relative;
    -webkit-backface-visibility: hidden;
    font-weight: 100;
}

.mw_wp_form_preview .checkbox p::before {
    position: absolute;
    content: "";
    background-image: url(../img/privacypolicyCheck.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 43px;
    height: 42px;
    top: 50%;
    left: 13px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.privacyAge {
    text-align: right;
    font-weight: bold;
    text-decoration: underline;
}

.inactive {
    color: #D8D8D8;
}

.radioiinput input {
    width: 6%;
    height: 22px;
    margin-bottom: 7px;
}

.documentinput label {
    display: flex;
    justify-content: left;
    margin-bottom: -16px !important;
}


.thanyouMail .commonBtn {
    text-align: center;
    margin-top: 20px;
}



.udHero .imgBoxhalf img {
    height: 600px;
}

.formOpBoxWrap {
    background: #FAF8F4;
    padding: 80px 80px;
}

.formOpBox {
    text-align: center;
}

.formOpBox h3 {
    font-size: 20px;
    color: #B70E1C;
    font-family: source-han-sans-cjk-ja, sans-serif;
    line-height: 28px;
    margin-bottom: 25px;
    letter-spacing: .05em;
}

.formOpBox p {
    font-size: 16px;
    font-family: source-han-sans-cjk-ja, sans-serif;
    line-height: 28px;
    margin-bottom: 60px;
    font-weight: bold;
    letter-spacing: .05em;
}


.formOpBoxWrap .commonBtnBox {
    position: relative;
    margin: 0 auto;
    width: 305px;
    margin-top: 30px;
}

.breadBox {
    position: absolute;
    left: 150px;
    bottom: 19px;
    z-index: 3;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: .05em;
    color: rgba(255, 255, 255, 0.44);
}

.breadBox a {
    color: #fff;
}





.udbgCb {
    background: #F4F4F4;
    padding: 37px;
}

.udbgCb h5 {
    font-size: 18px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    padding-bottom: 7px;
    margin-bottom: 31px;
    border-bottom: solid 1px #707070;
}

.udbgCbFlex {
    display: flex;
    align-items: center;
    column-gap: 25px;
}

.udbgCbFlex > div {
    width: 50%;
}

.udbgCbFlex p {
    font-size: 13px;
    line-height: 30px;
    font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: 400;
}

.udresearchInner {
    display: flex;
    padding: 0 80px;
    flex-wrap: wrap;
    column-gap: 5%;
    margin-top: 78px;
    margin-bottom: 10px;
}

.udresearchInner a {
    width: 30%;
    margin-bottom: 100px;
}

.udresearchInner .swiper-slideImg img {
    width: 100%;
}

.wp-pagenavi {
    text-align: center;
    font-family: goldenbook, serif;
    font-size: 21px;
    margin-bottom: 120px;
}

.wp-pagenavi span {
    color: #B70E1C;
    margin-right: 20px;
}

.wp-pagenavi a {
    margin-right: 20px;
}

.wp-pagenavi .previouspostslink {
    margin-right: 80px;
}

.nextpostslink {
    margin-right: 0;
    margin-left: 80px;
}

.udNewsWrap {
    background: #fff !important;
}

.udNewsWrap .newsInner .heroNews {
    border: solid 1px rgb(112 112 112 / 22%);
    color: #111;
}

.udNewsWrap .newsInner .enTitle {
    color: #111;
}

.udNewsWrap .heroNews .textBox::after {
    background-image: url(../img/barrow.svg);
}

#TypeOf .solutionOp:hover::after {
    opacity: 1;
}

#TypeOf .solutionOp:hover .textBox {
    opacity: 1;
    z-index: 2;
}

#cancer {
    padding-top: 130px;
}

#cancer .udComnFdInner .imgBox img {
    max-width: 541px;
}


.udComnFdInnerR {
    flex-direction: row-reverse;
    padding-top: 120px;
    margin-bottom: 95px;
}

/*
.udComnFdInnerR .textBox {
    width: auto;
}
*/



#cancer .udComnFdInnerR .imgBox img {
    max-width: none;
}





.cansFtuBox {
    background: rgba(248, 248, 248, 0.75);
    padding: 66px 133px;
    max-width: 1500px;
    margin: 0 auto;
    box-sizing: border-box;
    margin-bottom: 120px;
}

.cansFtuBox img {
    max-width: 100%;
}

.cansFtuBox .flex {
    display: flex;
    margin-top: 53px;
    justify-content: space-between;
    column-gap: 60px;

}

.cansFtuBox .flex > div {
    background: #fff;
    padding: 44px 65px;
    text-align: center;
    width: 49%;
}

.cansFtuBox h4 {
    font-size: 18px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    line-height: 40px;
    text-decoration: underline;
    margin-bottom: 26px;
}

.cansFtuBox .des {
    text-align: left;
}

#vipH {
    background: #242424;
    color: #fff;
    padding-top: 136px;
    padding-bottom: 86px;
}


#vipH .trackrecord {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/vipBg.png);
    max-width: 1500px;
    margin: 0 auto;
    padding: 93px 108px;
    box-sizing: border-box;
    margin-top: 110px;
}

#vipH .trackrecord .flex {
    display: flex;
    justify-content: space-between;
    column-gap: 17px;
    margin-top: 56px;
}

#vipH .trackrecord .flex > div {
    background: rgba(255, 255, 255, 0.87);
    width: 33%;
    padding: 35px 31px;
    box-sizing: border-box;
}

#vipH .trackrecord h4 {
    font-size: 25px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    margin-bottom: 10px;
}

#vipH .trackrecord .enTItle {
    font-family: goldenbook, serif;
    font-size: 21px;
}

#vipH .trackrecord .flex h5 {
    font-size: 18px;
    text-decoration: underline;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    color: #111;
    text-align: center;
    margin-bottom: 31px;
    letter-spacing: .05em;
    margin-bottom: 32px;
    margin-top: 28px;
}


#vipH .namBox {
    text-align: center;
}

#vipH .flex .des {
    text-align: left;
    color: #111;
}

#udpost {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 80px;
    margin-top: 122px;
}

#udpost .time {
    display: flex;
    margin-bottom: 14px;
    align-items: center;
}

#udpost .wp-block-image img {
    margin-bottom: 20px;
}


.topNewsList_time {
    font-size: 24px;
    line-height: 37px;
}

.udPostTxtBox p {
    line-height: 28px;
    font-size: 15px;
    margin-bottom: 20px;
}

.udArchiveBox {
    display: flex;
    margin: 0 auto;
    padding: 0 80px;
    column-gap: 8%;
    max-width: 1400px;
    justify-content: space-between;
}

.udArchiveBox #column .flex img {
    height: 260px;
}

.udArchiveBox .sameTitleBox h2 {
    font-family: 'Josefin Sans', "游ゴシック体", sans-serif;
}

.wp-block-heading {
    font-size: 20px;
    margin-bottom: 17px;
}

.udAcTitle {

    margin: 0 auto;
    padding: 0 80px;
    max-width: 1400px;
    font-size: 35px;
    margin-bottom: 100px;
    margin-top: 320px;
}

.udArchiveBox > section {
    width: 40%;

}


#udpost .pagenationBox li a {
    color: #B2880B;
}
#udpost li {
    font-size: 15px;
    list-style-position: inside;
}
.pagenationBox_centaer {
    margin: 0 10px;
}

#udpost .pagenationBox a {
    display: block;
    padding: 13px 54px;
    padding-top: 16px;
    border: solid #B2880B 2px;
    transition: .4s;
    letter-spacing: .1em;
    font-size: 13px;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: normal;
    text-decoration: none;
    color: #B2880B;
    border-radius: 6px;
}

#udpost .inFlex {
    display: flex;
    align-items: center;
    column-gap: 12px;
    margin-bottom: 21px;
}
#udpost .inFlex .cat {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    color: #B70E1C;
    border: solid #B70E1C 1px;
    padding: 5px 20px 5px 20px;
    line-height: 100%;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0;
}

#udpost .inFlex .cat.NEWS {
    color: #B2880B;
    border: solid #B2880B 1px;
}

#udpost .inFlex .day {
    font-size: 13px;
    color: #3C3C3C;
    letter-spacing: 0;
    margin-top: 3px;
}

.inactive {
    border-radius: 6px;
    color: #D8D8D8;
    font-weight: bold;
    display: block;
    padding: 13px 54px;
    padding-top: 16px;
    border: solid #D8D8D8 2px;
    transition: .4s;
    letter-spacing: .1em;
    text-decoration: none;
    font-size: 15px;
    font-size: 13px;
    font-family: neue-haas-grotesk-display, sans-serif;
    font-weight: normal;
}

.pagenationBox {
    display: flex;
    justify-content: center;
    margin-bottom: 82px;
}

#udpost .pagenationBox {
    margin-top: 75px;
    list-style-type: none;
}


.udHero.udpostD .imgBoxhalf img {
    height: 315px;
}


.ppBox{
    padding: 0 80px;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 120px;
}

.ppBox .MainBox{
    margin-bottom: 40px;
}
.ppBox .ContentBox{
    margin-bottom: 55px;
}
.ppBox p{
    letter-spacing: .1em;
    font-size: 15px;
     font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    line-height: 30px;
    margin-bottom: 25px;
}
.ppBox h3{
     font-size: 25px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    margin-bottom: 20px;
}
.ppBox ul {
    list-style-position: inside;
    font-size: 15px;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
    line-height: 30px;
    list-style-type: auto;
}
.ppBox .list{
    padding-left: 20px;
    border-left: solid 2px #555;
    letter-spacing: .1em;
}





.init-bottom{
    pointer-events: none;
}





footer.czFooter{
    
}
footer.czFooter .inFlex ul a {
     font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: 400;
}


.pointFontu{
    font-size: 51px !important;
    font-style: normal !important;
}

.companyMainBox{
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 80px;
    margin-top: 120px;
    margin-bottom: 113px;
}


.companyMainBox .flex{
    display: flex;
    justify-content: center;
    column-gap: 90px;
}

.companyMainBox dl{
    display: flex;
     font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: 400;
    margin-bottom: 1px;
}
.companyMainBox .navBox{
    width: 60%;
}
.companyMainBox dl dt{
    width: 255px;
    font-size: 15px;
    color: #fff;
    background: #B70E1C;
    padding: 28px 30px;
}

.companyMainBox dl dd{
    background: #F8F8F8;
    font-size: 14px;
    padding: 28px 30px;
    width: 100%;
}

.companyMainBox .titleBox p {
    font-family: goldenbook, serif;
    margin-bottom: 20px;
    font-size: 20px;
}

.companyMainBox .titleBox h3{
    font-size: 18px;
       font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 100;
}



.ppFont {
    font-size: 120px !important;
       font-family: source-han-sans-cjk-ja, sans-serif;
    font-weight: 400;
    color: #B70E1C;
}

.enFont{
        font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif !important;
}


#BrandStory .textBox {
    width: 50%;
}




.chLang{
        font-family: source-han-sans-cjk-ja, sans-serif !important;
}
#chLang{
        font-family: source-han-sans-cjk-ja, sans-serif !important;
}


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

    .heroNews:hover img {
        transform: scale(1.2);
    }



    .researchInner a:hover .swiper-slideImg img {

        transform: scale(1.1);
        object-fit: cover;
        opacity: .6;
    }


    #interview .interviewInner a:hover img {
        transform: scale(1.1);
        object-fit: cover;
        opacity: .6;
    }



    #interview .interviewInner a:hover .playBox img {
        transform: scale(1);
        opacity: 1;
    }


    .heroNews:hover .post span::after {
        transform: scale(1, 1);
        transform-origin: left top;
    }

    .researchInner a:hover .pointBtn p::after {
        transform: translate(0, 0);
        opacity: 1;
    }

    .researchInner a:hover .pointBtn span {
        transform: translate(0, -40%);
        opacity: 0;
        transform: translateY(-40%) scaleY(0);
    }

    .foA:hover::after {
        transform: translate(0, 0);
        opacity: 1;
    }

    .foA:hover span {
        transform: translate(0, -40%);
        opacity: 0;
        transform: translateY(-40%) scaleY(0);
    }

    .heroNews:hover {
        opacity: .8;
    }

}















@media screen and (max-width:2046px) {
    #contact .bgEntitle {
        font-size: 14vw;
    }

}


@media screen and (max-width:1550px) {
#MainRaw .imgBox img {
    max-width: 337px;
}
#MainRaw .swiper-button-prev::after, #MainRaw .swiper-button-next::after {
    top: -332px;
}
}

@media screen and (max-width:1500px) {
    .pcHeader .navListBox {
        column-gap: 13px;
    }

    .indexList {
        padding: 113px 40px;
    }

    .pcHeader {
        padding: 34px 54px;
    }

  

    #Regenerative .trackrecordInner {
        padding: 70px 40px 100px 40px;
    }

    .hero .heroja02 {
        font-size: 20px;
    }

    #Regenerative .trackrecord {
        padding: 58px 45px;
    }

    .hero .heroja01 {
        margin-bottom: 7px;
    }

    #vipH .trackrecord {
        padding: 93px 45px;
    }

    .hero .mainCopy {
        top: 48%;
    }

    .heroSns {
        top: 51.5%;
    }

    .productsInner .mainBox {
        width: 65%;
    }

    .indexListInner a {
        padding: 28px 12px 28px 0;
    }

    .hero .swiper-pagination {
        font-size: 48px;
        bottom: 9.5%;
    }

    .udpara {
        height: 80vh;
    }

    .researchInner .titleBox {
        margin-bottom: 41px;
    }

    .aboutusInner {
        column-gap: 49px;
    }

    #feature {
        padding: 106px 80px;
    }

    #parara {
        height: 100vh;
    }

    .snsBoxInner a {
        height: 431px;
    }

    #products {
        margin-bottom: 154px;
    }

    .researchInner .swiper-slideImg img {
        height: 417px;
    }




}


@media screen and (max-width:768px) {
    body {
        min-width: auto;
    }
    #BrandStory .textBox {
    width: auto;
}
#udpost {
    padding: 0 30px;
    margin-top: 65px;
}
    .companyMainBox .flex {
    display: block;
}
    .pointFontu {
    font-size: 20px !important;
}
    #Regenerative {
        padding: 76px 30px 90px 30px;
    }
.ppBox {
    padding: 0 30px;
    margin-top: 55px;
}
    #Regenerative .trackrecord {
        padding: 58px 20px;
    }
    .companyMainBox .navBox {
    width: auto;
}
    .companyMainBox .titleBox h3 {
    margin-bottom: 25px;
}
    .companyMainBox {
    padding: 0 30px;
    margin-top: 59px;
    margin-bottom: 67px;
}
.inactive {
    padding: 10px 0;
    text-align: center;
    padding-top: 14px;
    font-size: 15px;
}
    .udresearchInner a {
        width: 47%;
    }
    .ppBox .ContentBox {
    margin-bottom: 40px;
}
    .ppBox ul {
    font-size: 13px;
}
    .ppBox p {
    font-size: 13px;
    line-height: 30px;
    margin-bottom: 18px;
}
    .ppBox h3 {
    font-size: 18px;
    margin-bottom: 9px;
}
.topNewsList_time {
    font-size: 18px;
}
    .cansFtuBox .flex {
        display: block;
    }
.udPostTxtBox p {
    font-size: 13px;
}
    #udpost .pagenationBox li {
    width: 100%;
}
    #udpost li {
    font-size: 13px;
}
    #udpost .pagenationBox a {
    padding: 10px 0;
    font-size: 15px;
    text-align: center;
}
    #udpost .pagenationBox a {
    padding-top: 14px;
}
    .udPostTxtBox li{
        font-size: 13px;
    }
    .udresearchInner {
        display: flex;
        padding: 0 30px;
        column-gap: 5%;
        justify-content: space-between;
    }

    #vipH .trackrecord .flex > div {
        width: auto;
        margin-bottom: 25px;
    }

    #vipH .trackrecord .flex h5 {
        font-size: 16px;
        margin-bottom: 13px;
        margin-top: 19px;
    }

    #vipH .trackrecord .flex > div {
        padding: 27px 22px;
    }

    .cansFtuBox .flex > div {
        width: auto;
        margin-bottom: 25px;
    }

    #vipH .trackrecord .flex {
        display: block;
    }

    #vipH {
        padding-top: 69px;
    }

    .cansFtuBox {
        margin-bottom: 60px;
    }

    .cansFtuBox .flex > div {
        padding: 30px 44px;
    }

    .cansFtuBox {
        padding: 35px 30px;
    }

    #Regenerative .trackrecordInner::after {
        width: 147%;
        height: 57%;
    }

    .cansFtuBox {
        padding: 66px 30px;
    }

    #cancer {
        padding-top: 65px;
    }

    .udComnFd {
        padding: 0 30px;
    }

    #Regenerative .trackrecord .flex .namBox .des {
        font-size: 17px;
    }

    #Regenerative .trackrecord .flex .des {
        font-size: 15px;
    }

    .formOpBox p br {
        display: none;
    }

    #Regenerative .trackrecord .flex .des span {
        font-size: 29px;
    }

    #Regenerative .trackrecord .flex > div {
        padding: 26px 22px;
    }

    #Regenerative .trackrecordInner {
        padding: 70px 40px 33px 40px;
    }

    #vipH .trackrecord {
        padding: 46px 45px;
    }

    .udbgCbFlex {
        display: block;
    }

    #vipH {
        padding-bottom: 47px;
    }

    #Regenerative .trackrecord .flex > div {
        width: auto;
        margin-bottom: 25px;
    }

    #Regenerative .trackrecord .flex {
        display: block;
    }

    #Regenerative .trackrecord {
        margin-top: 61px;
    }

    .categoryListBox__content {
        display: block;
    }

    .formOpBox p {
        font-size: 12px;
    }

    .productsInner .imgBox {
        width: auto;
    }

    .categoryListBox__content {
        padding-left: 57px;
    }

    .productsInner .inFlex .textBox {
        width: auto;
    }

    .categoryListBox {
        padding: 72px 30px;
        padding-bottom: 50px;
    }


    ul.bogo-language-switcher li {
        color: #fff;
        font-family: goldenbook, serif;
    }

    .udbgCbFlex > div {
        width: auto;
    }

    .categoryListBox__content > li {
        width: auto;
        margin-bottom: 6px;
    }

    .udbgCb h5 {
        font-size: 15px;
        padding-bottom: 3px;
        margin-bottom: 23px;
    }

    .udbgCbFlex p {
        font-size: 12px;
        line-height: 28px;
        margin-bottom: 20px;
    }

    .udbgCb {
        padding: 27px;
    }

    .udComnFdInner {
        display: block;
    }

    .formOpBoxWrap {
        padding: 42px 15px;
    }

    .formOpBox h3 {
        font-size: 17px;
        margin-bottom: 14px;
    }

    .form {
        padding: 52px 30px;
    }

    .udProBoxInnre .imgBox img {
        height: auto;
    }

    .form_flexBox_list {
        padding-top: 17px;
        font-size: 13px;
        margin-bottom: 25px;
    }

    .form_flexBox {
        padding-bottom: 62px;
        margin-bottom: 32px;
        display: block;
    }

    .documentinput .inputBg {
        font-size: 14px;
    }

    .form_flexBox_list {
        width: auto;
    }

    .udProBoxInnre .imgBox {
        width: auto;
    }

    .udProBoxInnre .nam {
        margin-bottom: 35px;
    }

    .udProBoxInnre {
        display: block;
        padding-right: 0;
    }

    .udProBoxInnre .textBox {
        width: auto;
        margin-top: 40px;
        padding: 0 30px;
    }

    .udProBoxInnre .textBox > div {
        position: static;
        top: auto;
    }

    .paperWrapIIner {
        padding: 40px 17px 20px 17px;
    }

    .paperWrap .titleBox .enTitle {
        font-size: 13px;
    }

    .paperWrap .titleBox {
        margin-bottom: 23px;
    }

    .paperWrap .titleBox h4 {
        font-size: 18px;
        line-height: 36px;
        margin-bottom: -2px;
    }

    .paperWrapIIner .flex2 h5 {
        font-size: 15px;
        padding-bottom: 2px;
        margin-bottom: 20px;
    }

    .paperWrapIIner .flex2 p {
        font-size: 12px;
        line-height: 28px;
    }

    .paperWrapIIner .otDes {
        padding-left: 12px;
        font-size: 12px;
        line-height: 28px;
        margin-bottom: 31px;
    }

    .paperWrapIIner .flex3 .desBox p {
        font-size: 12px;
        line-height: 28px;
    }

    .paperWrapIIner .flex3 > div {
        margin-bottom: 50px;
    }

    .paperWrapIIner .flex3 h5 {
        font-size: 15px;
        padding: 12px 0;
    }

    .paperWrapIIner .flex3 {
        display: block;
    }

    .paperWrapIIner .aten br {
        display: none;
    }

    .paperWrapIIner .aten {
        margin-top: 3px;
    }

    .paperWrapIIner .flex2 > div {
        width: auto;
        margin-bottom: 50px;
    }

    .paperWrapIIner .flex2 .subtitle {
        margin-bottom: 22px;
    }

    .paperWrapIIner .flex2 {
        display: block;
    }

    .paperWrap .des br {
        display: none;
    }

    .paperWrap .des {
        font-size: 12px;
        line-height: 28px;
        margin-bottom: 30px;
    }

    .desaopInner .enTitle {
        font-size: 13px;
        margin-bottom: 36px;
    }

    #Effectiveness {
        padding: 100px 30px 60px 30px;
    }

    .udComnFd h3 {
        margin-bottom: 16px;
    }

    .paperWrap {
        padding: 0 30px;
        margin-bottom: 18px;
    }

    .udComnFd .des br {
        display: none;
    }

    .udComnFd .des {
        font-size: 12px;
        line-height: 30px;
        margin-bottom: 30px;
    }

    .udComnFdInner .textBox {
        width: auto;
    }

    .udComnFd .enTitle {
        font-size: 13px;
        margin-bottom: 35px;
    }

    #Efficacy {
        padding: 100px 30px 60px 30px;
    }

    #Efficacy p {
        margin-bottom: 18px;
    }

    #PatentPha {
        padding: 100px 30px 60px 30px;
        margin-bottom: 60px;
    }

    #Whatis {
        padding: 100px 30px 60px 30px;
    }

    .desaop {
        padding: 64px 30px;
    }

    .udpara {
        background-attachment: scroll;
        height: 100vh;
    }

    .udHero .titleBox p {
        font-size: 46px;
    }

    .desaopInner .des {
        font-size: 12px;
        line-height: 26px;
    }

    .desaopInner h3 {
        font-size: 21px;
        line-height: 34px;
        margin-bottom: 20px;
    }

    .desaopInner {
        display: block;
    }

    .spheader.change-color {
        background: #B70E1C;
        transition: 0.4s;
    }

    #BrandStory {
        padding: 56px 30px;
        padding-bottom: 130px;
    }

    .pcHeader {
        min-width: auto;
        display: none;
    }

    #MainRaw .imgBox img {
        max-width: 79%;
    }

    .ourCharacteristicsInner .flex > div {
        width: auto;
    }

    .ourCharacteristicsInner h4 {
        font-size: 16px;
        margin-bottom: 23px;
    }

    .ourCharacteristicsInner .flex::before {
        left: 13px;
        margin: auto;
        bottom: 0;
        right: auto;
    }

    .ourCharacteristicsInner .flex {
        margin-bottom: 27px;
    }

    .ourCharacteristicsInner .des {
        font-size: 12px;
        margin-bottom: 20px;
        line-height: 25px;
    }

    .ourCharacteristicsInner .flex {
        display: block;
        padding-left: 60px;
    }

    .ourCharacteristicsInner .flex .crnN {
        position: absolute;
        right: 0;
        left: -18px;
        margin: 0 auto;
        top: 0;
        text-align: left;
    }

    #TypeOf .flex {
        display: block;
    }

    #TypeOf .flex > div {
        width: auto;
    }

    #TypeOf .mainBox {
        padding: 40px 17px 0 17px;
    }

    #MainRaw h5 {
        font-size: 21px;
        line-height: 30px;
    }

    #TypeOf h5 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    #TypeOf .mainBox {
        border: solid 1px rgba(112, 112, 112, 0.15);
        padding: 40px 17px 20px 17px;
    }

    #ourCharacteristics {
        padding: 92px 30px;
    }

    #TypeOf {
        padding: 100px 30px;
    }

    #ourCharacteristics {
        padding: 59px 30px;
        padding-bottom: 25px;
    }

    #MainRaw {
        padding: 128px 30px 97px 30px;
        margin-bottom: 6px;
    }

    #BrandStory .des {
        margin-bottom: 40px;
    }

    #BrandStory .des br {
        display: none;
    }

    #MainRaw {
        padding: 71px 30px 97px 30px;
        margin-bottom: 6px;
    }

    .spheader {
        display: flex;
        position: fixed;
        top: 0;
        transition: 0.4s;
        z-index: 7;
        width: 100%;
        padding: 15px 30px 25px 30px;
        box-sizing: border-box;
    }

    .bogo-language-switcher {
        width: 126px;
    }

    ul.bogo-language-switcher li {
        width: 43px;
        font-size: 12px;
    }

    ul.bogo-language-switcher li a {
        color: #fff;
        font-family: goldenbook, serif;
    }


    .spheader .logoBox {
        position: relative;
        width: 80%;
        z-index: 999;
    }

    .heroSns {
        left: 20px;
    }

    .indexListInner {
        display: block;
    }

    .bogo-language-switcher {
        margin-top: 6px;
        z-index: 9999;
    }

    .spheader .logoBox {
        margin-top: -1px;
    }

    .spheader .logoBox img {
        width: 136px;
    }

    .hero .heroja01 {
    font-size: 4vw;
    padding-right: 8px;
}

    .hero .mainCopy {
        top: 54.5%;
        left: 87px;
    }

    .indexListInner > div {
        width: auto;
        margin-bottom: 6px;
    }

    .hero .heroja02 {
        font-size: 16px;
    }

    .hero .heroja01 {
        margin-bottom: 9px;
    }

    .indexListInner {
        padding-left: 57px;
    }

    #BrandStory .flex {
        display: block;
    }

    #concept .imgFlex {
        column-gap: 16px;
        margin-left: 10px;
    }

    #BrandStory::after {
        top: -195px;
    }

    #BrandStory h3 {
        margin-bottom: 36px;
    }

    #interview .interviewInner .flex {
        display: block;
    }

    #interview .interviewInner .flex > a {
        width: auto;
        margin-bottom: 30px;
    }


    #interview {
        padding: 98px 30px 100px 30px;
    }

    #concept {
        padding: 114px 0;
        padding-bottom: 60px;
    }

    #concept .aboutusInner {
        padding: 0 30px;
        margin-bottom: 142px;
    }

    .hero .swiper-pagination {
        font-size: 30px;
        bottom: 28.5%;
        left: 87px;
    }

    .indexList {
        padding: 72px 30px;
        padding-bottom: 50px;
    }

    .menu {
        height: 20px;
        right: 30px;
        top: 27px;
    }

    #products {
        margin-bottom: 134px;
    }

    .hero .swiper-pagination-current {
        font-size: 35px;
    }

    .hero .swiper-pagination-total {
        font-size: 25px;
        margin-left: -7px;
    }

    .hero .acrollD {
        left: 90px;
        bottom: 25%;
    }

    .aboutusInner {
        display: block;
    }

    #aboutus {
        padding: 121px 30px;
        margin-bottom: 160px;
    }

    .aboutusInner .des {
        font-size: 12px;
    }

    .aboutusInner .des br {
        display: none;
    }

    .aboutusInner .imgBox {
        margin-top: 55px;
        text-align: center;
    }

    .productsInner {
        display: block;
    }

    #products {
        padding: 0 30px;
    }

    .productsInner .inFlex {
        display: block;
    }

    .productsInner .mainBox {
        width: auto;
    }

    .productsInner img {
        max-width: none;
    }

    .productsInner .nam::after {
        width: 85%;
    }

    .productsInner .nam {
        margin-bottom: 65px;
        margin-top: 30px;
    }

    .desCon {
        font-size: 12px;
        line-height: 25px;
        margin-bottom: 56px;
    }

    .productsInner .textBox > div {
        position: static;
        top: auto;
        padding-bottom: 38px;
    }

    .StoryInner .imgBox img {
        height: 641px;
        object-fit: cover;
    }

    .StoryInner .mainBox {
        top: 64%;
        width: 90%;
        left: 50%;
    }

    #Story {
        padding: 79px 16px;
        padding-bottom: 135px;
    }

    #parara h2 {
        font-size: 20px;
        margin-top: 60px;
    }

    .storyBtn {
        right: 4%;
    }

    #feature {
        padding: 111px 30px;
    }

    #parara {
        background-attachment: scroll;
        height: 889px;
        margin-bottom: 120px;
    }

    #parara p {
    font-size: 4vw;
    line-height: 41px;
    padding: 0 30px;
}
#feature .aten {
    font-size: 13px;
}
    .researchInner .titleBox {
        display: block;
    }

    .heroNews {
        right: auto;
        left: 89px;
    }

    #research {
        padding: 0 30px;
        padding-top: 20px;
    }

    .researchInner .textBox .des {
        font-size: 12px;
        margin-bottom: 25px;
    }

    .newsInner .flex {
        display: block;
    }

    #news {
        padding: 105px 30px;
        overflow: hidden;
    }

    .newsInner .heroNews .post {
        width: 300px;
    }

    footer {
        position: relative;
    }

    .snsBoxInner > div {
        width: auto;
    }

    footer {
        padding: 90px 30px 20px 30px;
    }

    footer .pageTop {
        right: 30px;
        top: 20px;
        font-size: 10px;
    }

    footer .pageTop::after {
        right: 3px;
        top: 3px;
    }

    .snsBoxInner {
        display: block;
    }

    footer .inFlex {
        display: flex;
        width: auto;
    }

    footer .imgBox {
        margin-bottom: 80px;
    }

    footer .flex {
        display: block;
    }

    .gnav__menu {
        display: block;
        display: flex;
        justify-content: space-between;
        padding: 29px 25px;
        border-bottom: solid 1px #eeeeee3b;
        border-top: solid 1px #eeeeee3b;
        margin: 0 29px;
    }

    .gnav__menu li {
        width: 35%;
    }


}

@media screen and (max-width:650px) {
    .newsInner .heroNews .post {
        width: 245px;
    }
}






@media screen and (max-width:600px) {
    .newsInner .heroNews {
        display: block;
    }

    .heroNews {
        left: 30px;
    }

    .heroNews .post {
        width: 155px;
        font-size: 11px;
    }

    .heroNews .textBox {
        padding-right: 66px;
    }

    .heroNews img {
        width: 86px;
        height: 75px;
    }

    .heroNews {
        column-gap: 11px;
    }

    .heroNews .textBox::after {
        width: 20px;
        height: 20px;
        right: 13px;
        top: 18px;
    }

    .menu__line {
        height: 2px;
    }

    .heroNews .textBox::before {
        background: #d6d6d6bd;
        right: 44px;
    }

    .hero .swiper-pagination-current {
        font-size: 28px;
    }

    .hero .swiper-pagination-total {
        font-size: 21px;
    }

    .hero .swiper-pagination-current {
        font-size: 28px;
    }

    .heroSns img {
        width: 30px;
        height: 30px;
    }

    .hero .acrollD p::after {
        top: 1px;
    }

    .hero .heroja02 {
        font-size: 14px;
    }

    .hero .acrollD p::after {
        width: 23px;
        height: 23px;
    }

    .hero .mainCopy {
        left: 79px;
    }

    .hero .swiper-pagination {
        font-size: 26px;
        left: 78px;
    }

    .heroNews .inFlex {
        margin-bottom: -7px;
    }

    .hero .acrollD {
        left: 79px;
        bottom: 23%;
    }

    .heroNews .cat {
        font-size: 16px;
    }

    .aboutusInner .enTitle {
        font-size: 30px;
        margin-bottom: 42px;
    }

    .aboutusInner .subEntitle {
        font-size: 13px;
        margin-bottom: 35px;
    }

    .aboutusInner h2 {
        font-size: 18px;
        margin-bottom: 3px;
    }

    .aboutusInner .minEnTitle {
        font-size: 13px;
        margin-bottom: 24px;
        letter-spacing: .03em;
    }

    .aboutusInner h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    #aboutus {
        padding-bottom: 80px;
        margin-bottom: 64px;
    }

    .productsInner .enTItle {
        font-size: 30px;
        margin-bottom: 4px;
    }

    .productsInner h2 {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .productsInner .des {
        font-size: 12px;
        line-height: 25px;
        margin-bottom: 20px;
    }

    .productsInner .des br {
        display: none;
    }

    .commonBtnBox a {
        width: 175px;
        padding: 14px 25px;
        font-size: 11px;
    }

    .commonBtnBox {
        width: 225px !important;
    }

    .commonBtnBox::after {
        top: 11px;
    }

    .productsInner .textBox > div {
        padding-bottom: 50px;
    }

    .productsInner .nam::after {
        width: 72%;
    }

    .productsInner .nam {
        margin-bottom: 33px;
    }

    .productsInner h3 {
        margin-bottom: 20px;
        font-size: 18px;
    }

    .desCon {
        margin-bottom: 46px;
    }

    .thanyouMail {
        margin-bottom: 21px;
    }

    #products {
        margin-bottom: 54px;
    }

    #Story {
        padding: 57px 16px;
        padding-bottom: 74px;
    }

    .StoryInner .imgBox img {
        height: 486px;
    }

    .StoryInner .imgBox img {
    object-position: 55%;
}

    #Story h3 {
        margin-bottom: 13px;
        font-size: 15px;
    }

    .StoryInner .des {
        line-height: 25px;
        margin-bottom: 30px;
        font-size: 12px;
    }

    .StoryInner .des br {
        display: none;
    }

    #Story .enTItle {
        margin-bottom: 24px;
        font-size: 13px;
    }

    .storyBtn img {
        width: 90px;
    }

    .storyBtn {
        right: 3%;
        bottom: -43px;
    }

    #Story .titleBox p {
        font-size: 30px;
        margin-bottom: 5px;
    }

    #Story .titleBox h2 {
        font-size: 10px;
    }

    #feature .enTIttle::before {
        width: 38%;
    }

    #feature .enTIttle::after {
        width: 38%;
    }

    #Story .titleBox {
        margin-bottom: 23px;
    }

    #feature .mainBox {
        margin-top: 42px;
    }

    #feature {
        padding: 53px 30px;
    }

    #feature .mainBox h2 {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 0px;
    }

    #feature .aten {
        margin-bottom: 32px;
    }

    #feature .mainBox .des {
        font-size: 12px;
        line-height: 25px;
    }

    #feature .mainBox .des br {
        display: none;
    }

    #feature .desBox {
        padding: 27px 0;
        border-bottom: solid 1px rgba(112, 112, 112, 0.49);
        border-top: solid 1px rgba(112, 112, 112, 0.49);
        margin-bottom: 26px;
    }

    #parara {
        height: 100vh;
        margin-bottom: 57px;
    }

    #parara h2 {
        font-size: 14px;
        margin-top: -26px;
    }

    .researchInner .enTitle {
        font-size: 30px;
        margin-bottom: 3px;
    }

    .researchInner h2 {
        font-size: 10px;
        margin-bottom: 10px;
    }

    .researchInner .textBox .des br {
        display: none;
    }

    .researchInner .postTitle {
        font-size: 12px;
        margin-bottom: 23px;
    }

    .researchInner .inFlex .cat {
        font-size: 16px;
    }

    .researchInner .inFlex {
        margin-top: 13px;
    }

    .swiper-horizontal > .swiper-scrollbar {
        bottom: -47px;
    }

    .newsInner h2 {
        font-size: 10px;
        margin-bottom: 10px;
    }

    .newsInner .enTitle {
        font-size: 30px;
        margin-bottom: 6px;
    }

    .researchInner {
        margin-bottom: 118px;
    }

    #news {
        padding: 70px 30px;
    }

    .newsInner .titleBox > div {
        position: static;
        top: auto;
        padding-bottom: 38px;
    }

    .newsInner .heroNews .textBox {
        padding: 16px 20px;
        padding-right: 66px;
    }

    .newsInner .heroNews img {
        width: 100%;
    }

    .newsInner .heroNews .textBox::after {
        top: 35px;
    }

    .newsInner .heroNews .imgBox {
        border-radius: 6px 6px 0 0;
    }


    .newsInner .heroNews img {
        border-radius: 6px 6px 0 0;
    }

    .newsInner .heroNews .textBox::before {
        background: #d6d6d652;
    }

    #news {
        padding: 60px 30px;
        padding-bottom: 44px;
    }

    .snsBoxInner a {
        height: 320px;
        border-radius: 6px;
    }

    .snsBoxInner h2 {
        font-size: 10px;
        margin-bottom: 19px;
    }

    

    .snsBoxInner .enTitle {
        font-size: 20px;
    }

    .newsInner .heroNews {
        background: rgb(255 255 255 / 19%);
    }

    #contact .enTitle {
        font-size: 30px;
        margin-bottom: 7px;
    }

    .hero .mainCopy {
        top: 52.5%;
    }

    .hero .acrollD p {
        padding-left: 33px;
        font-size: 16px;
    }

    .heroSns {
        top: 54%;
    }

    #contact .des {
        font-size: 16px;
        margin-bottom: 30px;
        line-height: 28px;
    }

    #contact h2 {
        font-size: 10px;
        margin-bottom: 10px;
    }

    #contact .bgEntitle {
        font-size: 28vw;
        width: 100%;
    }

    #contact {
        height: 539px;
    }

    footer .inFlex > div {
        width: 25%;
    }

    footer .inFlex .listBox {
        width: 75%;
    }

    footer .inFlex {
        column-gap: 20px;
    }

    footer .subNav {
        font-size: 12px;
    }

    footer .pageTop {
        right: 24px;
    }

    footer small {
        font-size: 10px;
    }

    footer .flex {
        margin-bottom: 65px;
    }

    #snsBox {
        margin-bottom: -1px;
        position: relative;
        z-index: -1;
    }

    .snsBoxInner > div {
        border: solid 1px #797C7E;
        border-right: 0;
        border-left: 0;
        margin-left: 0px;
        margin-bottom: -1px;
    }

    .udHero .heroSns {
        left: 36px;
    }

    .udHero .titleBox p {
        font-size: 34px;
    }

    .udHero .titleBox h2 {
        margin-top: 0;
    }

    .indexListInner a {
        padding: 17px 0;
        font-size: 14px;
    }

    #BrandStory .enTitle {
        font-size: 13px;
        margin-bottom: 35px;
    }

    #interview .interviewInner h3 {
        margin-bottom: 3px;
        font-size: 15px;
    }

    #interview {
        padding: 62px 30px 25px 30px;
    }

    #interview .interviewInner .des {
        font-size: 12px;
    }

    #interview .interviewInner .flex .imgBox {
        margin-bottom: 21px;
    }

    #BrandStory .des {
        font-size: 12px;
    }

    #BrandStory h3 {
        margin-bottom: 23px;
    }

    #BrandStory {
        padding: 56px 30px;
        padding-bottom: 49px;
    }

    .indexListInner a::after {
        top: 14px;
    }

    .indexList {
        padding: 42px 30px;
        padding-bottom: 36px;
    }

    #concept {
        padding: 59px 0;
    }

    #interview .interviewInner .enTitle {
        font-size: 13px;
        margin-bottom: 35px;
    }

    #concept .aboutusInner {
        margin-bottom: 67px;
    }

    #MainRaw .des {
        font-size: 10px;
        line-height: 19px;
    }

    #MainRaw h4 {
        margin-bottom: 10px;
    }

    #MainRaw .swiper-button-next::after {
        width: 21px;
        background-size: contain;
        height: 48px;
        background-repeat: no-repeat;
        right: -10px;
    }

    #MainRaw .swiper-button-prev::after {
        width: 21px;
        background-size: contain;
        height: 48px;
        left: -10px;
        background-repeat: no-repeat;
    }

    #MainRaw .MainRawInner h3 {
        font-size: 13px;
    }

    #TypeOf h5 {
        font-size: 15px;
    }

    #TypeOf .solutionOp .textBox .des {
        font-size: 12px;
        line-height: 22px;
        margin-bottom: 28px;
    }

    #TypeOf .solutionOpWrap {
        margin-bottom: 37px;
    }

    #TypeOf h3 {
        margin-bottom: 20px;
    }

    #TypeOf .mainBox {
        padding: 27px 17px 3px 17px;
    }

    #PatentPha .des {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .udProBox h4::after {
        width: 71px;
    }

    .udProBox h4 {
        font-size: 15px;
        padding-bottom: 0px;
        margin-bottom: 13px;
    }

    .udProBoxInnre .textBox .des {
        font-size: 13px;
        margin-bottom: 22px;
    }

    .udProBoxInnre .nam::after {
        left: 79px;
    }

    .udProBoxInnre .nam {
        margin-bottom: 22px;
        font-size: 13px;
    }

/*
    .udProBox .mainDes br {
        display: none;
    }
*/

    .udProBox .mainDes {
        font-size: 12px;
        margin-bottom: 32px;
    }

    .udProBox h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    #MainRaw .swiper-button-prev::after,
    #MainRaw .swiper-button-next::after {
        top: -279px;
    }

    #TypeOf {
        padding: 55px 30px;
    }

    #MainRaw {
        padding: 71px 30px 50px 30px;
    }

    #MainRaw .flex {
        margin-top: 13px;
        align-items: flex-start;
    }

    #MainRaw .country {
        font-size: 14px;
        margin-top: -11px;
    }

    #MainRaw hr {
        margin: 16px 0;
    }

    #MainRaw h5 {
        font-size: 14px;
        line-height: 26px;
    }

    #BrandStory h3 {
        font-size: 15px;
    }

    .paperWrapIIner .flex2 .subTitle {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .paperWrapIIner .flex3 .desBox {
        padding: 21px 16px;
    }

    .udHero .titleBox h2 {
        font-size: 11px;
    }

    .desaopInner .des br {
        display: none;
    }

    #Efficacy {
        margin-top: 41px;
    }

    .paperWrapIIner .flex3 h5 {
        font-size: 13px;
        padding: 6px 10px;
        line-height: 21px;
    }

    .paperWrapIIner .bgBox {
        padding: 24px 21px;
    }

    .udHero .titleBox p {
        font-size: 27px;
    }

    .indexListInner a {
        padding-right: 25px;
    }

    #Efficacy {
        padding: 100px 30px 24px 30px;
    }

    #PatentPha .enTitle {
        font-size: 13px;
        margin-bottom: 35px;
    }

    #PatentPha h3 {
        margin-bottom: 16px;
    }

    .spheader {
        padding: 15px 21px 18px 18px;
    }

    #loader-bg img {
        width: 156px;
    }

    .snsBoxInner .imgBox img {
        width: 48px;
    }

    .newsInner .heroNews {
        display: flex;
    }

    .newsInner .heroNews .imgBox {
        width: 32%;
    }

    .newsInner .heroNews .textBox {
        width: 42%;
    }

    .newsInner .heroNews .imgBox {
        border-radius: 6px 0 0 6px;
    }

    .newsInner .heroNews img {
        height: 88px;
    }

    .newsInner .heroNews {
        margin-bottom: 13px;
    }

    .newsInner .heroNews img {
        border-radius: 6px 0 0 6px;
    }

    .newsInner .heroNews .textBox {
        padding: 16px 0;
        padding-right: 66px;
    }

    .newsInner .heroNews .post {
        width: auto;
    }

    .formOpBox p {
        margin-bottom: 20px;
    }

    .documentinput .inputBg {
        font-size: 11px;
    }

    .mandatory {
        right: 0;
        font-size: 11px;
        padding: 0px 18px;
    }

    .any {
        right: 0;
        font-size: 11px;
        padding: 0px 18px;
    }

    .form_flexBox_list {
        margin-bottom: 9px;
    }

    .checkbox {
        font-size: 14px;
    }

    textarea {
        height: 200px;
    }

    .submitBox input {
        font-size: 14px;
        height: 67px;
    }

    .form .privacyp {
        font-size: 13px;
        margin-bottom: 22px;
    }

    .form_flexBox {
        padding-bottom: 44px;
        margin-bottom: 16px;
    }

    .udHero .imgBoxhalf img {
        height: 255px;
    }


    .form {
        margin-bottom: 0;
    }

    .mw_wp_form_preview .form p {
        margin-bottom: 23px;
    }

    .mw_wp_form_preview .submitBox {
        margin-bottom: -4px;
    }

    .udHero .heroSns {
        top: 59%;
    }

    .udHero .titleBox {
        top: 59%;
    }

    .aboutusInner img {
        height: 380px;
    }

    .snsBoxInner a {
        height: 271px;
    }

    .snsBoxInner .pointBtn {
        bottom: 13px;
        right: 15px;
    }

    .breadBox {
        left: auto;
        right: 30px;
        bottom: 8px;
        font-size: 10px;
    }

    .researchInner .swiper-slideImg img {
        height: 346px;
    }

    #feature .mainBox h2 {
        font-size: 14px;
        line-height: 27px;
    }

    .hero .heroSns {
        display: none;
    }

    .hero .mainCopy {
        left: 30px;
    }

   

    .hero .swiper-pagination {
        font-size: 25px;
        left: 30px;
    }

    .hero .acrollD {
        left: 30px;
        bottom: 19%;
    }

    .heroNews {
        bottom: 2.5%;
    }

    #feature .aten {
        margin-bottom: 23px;
    }

    #feature .mainBox .des {
        font-weight: normal;
    }

    .hero .acrollD p {
        font-size: 14px;
    }

    .hero .swiper-pagination-total {
        font-size: 16px;
    }

    .hero .swiper-pagination-current {
        font-size: 23px;
    }

    .udbgCb {
        padding: 21px;
    }


    .udresearchInner img {
        height: 172px !important;
    }

    .udresearchInner a {
        margin-bottom: 48px;
    }

    .udresearchInner {
        margin-top: 43px;
    }

    .udresearchInner {
        margin-bottom: 10px;
    }

    .wp-pagenavi {
        font-size: 16px;
    }

    .wp-pagenavi span {
        margin-right: 8px;
    }

    .wp-pagenavi a {
        margin-right: 8px;
    }

    .wp-pagenavi {
        margin-bottom: 32px;
    }

    .categoryListBox__content a {
        padding: 17px 0;
        font-size: 14px;
    }

    .categoryListBox {
        padding-left: 20px;
    }

    .categoryListBox__content {
        padding-left: 67px;
    }

    .categoryListBox {
        padding-top: 38px;
    }

    .productsInner .inFlex {
        margin-bottom: 26px;
    }
#Regenerative .trackrecord h4 {
    font-size: 18px;
    margin-bottom: 2px;
}
#vipH .trackrecord h4 {
    font-size: 17px;
    margin-bottom: 2px;
}
    #Regenerative .trackrecordInner {
    padding: 31px 20px 9px 20px;
}
#vipH .trackrecord {
    padding: 32px 20px;
}
    #Regenerative .trackrecord .enTItle {
    font-size: 13px;
}
    #vipH .trackrecord .enTItle {
    font-size: 13px;
}
    #Regenerative .trackrecord .titleBox {
    margin-bottom: 14px;
}
    #vipH .trackrecord .flex {
    margin-top: 19px;
}
    #Regenerative .trackrecord .flex .des {
    font-size: 13px;
    line-height: 25px;
}
    #Regenerative .trackrecord .flex h5 {
    font-size: 15px;
    margin-bottom: 8px;
}
    #Regenerative .trackrecord .flex .des span {
    font-size: 24px;
}
    .udComnFd .des {
    margin-bottom: 0px;
}
    #vipH .trackrecord {
    margin-top: 57px;
}
    #vipH .trackrecord .flex h5 {
    font-size: 15px;
}
    .cansFtuBox .flex > div {
    padding: 19px 19px;
}
    .cansFtuBox h4 {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 8px;
}
    .cansFtuBox {
    margin-bottom: 32px;
}
    .cansFtuBox .flex {
    margin-top: 29px;
}
    .udComnFd h3 {
    font-size: 15px;
    line-height: 29px;
}
    .cansFtuBox {
    padding: 33px 26px;
}
    .udComnFd .des {
    margin-bottom: 13px;
}
   .udComnFdInnerR {
    padding-top: 46px;
    margin-bottom: 39px;
}
    #Regenerative .trackrecord {
    margin-top: 43px;
}
    #Regenerative {
    padding: 76px 30px 48px 30px;
}
    .udComnFd .enTitle {
    margin-bottom: 15px;
}
    #Regenerative .trackrecord .aten {
    font-size: 10px;
    bottom: 2px;
}
    #Regenerative .trackrecord .flex .namBox .des {
    margin-bottom: 13px;
}
    #Regenerative .trackrecord {
    padding: 24px 20px;
}
    .udHero.udpostD .imgBoxhalf img {
    height: 116px;
}
.ourCharacteristicsInner .flex::before {
    left: 5px;
}
    .ourCharacteristicsInner .flex {
    padding-left: 36px;
}
    .ourCharacteristicsInner .flex .crnN img {
    width: 47px;
}
   #udpost .pagenationBox a {
    padding: 10px 0;
    font-size: 10px;
}
    
.ourCharacteristicsInner h4 {
    border-left: solid 3px;
}
    #udpost .pagenationBox {
    margin-top: 45px;
}
    #udpost {
    margin-top: 31px;
}
    .pagenationBox {
    margin-bottom: 47px;
}
    #contact {
    padding: 0 20px;
}
    .inactive {
    padding: 8px 0;
    text-align: center;
    padding-top: 11px;
    font-size: 11px;
}

   #Story h3.enSt {
    font-size: 14px;
} 
   .enSiteSt .StoryInner .mainBox {
    top: 55%;
}
    
    .companyMainBox dl dd {
    font-size: 12px;
    padding: 19px 16px;
}
    
    .companyMainBox dl dt {
    font-size: 13px;
    padding: 19px 16px;
} 
    .ppFont {
    font-size: 12vw !important;
}
   #udpost .has-large-font-size {
    font-size: 18px !important;
}
    .ourCharacteristicsInner h3 {
    font-size: 18px;
}
    .udHero .imgBox img {
    height: 255px;
}
    

}
