@charset "utf-8";
/*
Theme Name: drscholl
Description: style
*/

/* ===================================
            common
==================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    /* 16*0.625=10 */
    margin-top: 0;
}

body {
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    color: #042459;
    font-size: 1.4rem;
    text-align: left;
    line-height: 1.5;
    opacity: 0;
    visibility: hidden;
    animation: fadeInt 1s ease-in-out forwards;
}

@keyframes fadeInt {
    0% {
        opacity: 0;
        visibility: hidden;
    }

    100% {
        opacity: 1;
        visibility: visible;
    }
}

img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    object-fit: contain;
    vertical-align: bottom;
}

a {
    text-decoration: none;
    cursor: url(img/cur.svg), auto;
}

ul {
    list-style: none;
}

.rale {
    /* font-family: 'Raleway', sans-serif; */
    font-family: motiva-sans, sans-serif;
}

.sp {
    display: none;
}


/* ふわっと */
.fade-in {
    opacity: 0;
    transition-duration: 700ms;
    transition-property: opacity, transform;
}

.fade-in-up {
    transform: translate(0, 50px);
}

.fade-in-down {
    transform: translate(0, -50px);
}

.fade-in-left {
    transform: translate(-50px, 0);
}

.fade-in-right {
    transform: translate(50px, 0);
}

.scroll-in {
    opacity: 1;
    transform: translate(0, 0);
}


/* スクロールバーの縦方向のスタイル */
::-webkit-scrollbar {
    width: 5px;
    /* 幅 */
    height: 1px;
    /* 高さ */
}

/* スクロールバーのトラックのスタイル */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* 背景色 */
}

/* スクロールバーのハンドルのスタイル */
::-webkit-scrollbar-thumb {
    background: #042459;
    /* ハンドルの背景色 */
}

/* スクロールバーの角丸の半径のスタイル */
::-webkit-scrollbar-thumb:vertical {
    border-radius: 5px;
}

/* スクロールバーの水平方向のスタイル */
::-webkit-scrollbar-horizontal {
    height: 10px;
}

/* スクロールバーの角丸の半径のスタイル */
::-webkit-scrollbar-thumb:horizontal {
    border-radius: 5px;
}





/* ===================================
            TOP 
==================================== */

/* header(top) */

.header {
    height: 100vh;
    width: 100%;
    position: relative;
}

.header_contents {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_contents .logo {
    width: 10%;
    position: absolute;
    top: 4%;
    left: 4%;
}

.header_contents .openbtn {
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    cursor: url(img/cur.svg), auto;
    width: 80px;
    height: 80px;
    position: fixed;
    z-index: 999;
}

.header_contents .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 25%;
    height: 1px;
    background: #042459;
    width: 50%;
}

.openbtn span:nth-of-type(1) {
    top: 25px;
}

.openbtn span:nth-of-type(2) {
    top: 35px;
}

.openbtn span:nth-of-type(2)::after {
    content: "MENU";
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-align: center;
    /* font-family: 'Raleway', sans-serif; */
    font-family: motiva-sans, sans-serif;
}

.openbtn.active span:nth-of-type(1) {
    top: 25px;
    left: 25%;
    transform: translateY(6px) rotate(-30deg);
    width: 50%;
}

.openbtn.active span:nth-of-type(2) {
    top: 37px;
    left: 25%;
    transform: translateY(-6px) rotate(30deg);
    width: 50%;
}

.openbtn.active span:nth-of-type(2)::after {
    content: "CLOSE";
    transform: translateY(0) rotate(-30deg);
    top: 15px;
    left: 12px;
}

.nav {
    display: none;
    /* position: fixed; */
}

.no-scroll {
    overflow: hidden;
}

.nav.active {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 100;
    display: block;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: absolute;
    position: fixed;
    top: 0;
    right: 0;
    /* background: url(/wp-content/themes/drscholl/img/navbg.svg) no-repeat center bottom #fff; */
    background: #fff;
    background-size: contain;
}

.nav.active.visible {
    opacity: 1;
}

.nav .nav_menu_ul {
    max-width: 1000px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0vw auto;
    font-size: 2.4rem;
    font-weight: bold;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.nav .nav_menu_ul li {
    text-align: center;
    margin-bottom: 20px;
}

.nav .nav_menu_ul li a {
    color: #042459;
    justify-content: space-between;
}

.nav .nav_menu_ul img {
    width: 20%;
    margin: 5% auto;
}

.wave {
    background: url(/wp-content/themes/drscholl/img/wave_y.svg) no-repeat center bottom;
    background-size: cover;
    position: relative;
}

.wave:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 10%;
    width: 100%;
    height: 13vw;
    background: url(/wp-content/themes/drscholl/img/wave_y.svg) no-repeat right top;
    background-size: cover;
    transform: rotate(180deg);
    animation: wave 10s linear infinite;
}

.wave::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 25%;
    width: 100%;
    height: 13vw;
    background: url(/wp-content/themes/drscholl/img/wave_w.svg) no-repeat right top;
    background-size: cover;
    transform: rotate(180deg);
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% {
        background-position: 100% bottom;
    }

    50% {
        background-position: 0% bottom;
    }

    100% {
        background-position: 100% bottom;
    }
}


/* contents */

.video_area {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.video_area video {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 177.77777778vh;
    /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw;
    /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}

.contents_area {
    margin-top: -15%;
    position: relative;
}

.contents_area p span {
    display: block;
    /* font-size: 5rem; */
    font-size: 3.5vw;
    line-height: 1;
}

.contents_area p {
    position: absolute;
    top: 30%;
    left: 15%;
    color: #fff;
    /* font-size: 2.2rem; */
    font-size: 1.2vw;
    line-height: 2;
    font-weight: 100;
}

.contents_area a {
    position: absolute;
    top: 80%;
    right: 15%;
    font-size: 2rem;
    color: #fff;
}

.contents_area a span {
    font-weight: 100;
    margin-right: 10px;
}

.product {
    margin-top: -2%;
}

.product h2 {
    color: #fff;
    background-color: #0B306F;
    padding-top: 80px;
    text-align: center;
    font-size: 40px;
    letter-spacing: 2rem;
}


/* product */
.product .bnr_product {
    background-color: #0B306F;
    padding: 1px 3% 40px;
}

.product .bnr_product_df {
    max-width: 1200px;
    width: 80%;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 80px auto;
}

.product .bnr_product_wrap {
    width: 65%;
    position: relative;
}

.product .bnr_product_wrap2 {
    width: 100%;
    margin: 0 auto;
}

.product .bnr_product_wrap .fukidashi {
    width: 10%;
    position: absolute;
    z-index: 5;
    top: -25%;
    left: 78%;
    transform: translateX(-50%);
    animation: pika 2s infinite;
}

@keyframes pika {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }

    80% {
        transform: translateX(-50%) rotate(0deg);
    }

    80% {
        transform: translateX(-50%) rotate(0deg);
    }

    85% {
        transform: translateX(-50%) rotate(15deg);
    }

    90% {
        transform: translateX(-50%) rotate(0deg);
    }

    95% {
        transform: translateX(-50%) rotate(15deg);
    }

    100% {
        transform: translateX(-50%) rotate(0deg);
    }
}

.product .bnr_product_wrap .bnr_product_img {
    filter: drop-shadow(7px 7px 8px rgba(0, 0, 0, 0.3));
    transition: .4s;
    overflow: hidden;
}

.product .bnr_product_wrap .bnr_product_img:hover {
    filter: none;
    transform: scale(1.05);
}

.product .bnr_product_wrap p {
    color: #fff;
    text-align: center;
    font-size: 24px;
    margin-top: 10px;
}

.product .bnr_product_df .iframe_wrap {
    width: 30%;
    aspect-ratio: 16/9;
}

