@charset "utf-8";
:root{
    --gold: #FEE488;
    --brown: #AA8B39;
    --white: #fff;
    --black: #000;
    --gray: #8A8A8A;
    --font: #333;
    --blue: #1850C9;
    --red: #C91818;
}
html {
    font-size: 62.5%;
}
body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
}
.loading_bg {
    position: fixed;
    z-index: 999;
    width: 200vw;
    height: 200vh;
    margin: auto;
    background-color: #000000;
    animation: loading_bg 3.8s forwards;
}
.loading_logo {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    animation: loading_logo 3.0s forwards;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.loading_logo::before {
    content: '';
    position: absolute;
    top: 12%;
    left: 0;
    bottom: 0;
    margin: auto;
    background-color: #CCCCCC;
    height: 1px;
    animation: loading_mater 2.0s forwards;
}
p {
    word-break: break-all;
}
input::placeholder {
	color: #383838
}

@media (min-width: 768px) {
    /* --------------------------common */
    body {
        font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
        font-weight: 500;
        line-height: 1.5;
        font-size: 16px;
        letter-spacing: 1px;
        color: #FFFFFF;
        background: #000000;
        -webkit-text-size-adjust: 100%;
        -webkit-font-smoothing: antialiased;
    }
    a {
        text-decoration: none;
        color: #FFFFFF;
    }
    .pcno {
        display: none !important;
    }
    #menu_button {
        display: none;
    }
    /* --------------------------loadingr */
    .loading_logo img {
        width: 15%;
    }
    /* --------------------------Header */
    #header {
        width: 100%;
        z-index: 100;
        color: #FFFFFF;
        overflow: hidden;
        position: fixed;
        top: 0;
        background: #000;
        /*background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.00) 100%);*/
    }
    #header .inner {
        width: 100%;
        min-width: 900px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: 'Heebo', sans-serif;
        height: 80px;
    }
    #header .inner .logo {
        width: 160px;
        padding-left: 20px;
    }
    #header .inner .logo a {
        display: block;
        text-align: center;
        transition: 0.2s linear;
    }
    #header .inner .logo a:hover {
        opacity: 0.8;
    }
    #header .inner .logo a span {
        display: block;
        font-size: 11px;
        padding-top: 5px;
        font-weight: 400;
    }
    #header .inner nav .menu {
        display: flex;
        justify-content: space-between;
    }
    #header .inner nav .menu li {
        display: inline-block;
        font-size: 14px;
        line-height: 1;
    }
    #header .inner nav .menu li a {
        display: block;
        padding: 0 14px;
        line-height: 80px;
        position: relative;
    }
    @media screen and (max-width:980px) {
        #header .inner nav .menu li a {
            padding: 0 8px;
        }
    }
    #header .inner nav .menu li a.ac::after {
        border-bottom: 1px solid #FFFFFF;
        display: block;
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
    }
    #header .inner nav .menu li a.ac:hover::after {
        animation: initial;
    }
    #header .inner nav .menu li a::after {
        border-bottom: 1px solid #FFFFFF;
        display: block;
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 0%;
    }
    #header .inner nav .menu li a:hover::after {
        animation: navline .4s ease 0s forwards;
    }
    #header .inner nav .menu li.fc a::after {
       border-bottom: none; 
    }
    #header .inner nav .menu li.fc a {
        display: block;
        padding: 0 14px;
        background-image: linear-gradient(-45deg, #DBC8A1, #917438, #BCA26C, #A08145);
        background-size: 200% 200%;
        margin-left: 12px;
        border-radius: 12px;
        line-height: 24px;
        position: relative;
        top: 27px;
        padding-top: 1px;
    }
    #header .inner .sns {
        padding-right: 14px;
        padding-top: 5px;
    }
    #header .inner .sns ul {
        display: flex;
        justify-content: space-between;
    }
    #header .inner .sns ul li {
        display: inline-block;
    }
    #header .inner .sns ul li a {
        display: block;
        padding: 0 4px;
    }
    #header .inner .sns ul li a svg {
        width: 20px;
        height: 20px;
        fill: #FFF;
        transition: 0.2s linear;
    }
    #header .inner .sns ul li a:hover svg {
        fill: #FFF;
    }
    #header_sp {
        display: none;
    }
    #header_login {
        background: linear-gradient(-30deg, #BCA16B 0%, #C1A773 50%, #A3813C 70%, #A9894A 100%);
        padding: 13px 0;
    }
    #header_login .logo {
        font-family: 'Oswald', sans-serif;
        font-weight: 400;
        font-size: 24px;
        line-height: 1.3;
        text-align: center;
        letter-spacing: 0.5px;
        z-index: 999;
    }
    #header_login .logo span {
        font-size: 12px;
        display: block;
        font-family: 'Heebo', sans-serif;
    }
    #fc_header {
        width: 100%;
        z-index: 100;
        color: #FFFFFF;
        background: linear-gradient(-30deg, #BCA16B 0%, #C1A773 50%, #A3813C 70%, #A9894A 100%);
        position: fixed;
        top: 0;
    }
    #fc_header .inner {
        width: 100%;
        min-width: 900px;
        height: 80px;
        padding: 0 20px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #fc_header .inner .logo {
        font-family: 'Oswald', sans-serif;
        font-weight: 400;
        font-size: 24px;
        line-height: 1.4;
        text-align: center;
        letter-spacing: 0.5px;
    }
    #fc_header .inner .logo a {
        display: inline-block;
        text-align: center;
    }
    #fc_header .inner .logo span {
        font-size: 15px;
        display: block;
        font-family: 'Heebo', sans-serif;
    }
    #fc_header .inner .logout {
        background-color: #FFFFFF;
        border-radius: 12px;
        line-height: 22px;
        color: #A68543;
        font-family: 'Heebo', sans-serif;
        font-weight: 500;
        font-size: 14px;
        width: 90px;
        display: block;
        text-align: center;
        padding-top: 1px;
        position: absolute;
        right: 20px;
        top: 28px;
    }
    /*#fc_header .inner {
        width: 100%;
        min-width: 900px;
        height: 80px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
    }
    #fc_header .inner .logo {
        font-family: 'Oswald', sans-serif;
        font-weight: 400;
        font-size: 24px;
        line-height: 1.4;
        text-align: center;
        letter-spacing: 0.5px;
    }
    #fc_header .inner .logo a {
        display: block;
    }
    #fc_header .inner .logo span {
        font-size: 15px;
        display: block;
        font-family: 'Heebo', sans-serif;
    }
    #fc_header .inner .menu {
        text-align: center;
        padding-top: 2px;
    }
    #fc_header .inner .menu li {
        display: inline-block;
        font-size: 13px;
        line-height: 1;
    }
    #fc_header .inner .menu li a {
        display: block;
        padding: 0 15px;
        line-height: 70px;
        position: relative;
        font-weight: 500;
    }
    #fc_header .inner .login a {
        background-color: #FFFFFF;
        border-radius: 12px;
        line-height: 22px;
        color: #A68543;
        font-family: 'Heebo', sans-serif;
        font-weight: 500;
        font-size: 14px;
        width: 90px;
        display: block;
        text-align: center;
        padding-top: 1px;
    }*/
    /* --------------------------Footer */
    #footer {
        background: #000000;
        color: #FFFFFF;
        width: 100%;
        min-width: 980px;
        display: flex;
        justify-content: space-between;
    }
    #footer .logo_area {
        background-color: #000000;
        width: 250px;
        min-height: 250px;
        font-family: 'Heebo', sans-serif;
        position: relative;
    }
    #footer .logo_area a {
        display: block;
        width: 78%;
        text-align: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    #footer .logo_area a .name {
        font-size: 14px;
        padding-top: 8px;
    }
    #footer .logo_area a .official {
        font-size: 11px;
    }
    #footer .logo_area a:hover {
        opacity: 0.8;
    }
    
    #footer .menu_area {
        background-color: #222222;
        width: calc(100% - 350px);
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 40px;
    }
    #footer .menu_area .blk {
        width: auto;
    }
    #footer .menu_area .blk.pt {
        padding-top: 39px;
    }
    
    #footer .menu_area .blk .btn {
        margin-bottom: 15px;
    }
    #footer .menu_area .blk .btn a {
        display: block;
        line-height: 36px;
        background-image: linear-gradient(-45deg, #DBC8A1, #917438, #BCA26C, #A08145);
        background-size: 200% 200%;
        text-align: center;
        font-family: 'Heebo', sans-serif;
        font-weight: 500;
        font-size: 14px;
    }
	.btn input,.btn a {
        display: block;
		width: 300px;
		text-align:center;
		line-height: 36px;
        background-image: linear-gradient(-45deg, #DBC8A1, #917438, #BCA26C, #A08145);
        background-size: 200% 200%;
        text-align: center;
        font-family: 'Heebo', sans-serif;
        font-weight: 500;
        font-size: 16px;
		margin: auto auto 5px auto;
		color: #fff;
		padding: 5px 0;
    }

	.btn input:hover,.btn a:hover {
		opacity: 0.5;
}


    #footer .menu_area .blk .ttl {
        font-family: 'Heebo', sans-serif;
        font-weight: 500;
        font-size: 16px;
        padding-bottom: 15px;
        color: #CCCCCC;
    }
    #footer .menu_area .nav li {
        font-family: 'Heebo', sans-serif;
        font-weight: 400;
        font-size: 13px;
        margin-bottom: 15px;
    }
    #footer .menu_area .nav li a {
        display: block;
        position: relative;
        padding-left: 30px;
        line-height: 1;
        color: #CCCCCC;
    }
    #footer .menu_area .nav li a::after {
        content: "";
        position: absolute;
        width: 20px;
        height: 1px;
        top: 50%;
        left: 0px;
        border-top: 1px solid #666666;
        transition: 0.3s linear;
    }
    #footer .menu_area .nav li a:hover {
        color: #FFFFFF;
    }
    #footer .menu_area .nav li a:hover::after {
        left: -5px;
        border-top: 1px solid #FFFFFF;
    }
    #footer .menu_area .sns {
        padding-top: 15px;
    }
    #footer .menu_area .sns li {
        display: inline-block;
        margin-right: 10px;
    }
    #footer .menu_area .sns li a {
        display: block;
        position: relative;
    }
    #footer .menu_area .sns li a svg {
        width: 22px;
        height: 22px;
        transition: 0.2s linear;
        fill: #999999;
    }
    #footer .menu_area .sns li a:hover svg {
        fill: #FFFFFF;
    }
    
    #footer .menu_area address {
        font-size: 11px;
        color: #666666;
        font-style: normal;
        text-align: right;
    }
    #footer .pagetop {
        display: block;
        width: 100px;
        position: relative;
        z-index: 0;
    }
    
    #footer .pagetop::before {
        display: block;
        content: "";
        position: absolute;
        width: 100%;
        height: 0%;
        bottom: 0;
        z-index: -1;
        transition: all 0.5s ease;
        background: #111;
    }
    #footer .pagetop:hover::before {
        height: 100%;
    }
    #footer .pagetop svg {
        width: 14px;
        height: 80px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.5s ease;
    }
    #footer .pagetop:hover svg {
        top: 40%;
    }
    #footer .copyright {
        width: 100% !important;
        padding-top: 20px;
    }
    @media screen and (max-width:1020px) {
        #footer .menu_area .blk.last {
            padding-top: 20px;
            width: 100%;
        }
        #footer .menu_area .blk .btn {
            margin-bottom: 15px;
        }
        #footer .menu_area .sns {
            display: block;
            text-align: center;
        }
        #footer .menu_area .sns li {
            text-align: center;
            margin: 0 5px;
        }
        #footer .menu_area address {
            text-align: center;
        }
    }
    .share_btns li {
        display: inline-block;
        margin-right: 10px;
    }
    .share_btns li a {
        font-family: 'Heebo', sans-serif;
        font-weight: 400;
        font-size: 13px;
        background-color: #000000;
        display: block;
        padding: 3px 0 4px;
        border-radius: 2px;
        transition: 0.3s linear;
        width: 96px;
        text-align: center;
    }
    .share_btns li a:hover {
        background-color: #222222;
    }
    .share_btns li a svg {
        width: 16px;
        height: 16px;
        fill: #FFFFFF;
        margin-right: 8px;
        position: relative;
        top: 3px;
    }
    .btn_back {
        text-align: right;
        padding-right: 5%;
        padding-bottom: 40px;
    }
    .btn_back a {
        display: inline-block;
        font-family: 'Heebo', sans-serif;
        font-weight: 500;
        font-size: 16px;
        line-height: 30px;
    }
    .btn_back a svg {
        fill: #FFFFFF;
        width: 30px;
        height: 10px;
        transition: 0.2s linear;
        transform: scale(-1, 1);
        margin-right: 10px;
    }
}
@media screen and (max-width:767px) {
    body {
        font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
        font-weight: 500;
        line-height: 1.5;
        font-size: 16px;
        color: #FFFFFF;
    }
    a {
        text-decoration: none;
        /*transition-property: all;
        transition: 0.3s linear;*/
    }
    .spno {
        display: none !important;
    }
    /* --------------------------loadingr */
    .loading_logo img {
        width: 32%;
    }
    #menu_button {
        display: block;
        width: 60px;
        height: 60px;
        position: fixed;
        top: 0px;
        right: 0px;
        z-index: 990;
        background: #000;
    }
    #menu_button.fc {
        background: linear-gradient(-30deg, #BCA16B 0%, #C1A773 50%, #A3813C 70%, #A9894A 100%);
    }
    #menu_button.fc.active {
        background: initial;
    }
    #menu_button span {
        display: block;
        background-color: #FFF;
        width: 24px;
        height: 2px;
        position: absolute;
        left: 18px;
        transition: all 0.4s;
    }
    #menu_button span:first-child {
        top: 18px;
    }
    #menu_button span:nth-child(2) {
        margin-top: -1px;
        top: 50%;
    }
    #menu_button span:last-child {
        bottom: 18px;
    }
    #menu_button.active span:first-child {
        transform: translateY(11px) rotate(45deg);
        background-color: #FFF;
    }
    #menu_button.active span:nth-child(2) {
        opacity: 0;
    }
    #menu_button.active span:last-child {
        transform: translateY(-11px) rotate(-45deg);
        background-color: #FFF;
    }
    /* --------------------------Header */
    #header_sp {
        background-color: #000000;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 800;
        height: 60px;
    }
    #header_sp .logo {
        padding-left: 3%;
        padding-top: 7px;
    }
    #header_sp .logo a img {
        height: 30px;
        margin-bottom: 3px;
    }
    #header_sp .logo a span {
        font-size: 2.3vw;
        font-family: 'Heebo', sans-serif;
        display: block;
    }
    #header {
        position: fixed;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        z-index: 900;
        display: none;
        padding: 30px 10%;
        text-align: center;
        top: 60px;
    }
    #header.toppage {
        top: 0;
        padding: 90px 12% 30px;
    }
    #header .inner {
        width: 100%;
        font-family: 'Heebo', sans-serif;
    }
    #header .inner .logo {
        width: 50%;
        margin: 0 auto 20px;
        display: none;
    }
    #header .inner .logo a {
        display: block;
        text-align: center;
        transition: 0.2s linear;
    }
    #header .inner .logo a span {
        display: block;
        font-size: 2.6vw;
        padding-top: 6px;
        font-weight: 400;
        color: #FFFFFF;
    }
    #header .inner nav .menu {
        margin-bottom: 30px;
    }
    #header .inner nav .menu li {
        display: block;
        font-size: 3.6vw;
        margin-bottom: 10px;
    }
    #header .inner nav .menu li a {
        display: block;
        line-height: 5vh;
        position: relative;
        color: #FFFFFF;
        border: 1px solid rgba(255, 255, 255, 0.60);
        padding-top: 2px;
        background-color: #111111;
    }
    #header .inner nav .menu li.fc a {
        display: block;
        line-height: 5vh;
        position: relative;
        color: #FFFFFF;
        border: none;
        background-image: linear-gradient(-45deg, #DBC8A1, #917438, #BCA26C, #A08145);
        background-size: 200% 200%;
    }
    #header .inner nav .menu li a:after {
        display: block;
        content: '';
        position: absolute;
        top: 50%;
        width: 8px;
        height: 8px;
        border-right: 2px solid #FFFFFF;
        border-bottom: 2px solid #FFFFFF;
        transform: rotate(-45deg);
        margin-top: -4px;
        right: 15px;
    }
    #header .inner .sns {
        padding-top: 5px;
        width: 90%;
        margin: 0 auto;
    }
    #header .inner .sns ul {
        text-align: center;
    }
    #header .inner .sns ul li {
        display: inline-block;
    }
    #header .inner .sns ul li a {
        display: block;
        padding: 0 4px;
    }
    #header .inner .sns ul li a svg {
        width: 24px;
        height: 24px;
        fill: #FFF;
    }
    #header_login {
        background: linear-gradient(-30deg, #BCA16B 0%, #C1A773 50%, #A3813C 70%, #A9894A 100%);
        padding: 7px 0;
    }
    #header_login .logo {
        font-family: 'Oswald', sans-serif;
        font-weight: 400;
        font-size: 24px;
        line-height: 1.3;
        text-align: center;
        z-index: 999;
    }
    #header_login .logo span {
        font-size: 12px;
        display: block;
        font-family: 'Heebo', sans-serif;
    }
    #fc_header {
        width: 100%;
        height: 100vh;
        z-index: 100;
        color: #FFFFFF;
        background: linear-gradient(-30deg, #BCA16B 0%, #C1A773 50%, #A3813C 70%, #A9894A 100%);
        display: none;
        position: fixed;
        top: 0;
        left: 0;
    }
    #fc_header .inner {
        width: 100%;
        padding: 60px 6%;
    }
    #fc_header .inner .logo {
        margin-bottom: 30px;
        font-family: 'Oswald', sans-serif;
        font-weight: 400;
        font-size: 5.4vw;
        line-height: 1.4;
        text-align: center;
        letter-spacing: 0.5px;
        top: 12px;
        z-index: 999;
    }
    #fc_header .inner .logo span {
        font-size: 2.8vw;
        display: block;
        font-family: 'Heebo', sans-serif;
    }
    #fc_header.login {
        height: 72px;
        display: block !important;
    }
    #fc_header.login .inner {
        padding: 0 !important;
    }
    #fc_header.login .inner .logo {
        padding-left: 0;
        margin: 0 auto;
        position: relative;
        top: 12px;
    }
    #fc_header .inner .menu {
        text-align: center;
        padding-top: 2px;
    }
    #fc_header .inner .menu li {
        font-size: 3.2vw;
        line-height: 1;
        margin-bottom: 15px;
    }
    #fc_header .inner .menu li a {
        display: block;
        padding: 0 15px;
        line-height: 50px;
        position: relative;
        font-weight: 500;
        border: 1px solid #FFFFFF;
    }
    #fc_header .inner .logout {
        background-color: #FFFFFF;
        color: #A68543;
        font-family: 'Heebo', sans-serif;
        font-weight: 500;
        font-size: 3.2vw;
        display: block;
        text-align: center;
        line-height: 50px;
    }
    #fc_header .inner .login a {
        background-color: #FFFFFF;
        color: #A68543;
        font-family: 'Heebo', sans-serif;
        font-weight: 500;
        font-size: 3.2vw;
        display: block;
        text-align: center;
        line-height: 50px;
    }
    #fc_header .inner .sub_menu {
        text-align: center;
        padding-top: 25px;
    }
    #fc_header .inner .sub_menu li a {
        text-decoration: underline;
        font-size: 3.2vw;
    }
    /* --------------------------Footer */
    #footer {
        background: #000000;
        color: #FFFFFF;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        position: relative;
    }
    #footer .logo_area {
        background-color: #000000;
        width: 100%;
        font-family: 'Heebo', sans-serif;
        position: relative;
        padding: 20px 10%;
    }
    #footer .logo_area a {
        display: block;
        text-align: center;
    
    pointer-events: none;
    }
    #footer .logo_area a img {
        width: 50%;
    }
    #footer .logo_area a .name {
        font-size: 3.4vw;
        padding-top: 8px;
    }
    #footer .logo_area a .official {
        font-size: 2.8vw;
    }
    #footer .menu_area {
        background-color: #000000;
        /*display: flex;
        flex-wrap: wrap;
        justify-content: space-between;*/
        padding: 0 5%;
        width: 100%;
    }
    #footer .menu_area .blk {
        width: auto;
    }
    #footer .menu_area .blk.pt {
        padding-bottom: 10px;
    }
    #footer .menu_area .blk.last {
        padding-top: 10px;
    }
    #footer .menu_area .blk .btn {
        margin-bottom: 20px;
    }
    #footer .menu_area .blk .btn a {
        display: block;
        line-height: 40px;
        background-image: linear-gradient(-45deg, #DBC8A1, #917438, #BCA26C, #A08145);
        background-size: 200% 200%;
        text-align: center;
        font-family: 'Heebo', sans-serif;
        font-weight: 500;
        font-size: 3.6vw;
        padding-top: 2px;
    }
    #footer .menu_area .blk .ttl {
        font-family: 'Heebo', sans-serif;
        font-weight: 500;
        font-size: 4.2vw;
        padding-bottom: 15px;
        color: #CCCCCC;
    }
    #footer .menu_area .nav {
        display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    }
    #footer .menu_area .nav li {
        width: 50%;
        font-family: 'Heebo', sans-serif;
        font-weight: 400;
        font-size: 3.4vw;
        margin-bottom: 15px;
    }
    #footer .menu_area .nav li a {
        display: block;
        position: relative;
        padding-left: 30px;
        line-height: 1;
        color: #CCCCCC;
    }
    #footer .menu_area .nav li a::after {
        content: "";
        position: absolute;
        width: 20px;
        height: 1px;
        top: 50%;
        left: 0px;
        border-top: 1px solid #666666;
        transition: 0.3s linear;
    }
    #footer .menu_area .sns {
        text-align: center;
        padding-top: 10px;
    }
    #footer .menu_area .sns li {
        display: inline-block;
        margin: 4px;
    }
    #footer .menu_area .sns li a {
        display: block;
        position: relative;
    }
    #footer .menu_area .sns li a svg {
        width: 20px;
        height: 20px;
        transition: 0.2s linear;
        fill: #999999;
    }
    #footer .menu_area .sns li a:hover svg {
        fill: #FFFFFF;
    }
    
    #footer .menu_area address {
        font-size: 3vw;
        color: #666666;
        font-style: normal;
        text-align: center;
    }
    #footer .pagetop {
        display: block;
        width: 15%;
        position: absolute;
        z-index: 0;
        right: 0;
        top: 5px;
    }
    
    #footer .pagetop::before {
        display: block;
        content: "";
        position: absolute;
        width: 100%;
        height: 0%;
        bottom: 0;
        z-index: -1;
        transition: all 0.5s ease;
        background: #111;
    }
    #footer .pagetop svg {
        width: 12px;
        height: 60px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.5s ease;
    }
    #footer .pagetop:hover svg {
        top: 40%;
    }
    #footer .copyright {
        width: 100% !important;
        padding: 20px 5% 40px;
    }
    .share_btns {
        display: flex;
        justify-content: space-between;
    }
    .share_btns li {
        width: 31%;
    }
    .share_btns li a {
        font-family: 'Heebo', sans-serif;
        font-weight: 400;
        font-size: 2.4vw;
        background-color: #000000;
        display: block;
        padding: 6px 0 2px;
        border-radius: 2px;
        text-align: center;
    }
    .share_btns li a svg {
        width: 14px;
        height: 14px;
        fill: #FFFFFF;
        display: block;
        margin: 0 auto 2px;
    }
    .btn_back {
        text-align: right;
        padding-right: 5%;
        padding-bottom: 45px;
    }
    .btn_back a {
        display: inline-block;
        font-family: 'Heebo', sans-serif;
        font-weight: 500;
        font-size: 16px;
        line-height: 30px;
    }
    .btn_back a svg {
        fill: #FFFFFF;
        width: 30px;
        height: 10px;
        transition: 0.2s linear;
        transform: scale(-1, 1);
        margin-right: 10px;
    }
}
.sa {
    opacity: 0;
    transition: all .8s ease;
}
.sa.show {
    opacity: 1;
    transform: none;
}
.sa--lr {
    transform: translate(-80px, 0);
}
.sa--rl {
    transform: translate(80px, 0);
}
.sa--up {
    transform: translate(0, 80px);
}
.sa--down {
    transform: translate(0, -80px);
}
.sa--scaleUp {
    transform: scale(.5);
}
.sa--scaleDown {
    transform: scale(1.5);
}
.sa--rotateL {
    transform: rotate(180deg);
}
.sa--rotateR {
    transform: rotate(-180deg);
}
/*ページ表示フェードイン*/
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/*FAN CLUBボタン*/
@keyframes gradient {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}
@keyframes byeShutter {
    70% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        display: none;
        z-index: -1;
    }
}
@keyframes shutterOpen {
    0% {
        width: 0;
        height: 1px;
    }
    50% {
        width: 100%;
        height: 1px;
    }
    90% {
        width: 100%;
        height: 100%;
    }
    100% {
        width: 100%;
        height: 100%;
    }
}
@keyframes loading {
    40% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        display: none;
        z-index: -1;
    }
}
@keyframes loading_bg {
    50% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
        display: none;
    }
}
@keyframes loading_logo {
    70% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-100%);
        display: none;
        opacity: 0;
    }
}
@keyframes loading_mater {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}
@keyframes navline {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}
/* フォーム関連 */
.input_txt {
    line-height: 42px;
    border: 1px solid #CCCCCC;
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    background-color: #FFFFFF;
}
@media screen and (max-width:767px) {
    .input_txt {
        line-height: 46px;
        font-size: 16px;
    }
}
.input_txtarea {
    border: 1px solid #CCCCCC;
    font-size: 14px;
    color: #333;
    padding: 10px;
    width: 100%;
    background-color: #FFFFFF;
}
span.required {
    background-color: #E25066;
    color: #FFFFFF;
    padding: 0 10px;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    display: inline-block;
    margin-right: 10px;
}
.select-wrap {
    position: relative;
    display: block;
}
.select-wrap::before {
    content: '';
    position: absolute;
    z-index: 2;
    top: 20px;
    right: 15px;
    line-height: 1;
    border: 4px solid transparent;
    border-left: 6px solid #656B72;
    transform: rotate(90deg);
}
.select-wrap select {
    z-index: 1;
    display: block;
    padding: 0 14px;
    line-height: 40px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #CCCCCC;
    width: 100%;
    position: relative;
    cursor: pointer;
}
.err_bg {
    background-color: #FFE6E6 !important;
}
input[type=radio], input[type=checkbox] {
    display: inline-block;
    margin-right: 6px;
}
input[type=radio] + span, input[type=radio] + label, input[type=checkbox] + span, input[type=checkbox] + label {
    position: relative;
    display: inline-block;
    margin-right: 12px;
    font-size: 14px;
    cursor: pointer;
}
input[type=radio], input[type=checkbox] {
    display: none;
    margin: 0;
}
input[type=radio] + span, input[type=radio] + label, input[type=checkbox] + label {
    padding: 0 0 0 24px;
}
input[type=radio] + span::before, input[type=radio] + label::before, input[type=checkbox] + span::before, input[type=checkbox] + label::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    box-sizing: border-box;
    display: block;
    width: 18px;
    height: 18px;
    background: #FFF;
}
input[type=radio] + span::before, input[type=radio] + label::before {
    border: 2px solid #ccc;
    border-radius: 30px;
}
input[type=checkbox] + span::before, input[type=checkbox] + label::before {
    border: 2px solid #ccc;
}
input[type=radio]:checked + span::after, input[type=radio]:checked + label::after, input[type=checkbox]:checked + span::after, input[type=checkbox]:checked + label::after {
    content: "";
    position: absolute;
    top: 50%;
    box-sizing: border-box;
    display: block;
}
input[type=radio]:checked + span::after, input[type=radio]:checked + label::after {
    left: 4px;
    width: 10px;
    height: 10px;
    margin-top: -5.5px;
    background: #3767A8;
    border-radius: 5px;
}
input[type=checkbox]:checked + span::after, input[type=checkbox]:checked + label::after {
    left: 3px;
    width: 16px;
    height: 8px;
    margin-top: -8px;
    border-left: 3px solid #3767A8;
    border-bottom: 3px solid #3767A8;
    transform: rotate(-45deg);
}

