@charset "utf-8";


/* ====================
common
==================== */

:root {
    --primary-white: #fff;
    --primary-black: #000;
    --primary-blue: #037ECF;
    --primary-lightBlue: #E8F6FF;
    --primary-lightGray: #B9B9B9;
    --secondary-lightGray: #7C7C7C;
}



html {
    font-size: 62.5%;
}

* {
    box-sizing: border-box;
}

body {
    font-family:
        "Zen Old Mincho",
        "Noto Sans JP",
        "EB Garamond",
        "Inter",
        serif;
    font-size: 1.4rem;
    letter-spacing: 0.03em;
    font-style: normal;
    color: var(--primary-black, #000);
    background-color: var(--primary-white, #fff);
    line-height: 1.75;
}

img {
    max-width: 100%;
    height: auto;
}

.topic__sub {
    font-family: "EB Garamond";
    color: var(--primary-blue, #037ECF);
    font-size: 1.0rem;
    line-height: 1;
    text-align: center;
    margin-bottom: 8px;
}

.topic__sub.fadeDown {
    opacity: 0;
    transition: 2s;
    transform: translate(0, -30px);
}

.topic__sub.fadeDown.animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* js */
/* .topic__sub--vertical.fadeIn {
    opacity: 0;
    transition: 2s;
    transform: translate(0, -30px);
}

.topic__sub--vertical.animated {
    opacity: 1;
    transform: translate(0, 0);
} */

/*  */

.topic {
    position: relative;
    color: var(--primary-black, #000);
    text-align: center;
    font-size: 3.0rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.03em;
    margin: 0 auto;
    padding-bottom: 9px;
    width: fit-content;
}

.topic::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary-black);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.5s ease;
}

.topic.animated::after {
    transform: scaleY(1);
}

.topic--vertical.subPage {
    /* writing-mode: vertical-rl; */
    text-align: left;
    width: 100%;
    color: var(--primary-white);
    font-size: 2.4rem;
    letter-spacing: 0.18em;
    line-height: 1.25;
    padding: 0 6px 0 0;
}

.topic__row.subPage {
    padding: 34px 0;
    width: 145px;
    margin: 0 auto;
    text-align: center;
}

.topic__wrap--vertical.subPage {
    position: relative;
    display: inline-block;
    writing-mode: vertical-rl;
}

.topic__sub--vertical.subPage {
    /* writing-mode: vertical-rl; */
    position: absolute;
    top: 0;
    right: -20px;
}

/*
.topic__sub--vertical.subPage.fadeIn {
    opacity: 0;
    transition: 2s;
    transform: translate(30px, 0);
}

 .topic__sub--vertical.subPage.animated {
    opacity: 1;
    transform: translate(100%, 0);
} */

.topic--vertical.subPage::after {
    bottom: 0;
    right: 0;
    width: 1px;
    height: 100%;
    transform: scaleY(0);
    transform-origin: top;
    background-color: var(--primary-white);
}

.topic--vertical.subPage.animated::after {
    transform: scaleY(1);
}

.subTopic {
    font-size: 2.0rem;
    font-weight: 500;
    line-height: 1;
    border-bottom: 1px solid var(--primary-black);
    padding-bottom: 6px;
    text-align: center;
    margin: 0 auto;
    width: fit-content;
}

.title {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1;
}

.title.dot::before {
    content: "";
    background-color: var(--primary-blue);
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    transform: translateY(-30%);
    margin-right: 8px;
}

.btn {
    text-align: center;
}

.btn a {
    background: transparent;
    border-radius: 8px;
    padding: 20px 50px 20px 25px;
    color: var(--primary-black, #000);
    text-align: left;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.5;
    border: 1px solid currentColor;
    margin: 0 auto;
    position: relative;
    transition: 0.8s;
    display: inline-block;
    min-width: 280px;
}

.btn a::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 9px;
    background-image: url("data:image/svg+xml;utf8,<svg width='21' height='10' viewBox='0 0 21 10' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M15.1154 9.5L20.5 5.03728M20.5 5.03728L15.1154 0.5M20.5 5.03728L0.499999 5.03728' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.btn--entry a {
    border: none;
    color: var(--primary-white);
    background-color: var(--primary-blue);
}

.btn--entry a::after {
    background-image: url("data:image/svg+xml;utf8,<svg width='21' height='10' viewBox='0 0 21 10' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M15.1154 9.5L20.5 5.03728M20.5 5.03728L15.1154 0.5M20.5 5.03728L0.499999 5.03728' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.section {
    padding: 70px 5.13%;
}

.section.subPage {
    padding: 100px 5.13% 70px;
}

.pc {
    display: none;
}

/* fade */
.fade01 {
    opacity: 0;
    transition: 2s;
}

.fade01.animated {
    opacity: 1;
    transition: 2s;
}

.fadeUp {
    transform: translate(0, 60px);
    opacity: 0;
    transition: 2s;
}

.fadeUp.animated {
    transform: translate(0, 0);
    opacity: 1;
}

.fadeLeft {
    transform: translate(-10px, 0);
    opacity: 0;
    transition: 2s;
}

.fadeLeft.animated {
    transform: translate(0, 0);
    opacity: 1;
}

.fadeRight {
    transform: translate(30px, 0);
    opacity: 0;
    transition: 2s;
}

.fadeRight.animated {
    transform: translate(0, 0);
    opacity: 1;
}

.fadeDown {
    transform: translate(0, -60px);
    opacity: 0;
    transition: 2s;
}

.fadeDown.animated {
    transform: translate(0, 0);
    opacity: 1;
}

.fadeRight2 {
    transform: translate(20px, -20px) rotate(3deg);
    opacity: 0;
    transition: .5s;
}

.fadeRight2.animated {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
}

/* topic__sub--vertical専用アニメーション */
/* 共通（最初は透明） */
.fadeCustom {
    opacity: 0;
    transition: 2s;
}

/* スマホ：上からフェードイン */
@media screen and (max-width: 768px) {
    .fadeCustom {
        transform: translateY(-30px);
    }
}

/* PC：右からフェードイン */
@media screen and (min-width: 769px) {
    .fadeCustom {
        transform: translateX(30px);

    }
}

/* 表示時（JSで animated が付く） */
.fadeCustom.animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* delay */
.delay01 {
    transition-delay: .2s;
}

.delay02 {
    transition-delay: .4s;
}

.delay03 {
    transition-delay: .6s;
}

.delay04 {
    transition-delay: .8s;
}

.timedShow {
    opacity: 0;
    visibility: hidden;
    transition: 3s ease;
}

.timedShow.is-show {
    opacity: 1;
    visibility: visible;
}

.timedShowDown {
    opacity: 0;
    visibility: hidden;
    transition: 3s ease;
    transform: translate(0, -60px);
}

.timedShowDown.is-show {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
}

.timedShowRight {
    opacity: 0;
    visibility: hidden;
    transition: 3s ease;
    transform: translate(30px, 0);
}

.timedShowRight.is-show {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
}

/* articleHeader__title */
.article__title .titleTxt {
    display: inline-block;
    opacity: 0;
    transform: translate(0, 30px);
    transition: opacity 2s ease, transform 2s ease;
}

.article__title .titleTxt.is-show {
    opacity: 1;
    transform: translateY(0);
}

.article__title .titleTxt2.is-show {
    transition-delay: 0.8s;
}

/* common pc */
@media screen and (min-width:769px) {
    body {
        font-size: 1.6rem;
        line-height: 1.8;
    }

    .topic__wrap {
        margin: 0 auto;
        position: relative;
    }

    .topic {
        font-size: 5.0rem;
        line-height: 1;
        padding-bottom: 18px;
        width: fit-content;
    }

    .topic--vertical::after {
        bottom: 0;
        right: 0;
        width: 1px;
        height: 100%;
        transform: scaleY(0);
        transform-origin: top;
    }

    .topic--vertical.animated::after {
        transform: scaleY(1);
    }

    .topic__sub {
        font-size: 1.4rem;
        line-height: 1;
        margin-bottom: 18px;
    }

    .topic__sub--vertical.fadeIn {
        opacity: 0;
        transition: 2s;
        transform: translate(30px, 0);
    }

    .topic__row {
        margin-right: 2.66%;
    }

    .topic__row.subPage {
        padding: 75px 0;
        margin-left: auto;
        margin-right: 8.06%;
        display: flex;
    }

    .topic__wrap--vertical.subPage {
        position: relative;
        /* width: fit-content; */
        margin-left: auto;
        margin-right: 8%;
        display: block;
    }

    .topic__sub--vertical {
        width: 14px;
        writing-mode: vertical-rl;
        position: absolute;
        top: 0;
        right: -20px;
    }

    .topic__sub--vertical.subPage {
        writing-mode: vertical-rl;
        position: absolute;
        top: 0;
        right: -30px;
        /* opacity: 1; */
        transform: translate(30px, 0);
    }

    .btn a:hover {
        background-color: var(--primary-black, #000);
        color: var(--primary-white, #fff);
        border-color: transparent;
    }

    .btn a:hover::after {
        background-image: url("data:image/svg+xml;utf8,<svg width='21' height='10' viewBox='0 0 21 10' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M15.1154 9.5L20.5 5.03728M20.5 5.03728L15.1154 0.5M20.5 5.03728L0.499999 5.03728' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    }

    /* js */
    .topic__sub--vertical {
        opacity: 0;
        transition: 2s;
        transform: translate(60px, 0);
    }

    .topic__sub--vertical.animated {
        opacity: 1;
        transform: translate(100%, 0);
    }

    /*  */

    .topic--vertical {
        width: 100%;
        writing-mode: vertical-rl;
        text-align: start;
        line-height: 1.36;
        letter-spacing: 0.1em;
        padding: 0 9px 0 0;
    }

    .topic--vertical.subPage {
        font-size: 5.0rem;
        letter-spacing: 0.1em;
        line-height: 1.36;
        padding: 0 9px 0 0;
    }

    .subTopic {
        font-size: 2.8rem;
        padding-bottom: 15px;
    }

    .title {
        font-size: 2.0rem;
    }

    .btn a {
        width: 320px;
        font-size: 1.8rem;
        letter-spacing: 0.03em;
    }

    .btn a:after {
        width: 24px;
        height: 11px;
    }

    .bg__wrapper {
        background-image: url(../images/bg_white.jpg);
        background-size: contain;
    }


    .section {
        padding: 130px 5.56%;
        margin: 0 auto;
        max-width: 1440px;
    }

    .section.subPage {
        padding: 130px 5.56%;
    }

    .pc {
        display: block;
    }

    .sp {
        display: none;
    }

    /* fadeIn */

    .fadeLeft.reverse {
        transform: translate(10px, 0);
    }

    .fadeLeft.animated {
        transform: translate(0, 0);
    }

    .fadeRight.reverse {
        transform: translate(-10px, 0);
    }

    .fadeRight.animated {
        transform: translate(0, 0);
    }

}

/* pc 769px */

@media screen and (max-width:1250px) {
    /* ~1250px */

    header .pc {
        display: none;
    }

    header .sp {
        display: block;
    }
}

@media screen and (min-width:1250px) {
    /* 1250px~ */


    header .pc {
        display: block;
    }

    header .sp {
        display: none;
    }

}


/* pc 769px */

/* ====================
header
==================== */
.header {
    padding: 12px 5.13%;
    display: flex;
    justify-content: space-between;
}

.header__subpage {
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--primary-white);
    z-index: 1;
    width: 100%;
}

.header__topic--subpage {
    width: 100px;
}

/* .nav初期表示 */
.nav {
    background-color: var(--primary-white);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.4s;
}

/* .nav.active表示 */
.nav.active {
    transform: translateX(0);
}

.nav__list {
    margin-top: 95px;
    text-align: center;
}

.nav__item {
    color: var(--primary-black);
    font-size: 1.6rem;
    line-height: 1;
    margin-top: 30px;
}

.nav__item:last-child {
    width: 25px;
    height: 25px;
    margin: 30px auto 0;
}

.btn--menu a {
    border: none;
    color: var(--primary-white);
    background-color: var(--primary-blue);
    padding: 20px 42px 20px 67px;
    margin-top: 40px;
}

.btn--menu a::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../images/icon_shinai.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

    position: absolute;
    left: 42px;
    top: 50%;
    transform: translateY(-50%);
}

.btn--menu a:hover::after {
    background-image: url(../images/icon_shinai.png);
}


/* hamburger */

.hum__wrap {
    z-index: 120;
    position: fixed;
    top: 15px;
    right: 5.13%;
    width: 30px;
    height: 30px;
}

.hum__trigger span {
    display: inline-block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary-black);
    transition: 0.8s;
}

.hum__trigger span:nth-of-type(1) {
    top: 7px;
}

.hum__trigger span:nth-of-type(2) {
    top: 14px;
}

.hum__trigger span:nth-of-type(3) {
    bottom: 7px;
}

/* hamburger active表示 */
.humTrigger__line1.active {
    transform: translateY(7px) rotate(-45deg);
}

.humTrigger__line2.active {
    display: none;
}

.humTrigger__line3.active {
    transform: translateY(-7px) rotate(45deg);
}

/* header pc */
@media screen and (min-width:769px) {
    /* 769px~ */

    header .hum__wrap {
        right: 5.56%;
    }

}

@media screen and (min-width:1250px) {
    /* 1250px~ */

    .header {
        padding: 5px 5.56%;
        position: fixed;
        top: -80px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        background-color: white;
        z-index: 1;

        opacity: 0;
        transition: 0.8s ease;
    }

    .header.active {
        top: 0;
        opacity: 1;
    }

    .header__subpage {
        top: 0;
        opacity: 1;
    }

    .header__topic {
        flex-shrink: 0;
        width: 200px;
        height: 70px;
    }

    .nav__header {
        display: none;
    }

    .nav {
        display: flex;
        background: transparent;
        width: auto;
        height: auto;
        position: static;
        transform: translateX(0);
    }

    .nav__list {
        display: flex;
        align-items: center;
        margin-top: 0;
    }

    .nav__item {
        letter-spacing: 0.03em;
        white-space: nowrap;
        text-align: center;
        font-size: 1.7rem;
        margin: 0 0 0 40px;
    }

    .nav__item::before {
        display: none;
    }

    .nav__item:last-child {
        margin: 0 0 0 40px;
    }

    .header__btn {
        display: none;
    }

}

/* pc 1250px~ */

/* ====================
Article header
==================== */
.article__header.article__header--subPage {
    margin-top: 59px;
}

.breadcrumb-list {
    display: flex;
    margin: 20px 0 0 5.13%;
}

.separator {
    font-size: 1.2rem;
    margin-left: 8px;
    transform: translateY(1px);
}

.breadcrumb-item:last-child {
    margin-left: 8px;
}

.caption {
    margin-top: 40px;
    padding: 0 5.13%;
}

/* .article__header pc */
@media screen and (min-width:769px) {
    .breadcrumb-list {
        margin: 25px 0 0 5.56%;
    }

    .separator {
        font-size: 1.5rem;
        margin-left: 8px;
    }

    .caption {
        margin-top: 100px;
        text-align: center;
        padding: 0 5.56%;
    }

}

/* pc 769px */

/* .article__header pc */
@media screen and (min-width:1250px) {
    .article__header.article__header--subPage {
        margin-top: 80px;
    }
}

/* pc 769px */

/* ====================
footer
==================== */
/* footer__entry */
.footer__entry {
    background-image: url(../images/bg_Lblue.png);
    background-size: cover;
}

.footerEntry__txt {
    margin-top: 45px;
    font-family: "Noto Sans JP";
}

.entryPresent {
    width: 71.42%;
    max-width: 265px;
    margin: 0 auto;
    position: relative;
}

.entryPresent .waveLine {
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    /* width: 10%; */
}

.entryPresent .present {
    position: absolute;
    top: 0;
    left: 0;
    /* width: 46%; */
}

.btn--entry {
    margin-top: 8px;
}

/* footer */
.footer {
    background-color: var(--primary-black);
    padding: 10px 0 95px;
}

.footer h1 {
    width: 108px;
    margin: 0 auto;
}

.footer__address {
    color: var(--primary-white);
    margin-top: 3px;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.52;
}

.footer__address span {
    font-size: 1.4rem;
}

.copy {
    color: var(--primary-white);
    text-align: center;
}

small {
    font-size: 0.8rem;
    line-height: 1;

}

/* follow */
.follow__spbtn a::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(../images/icon_shinai.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.follow__spbtn a {
    width: 100%;
    padding: 17px 50px 17px 68px;
    background-color: var(--primary-blue);
    border-radius: 0;
    border: 0;
    color: var(--primary-white);
    font-size: 1.4rem;
    font-family: "Noto Sans JP";
    font-weight: 500;
    position: fixed;
    bottom: 0;
    left: 0;
}

.btnFollow__txt1 {
    font-size: 1.6rem;
}

.btnFollow__txt2 {
    font-size: 1.2rem;
}

.follow__spbtn a::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 9px;
    background-image: url("data:image/svg+xml;utf8,<svg width='21' height='10' viewBox='0 0 21 10' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M15.1154 9.5L20.5 5.03728M20.5 5.03728L15.1154 0.5M20.5 5.03728L0.499999 5.03728' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.follow__top {
    position: fixed;
    bottom: 119px;
    right: 5.13%;
}

/* js */
.follow__top {
    transition: none;
    transform: translate(0, 0);
    opacity: 1;
    visibility: visible;
}

/*  */

.follow__top a {
    display: block;
    color: var(--primary-white);
    padding: 40px 20px 10px;
    font-family: "EB Garamond";
    font-weight: 500;
    font-size: 1.0rem;
    line-height: 1;
    background-color: var(--primary-blue);
    border-radius: 50%;
    position: relative;
}

.follow__top a::before {
    content: "";
    background-image: url(../images/icon_armor.png);
    width: 26px;
    height: 26px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
}

/* footer pc */
@media screen and (min-width:769px) {

    /* footer__entry */
    .bg__wrapper--entry {
        background-image: url(../images/bg_Lblue.png);
    }

    .footer__entry {
        margin: 0 auto;
        padding: 50px 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .entryImg1 {
        width: 22.92%;
        margin-right: 2.78%;
    }

    .entry__content {
        /* width: 32.22%; */
        min-width: 280px;
    }

    .footerEntry__txt {
        margin-top: 56px;
        text-align: center;
    }

    .entryImg2 {
        width: 25.78%;
    }

    .footerEntry__img1 {
        display: none;
    }

    .entryPresent {
        width: 22.92%;
        max-width: inherit;
        margin: 0;
        margin-left: 2.78%;
        position: relative;
    }

    .btn--entry {
        margin-top: 50px;
    }

    .btn--entry a {
        width: 68.97%;
    }

    /* footer */
    .footer {
        padding: 30px 80px 15px;
    }

    .footerNab__wrapper {
        display: flex;
        width: 85.94%;
        align-items: center;
        justify-content: space-between;
        margin: 0 auto;
    }

    .footerContent {
        display: flex;
        align-items: center;
        width: 41.45%;
    }

    .footerContent--2 {
        width: 52.55%;
        justify-content: flex-end;
    }

    .footer h1 {
        width: 200px;
        margin: 0;
    }

    .footer__address {
        font-size: 1.5rem;
        line-height: 1.5;
        text-align: left;
        margin-top: 0;
        margin-left: 20px;
    }

    .footer__address span {
        font-size: 1.6rem;
    }

    .footer__nav {
        width: 87.72%;
    }

    .footer__navList {
        display: flex;
        flex-wrap: wrap;
        gap: 0 41px;
    }

    .nav__item--footer {
        color: var(--primary-white);
        font-size: 1.5rem;
        line-height: 1.8;
        position: relative;
        margin: 0;
    }

    .nav__item--footer:first-child {
        margin-left: 0;
    }

    .nav__item--footer:last-child {
        width: auto;
        height: auto;
        margin: 0;
    }

    .nav__item--footer a::after {
        content: '';
        display: inline-block;
        width: 16px;
        height: 16px;
        background-image: url(../images/icon_arrow2.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        right: -4px;
        top: 50%;
        transform: translate(100%, -50%);
    }

    .instagram__footer {
        width: 30px;
        height: 30px;
        margin-left: 41px;
    }

    .copy {
        margin-top: 10px;
    }

    small {
        font-size: 1.0rem;
        line-height: 1;
    }

    /* follow */
    .follow__top {
        bottom: 6.67%;
        right: 4.17%;
    }

    .follow__top.timedShow {
        transform: translate(30px, 0);
    }

    .follow__top.timedShow.is-show {
        transform: translate(0, 0);
    }

    .follow__top a {
        font-size: 1.1rem;
        transition: 0.8s;
        padding: 45px 22px 11px;

    }

    .follow__top a::before {
        bottom: 27px;
    }

    .follow__top a:hover {
        background-color: var(--primary-black, #000);
        color: var(--primary-white, #fff);
    }

    .timedShow {
        opacity: 0;
        visibility: hidden;
        transition: 3s ease;
        transition-delay: 1s;
    }

    .timedShow.is-show {
        opacity: 1;
        visibility: visible;
    }

    .follow__top.timedShow.active3 {
        opacity: 1;
        visibility: visible;
        transform: translate(0, 0);
    }

    .follow__pcbtn {
        position: fixed;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }

    .follow__pcbtn a {
        width: 58px;
        height: 257px;
        writing-mode: vertical-rl;
        padding: 62px 17px 30px;
        border-radius: 8px 0 0 8px;
        background-color: var(--primary-blue);
        border: 0;
        color: var(--primary-white);
        font-size: 1.6rem;
        font-weight: 600;
        min-width: 0;
    }

    .follow__pcbtn a::after {
        content: '';
        display: inline-block;
        width: 22px;
        height: 22px;
        background-image: url(../images/icon_shinai.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        left: 50%;
        right: inherit;
        top: 30px;
        transform: translateX(-50%);
    }

    .follow__pcbtn a:hover:after {
        background-image: url(../images/icon_shinai.png);

    }

    .follow__pcbtn.timedShowRight {
        opacity: 0;
        visibility: hidden;
        transition: 3s ease;
        transform: translate(60px, -50%);
    }

    .follow__pcbtn.timedShowRight.is-show {
        opacity: 1;
        visibility: visible;
        transform: translate(0, -50%);
    }

    .follow__pcbtn.active3 {
        opacity: 1;
        visibility: visible;
        transform: translate(0, -50%);
    }

}

/* pc 769px */