.product .bnr_product_df .iframe_wrap p {
    text-align: center;
    font-size: 14px;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product .bnr_product_df .iframe_wrap p::before,
.product .bnr_product_df .iframe_wrap p::after {
    content: "";
    display: block;
    height: 16px;
    width: 1px;
    background-color: #fff;
}

.product .bnr_product_df .iframe_wrap p::before {
    transform: rotate(-20deg);
    margin-right: 10px;
}

.product .bnr_product_df .iframe_wrap p::after {
    transform: rotate(20deg);
    margin-left: 10px;
}

.product .bnr_product_df .iframe_wrap iframe {
    width: 100%;
    height: 100%;
    vertical-align: bottom;
}

.item_df {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    /* margin-top: -35px !important; */
    margin-top: -10px;
}

.item_df li {
    width: 25%;
    height: 25vw;
    position: relative;
}

.item_df .bg_blue {
    /* background-color: #042459; */
    background: linear-gradient(180.06deg, #042459 4.16%, #0B306F 99.94%);
}

.item_df .bg_blue_up {
    background: linear-gradient(180.06deg, #0B306F 3.98%, #042459 99.47%);
}

.item_df .bg_blue_up1 {
    background: linear-gradient(180.06deg, #0B306F 3.98%, #042459 99.47%);
}

.item_df .bg_white {
    background: #F0F0F0;
}

.item_df .bg_white1 {
    background: #F0F0F0;
}

.item_df li .item_img figure {
    width: 60%;
    margin: 0 auto;
    margin-top: 20%;
}

.item_df li .item_img .item_text {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: .2s ease;
    opacity: 0;
    background-color: rgba(4, 36, 89, 0.8);
    padding: 20% 10%;
}

.item_df .bg_white .item_img .item_text {
    background-color: rgba(255, 255, 255, 0.8);
}

.item_df li:hover .item_text {
    opacity: 1;
    color: #fff;
}

.item_df .bg_white:hover .item_text {
    color: #042459;
}

.item_df li .item_img .item_text .name {
    /* font-size: 2.6rem; */
    font-size: 1.6vw;
    font-weight: bold;
    margin-bottom: 20px;
}

.item_df li .item_img .item_text p {
    /* font-size: 1.8rem; */
    font-size: 1vw;
}

.item_df li .item_img .item_text .more {
    margin-top: 20px;
    /* font-size: 1.4rem; */
    font-size: 1vw;
}

/* trouble */
.trouble {
    background-color: #fff;
    padding: 120px 15px;
}

h2 {
    text-align: center;
    font-size: 4rem;
    letter-spacing: 2rem;
}

h3 {
    font-size: 4.5rem;
    text-align: center;
    margin-top: 7%;
}

.icon_wrap {
    max-width: 1024px;
    width: 100%;
    margin: 6% auto;
}

.icon_wrap .icon_df {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    flex-wrap: wrap;
    position: relative;
}

.icon_wrap .icon_df li {
    width: 256px;
    height: 256px;
    border-right: #042459 solid 1px;
    border-left: #042459 solid 1px;

}

.icon_wrap .icon_df li img {
    height: 30%;
    width: 25%;
    margin: 20% auto 8%;
    object-fit: contain;
    display: block;
    transition: .4s;
}

.icon_wrap .icon_df li p {
    text-align: center;
    font-size: 2.4rem;
    color: #042459;
}

.icon_wrap .icon_df .icon_left {
    border-left: initial;
}

.icon_wrap .icon_df .icon_right {
    border-right: initial;
}

.icon_wrap .icon_df .icon_top {
    border-bottom: solid 2px #042459;
}

.icon_wrap .icon_df li:hover img {
    transform: rotate(15deg);
    transition: .4s;
}

.icon_wrap span {
    width: 50px;
    height: 50px;
    background-color: #fff;
    position: absolute;
}

.icon_wrap .span1 {
    top: 50%;
    right: 20%;
    transform: translate(-50%, -50%);
}

.icon_wrap .span2 {
    top: 50%;
    right: 45%;
    transform: translate(-50%, -50%);
}

.icon_wrap .span3 {
    top: 50%;
    right: 70%;
    transform: translate(-50%, -50%);
}

/* news */
.news {
    background-color: #FFD200;
    padding: 120px;
}

.news_wrap {
    max-width: 1200px;
    width: 100%;
    margin: 4% auto;
    display: flex;
    justify-content: space-between;
}

.news_wrap .news_contents {
    width: 65%;
    height: 23.5vw;
    overflow-y: scroll;
}

.news_wrap .news_contents ul {
    border-top: #042459 solid 1px;
}

.news_wrap .news_contents ul:last-child {
    border-bottom: #042459 solid 1px;
}

.news_wrap .news_contents li {
    padding: 3%;
    /*     border-bottom: #042459 solid 1px; */
    display: flex;
}

.news_wrap .news_contents li a {
    display: block;
    color: #042459;
}

.news_wrap .news_contents li .day {
    font-size: 1.4rem;
    margin-right: 3%;
}

.news_wrap .twitter {
    width: 30%;
    height: 23.5vw;
    border-top: solid 1px #042459;
    border-bottom: solid 1px #042459;
}

.news_wrap .twitter_logo {
    display: flex;
    align-items: center;
    margin-bottom: 5%;
    padding-top: 6%;
}

.news_wrap .twitter_logo figure {
    width: 30px;
    height: 25px;
}

.news_wrap .twitter_logo p {
    font-size: 2.4rem;
}

.news_wrap .twitter_logo .account {
    font-size: 1.6rem;
    text-align: right;
    margin: 0 10px 0 auto;
}

.news_wrap .twitter_wrap {
    height: 19vw;
    overflow-y: scroll;
}

/* footer */
footer {
    background: url(/wp-content/themes/drscholl/img/footer_bg.png) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 50vw;
}

.footer_contents {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 120px 15px;
    display: flex;
    justify-content: space-between;
}

.footer_contents .footer_left {
    width: 16%;
    margin-right: 10%;
}

.footer_contents .footer_left figure {
    width: 100%;
}

.footer_contents .footer_left .sns_icon {
    display: flex;
    /* justify-content: space-between; */
    justify-content: center;
    align-items: center;
    margin: 20% auto;
}

.footer_contents .footer_left .sns_icon a {
    height: 30px;
    width: 30px;
    margin-left: 10px;
    margin-right: 10px;
}

.footer_contents .footer_left .sns_icon a img {
    object-fit: contain;
}

.footer_contents .footer_center {
    width: 22%;
}

.footer_contents .footer_center2 {
    margin-top: 2.5%;
}

.footer_contents .footer_center a {
    display: block;
    font-size: 1.4rem;
    color: #042459;
    margin-bottom: 5%;
}

small {
    display: block;
    background-color: #fff;
    text-align: center;
    padding: 20px;
}

@media (max-width:1024px) {

    .sp {
        display: block;
    }

    .pc {
        display: none;
    }

    /* ===================================
            TOP 
==================================== */
    .header {
        height: 94vh;
    }

    /* header(top) */
    .header_contents .logo {
        width: 10%;
        top: 2%;
        left: 2%;
    }

    .header_contents .openbtn {
        width: 60px;
        height: 60px;
    }

    .openbtn span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn span:nth-of-type(2) {
        top: 25px;
    }

    .openbtn span:nth-of-type(2)::after {
        top: 8px;
        font-size: 0.9rem;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn.active span:nth-of-type(2) {
        top: 27px;
    }

    .openbtn.active span:nth-of-type(2)::after {
        top: 8px;
        left: 7px;
    }

    .nav.active {
        /* background: url(/wp-content/themes/drscholl/img/navbg.svg) no-repeat center bottom #fff; */
        background: #fff;
    }

    .nav .nav_menu_ul {
        margin: 0vw auto;
        font-size: 2rem;
        position: absolute;
        top: 30%;
        left: 50%;
    }



    .wave:before {
        left: 0;
        top: 10%;
        width: 100%;
        height: 15vw;
        background: url(/wp-content/themes/drscholl/img/wave_bg_ysp.svg) no-repeat right top;
        background-size: cover;
    }

    .wave::after {
        left: 0;
        top: 25%;
        width: 100%;
        height: 15vw;
        background: url(/wp-content/themes/drscholl/img/wave_bg_wsp.svg) no-repeat right top;
        background-size: cover;
    }

    @keyframes wave {
        0% {
            background-position: 100% bottom;
        }

        50% {
            background-position: 0% bottom;
        }

        100% {
            background-position: 100% bottom;
        }
    }


    /* contents */
    .video_area {
        width: 100vw;
        /* height: 70vh; */
        height: 133vw;
    }

    .video_area video {
        width: 100vw;
        height: auto;
        min-height: initial;
        min-width: initial;
    }

    .contents_area {
        max-width: 1024px;
        width: 100%;
        /* margin-top: -55%; */
    }

    .contents_area p {
        font-size: 2.5vw;
    }

    .contents_area p span {
        font-size: 5vw;
    }

    .contents_area a {
        top: 70%;
        right: 10%;
    }

    .product h2 {
        color: #fff;
        background-color: #0B306F;
        padding-top: 80px;
        text-align: center;
        font-size: 40px;
        letter-spacing: 2rem;
    }

    /* product */
    .product .bnr_product {
        background-color: #0B306F;
        padding: 1px 3% 40px;
    }

    .product .bnr_product_df {
        display: block;
        width: 100%;
        margin: 10% auto;
    }

    .product .bnr_product_wrap {
        max-width: 600px;
        margin: 40px auto;
    }

    .product .bnr_product_wrap .fukidashi {
        width: 25%;
        position: absolute;
        z-index: 5;
        top: -15%;
        right: -20%;
        left: initial;
        transform: translateX(-50%);
        animation: pika 2s infinite;
    }

    @keyframes pika {
        0% {
            transform: translateX(-50%) rotate(0deg);
        }

        80% {
            transform: translateX(-50%) rotate(0deg);
        }

        80% {
            transform: translateX(-50%) rotate(0deg);
        }

        85% {
            transform: translateX(-50%) rotate(15deg);
        }

        90% {
            transform: translateX(-50%) rotate(0deg);
        }

        95% {
            transform: translateX(-50%) rotate(15deg);
        }

        100% {
            transform: translateX(-50%) rotate(0deg);
        }
    }

    .product .bnr_product_wrap .bnr_product_img {
        filter: drop-shadow(7px 7px 8px rgba(0, 0, 0, 0.3));
        transition: 0s;
        overflow: hidden;
    }

    .product .bnr_product_wrap .bnr_product_img:hover {
        filter: drop-shadow(7px 7px 8px rgba(0, 0, 0, 0.3));
        transform: scale(1);
    }

    .product .bnr_product_df .iframe_wrap {
        width: 80%;
        margin: 60px auto;
    }

    @media (max-width: 599px) {
        .product .bnr_product_df .iframe_wrap {
            width: 100%;
            margin: 60px auto;
        }
    }


    .item_df li {
        width: 50%;
        height: 50vw;
        margin-top: -1px;
    }

    .item_df .bg_blue_up1 {
        background: #f0f0f0;
    }

    .item_df .bg_white1 {
        background: linear-gradient(180.06deg, #042459 4.16%, #0B306F 99.94%);
    }

    .item_df li .item_img .item_text {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        transition: .2s ease;
        opacity: 0;
        background-color: rgba(4, 36, 89, 0.8);
        padding: 20% 10%;
    }

    .item_df .bg_white1 .item_img .item_text {
        /* background-color: rgba(255,255,255,0.8); */
        background-color: rgba(4, 36, 89, 0.8);
    }

    .item_df .bg_white1 .item_img .item_text p {
        color: #fff;
    }

    .item_df .bg_blue1 {
        background: #f0f0f0;
    }

    .item_df .bg_blue1 .item_img .item_text {
        background-color: rgba(255, 255, 255, 0.8);
    }

    .item_df .bg_blue1 .item_img .item_text p {
        color: #042459;
    }

    .item_df li:hover .item_text {
        opacity: 1;
        color: #fff;
    }

    .item_df .bg_white:hover .item_text {
        color: #042459;
    }

    .item_df li .item_img .item_text .name {
        /* font-size: 2.4rem; */
        font-size: 3.5vw;
    }

    .item_df li .item_img .item_text p {
        /* font-size: 1.6rem; */
        font-size: 2vw;
    }

    .item_df li .item_img .item_text .more {
        /* font-size: 1.6rem; */
        font-size: 2vw;
    }

    /* trouble */
    h2 {
        font-size: 3.2rem;
    }

    h3 {
        font-size: 4rem;
    }

    .icon_wrap {
        max-width: 599px;
    }

    .icon_wrap .icon_df li {
        width: 280px;
        height: 280px;
        border-bottom: solid 2px #042459;
        border-right: initial;
        border-left: initial;
    }

    .icon_wrap .icon_df .icon_sp {
        border-left: solid 2px #042459;
    }

    .icon_wrap .icon_df .icon_spnone {
        border-bottom: none;
    }

    .icon_wrap .span1 {
        top: 25%;
        right: 39.5%;
    }

    .icon_wrap .span2 {
        right: 39.5%;
    }

    .icon_wrap .span3 {
        top: 75%;
        right: 39.5%;
    }

    /* news */
    .news {
        padding: 80px;
    }

    .news_wrap {
        max-width: 1000px;
        margin: 6% auto;
        display: block;
    }

    .news_wrap .news_contents {
        width: 100%;
        margin: 0 auto;
        height: 50vw;
    }

    .news_wrap .twitter {
        width: 100%;
        height: 50vw;
        margin: 8% auto;
    }

    .news_wrap .twitter_logo figure {
        margin-right: 2%;
    }

    .news_wrap .twitter_wrap {
        height: 36vw;
    }

    /* footer */
    footer {
        height: 70vw;
    }

    .footer_contents {
        max-width: 1000px;
        display: block;
        padding: 5% 15px;
    }

    .footer_contents .footer_left {
        width: 100%;
        margin: 0 auto;
        margin-right: 0;
    }

    .footer_contents .footer_left figure {
        width: 20%;
        margin: 0 auto;
    }

    .footer_contents .footer_left .sns_icon {
        justify-content: center;
        margin: 5% auto;
    }

    .footer_contents .footer_left .sns_icon a {
        margin-right: 1%;
        margin-left: 1%;
    }

    .footer_contents .footer_center {
        display: none;
    }

    small {
        font-size: 0.9rem;
    }

}



@media (max-width:599px) {

    /* ===================================
            TOP 
==================================== */

    /* header(top) */
    .header {
        max-width: 599px;
        width: 100%;
        height: 133vw;
    }

    .header_contents .logo {
        width: 26%;
        position: absolute;
        left: 2%;
        top: 2%;
    }

    /* .header_contents .openbtn{
    position: initial;
} */
    /*
.nav.active{
     background: url(/wp-content/themes/drscholl/img/navbg.svg) no-repeat center bottom #fff; 
}*/
    .nav .nav_menu_ul {
        margin: 0vw auto;
        font-size: 2rem;
        position: absolute;
        top: 50%;
        left: 50%;
    }

    .nav .nav_menu_ul img {
        width: 40%;
        margin: 5% auto;
    }

    /* contents */

    .contents_area {
        max-width: 599px;
        width: 100%;
        /* margin: -59% auto 0; */
    }

    .contents_area p span {
        /* font-size: 2.6rem; */
        font-size: 7vw;
        width: 90%;
    }

    .contents_area p {
        /* font-size: 1.2rem; */
        font-size: 3vw;
        width: 90%;
        left: 5%;
        top: 22%;
    }

    .contents_area a {
        top: 75%;
        right: 10%;
        font-size: 1.4rem;
    }

    .product {
        margin-top: -12%;
    }


    .product h2 {
        font-size: 2.6rem;
    }

    /* product */
    .product .bnr_product {
        background-color: #0B306F;
        padding: 1px 3% 40px;
    }

    .product .bnr_product_wrap {
        max-width: 600px;
        width: 100%;
    }

    .product .bnr_product_wrap .fukidashi {
        width: 25%;
        position: absolute;
        z-index: 5;
        top: -18%;
        right: -20%;
        left: initial;
        transform: translateX(-50%);
        animation: pika 2s infinite;
    }

    .item_df li .item_img .item_text {
        padding: 10%;
    }

    .item_df li .item_img .item_text .name {
        /* font-size: 2rem; */
        font-size: 4vw;
    }

    .item_df li .item_img .item_text p {
        /* font-size: 1.4rem; */
        font-size: 2vw;
    }

    .item_df li .item_img .item_text .more {
        /* font-size: 1.4rem; */
        font-size: 2vw;
    }

    /* trouble */
    .trouble {
        padding: 80px 15px;
    }

    h2 {
        font-size: 2.6rem;
    }

    h3 {
        font-size: 2rem;
    }

    .icon_wrap .icon_df li {
        width: 50%;
        height: 50vw;
    }

    .icon_wrap .icon_df li p {
        font-size: 1.6rem;
    }

    .icon_wrap .span1 {
        top: 25%;
        right: 35%;
    }

    .icon_wrap .span2 {
        right: 35%;
    }

    .icon_wrap .span3 {
        top: 75%;
        right: 35%;
    }

    /* news */
    .news {
        padding: 80px 15px;
    }

    .news_wrap {
        max-width: 599px;
        margin: 12% auto;
    }

    .news_wrap .news_contents {
        height: 80vw;
    }

    .news_wrap .news_contents ul li {
        display: block;
    }

    .news_wrap .news_contents ul li .day {
        font-size: 1.3rem;
    }

    .news_wrap .news_contents ul li p {
        font-size: 1.4rem;
    }

    .news_wrap .twitter {
        height: 100vw;
        margin: 16% auto;
    }

    .news_wrap .twitter_logo figure {
        margin-right: 2%;
    }

    .news_wrap .twitter_wrap {
        height: 100vw;
    }

    /* footer */
    footer {
        padding: 5% 15px;
    }

    .footer_contents {
        max-width: 599px;
    }

    .footer_contents .footer_left figure {
        width: 40%;
    }

    .footer_contents .footer_left .sns_icon a {
        margin-right: 2%;
        margin-left: 2%;
    }

    small {
        font-size: 0.7rem;
    }

}

/* ===================================
            ABOUT 
==================================== */
.aboutheader {
    position: relative;
    height: 6vw;
    margin-top: 10px;
}

#aboutWrap {
    overflow: hidden;
}

#aboutWrap h1 {
    text-align: center;
    font-size: 7rem;
    font-weight: bold;
    line-height: 1.2;
}

#aboutWrap h1 span {
    font-size: 4rem;
    font-weight: normal;
}

#aboutWrap .foot_ttl {
    width: 40%;
    margin: 5% auto;
}

#aboutWrap .story {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10% auto;
}

#aboutWrap .story_left {
    width: 45%;
    height: 38vw;
    background: url(/wp-content/themes/drscholl/img/about/about1.png) no-repeat center center;
    background-size: contain;
    position: relative;
}