.gray_frame_right {
	margin-bottom: 20px;
}

.gray_frame_right span {
	padding-left: 25px;
}

.memberNinput {
	margin-bottom: 10px;
}

.t-center {
	text-align: center;
}

.war_red {
	padding: 20px 30px;
	border: 1px solid #ff7e90;
	margin: 15px auto;
}

.gray_frame_in {
	padding-top: 30px;
}

.ttl2 {
	text-decoration: underline;
}

.news_box .post_text .bt_style2 {
	font-size: 14px;
}

.mt20 {
	margin-top: 20px;
}

.mypage_menu {
	margin-bottom: 50px;
}

.mypage_menu ul {
	display: flex;
	justify-content:space-between;
}
.mypage_menu li {
	width: 23%;
	text-align: center;
	padding-top: 40px;
}

.mypage_menu div {
	display: table-cell;
	vertical-align: middle;
}

.mypage_menu a {
	display: table;
	width: 100%;
	background: #999999;
	border-radius: 8px;
	padding: 15px 10px 10px 10px;
	text-align: center;
	height: 120px;
	font-size: 13px;
}

.mypage_data_in {
	border-collapse: separate;
	border-spacing: 10px;
	margin-top: 20px;
}
@media screen and (max-width:767px) {
    .mypage_data_in {
        border-spacing: 0px;
    }   
}