#aboutWrap .story_left h2 {
    font-size: 7vw;
    letter-spacing: 4rem;
    font-weight: 500;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: absolute;
    top: -10%;
    left: 28%;
}

#aboutWrap .story_right {
    width: 45%;
}

#aboutWrap .story_right h3 {
    font-size: 6rem;
    letter-spacing: 1.1rem;
    text-align: left;
    margin-bottom: 6%;
}

#aboutWrap .story_right p {
    font-size: 2rem;
    letter-spacing: 0.5rem;
    font-weight: 300;
    line-height: 2;
}

#aboutWrap .vision {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 10% auto;
}

#aboutWrap .vision_left {
    width: 35%;
    margin-right: 10%;
}

#aboutWrap .ttl {
    font-size: 3.2rem;
    font-weight: 400;
    letter-spacing: 0.5rem;
}

#aboutWrap p {
    font-size: 1.8rem;
    line-height: 2;
    font-weight: 300;
    margin-bottom: 5%;
}

#aboutWrap .vision_right {
    width: 45%;
    height: 38vw;
    background: url(/wp-content/themes/drscholl/img/about/about2.png) no-repeat center center;
    background-size: contain;
    position: relative;
}

#aboutWrap .vision_right h2 {
    font-size: 7vw;
    letter-spacing: 4rem;
    font-weight: 500;
    position: absolute;
    top: -25%;
    left: 0%;
}

#aboutWrap .mission {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 10% auto;
}

#aboutWrap .mission_left {
    width: 45%;
    height: 38vw;
    background: url(/wp-content/themes/drscholl/img/about/about3.png) no-repeat center center;
    background-size: contain;
    position: relative;
}

#aboutWrap .mission_left h2 {
    font-size: 7vw;
    letter-spacing: 4rem;
    font-weight: 500;
    position: absolute;
    top: 3%;
    right: -12%;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

#aboutWrap .mission_right {
    width: 30%;
    margin-left: 10%;
}

#aboutWrap .company_wrap {
    margin: 0% auto;
    background: url(/wp-content/themes/drscholl/img/about/about_bg.png) no-repeat center top;
    background-size: cover;
    width: 100vw;
    /* height: 100vw; */
    display: inline-block;
    padding: 13% 15px 5%;
}

#aboutWrap .company {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    color: #fff;
}

#aboutWrap .company h4 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.5rem;
    border-bottom: #fff solid 1px;
    padding-bottom: 25px;
}

#aboutWrap .company span {
    font-size: 2rem;
    font-weight: 400;
    display: inline-block;
    margin-left: 30px;
}

#aboutWrap table {
    max-width: 1200px;
    width: 100%;
    font-size: 2rem;
    font-weight: 200;
}

#aboutWrap tr {
    max-width: 1200px;
    width: 100%;
    border-bottom: solid 1px #fff;
}

#aboutWrap tr th {
    padding: 35px 0;
    width: 14%;
}

#aboutWrap iframe {
    /* max-width: 1200px; */
    max-width: 800px;
    display: flex;
    width: 100%;
    height: 18vw;
    margin: 5% auto;
}





@media (max-width:1024px) {

    /* ===================================
            ABOUT 
==================================== */
    #aboutWrap .foot_ttl {
        width: 50%;
        margin: 5% auto;
    }

    #aboutWrap .story {
        max-width: 1024px;
        width: 100%;
        flex-direction: column;
        margin: 10% auto;
    }

    #aboutWrap .story_left {
        width: 80%;
        height: 50vw;
        margin: 0 0 0 auto;
        background-size: cover;
    }

    #aboutWrap .story_left h2 {
        font-size: 10vw;
        writing-mode: initial;
        top: 50%;
        left: -20%;
    }

    #aboutWrap .story_right {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    #aboutWrap .story_right h3 {
        font-size: 5rem;
        margin-bottom: 4%;
    }

    #aboutWrap .vision {
        max-width: 1024px;
        width: 100%;
        flex-direction: column-reverse;
        margin: 10% auto;
    }

    #aboutWrap .vision_left {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        margin-right: 0;
    }

    #aboutWrap p {
        margin-bottom: 3%;
    }

    #aboutWrap .vision_right {
        width: 80%;
        height: 50vw;
        background-size: cover;
        margin: 0 auto 20% 0;
    }

    #aboutWrap .vision_right h2 {
        font-size: 10vw;
        top: 60%;
        left: 38%;
        text-shadow: rgba(255, 255, 255, 0.2) 5px 5px;
    }

    #aboutWrap .mission {
        flex-direction: column;
        max-width: 1024px;
        width: 100%;
        margin: 10% auto;
    }

    #aboutWrap .mission_left {
        width: 80%;
        height: 50vw;
        background-size: cover;
        margin: 0 0 0 auto;
    }

    #aboutWrap .mission_left h2 {
        font-size: 10vw;
        top: 50%;
        right: initial;
        left: -20%;
        writing-mode: initial;
    }

    #aboutWrap .mission_right {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        margin-left: 0%;
        margin-top: 5%;
    }

    #aboutWrap .company_wrap {
        max-width: 1024px;
        width: 100%;
        padding: 15% 15px 5%;
        overflow: hidden;
    }

    #aboutWrap .company {
        max-width: 1024px;
    }

    #aboutWrap table {
        max-width: 1024px;
        width: 100%;
    }

    #aboutWrap tr {
        max-width: 1024px;
    }

    #aboutWrap tr th {
        padding: 30px 0;
    }

    #aboutWrap iframe {
        max-width: 1024px;
        margin: 5% auto;
    }

}

@media (max-width:599px) {

    /* ===================================
            ABOUT 
==================================== */
    #aboutWrap .foot_ttl {
        width: 60%;
        margin: 8% auto;
    }

    .aboutheader {
        height: 10vw;
    }

    #aboutWrap h1 {
        font-size: 5rem;
    }

    #aboutWrap h1 span {
        font-size: 3rem;
    }

    #aboutWrap .story {
        max-width: 599px;
    }

    #aboutWrap .story_left h2 {
        font-size: 15vw;
        letter-spacing: 0.8rem;
        top: 50%;
        left: -20%;
    }

    #aboutWrap .story_right h3 {
        font-size: 3rem;
    }

    #aboutWrap .story_right p {
        font-size: 1.4rem;
        letter-spacing: 0.2rem;
    }

    #aboutWrap .vision {
        max-width: 599px;
    }

    #aboutWrap p {
        font-size: 1.4rem;
        margin-bottom: 3%;
    }

    #aboutWrap .ttl {
        font-size: 2rem;
    }

    #aboutWrap .vision_right h2 {
        font-size: 15vw;
        letter-spacing: 0.8rem;
        top: 95%;
        left: 45%;
    }

    #aboutWrap .mission {
        max-width: 599px;
    }

    #aboutWrap .mission_left h2 {
        font-size: 15vw;
        letter-spacing: 0.8rem;
    }

    #aboutWrap .company_wrap {
        max-width: 599px;
        padding: 10% 15px 5%;
        background: url(/wp-content/themes/drscholl/img/about/about_bg_sp.png) no-repeat center center;
        background-size: cover;
    }

    #aboutWrap .company {
        max-width: 599px;
        background-size: contain;
    }

    #aboutWrap .company h4 {
        font-size: 2.4rem;
    }

    #aboutWrap .company h4 span {
        font-size: 1.4rem;
        margin-left: 2%;
    }

    #aboutWrap table {
        max-width: 599px;
        width: 100%;
        font-size: 1.6rem;
    }

    #aboutWrap tr {
        max-width: 599px;
        display: block;
    }

    #aboutWrap tr th {
        padding: 10px 0 5px;
        width: 100%;
        display: block;
    }

    #aboutWrap tr td {
        padding-bottom: 10px;
    }

    #aboutWrap iframe {
        max-width: 599px;
        height: 50vw;
        margin: 5% auto;
    }
}

/* ===================================
            PRODUCT 
==================================== */