.mypage_data_in th {
	width: 35%;
	background: #000;
	padding: 20px 15px;
	box-sizing: border-box;
}

.mypage_data_in td {
	width: 75%;
	padding: 10px;
	margin-bottom: 5px;
}


.mypage_menu img {
	width: 35px;
	text-align: center;
	margin-bottom: 10px;
}

.mypage_menu span {
	display: block;
}

#member-table {
	border-collapse: separate;
	border-spacing:0 10px;
}

#member-table th {
	background: #000;
	padding: 15px;
	width: 200px;
}

#member-table td {
	padding: 15px;
}

#member-table input[type=text],#member-table input[type=password],.mailarea input[type=text],.mailmaga-form input[type=password] {
	background: #ccc;
	padding: 10px;
}

.mailmaga-form li {
	display: flex;
	margin-bottom: 10px;
}

.mailmaga-form input[type=password] {
	width: 70%;
}

.mailmaga-form label {
	width: 30%;
	display: block;
}

.mailmaga-form {
	padding-bottom: 30px;
}

.new_pass {
	padding-top: 50px;
	padding-bottom: 30px;
	font-size: 16px;
}

.new_pass span {
	font-size: 13px;
}

#member-table select {
	background: #ccc;
	padding: 10px;
	margin-bottom: 10px;
}