/* 一覧 products/html */
.productsall {
    margin: 40px auto 0;
}

.product_header {
    background-size: contain;
    width: 100vw;
    height: 42vw;
    margin-top: 0;
    position: relative;
}

.product_header1 {
    background: url(/wp-content/themes/drscholl/img/product/pc_01.jpg) no-repeat center center/cover;
}

.product_header2 {
    background: url(/wp-content/themes/drscholl/img/product/pc_02.jpg) no-repeat center center/cover;
}

.product_header3 {
    background: url(/wp-content/themes/drscholl/img/product/pc_03.jpg) no-repeat center center/cover;
}

.product_header4 {
    background: url(/wp-content/themes/drscholl/img/product/pc_04.jpg) no-repeat center center/cover;
}

.product_header5 {
    background: url(/wp-content/themes/drscholl/img/product/pc_05.jpg) no-repeat center center/cover;
}

.product_header6 {
    background: url(/wp-content/themes/drscholl/img/product/pc_06.jpg) no-repeat center center/cover;
}

.product_header7 {
    background: url(/wp-content/themes/drscholl/img/product/pc_07.jpg) no-repeat center center/cover;
}

.product_header8 {
    background: url(/wp-content/themes/drscholl/img/product/pc_08.jpg) no-repeat center center/cover;
}

.product_header9 {
    background: url(/wp-content/themes/drscholl/img/product/pc_09.jpg) no-repeat center center/cover;
}

.product_header10 {
    background: url(/wp-content/themes/drscholl/img/product/pc_10.jpg) no-repeat center center/cover;
}

.product_header11 {
    background: url(/wp-content/themes/drscholl/img/product/pc_11.jpg) no-repeat center center/cover;
}

.product_header12 {
    background: url(/wp-content/themes/drscholl/img/product/pc_12.jpg) no-repeat center center/cover;
}

.product_top {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    /* justify-content: flex-end; */
    align-items: center;
    max-width: 1000px;
    width: 100%;
}

.product_top figure {
    width: 28vw;
    margin-right: 5%;
}

.product_top_right {
    width: 40vw;
}

.product_top_right .product_logo {
    width: 30%;
    margin: 20px auto;
}

.product_top h1 {
    text-align: center;
    /* font-size: 4.8rem; */
    font-size: 2.7vw;
    color: #fff;
    white-space: nowrap;
}

#productWrap {
    overflow: hidden;
}

#productWrap .product_content_df {
    max-width: 1200px;
    width: 100%;
    padding: 0 15px;
    margin: 60px auto;
    display: flex;
    justify-content: space-between;
}

#productWrap .product_content_df .product_content_df_text {
    text-align: left;
    width: 60%;
}

#productWrap .product_content_df .product_content_df_text h2 {
    font-size: 2.8rem;
    text-align: left;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
}

#productWrap .product_content_df .product_content_df_text p {
    font-size: 1.6rem;
    line-height: 1.7;
}

#productWrap .product_content_df .product_content_df_text small {
    font-size: 1.2rem;
    text-align: left;
    padding-left: 0;
}

#productWrap .product_content_df figure {
    width: 35%;
}

#productWrap .thumbnail_df {
    max-width: 1000px;
    width: 100%;
    margin: 100px auto;
    padding: 0 15px;
    display: flex;
    /* justify-content: flex-start; */
    justify-content: center;
    align-items: flex-start;
}

#productWrap .thumbnail_change {
    width: 20%;
    margin-right: 2%;
}

#productWrap .thumbnail_change img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    border: #042459 solid 1px;
    border-radius: 10%;
    object-fit: contain;
    transition: .4s;
    cursor: url(img/cur.svg), auto;
}

#productWrap .thumbnail_change img:hover {
    opacity: 0.4;
}

#productWrap .main_img {
    width: 60%;
    transition: .4s;
}

#productWrap .product_list {
    background-color: #042459;
    padding: 40px 15px;
}

#productWrap .product_list h3 {
    color: #fff;
    font-size: 4.5rem;
    margin-top: 0;
}

#productWrap .product_list .slider {
    max-width: 1200px;
    margin: 80px auto 0;
}

#productWrap .product_list .slider li {
    /* width: 20%; */
    margin-left: 30px;
    margin-right: 30px;
}

#productWrap .product_list .slider li figure {
    height: 50%;
    width: 100%;
    margin: 0 auto 20px;
}

#productWrap .product_list .slider li .name {
    color: #fff;
    margin-bottom: 40px;
    font-size: 1.8rem;
    text-align: center;
}

#productWrap .product_list .slider li .btn {
    display: block;
    width: 50%;
    margin: 0 auto 20px;
}

#productWrap .product_list .slider .slick-prev,
#productWrap .product_list .slider .slick-next {
    position: absolute;
    top: 42%;
    cursor: url(img/cur.svg), auto;
    outline: none;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    height: 15px;
    width: 15px;
    z-index: 99;
}

#productWrap .product_list .slider .slick-prev {
    left: -1.5%;
    transform: rotate(-135deg);
}

#productWrap .product_list .slider .slick-next {
    right: -1.5%;
    transform: rotate(45deg);
}

#productWrap .product_list .product_shop_list {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 30px;
    width: min(100%, 900px);
    margin: 40px auto 64px;
    justify-content: center;
    padding: 0 15px;
}

#productWrap .product_list .product_shop_list li {
    width: calc(100% / 3 - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;

}

#productWrap .product_list .product_shop_list li figure {
    height: auto;
    width: 100%;
    margin: 0 auto 20px;
}

#productWrap .product_list .product_shop_list li .name {
    color: #fff;
    margin-bottom: 32px;
    font-size: 1.8rem;
    text-align: center;
}

#productWrap .product_list .product_shop_list li .btnsBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

#productWrap .product_list .product_shop_list li .btnsBox .var {
    font-size: 1.6rem;
    line-height: 100%;
    color: #fff;
}

#productWrap .product_list .product_shop_list li .btnsBox .btns {
    display: grid;
    grid-template-columns: repeat(3, 44px);
    gap: 16px;
    margin-bottom: 24px;
}

#productWrap .product_list .product_shop_list li .btnsBox .btns a {
    display: block;
}

#productWrap .product_list .product_shop_list li .btnsBox .btns a img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
    #productWrap .product_list .product_shop_list {
        width: min(100%, 600px);
        gap: clamp(30px, 8.57vw, 60px) clamp(15px, 4.29vw, 30px);
    }

    #productWrap .product_list .product_shop_list li .name {
        font-size: clamp(1.2rem, 2.34vw, 1.8rem);
        margin-bottom: clamp(20px, 4.17vw, 32px);
    }

    #productWrap .product_list .product_shop_list li .btnsBox {
        gap: clamp(8px, 2.08vw, 16px);
    }

    #productWrap .product_list .product_shop_list li .btnsBox .var {
        font-size: clamp(1.1rem, 2.08vw, 1.6rem);
    }

    #productWrap .product_list .product_shop_list li .btnsBox .btns {
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(10px, 2.08vw, 16px);
    }

    #productWrap .product_list .product_shop_list li .btnsBox .btns a {
        width: clamp(32px, 5.73vw, 44px);
        height: clamp(32px, 5.73vw, 44px);
    }
}

@media screen and (max-width: 530px) {
    #productWrap .product_list .product_shop_list {
        width: min(100%, 450px);
        gap: 40px 10px;
        margin: 40px auto 0;
        padding: 0;
    }

    #productWrap .product_list .product_shop_list li {
        width: calc(100% / 2 - 20px);
    }

    #productWrap .product_list .product_shop_list li .btnsBox .btns {
        margin-bottom: 8px;
        gap: 8px;
    }
}


#productWrap .other h3 {
    margin-top: 60px;
}

#productWrap .other ul {
    max-width: 1200px;
    width: 100%;
    margin: 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#productWrap .other ul li a {
    display: block;
    width: 360px;
    padding: 20px;
    margin: 0 10px 30px;
    border: #042459 solid 1px;
    text-align: center;
    font-size: 1.8rem;
    color: #042459;
    transition: .4s;
}

#productWrap .other ul li a:hover {
    background-color: #042459;
    color: #fff;
}

/* gelactive */
#productWrap .question h3 {
    margin-top: 80px;
    font-size: 3.2rem;
}

#productWrap .question .question_df {
    max-width: 1200px;
    width: 100%;
    margin: 60px auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
}

#productWrap .question .question_df .question_df_con {
    width: 30%;
}

#productWrap .question .question_df .question_df_con p {
    font-size: 2rem;
    text-align: center;
    margin-top: 20px;
}

@media (max-width:1024px) {
    /* ===================================
            PRODUCT 
==================================== */

    /* 一覧 products/html */
    .productsall {
        margin: 40px auto 0;
    }

    .product_header {
        max-width: 1024px;
        width: 100%;
        /* height: 42vw; */
    }

    .product_top_right .product_logo {
        width: 30%;
        margin: 10px auto;
    }

    .product_top {
        max-width: 600px;
    }

    .product_top h1 {
        /* font-size: 4rem; */
        font-size: 3vw;
    }

    #productWrap .product_content_df {
        max-width: 768px;
        margin: 5% auto;
        align-items: flex-start;
    }

    #productWrap .product_content_df .product_content_df_text h2 {
        font-size: 2.4rem;
        margin-bottom: 3%;
    }

    #productWrap .product_content_df .product_content_df_text p {
        font-size: 1.4rem;
    }

    #productWrap .product_content_df figure {
        width: 40%;
    }

    #productWrap .thumbnail_df {
        max-width: 1024px;
        width: 100%;
        margin: 20% auto 8%;
        flex-direction: column-reverse;
        justify-content: center;
    }

    #productWrap .thumbnail_change {
        width: 100%;
        margin: 5% auto;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    #productWrap .thumbnail_change img {
        display: block;
        width: 100px;
        height: 100px;
        margin-bottom: 5%;
        margin: 0 5px 10px;
        border-radius: 10%;
    }

    #productWrap .main_img {
        width: 60%;
        margin: 0 auto;
        transition: .4s;
    }

    #productWrap .product_list {
        padding: 10% 15px;
    }

    #productWrap .product_list h3 {
        font-size: 4rem;
    }

    #productWrap .product_list .slider {
        margin: 8% auto 0;
    }

    #productWrap .product_list .slider li figure {
        height: auto;
        width: 100%;
    }

    #productWrap .product_list .slider li .name {
        margin-bottom: 5%;
        font-size: 1.8rem;
    }

    #productWrap .product_list .slider li .btn {
        display: block;
        width: 50%;
        margin-bottom: 15px;
    }

    #productWrap .product_list .slider .slick-prev {
        left: 0;
    }

    #productWrap .product_list .slider .slick-next {
        right: 0;
    }

    #productWrap .other h3 {
        margin-top: 10%;
    }

    #productWrap .other ul {
        margin: 5% auto;
    }

    #productWrap .other ul li a {
        width: 240px;
        font-size: 1.4rem;
        height: 10vw;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* gelactive */
    #productWrap .question h3 {
        margin-top: 80px;
        font-size: 3.2rem;
    }

    #productWrap .question .question_df {
        margin: 5% auto;
        flex-wrap: wrap;
    }

    #productWrap .question .question_df .question_df_con p {
        font-size: 1.6rem;
        margin-top: 3%;
    }
}

@media (max-width:599px) {
    /* ===================================
            PRODUCT 
==================================== */

    /* 一覧 products/html */
    .productsall {
        margin: 40px auto 0;
    }

    .product_header {
        background-size: cover;
        width: 100%;
        height: 125vw;
    }

    .product_header1 {
        background: url(/wp-content/themes/drscholl/img/product/sp_01.jpg) no-repeat center center;
    }

    .product_header2 {
        background: url(/wp-content/themes/drscholl/img/product/sp_02.jpg) no-repeat center center;
    }

    .product_header3 {
        background: url(/wp-content/themes/drscholl/img/product/sp_03.jpg) no-repeat center center;
    }

    .product_header4 {
        background: url(/wp-content/themes/drscholl/img/product/sp_04.jpg) no-repeat center center;
    }

    .product_header5 {
        background: url(/wp-content/themes/drscholl/img/product/sp_05.jpg) no-repeat center center;
    }

    .product_header6 {
        background: url(/wp-content/themes/drscholl/img/product/sp_06.jpg) no-repeat center center;
    }

    .product_header7 {
        background: url(/wp-content/themes/drscholl/img/product/sp_07.jpg) no-repeat center center;
    }

    .product_header8 {
        background: url(/wp-content/themes/drscholl/img/product/sp_08.jpg) no-repeat center center;
    }

    .product_header9 {
        background: url(/wp-content/themes/drscholl/img/product/sp_09.jpg) no-repeat center center;
    }

    .product_header10 {
        background: url(/wp-content/themes/drscholl/img/product/sp_10.jpg) no-repeat center center;
    }

    .product_header11 {
        background: url(/wp-content/themes/drscholl/img/product/sp_11.jpg) no-repeat center center;
    }

    .product_header12 {
        background: url(/wp-content/themes/drscholl/img/product/sp_12.jpg) no-repeat center center;
    }

    .product_top {
        display: block;
        width: 80%;
        margin: 0 auto;
    }

    .product_top_right {
        width: 100%;
    }

    .product_top_right .product_logo {
        width: 20%;
        margin: 3% auto;
    }

    .product_top h1 {
        /* font-size: 3rem; */
        font-size: 6vw;
        text-align: center;
    }

    .product_top figure {
        width: 60%;
        margin: 10% auto;
    }

    #productWrap .product_content_df {
        display: block;
    }

    #productWrap .product_content_df .product_content_df_text {
        width: 100%;
    }

    #productWrap .product_content_df figure {
        width: 60%;
        margin: 3% auto;
    }

    #productWrap .thumbnail_change img {
        width: 60px;
        height: 60px;
    }

    #productWrap .main_img {
        width: 80%;
        margin: 0 auto 5%;
    }

    #productWrap .product_list h3 {
        font-size: 3rem;
    }

    #productWrap .product_list .slider li .name {
        margin-bottom: 8%;
        font-size: 1.2rem;
    }

    #productWrap .product_list .slider li .btn {
        width: 80%;
        margin: 0 auto 10px;
    }

    #productWrap .other h3 {
        margin-top: 10%;
    }

    #productWrap .other ul li a {
        width: 160px;
        font-size: 1.2rem;
        margin-bottom: 5%;
    }

    /* gelactive */
    #productWrap .question h3 {
        margin-top: 80px;
        font-size: 3.2rem;
    }

    #productWrap .question .question_df {
        margin: 5% auto;
        flex-wrap: wrap;
    }

    #productWrap .question .question_df .question_df_con p {
        font-size: 1.6rem;
        margin-top: 3%;
    }
}


/* ===================================
            CONTACT
==================================== */
.contact_h1 {
    margin-top: 5%;
    font-size: 6rem;
    font-weight: bold;
    text-align: center;

}

.contact {
    max-width: 1000px;
    width: 100%;
    margin: 3% auto 8%;
    padding: 0 15px;
}

.contact p {
    font-size: 1.8rem;
}

.contact ul {
    border-bottom: #042459 solid 1px;
    border-top: #042459 solid 1px;
    padding-top: 1%;
    padding-bottom: 1%;
    margin-bottom: 2%;
    margin-top: 2%;
}

.contact ul li {
    font-size: 1.8rem;
    margin-bottom: 1%;
}

.contact .kome {
    font-size: 1.4rem;
}

@media (max-width:1024px) {
    .contact_h1 {
        font-size: 4rem;
    }

    .contact p {
        font-size: 1.6rem;
    }

    .contact ul li {
        font-size: 1.8rem;
    }
}

@media (max-width:599px) {
    .contact_h1 {
        font-size: 3rem;
        margin-top: 10%;
    }

    .contact {
        margin: 10% auto;
    }

    .contact p {
        font-size: 1.4rem;
    }

    .contact ul {
        padding-top: 3%;
        padding-bottom: 3%;
        margin-top: 3%;
        margin-bottom: 3%;
    }

    .contact ul li {
        font-size: 1.6rem;
    }
}


/*column all, news all*/
.column_all,
.news_all {
    max-width: 1200px;
    margin: 80px auto 120px;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 44px 20px;
}

.news_all {
    gap: 44px 40px;
}

.news_all {
    max-width: 1000px;
    grid-template-columns: 1fr;
    gap: 46px 20px;
}

.column_all .column_one,
.news_all .news_one {
    font-family: 'Noto Sans JP', sans-serif;
}

.news_all .news_one {
    position: relative;
    padding: 20px 0 0;
    border-top: 1px solid #042459;
}

.news_all .news_one:first-child {
    border-top: 0;
}