.fogmail input[type=text] {
	background: #ccc;
	padding: 10px;
	width: 65%;
	margin-bottom: 10px;
}

#member-table .no-border {
	padding: 0;
}

.mailarea2 {
	padding-bottom: 20px;
}
.red {
	color: #ff7e90;
	font-weight: bold;
}

.pass_retype {
	margin-bottom: 30px;
}

.pass_retype th {
	width: 30%;
	padding: 10px;
	box-sizing: border-box;
}
.pass_retype td {
	width: 70%;
	padding: 10px;
	box-sizing: border-box;
}

.btn2 a {
	display: block;
	text-align:center;
	line-height: 36px;
	background-image: linear-gradient(-45deg, #DBC8A1, #917438, #BCA26C, #A08145);
	background-size: 200% 200%;
	text-align: center;
	font-family: 'Heebo', sans-serif;
	font-weight: 500;
	font-size: 16px;
	margin: auto auto 5px auto;
	color: #fff;
	padding: 5px 40px;
}

.agree {
	width: 100% !important;
	height: 600px;
	overflow: auto;
}

.mt15 {
	margin-top: 15px;
}

.pankuzu {
	font-size: 13px;
}

.pankuzu_pan {
	font-size: 14px;
	color: #DBC8A1;
	font-weight: bold;
	margin: 0 5px;
}

.pc-none {
	display: none;
}

.redframe {
	border: 2px solid #cf1717;
	padding: 15px 10px 10px 10px;
	border-radius: 5px;
	margin-bottom: 10px;
}

.redframe-text {
	color: #000;
	text-align: center;
	font-size: 15px;
	margin-bottom: 10px;
	font-weight: bold;
}

.fanclub_fv .in .r_wrap .logo {
	padding-top: 4% !important;
}

.fanclub_fv .in .r_wrap .login_btn {
	font-size: 14px;
}
.list_news_fc2 {
    margin-bottom: 60px;
}
.list_news_fc2 li {
    margin-bottom: 15px;
    display: block;
    background-color: #FFFFFF;
    position: relative;
    padding: 20px;
    color: #000000;
    box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
}
.list_news_fc2 li .update {
    color: #8A8A8A;
    font-size: 14px;
    font-family: 'Heebo', sans-serif;
    font-weight: 400;
    margin-bottom: 8px;
}
.list_news_fc2 li .update .mrk {
    background-color: #C91818;
    color: #FFFFFF;
    font-family: 'Heebo', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    width: 54px;
    text-align: center;
    display: inline-block;
    margin-right: 10px;
    position: relative;
    top: -1px;
}
.list_news_fc2 li .ttl {
    font-weight: 700;
}
.list_news_fc2 li svg {
    fill: #666666;
    width: 30px;
    height: 10px;
    position: absolute;
    top: 50%;
    margin-top: -4px;
    right: 25px;
    transition: 0.2s linear;
}
.list_news_fc2 li a:hover svg {
    right: 15px;
}

.target{position: relative;}
.target a{
display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

.title03-2 {
	margin-bottom: 20px;
}

.mini-rn {
	font-size: 12px;
	color: #000;
	width: 70%;
	margin: 0 auto;
}

.rn-flow {
	text-align: center;
	font-size: 13px;
	margin-bottom: 25px;
}

.rn-flow a:link,.rn-flow a:hover {
	color: #000;
	text-decoration: underline;
}

.rn-flow a:visited,.rn-flow a:active {
	color: #999999;
	text-decoration: underline;
}