.news_all .news_one::after {
    content: 'READ MORE >';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.column_all .column_one a,
.news_all .news_one a {
    display: block;
    transition: .4s;
}

.news_all .news_one a {
    padding-bottom: 28px;
}

.column_all .column_one a:hover figure,
.news_all .news_one a:hover figure {
    opacity: 0.8;
}

.column_all .column_one figure,
.news_all .news_one figure {
    width: 100%;
    height: 279px;
    transition: .2s;
}

.column_all .column_one figure img,
.news_all .news_one figure img {
    object-position: center center;
    object-fit: cover;
}

.column_all .column_one .column_title,
.news_all .news_one .news_title {
    font-size: 15px;
    line-height: 1.7;
    color: #042459;
    margin-top: 8px;
    word-break: break-all;
}

.news_all .news_one .news_title {
    margin-bottom: 10px;
}

.column_all .column_one .column_date,
.news_all .news_one .news_date {
    font-size: 13px;
    color: #042459;
    margin-top: 4px;
}

.post_pagenation {
    display: flex;
    justify-content: center;
    margin: 0 auto 80px;
}

.post_pagenation span,
.post_pagenation a {
    font-size: 18px;
    color: #042459;
    margin: 0 14px;
    cursor: url(img/cur.svg), auto;
    padding: 8px 16px;
    /* font-family: 'Raleway', sans-serif; */
    font-family: motiva-sans, 'Noto Sans JP', sans-serif;
}

.news_h2 {
    margin-top: 60px;
}

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

    .column_all,
    .news_all {
        margin: 66px auto 100px;
        gap: 28px 20px;
    }

    .column_all .column_one figure,
    .news_all .news_one figure {
        width: 100%;
        height: 22vw;
    }
}

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

    .column_all,
    .news_all {
        display: block;
        margin: 14vw auto;
    }

    .news_all {
        padding: 0 20px;
    }

    .column_all .column_one {
        margin-bottom: 10vw;
    }

    .news_all .news_one {
        border-top: 1px solid #042459;
        padding: 9vw 5px 18vw;
    }

    .news_all .news_one a {
        padding-bottom: 0;
    }

    .news_all .news_one:first-child {
        border-top: 0;
    }

    .column_all .column_one figure,
    .news_all .news_one figure {
        height: 58vw;
    }

    .column_all .column_one .column_title,
    .news_all .news_one .news_title {
        font-size: 14px;

    }

    .news_all .news_one .news_title {
        margin-bottom: 1vw;
    }

    .column_all .column_one .column_date,
    .news_all .news_one .news_date {
        font-size: 12px;
    }

    .news_all .news_one::after {
        bottom: 10vw;
        right: 0;
        left: auto;
        font-size: 12px;
    }

    .post_pagenation span,
    .post_pagenation a {
        font-size: 14px;
        padding: 3px 5px;
    }

    .news_h2 {
        margin-top: 14vw;
    }

}

.page_column_all .column_all .column_one .column_date,
.page_news_all .news_all .news_one .news_date {
    margin-top: 0;
}

.column_profile {
    max-width: 1000px;
    width: 100%;
    margin: 40px auto 120px !important;
    display: flex;
    justify-content: space-between;
    border: #042459 solid 1px;
    padding: 20px;
}

.column_profile figure {
    /* width: 30%; */
    width: 100px;
    height: 100px;
}

.column_profile figure img {
    border-radius: 50%;
    object-fit: cover;
}

.column_profile .column_profile_text {
    width: 100% !important;
}

.column_profile .column_profile_text .name {
    font-size: 24px;
    margin-bottom: 10px;
}

.column_profile .column_profile_text .name span {
    font-size: 18px;
}

.column_profile .column_profile_text p {
    font-size: 14px;
}

/*column_single, news_single*/
.column_single,
.news_single {
    max-width: 1200px;
    width: 100%;
    margin: 40px auto 120px;
    padding: 0 30px;
}

.column_h1,
.news_h1 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

.column_h1 span,
.news_h1 span {
    font-size: 24px;
}

.column_single .column_single_date,
.news_single .news_single_date {
    font-size: 13px;
}

.column_single_title h3,
.news_single_title h3 {
    font-size: 28px;
    line-height: 1.6;
    text-align: left;
    padding-bottom: 6px;
    border-bottom: 1px solid #042459;
    margin-top: 4px;
}

.column_single .column_single_eyecatch {
    margin: 24px 0;
}

.column_single_main,
.news_single_main {
    margin-top: 44px;
    margin-bottom: 8%;
}

.column_single_main *,
.news_single_main * {
    font-size: 15px;
    line-height: 1.7;
}

.column_single_main h1,
.news_single_main h1 {
    font-size: 24px;
}

.column_single_main h1 span,
.news_single_main h1 span {
    font-size: inherit;
}

.column_single_main h2,
.news_single_main h2 {
    font-size: 22px;
}

.column_single_main h2 span,
.news_single_main h2 span {
    font-size: inherit;
}

.column_single_main h3,
.news_single_main h3 {
    font-size: 20px;
}

.column_single_main h3 span,
.news_single_main h3 span {
    font-size: inherit;
}

.column_single_main h1,
.column_single_main h2,
.column_single_main h3,
.news_single_main h1,
.news_single_main h2,
.news_single_main h3 {
    letter-spacing: 0.15em;
    margin-top: 2em;
}

.column_single_main h1,
.column_single_main h2,
.column_single_main h3,
.column_single_main h4,
.column_single_main h5,
.column_single_main h6,
.news_single_main h1,
.news_single_main h2,
.news_single_main h3,
.news_single_main h4,
.news_single_main h5,
.news_single_main h6 {
    text-align: left;
    letter-spacing: inherit;
    font-weight: bold;
}

.column_single_main h4,
.column_single_main h5,
.column_single_main h6,
.news_single_main h4,
.news_single_main h5,
.news_single_main h6 {
    font-size: 16px;
}

.column_single_main p,
.news_single_main p {
    margin: 16px 0;
}

.column_single_main a,
.news_single_main a {
    color: #042459;
    text-decoration: underline;
}

.column_single_main img,
.news_single_main img {
    margin: 24px 0;
    max-width: 100% !important;
    height: auto;
    width: auto;
}

.column_single_main ul,
.news_single_main ul {
    margin: 16px 0;
    padding-left: 22px;
}

.column_single_main ul li,
.news_single_main ul li {
    list-style-type: circle;
    margin-bottom: 3px;
}

.column_single_main .wp-caption img,
.news_single_main .wp-caption img {
    margin-bottom: 0;
    max-width: 100% !important;
    height: auto;
    width: auto;
}

.column_single_main .wp-caption p,
.news_single_main .wp-caption p {
    margin-top: 6px;
    font-size: 14px;
}

@media (max-width:1024px) {
    .column_profile {
        width: 95%;
    }

    .column_profile .column_profile_text {
        width: 86%;
        margin-left: 2%;
    }
}

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

    .column_profile {
        width: 94%;
        /* display: block; */
        margin: 20px auto;
    }

    .column_profile figure {
        /* width: 50%; */
        width: 80px;
        height: 80px;
        margin: 0 auto 3%;
    }

    .column_profile .column_profile_text {
        width: 100%;
    }

    .column_profile .column_profile_text .name {
        /* text-align: center; */
        /* font-size: 20px; */
        font-size: 14px;
        margin-bottom: 5px;
    }

    .column_profile .column_profile_text .name span {
        font-size: 10px;
    }

    .column_profile .column_profile_text p {
        font-size: 10px;
    }

    .column_single,
    .news_single {
        padding: 0 4vw;
        margin: 13vw 0 17vw;
    }

    .column_h1,
    .news_h1 {
        font-size: 24px;
        margin-bottom: 0%;
        margin-top: 5%;
    }

    .column_h1 span,
    .news_h1 span {
        font-size: 16px;
    }

    .column_single_title h3,
    .news_single_title h3 {
        font-size: 18px;
        padding-bottom: 5px;
        border-bottom: 1px solid #042459;
    }

    .column_single .column_single_eyecatch {
        margin: 4vw 0;
    }

    .column_single_main *,
    .news_single_main * {
        font-size: 13px;
        line-height: 1.8;
    }

    .column_single_main h1,
    .news_single_main h1 {
        font-size: 18px;
    }

    .column_single_main h2,
    .news_single_main h2 {
        font-size: 17px;
    }

    .column_single_main h3,
    .news_single_main h3 {
        font-size: 15px;
    }

    .column_single_main h4,
    .column_single_main h5,
    .column_single_main h6,
    .news_single_main h4,
    .news_single_main h5,
    .news_single_main h6 {
        font-size: 14px;
    }

    .column_single_main p,
    .news_single_main p {
        margin: 9px 0;
    }

    .column_single_main img,
    .news_single_main img {
        margin: 14px 0;
    }

    .column_single_main ul,
    .news_single_main ul {
        margin: 12px 0;
        padding-left: 20px;
    }

    .column_single_main ul li,
    .news_single_main ul li {
        margin-bottom: 5px;
    }
}

.page_404 {
    max-width: 1200px;
    padding: 0 15px;
    margin: 80px auto 140px;
}

.page_404 h2 {
    font-size: 22px;
    margin-bottom: 32px;
    color: #042459;
    letter-spacing: normal;
    text-align: left;
    padding-bottom: 6px;
    border-bottom: 1px solid #042459;
}

.page_404 p,
.page_404 p a {
    font-size: 15px;
    color: #042459;
}

.page_404 p a {
    text-decoration: underline;
}

.page_404 p:last-child {
    margin-top: 12px;
}

@media screen and (max-width: 599px) {
    .page_404 {
        margin: 13vw auto;
    }

    .page_404 h2 {
        font-size: 18px;
        padding-bottom: 5px;
        border-bottom: 1px solid #042459;
    }

    .page_404 p,
    .page_404 p a {
        font-size: 14px;
    }

    .page_404 p:last-child {
        margin-top: 8px;
    }
}

.column--new {
    width: 100%;
    padding-top: 1px;
    background: #FBFBFB;
    padding-bottom: 100px;
}

.column--new>a {
    display: block;
    margin: -60px auto 0;
    text-align: right;
    max-width: 1200px;
    padding: 0 15px;
    font-size: 2rem;
    color: #042459;
}

.column--new .column_all .column_one a {
    position: relative;
}

.column--new .column_all .column_one a .is-new {
    display: block;
    position: absolute;
    left: -42px;
    top: -10px;
    width: 0;
    height: 0;
    border-left: 65px solid transparent;
    border-right: 65px solid transparent;
    border-bottom: 65px solid #042459;
    transform: rotate(-45deg);
}

.column--new .column_all .column_one a .is-new::before {
    content: 'NEW';
    display: block;
    color: #fff;
    position: absolute;
    transform: translate(-50%, 90%);
    font-size: 20px;
}

@media screen and (max-width:1200px) {
    .column--new {
        padding-bottom: 8.33vw;
    }

    .column--new>a {
        margin: -5vw auto 0;
    }

    .column--new .column_all .column_one a .is-new {
        border-left: 5.42vw solid transparent;
        border-right: 5.42vw solid transparent;
        border-bottom: 5.42vw solid #042459;
        left: -3.33vw;
        top: -0.83vw;
    }

    .column--new .column_all .column_one a .is-new::before {
        font-size: 1.67vw;
    }
}

@media screen and (max-width: 599px) {
    .column--new h3 {
        font-size: 2.5rem;
        margin-top: 12%;
    }

    .column--new .column_all {
        margin-top: 9vw;
    }

    .column--new .column_all .column_one a .is-new {
        border-left: 12.42vw solid transparent;
        border-right: 12.42vw solid transparent;
        border-bottom: 12.42vw solid #042459;
        left: -8vw;
        top: -1.7vw;
    }

    .column--new .column_all .column_one a .is-new::before {
        font-size: 3.6vw;
    }
}

@media screen and (max-width:480px) {
    .column--new {
        padding-bottom: 20.83vw;
    }

    .column--new>a {
        margin: 0 auto;

        font-size: 4.17vw;
    }
}

.column_return {
    border: #042459 solid 1px;
    color: #042459;
    font-weight: bold;
    padding: 10px;
    margin-top: 10%;
    transition: .4s;
}

.column_return:hover {
    background-color: #042459;
    color: #fff;
}

.column_p {
    max-width: 600px;
    width: 100%;
    margin: -3% auto 0;
    line-height: 2;
    text-align: center;
    padding: 0 15px;
}

@media (max-width:768px) {
    .column_p {
        font-size: 14px;
        max-width: 600px;
        width: 100%;
        margin: 5% auto;
        line-height: 2;
        text-align: center;
        padding: 0 15px;
    }
}


/* ===================================
            video（一覧）
==================================== */

.video_wrap {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.video_wrap h1 {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 2rem;
}

.video_wrap .video_contents {
    width: 100%;
    margin: 80px auto;
}

.video_wrap .video_contents h2 {
    font-size: 28px;
    text-align: left;
    margin: 1%;
    letter-spacing: .05em;
    border-bottom: solid 1px #042459;
}

.video_wrap .video_contents .video_df {
    display: flex;
    justify-content: flex-start;
}

.video_wrap .video_contents .video_df li {
    width: 32%;
    margin: 40px 1%;
}

.video_wrap .video_contents .video_df li a figure {
    width: 100%;
    overflow: hidden;
}

.video_wrap .video_contents .video_df li a:hover {
    opacity: 0.8;
    transition: .4s;
}

.video_wrap .video_contents .video_df li a h3 {
    font-size: 15px;
    text-align: left;
    color: #042459;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .video_wrap {
        max-width: 768px;
        padding: 15% 15px;
    }

    .video_wrap h1 {
        font-size: 7vw;
        letter-spacing: 1rem;
    }

    .video_wrap .video_contents {
        margin: 10% auto;
    }

    .video_wrap .video_contents h2 {
        font-size: 5vw;
    }

    .video_wrap .video_contents .video_df {
        flex-wrap: wrap;
    }

    .video_wrap .video_contents .video_df li {
        width: 48%;
        margin: 3% 1%;
    }

    .video_wrap .video_contents .video_df li a h3 {
        font-size: 3.4vw;
    }
}

/* ===================================
            video（詳細）
==================================== */
.video_detail {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 15px;
}

.video_detail h1 {
    font-size: 40px;
    letter-spacing: .05em;
    border-bottom: solid 1px #042459;
}

.video_detail .video_detail_df {
    margin: 60px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.video_detail .video_detail_df .video_wrap {
    width: 50%;
    padding: 0;
    margin: 0;
}

.video_detail .video_detail_df .video_wrap iframe {
    width: 100%;
    aspect-ratio: 16/9;
}

.video_detail .video_detail_df .video_wrap .return_btn {
    display: block;
    color: #042459;
    margin-top: 5%;
    position: relative;
    margin-left: 3%;
}

.video_detail .video_detail_df .video_wrap .return_btn::before {
    content: "";
    display: block;
    border-width: 8px 8px 9px;
    border-style: solid;
    border-color: transparent transparent transparent #243F72;
    transform: rotate(180deg);
    position: absolute;
    left: -4%;
    top: 5%;
    transition: .1s;
}

.video_detail .video_detail_df .video_wrap .return_btn:hover::before {
    left: -5%;
}

.video_detail .video_detail_df .video_text {
    width: 45%;
}

.video_detail .video_detail_df .video_text p {
    font-size: 16px;
    line-height: 2;
}

.video_detail .video_detail_df .video_link {
    width: 100%;
    margin: 60px auto;
}

.video_detail .video_detail_df .video_link h2 {
    text-align: left;
    letter-spacing: .05em;
    font-size: 32px;
}

.video_detail .video_detail_df .video_link ul {
    width: 100%;
    margin: 10px auto;
}

.video_detail .video_detail_df .video_link ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: solid 1px #042459;
}

.video_detail .video_detail_df .video_link ul li:nth-of-type(1) {
    border-top: solid 1px #042459;
}

.video_detail .video_detail_df .video_link ul li p {
    font-size: 18px;
}

.video_detail .video_detail_df .video_link ul li a {
    display: block;
    padding: 10px;
    background-color: #042459;
    color: #fff;
    border: solid 1px #042459;
    font-size: 12px;
    transition: .4s;
}

.video_detail .video_detail_df .video_link ul li a:hover {
    background-color: #fff;
    color: #042459;
}



@media (max-width: 768px) {
    .video_detail {
        max-width: 768px;
        padding: 15% 15px;
    }

    .video_detail h1 {
        font-size: 6vw;
        line-height: 1.5;
    }

    .video_detail .video_detail_df {
        margin: 10% auto;
        display: block;
    }

    .video_detail .video_detail_df .video_wrap {
        width: 100%;
        aspect-ratio: 16/9;
        position: initial;
    }

    .video_detail .video_detail_df .video_wrap .return_btn {
        margin-left: 5%;
    }

    .video_detail .video_detail_df .video_wrap .return_btn::before {
        left: -7%;
    }

    .video_detail .video_detail_df .video_text {
        width: 100%;
    }

    .video_detail .video_detail_df .video_text p {
        font-size: 3.4vw;
        margin-top: 24px;
    }


    .video_detail .video_detail_df .video_link {
        width: 100%;
        margin: 60px auto;
        align-items: center;
    }

    .video_detail .video_detail_df .video_link h2 {
        text-align: left;
        letter-spacing: .05em;
        font-size: 6vw;
    }

    .video_detail .video_detail_df .video_link ul li p {
        font-size: 3.8vw;
        line-height: 1.7;
        margin-top: 0;
    }

    .video_detail .video_detail_df .video_link ul li a {
        display: block;
        padding: 10px;
        background-color: #042459;
        color: #fff;
        border: solid 1px #042459;
        transition: .0s;
    }




}