* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
html, body {
    color: #3f3f3f;
    font-family: 'Noto Sans JP', sans-serif;
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
}
a{
    text-decoration: none;
}
a, a:hover, a:visited, a:active {
    color: #3f3f3f;
}

#wrap {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
#menu {
    background-color: white;
    text-align: center;
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 5;
    transform: translate(0px, -100vh);
    transition: transform 0.5s cubic-bezier(0.0, 0.7, 0.5, 1.0);
}
#menu.visible {
    transform: translate(0px, 0px);
    transition: transform 0.5s cubic-bezier(0.0, 0.7, 0.5, 1.0);
}
#menu-wrap {
    overflow: auto;
}
#menu-header {
    background-size: cover;
    background-position: center;
}
#menu-header-layer {
    background-color: rgba(255, 255, 255, 0.5);
}
#menu-header h2 {
    font-size: 16px;
    font-weight: bold;
    padding-top: 15px;
}
#menu-header img {
    margin: 15px auto;
    width: 70vw;
    max-width: 300px;
}
#menu-title {
    margin: 20px;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
}
#menu-list {
    text-align: left;
    display: flex;
    flex-direction: column;
}
#menu-list .menu-list-item {
    border-top: 1px solid #ECEFF1;
    color: inherit;
    font-size: 18px;
    line-height: 54px;
    padding: 0px 40px 0px 40px;
    display: flex;
    flex-direction: row;
}
#menu-list .menu-list-item::after {
    content: '＞';
    color: #ECEFF1;
    margin: 0px 0px 0px auto;
    display: inline-block;
}
#menu-list .menu-list-item:last-child {
    border-bottom: 1px solid #ECEFF1;
}
#menu-button-wrap {
    margin: 25px 40px;
}
#menu-button-wrap .menu-button-contact {
    background-color: #FF65A6;
    border-radius: 7px;
    font-size: 20px;
    text-align: center;
    letter-spacing: 2px;
    box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.2);
}
.menu-button-docrequest {
    background-color: #7B23AE;
    border-radius: 7px;
    font-size: 20px;
    text-align: center;
    letter-spacing: 2px;
    box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 12px;
}
#menu-button-wrap .menu-button-contact a, .menu-button-docrequest a {
    color: white;
    line-height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#menu-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    pointer-events: none;
}
#menu-overlay-button {
    width: 50px;
    height: 50px;
    position: absolute;
    left: 20px;
    bottom: 20px;
    pointer-events: auto;
}
#menu-icon-wrap {
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    pointer-events: none;
    z-index: 4;
}
#menu-icon {
    width: 50px;
    height: 50px;
    position: absolute;
    left: 20px;
    bottom: 20px;
    pointer-events: auto;
}
#container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: auto;
}
#layer {
    width: 100%;
    height: 100%;
    position: fixed;
    pointer-events: none;
    z-index: 2;
}
#header {
    background-color: rgba(255, 255, 255, 0.8);
    min-height: 70px;
    max-height: 70px;
    display: flex;
    flex-direction: row;
    pointer-events: auto;
    align-items: center;
}
#header-logo {
    padding: 10px;
}
#header-logo img {
    height: 50px;
    margin: auto;
}
#header-caption {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin: auto auto auto 0px;
}
#header-button-wrap {
    line-height: 40px;
    margin: 0px 0px 0px auto;
    padding: 15px 20px;
    min-height: 70px;
    max-height: 70px;
    display: flex;
    flex-direction: row;
}
#tabs {
    width: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: absolute;
    top: 0px;
    left: 0px;
}
#purple-tab {
    background-color: #7B23AE;
}
#purple-tab:hover {
    background-color: #8D28C7;
}
#pink-tab {
    background-color: #FF65A6;
}
#pink-tab:hover {
    background-color: #FF80B5;
}
#main {
    position: relative;
}
#main section {
    position: relative;
}
#main section#intro {
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}
#intro_picture {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: center;

}
#intro_picture img {
    margin: auto;
}

#intro-wrap {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.5);
    background-attachment:fixed;
    height: 100vh;
    justify-content: center;
    position: relative;
}
#intro-inner {
    padding-top:60px;
    margin: 0px auto 0px;
    width: 100%;
    max-width: 900px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position:relative;
}
#intro-inner h2.intro-heading{
    font-size: 40px;
    margin: 50px 0px 50px;
    display: block;
}
#intro-inner h2 .br-sp{
    display:none;
}
@media screen and (max-width:900px) {
    #intro-inner h2.intro-heading{
        font-size: 25px;
        margin:25px 0px 25px;
    }
    #intro-inner h2 .br-sp{
        display:block;
    }
}
@media screen and (max-height:900px) {
    #intro-inner h2.intro-heading{
        margin: 30px 0px 30px;
        font-size: 35px;
    }
}

#intro-inner-content {
    margin: 0px auto;
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media screen and (max-height:900px) {
    #intro-inner-content{
        max-width: 650px;
    }
}
@media screen and (max-height:800px) {
    #intro-inner-content{
        max-width: 600px;
    }
}
#intro-inner-content h1{
    margin-bottom:1em;
    min-height: 0%;
}

#intro-inner-content img {
    margin: auto;
    max-width: 100%;
}
#intro-block-wrap {
    margin:1em 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

#intro-caption-wrap {
    text-align: left;
    padding: 0px 0px 0px 20px;
    margin-bottom:1em;
}
#intro-button {
    background-color: #0D7A4D;
}
#intro-button:hover {
    background-color: #10935D;
}
#intro-button,
.intro-button-paper,
.intro-button-contact {
    border-radius: 5px;
    font-size: 20px;
    line-height: 50px;
    margin: auto 0px;
    box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.2);
}
#intro-button a,
.intro-button-paper a,
.intro-button-contact a {
    color: white;
    display: block;
}
.intro-button-paper,
.intro-button-contact {
    display: none;
}
#bottom-button-wrap {
    text-align: center;
    display: none;
}
#intro-arrow-wrap {
    position:absolute;
    bottom:3%;
    left: 50%;
    transform: translate(-50%, 0);
}
@media screen and (max-height:750px) {
    #intro-arrow-wrap {
        display:none;
    }
}
#intro-arrow-center {
    min-width: 150px;
    max-width: 150px;
    min-height: 150px;
    max-height: 150px;
    position:relative;

}
.intro-arrow-text{
    position:absolute;
    top: 45%;
    left: 50%;
    width:150px;
}
@media screen and (max-height:900px) {
    #intro-arrow-center {
        min-width: 100px;
        max-width: 100px;
        min-height: 100px;
        max-height: 100px;
    }
}
@media screen and (max-height:900px) {
    #intro-arrow-center img {
        height: 100px;
    }
}
#intro-arrow-left, #intro-arrow-right {
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/*#intro-arrow-right {
    transform: translate(-70px, -20px);
} */
@media screen and (max-height:900px) {
    #intro-arrow-right {
        padding-top:1.3em;
        padding-left:1em;
        font-size:13px;
    }
}
#footer {
    width: 100%;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#footer-wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
#footer-wrap-left {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
#footer-wrap-right {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
#footer-wrap img {
    margin: 0px 10px;
    height: 50px;
}
#copyright {
    text-align: center;
    font-size: small;
    margin: 10px 0px 0px;
}
#small-caption-below {
    color: gray;
    text-align: right;
    font-size: 10px;
    margin: auto;
    width: 100%;
    max-width: 700px;
}
#pink-contact-button {
    background-color: #FF65A6;
    border-radius: 70px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 2px;
    box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.2);
}
#pink-contact-button:hover {
    background-color: #FF80B5;
}
#pink-contact-button a {
    color: white;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#regist-button {
    margin: 30px auto 0 auto;
    width: 100%;
    max-width: 700px;
}
#regist-button a {
    background-color: #FF9800;
    border-radius: 10px;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 2px;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.2);
}
#regist-button a:hover {
    background-color: #FFAC33;
}
#footer-anchor {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
#footer-anchor a {
    font-size: 14px;
    padding: 0px 20px;
    display: inline-block;
}
#footer-anchor a + a {
    border-left: 1px solid;
}
#overlay {
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10;
}
#overlay.visible {
    display: flex;
}
#overlay-image-wrap {
    margin: 10vh 10vw;
    max-width: 80vw;
    max-height: 80vh;
    user-select: none;
}
#overlay-image-wrap img {
    margin: auto;
    max-width: 100%;
    max-height: 100%;
}
#youtube-wrap {
    margin: auto;
    width: 100%;
    max-width: 700px;
}
#youtube-inner {
    width: 100%;
    padding-bottom: 56.25%;
    position: relative;
}
#youtube-inner iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
}

.vertical-tab {
    border-radius: 0px 5px 5px 0px;
    text-align: center;
    margin: 10px 0px;
}
.vertical-tab a {
    color: white;
    padding: 10px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    pointer-events: auto;
}
.header-label {
    text-align: center;
    min-width: 125px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.header-label + .header-label:before {
    content: ' ';
    background-color: #3f3f3f;
    border-radius: 2px;
    min-width: 2px;
    max-width: 2px;
    height: 30px;
    margin: 5px 0px;
    display: block;
}
.header-label + .header-label:after {
    content: ' ';
    background-color: transparent;
    min-width: 2px;
    max-width: 2px;
    margin: 5px 0px;
    display: block;
}
.header-label a {
    margin: 0px;
    width: 100%;
    display: block;
}
.header-label a:hover {
    color: #FF65A6;
}
.header-button {
    background-color: #0D7A4D;
    border-radius: 5px;
    text-align: center;
    min-width: 150px;
    max-width: 150px;
}
.header-button:hover {
    background-color: #10935D;
}
.header-button a {
    color: white;
    margin: 0px;
    padding: 0px 10px;
    width: 100%;
    display: block;
}
.intro-block {
    background-color: #464646;
    border-radius: 5px;
    color: white;
    font-size: 25px;
    font-weight: bold;
    line-height: 50px;
    text-align: center;
    width: 100%;
}
.intro-block-icon {
    background-image: url('./img/batsu.svg');
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin: auto 5px;
    min-width: 50px;
    max-width: 50px;
    min-height: 50px;
    max-height: 50px;
}
.intro-caption {
    font-size: 20px;
    font-weight: bold;
    list-style: circle;
    margin: 10px 0px;
}
@media screen and (max-height:800px) {
    .intro-caption {
        font-size: 18px;
    }
}
.top-height{
    min-height:100vh;
}
.section-white {
    background-image: url('./img/dot_blue.png');
    background-repeat: repeat;
    background-color: #FFF;
    background-position: left;
    background-size: 30px;
    padding: 80px 0px;
    overflow: hidden;
    position: relative;
}
.section-white:last-of-type{
    padding: 80px 0px 40px 0;
}
.section-white + .section-white {
    padding: 0px 0px 80px;
}
.section-white:last-child {
    padding: 0px 0px 30px;
}
.section-white.section-movie {
    padding: 40px 0px 0px;
}
.section-blue {
    background: #3A48A2;
    background: linear-gradient(#3A48A2, #4B64FF);
    color: white;
}
.section-blue-inner {
    background-image: url('./img/dot_white.png');
    background-repeat: repeat;
    background-position: left;
    background-size: 30px;
    padding: 60px 0px 30px;
    overflow: hidden;
    position: relative;
}
.section-white h3 {
    font-size: 30px;
    text-align: center;
    margin: 0px 0px 40px;
}
.section-blue h3 {
    font-size: 30px;
    text-align: center;
    margin: 0px 0px 10px;
}
.section-wrap {
    display: flex;
    flex-direction: row;
    position: relative;
    overflow: hidden;
}
.side-left, .side-right {
    width: 100%;
}
.content-center {
    margin: auto;
    padding: 30px 100px;
    width: 100%;
    min-width: 900px;
    position: relative;
    overflow: visible;
}
.content-center-icon-wrap {
    margin: 0px 0px 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.content-center-icon {
    margin: auto 10px;
    min-width: 40px;
    max-width: 40px;
    height: 40px;
}
.content-center-icon img {
    width: 100%;
}
.content-center-message {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.section-white .section-wrap.left .side-left {
    background-color: rgba(200, 204, 208, 0.15);
}
.section-white .section-wrap.right .side-left {
    background-color: transparent;
}
.section-white .section-wrap.left .side-right {
    background-color: transparent;
}
.section-white .section-wrap.right .side-right {
    background-color: rgba(200, 204, 208, 0.15);
}
.section-white .section-wrap.left .content-center {
    background-color: rgba(200, 204, 208, 0.15);
    border-radius: 0px 40px 40px 0px;
}
.section-white .section-wrap.right .content-center {
    background-color: rgba(200, 204, 208, 0.15);
    border-radius: 40px 0px 0px 40px;
}
.section-white .section-wrap.left.background-pink .side-left {
    background-color: #FF65A6;
    background-image: url('./img/dot_white.png');
    background-repeat: repeat;
    background-position: left;
    background-size: 30px;
}
.section-white .section-wrap.right.background-pink .side-right {
    background-color: #FF65A6;
    background-image: url('./img/dot_white.png');
    background-repeat: repeat;
    background-position: left;
    background-size: 30px;
}
.section-white .section-wrap.left.background-pink .content-center {
    background-color: #FF65A6;
    background-image: url('./img/dot_white.png');
    background-repeat: repeat;
    background-position: left;
    background-size: 30px;
    border-radius: 0px 40px 40px 0px;
}
.section-white .section-wrap.right.background-pink .content-center {
    background-color: #FF65A6;
    background-image: url('./img/dot_white.png');
    background-repeat: repeat;
    background-position: left;
    background-size: 30px;
    border-radius: 40px 0px 0px 40px;
}
.content-center h4 {
    font-size: 30px;
    text-align: center;
}
.buttonlike-label {
    border-radius: 10px;
    font-size: 20px;
    text-align: center;
    line-height: 50px;
    margin: 50px 30px 30px;
}
.row-cell {
    margin: 30px auto 30px;
    width: 500px;
    display: flex;
    flex-direction: row;
}
.row-cell .cell {
    padding: 0px 10px;
    width: 100%;
}
.row-cell .cell img {
    margin: auto auto 10px;
    width: 100%;
    cursor: pointer;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.2s ease-in-out;
}
.row-cell .cell img:hover {
    box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.2s ease-in-out;
}
.left-image-row {
    display: flex;
    flex-direction: row;
}
.left-image-image {
    text-align: center;
    padding: 10px;
    min-width: 280px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.left-image-image img {
    margin: auto 0px;
    width: 100%
}
.left-image-content {
    padding: 0px 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.left-image-content h5 {
    border-bottom: 1px solid;
    font-size: 24px;
    margin: 0px 0px 10px;
    padding: 0px 0px 20px;
}
.left-image-content p {
    font-size: 20px;
    line-height: 200%;
}
.left-image-pop {
    margin: 15px 10px;
    display: flex;
    flex-direction: row;
}
.left-image-pop-icon {
    min-width: 50px;
    max-width: 50px;
    height: 50px;
}
.left-image-pop-icon img {
    width: 100%;
}
.left-image-pop-message {
    background-color: white;
    border-radius: 50px;
    font-size: 14px;
    text-align: center;
    margin: auto 5px auto 15px;
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
@media screen and (max-width:450px) {
    .left-image-pop-message {
        font-size: 12px;
        height: 0;
        padding:30px 8px;
        border-radius: 25px;
    }
}
.left-image-pop-message::before {
    background-color: white;
    content: ' ';
    position: absolute;
    width: 20px;
    height: 20px;
    transform: rotate(45deg) translate(-2px, 2px);
    top:15px;
}
@media screen and (max-width:450px) {
    .left-image-pop-message::before {
        width: 10px;
        height: 10px;
        transform: rotate(45deg) translate(-10px, 8px);
        top:25px;
    }
}
.left-arrow-wrap {
    margin: 0px;
    position: relative;
    direction: rtl;
}
.left-arrow-inner {
    display: flex;
    flex-direction: row;
    position: relative;
    width: 100vw;
    direction: ltr;
}
.left-arrow {
    background-image: url('./img/pink_arrow_line.png');
    background-repeat: repeat-x;
    background-size: contain;
    font-size: 24px;
    font-weight: bold;
    line-height: 52px;
    width: 100%;
    height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    transform: translate(1px, 15px);
}
.left-arrow-caption.pc {
    color: white;
    display: block;
}
.left-arrow-caption.sp {
    color: white;
    display: none;
}
.left-arrow-head {
    background-image: url('./img/pink_arrow_top.png');
    background-repeat: no-repeat;
    background-size: contain;
    color: white;
    width: 90px;
    height: 90px;
    z-index: 1;
}
.left-bar-wrap {
    margin: 0px 0px 10px;
    position: relative;
    direction: rtl;
}
.left-bar-inner {
    display: flex;
    flex-direction: row;
    position: relative;
    width: 100vw;
    direction: ltr;
}
.left-bar {
    font-size: 24px;
    font-weight: bold;
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.left-bar-caption {
    text-align: center;
    width: 100%;
    max-width: calc(700px - 30px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    direction: ltr;
}
.left-bar-head {
    border-radius: 0px 20px 20px 0px;
    min-width: 30px;
    max-width: 30px;
}
.right-bar-wrap {
    margin: 0px 0px 10px;
    position: relative;
    direction: ltr;
}
.right-bar-inner {
    display: flex;
    flex-direction: row;
    position: relative;
    width: 100vw;
    direction: rtl;
}
.right-bar {
    font-size: 24px;
    font-weight: bold;
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.right-bar-caption {
    text-align: center;
    width: 100%;
    max-width: calc(700px - 30px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    direction: ltr;
}
.right-bar-head {
    border-radius: 20px 0px 0px 20px;
    min-width: 30px;
    max-width: 30px;
}
.left-bar-caption.pc,
.right-bar-caption.pc {
    display: flex;
}
.left-bar-caption.sp,
.right-bar-caption.sp {
    display: none;
}
.gray-button {
    background-color: #ECEFF1;
    border-radius: 50px;
    line-height: 50px;
    margin: 5px 0px;
    padding: 0px 20px;
    height: 50px;
}
.block-label-wrap {
    margin: 5px 0px;
    display: flex;
    flex-direction: row;
}
.block-label {
    background-color: #ECEFF1;
    border-radius: 5px;
    text-align: center;
    margin: 0px 5px;
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.block-annotation {
    font-size: 9px;
    font-weight: normal;
}
.card-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.card {
    background-color: white;
    border-radius: 10px;
    text-align: center;
    padding: 30px 20px;
    width: 220px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.card-icon {
    background-color: red;
    border-radius: 100px;
    color: white;
    margin: auto;
    width: 100px;
    height: 100px;
}
.card-icon-initial {
    font-size: 42px;
    padding: 4px 0px 0px;
}
.card-icon-caption {
    border-top: 1px solid;
    font-size: 11px;
    margin: 2px auto 0px;
    width: 80%;
}
.card-paragraph {
    font-size: 13px;
    margin: 15px 0px;
}
.card-count {
    border-bottom: 1px solid;
    margin: 20px auto;
    padding: 0px 0px 20px;
}
.card-month {
    line-height: 30px;
    margin: 0px 0px 10px;
    display: flex;
    flex-direction: row;
}
.card-month-label {
    background-color: #E0B733;
    border-radius: 3px;
    color: #3f3f3f;
    font-size: 12px;
    line-height: 24px;
    text-align: center;
    margin: auto;
    min-width: 40px;
    max-width: 40px;
    height: 24px;
    display: inline-block;
}
.card-month-price {
    font-family: Montserrat, sans-serif;
    font-size: 27px;
    font-weight: bold;
    width: 100%;
}
.card-year {
    line-height: 24px;
    margin: 5px 0px 0px;
    display: flex;
    flex-direction: row;
}
.card-year-label {
    background-color: #E0B733;
    border-radius: 3px;
    color: #3f3f3f;
    font-size: 10px;
    text-align: center;
    min-width: 50px;
    max-width: 50px;
    display: inline-block;
}
.card-year-price {
    font-family: Montserrat, sans-serif;
    font-size: 22px;
    font-weight: bold;
    width: 100%;
}
.card-pop-wrap {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}
.card-pop {
    background-color: #C8000A;
    border-radius: 3px;
    color: white;
    font-size: 13px;
    padding: 0px 8px;
    display: inline-block;
    position: relative;
}
.card-pop::before {
    content: ' ';
    background-color: #C8000A;
    width: 10px;
    height: 10px;
    position: absolute;
    transform: translate(0px, 10px) rotate(45deg);
}
.card-pop span {
    position: relative;
    z-index: 1;
}
.card-blue .card-icon {background-color: #4285F4;}
.card-blue .card-paragraph,
.card-blue .card-count,
.card-blue .card-month-price,
.card-blue .card-year-price {
    color: #4285F4;
}
.card-silver .card-icon {background-color: #90A4AE;}
.card-silver .card-paragraph,
.card-silver .card-count,
.card-silver .card-month-price,
.card-silver .card-year-price {
    color: #90A4AE;
}
.card-gold .card-icon {background-color: #B48D30;}
.card-gold .card-paragraph,
.card-gold .card-count,
.card-gold .card-month-price,
.card-gold .card-year-price {
    color: #B48D30;
}
.option-wrap {
    margin: 0px;
}
.option-label {
    background-color: #3f3f3f;
    color: white;
    font-size: 13px;
    margin: 30px auto 10px;
    padding: 2px 15px;
    display: inline-block;
    text-align:center;
}
.option-wrap table.pc {
    display: block;
}
.option-wrap table.sp {
    display: none;
}
.option-wrap table {
    margin: 0px 0px 10px;
    width: 100%;
}
.option-wrap table th {
    font-weight: bold;
    text-align: left;
}
.option-wrap table td {
    font-size: 14px;
    padding: 3px 0px 3px 10px;
}
.option-wrap table th span {
    width: 100%;
    display: inline-block;
}
.option-wrap table td span {
    display: inline-block;
}
.option-caption-below {
    font-size: 10px;
    margin: 0px 0px 20px;
    padding: 0px 0px 0px 10px;
}

.montserrat {font-family: 'Montserrat', sans-serif;}
.center {text-align: center;}
.annotation {font-size: 11px; font-weight: normal;}
.blue {background-color: #4285F4; color: white;}
.green {background-color: #0D7A4D; color: white;}
.lightgreen {background-color: #28A745; color: white;}
.purple {background-color: #7B23AE; color: white;}
.pink {background-color: #FF65A6; color: white;}
.darkyellow {background-color: #B28E32; color: white;}
.color-white {color: white;}
.color-blue {color: #4285F4;}
.color-green {color: #0D7A4D;}
.color-lightgreen {color: #28A745;}
.color-purple {color: #7B23AE;}
.color-pink {color: #FF65A6;}
.color-orange {color: #FF9800;}
.large-font {font-size: 45px; font-weight: bold;}
.medium-font {font-size: 14px; font-weight: normal;}
.small-font {font-size: 10px; font-weight: normal;}
.small-caption {font-size: 11px; font-weight: normal;}
.million-width {min-width: 1000px;}
h3.pc {display: block;}
h3.sp {display: none;}
h4.pc {display: block;}
h4.sp {display: none;}
h5.pc {display: block;}
h5.sp {display: none;}
.paragraph.pc {display: block;}
.paragraph.sp {display: none;}

@media screen and (max-width:900px) {
    #layer {
        display: none;
    }
    #menu {
        display: block;
    }
    #menu-icon-wrap {
        display: block;
    }
    #intro {
        min-height:940px;
        height:100%;
    }
    #intro, #intro-wrap {
        min-height: 100vh;
    }
    #intro-inner {
        padding: 20px 0px 0px;
    }
    #intro-inner-content h1 img {
        width: 90%;
    }
    #intro-block-wrap {
        margin: 0 auto 15px auto;
        width: 90%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
    .intro-block {
        margin: 5px auto;
        padding: 10px 0;
        font-size:20px;
        line-height:1;
    }
    .intro-block-icon {
        display: none;
    }
    #intro-caption-wrap {
        padding:0 20px;
        width:90%;
        margin:0 auto 15px auto;
        font-size:16px;
    }
    .intro-caption{
        font-size:16px;
    }
    #intro-button {
        margin: 40px auto;
        width: 270px;
        display: none;
    }
    .intro-button-paper,
    .intro-button-contact {
        width:90%;
        margin:0 auto 10px auto;
        display: block;
    }
    #intro-arrow-wrap {
        display: none;
    }
    .content-center {
        padding: 30px 30px;
        width: 100%;
        min-width: 315px;
    }
    .side-left, .side-right {
        display: none;
    }
    .buttonlike-label {
        margin: 50px 10px 30px;
    }
    .row-cell {
        width: 100%;
        flex-direction: column;
    }
    .cell .annotation {
        font-size: 14px;
        margin: 0px 0px 30px;
    }
    .section-white h3 {
        font-size: 24px;
        max-width: 100%;
        margin: 0px auto 40px;
    }
    .section-blue h3 {
        font-size: 24px;
        max-width: 100%;
        margin: 0px auto 10px;
    }
    .left-image-row {
        flex-direction: column;
    }
    .left-image-content {
        padding: 0px;
    }
    .left-image-content h5 {
        text-align: center;
        font-size: 22px;
        margin: 10px 0px 10px;
    }
    .left-arrow-wrap {
        transform: translate(10px, 0px);
    }
    .left-arrow-caption {
        font-size: 20px;
    }
    .left-arrow-caption.pc {
        display: none;
    }
    .left-arrow-caption.sp {
        text-align: center;
        padding: 0px 0px 0px 60px;
        display: block;
        min-width: 100%;
    }
    .left-arrow {
        line-height: 32px;
        height: 90px;
    }
    .left-arrow-head {
        width: 67px;
        height: 110px;
    }
    .section-white .section-wrap.right .content-center {
        border-radius: 0px;
    }
    .section-white .section-wrap.left .content-center {
        border-radius: 0px;
    }
    .section-white .section-wrap.right .content-center.full {
        padding: 30px 0px;
    }
    .section-white .section-wrap.left .content-center.full {
        padding: 30px 0px;
    }
    .section-white .section-wrap.left.background-pink .content-center {
        border-radius: 0px;
    }
    .content-center h4 {
        font-size: 24px;
    }
    .content-center-icon-wrap {
        margin: 0px auto 15px;
        width: calc(100% - 60px);
        max-width: 300px;
    }
    .content-center-message {
        font-size: 14px;
    }
    .left-bar, .right-bar {
        height: auto;
        min-height: 80px;
    }
    .left-bar-head,
    .right-bar-head {
        display: none;
    }
    .full .left-image-row {
        margin: 0px auto;
        width: calc(100% - 60px);
        max-width: 300px;
    }
    #small-caption-below {
        text-align: center;
    }
    .card-wrap {
        flex-direction: column;
    }
    .card {
        margin: 20px auto;
        width: 250px;
    }
    .option-label {
        text-align: center;
        display: block;
        padding: 2px 0px;
    }
    .option-wrap table.pc {
        display: none;
    }
    .option-wrap table.sp {
        display: block;
    }
    .option-wrap table th {
        padding: 10px 0px 0px;
    }
    .million-width {
        min-width: 100%;
    }
    .block-label-wrap {
        margin: 0px;
        flex-direction: column;
    }
    .block-label {
        margin: 5px 0px;
    }
    .sp-center {
        text-align: center;
    }
    #regist-button {
        margin: 30px 30px 50px;
        width: auto;
    }
    #footer-anchor a {
        font-size: 11px;
        padding: 0px 10px;
    }
    h3.pc {
        display: none;
    }
    h3.sp {
        display: block;
    }
    h4.pc {
        display: none;
    }
    h4.sp {
        display: block;
    }
    h5.pc {
        display: none;
    }
    h5.sp {
        display: block;
    }
    .paragraph.pc {
        display: none;
    }
    .paragraph.sp {
        display: block;
    }
    .left-bar-caption.pc,
    .right-bar-caption.pc {
        display: none;
    }
    .left-bar-caption.sp,
    .right-bar-caption.sp {
        padding: 10px 0px;
        display: block;
    }
    .card-pop {
        border-radius: 6px;
        font-size: 18px;
        font-weight: bold;
        text-align: center;
        padding: 2px;
        width: 100%;
        display: block;
    }
    .card-pop::before {
        transform: translate(-10px, 22px) rotate(45deg);
    }
    .card-year {
        margin: 14px 0px 0px;
    }
    #footer-wrap img {
        margin: 5px 10px;
        height: 40px;
    }
    #footer-wrap-left {
        text-align: right;
        flex-direction: column;
    }
    #footer-wrap-right {
        flex-direction: column;
    }
    #bottom-button-wrap {
        display: block;
    }
    #overlay-image-wrap {
        margin: 4vh 4vw;
        max-width: 92vw;
        max-height: 92vh;
        user-select: none;
    }
    #youtube-wrap {
        width: calc(100% - 40px);
    }
}

/* animation */
.slide-up {
    opacity: 0.0;
    transform: translate(0px, 50px);
}
.slide-left {
    opacity: 1.0;
    transform: translate(-100vw, 0px);
}
.slide-right {
    opacity: 1.0;
    transform: translate(100vw, 0px);
}
.slide-up.visible,
.slide-left.visible,
.slide-right.visible {
    opacity: 1.0;
    transform: translate(0px, 0px);
    transition: transform 1.0s cubic-bezier(0.0, 1.1, 0.5, 1.0), opacity 1.0s ease-out;
}
.down-arrow {
    animation: down-arrow 3.0s ease-in-out infinite;
}
.left-arrow-wrap {
    animation: pink-arrow 2.0s ease-in-out infinite;
}
@keyframes down-arrow {
    0% {transform: scale(1.0, 1.0) translate(0px, 0px);}
    10% {transform: scale(1.0, 1.0) translate(0px, 20px);}
    20% {transform: scale(1.0, 1.0) translate(0px, 0px);}
    30% {transform: scale(1.0, 1.0) translate(0px, 20px);}
    40% {transform: scale(1.0, 1.0) translate(0px, 0px);}
    100% {transform: scale(1.0, 1.0) translate(0px, 0px);}
}
@keyframes pink-arrow {
    0% {transform: scale(1.0, 1.0) translate(0px, 0px);}
    40% {transform: scale(1.0, 1.0) translate(20px, 0px);}
    80% {transform: scale(1.0, 1.0) translate(0px, 0px);}
    100% {transform: scale(1.0, 1.0) translate(0px, 0px);}
}
/* モバイル時(iphone5/se対応) */
@media screen and (max-width:450px) {

    #intro-inner {
        padding: 10px 0px 0px;
    }
    #intro-inner-content h1{
        margin-bottom:10px;
    }
    #intro-inner-content h1 img {
        width: 90%;
        max-width: 280px;
    }
    #intro-inner h2.sp {
        margin:15px 0;
        font-size:18px;
    }
    #intro-block-wrap {
        margin: 5px auto;
    }
    .intro-block {
        margin-bottom:15px;
    }
    .intro-block:last-child{
        margin-bottom:0;
    }
    #intro-caption-wrap{
        margin:0 auto 10px auto;
    }
    .intro-caption{
        font-size:16px;
    }
    .intro-caption:last-child{
        margin:5px 0 0 0;
    }
    .intro-button-paper,
    .intro-button-contact {
        margin:15px auto;
    }

}
@media screen and (max-width:376px) {
    #intro-inner h2.sp {
        margin:5px 0;
        font-size:16px;
    }
    #intro-block-wrap {
        max-width:245px;
        margin:0 auto;
    }
    .intro-block {
        padding: 10px 0;
        font-size:13px;
        line-height:1;
        margin-bottom:8px;
    }
    #intro-caption-wrap{
        max-width:245px;
    }
    .intro-caption{
        max-width:245px;
        font-size:13px;
        margin:5px auto;
    }
    .intro-button-paper,
    .intro-button-contact {
        margin: 8px auto 8px auto;
        line-height:1;
        padding:10px 0;
        font-size:16px;
        max-width:245px;
    }
    .mobile_br {
        display:none;
    }
}

/* ブログ記事一覧 */
.plp-blog-heading{
    color:#B48D30;
    font-size:44px;
}
.plp-blog-article{
    max-width:980px;
    margin:0 auto;
}
.blog{
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    margin-bottom:20px;
}

.blog-article{
    position: relative;
    width:32%;
    border:1px solid #CFCFCF;
    border-radius:5px;
    background-color:#FFFFFF;
    margin-right:18px;
    overflow: hidden;
}
/* 新着記事カードの左上に表示させる「NEW」ラベル */
.new-label::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 100px 100px 0 0;
    border-color: #B48D30 transparent transparent transparent;
}
.new-label::after {
    position: absolute;
    content: "NEW";
    transform: rotate(315deg);
    display: block;
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    top: 22px;
    left: 8px;
}
.blog-article:last-of-type{
    margin-right:0;
}
.blog-article-link{
    display:block;
    color:#3F3F3F;
    text-decoration: none;
    height: 100%;
}
.blog-article-link:hover{
    background-color: #F5F8FF;
}
.blog-article-thumbnail-wrap{
    width:100%;
    height:180px;
    overflow: hidden;
}
.blog-article-thumbnail{
    width:100%;
    height:100%;
}
.blog-article-thumbnail:hover{
    transition: transform 0.1s linear;
    transform: scale(1.2);
    cursor:pointer;
}
.blog-article-container{
    padding:0 10px 10px 10px;
}
.blog-article-heading{
    margin:8px 0 10px 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size:20px;
}
.blog-article-info{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.blog-article-info-wrap{
    display: flex;
    flex-wrap: wrap;
    max-width:190px;
    flex-direction: column;
}
.blog-article-info-top{
    display: flex;
    justify-content: space-between;
    margin-bottom:8px;
}
.blog-article-info-author{
    font-size:14px;
}
.blog-article-info-author-name{
    font-size:14px;
}
.blog-article-info-date{
    font-size:12px;
}
.blog-article-info-icon{
    width:40px;
    height:40px;
    min-width:40px;
    min-height:40px;
    border-radius:50%;
    overflow: hidden;
    position: relative;
}
.blog-article-info-icon img{
    width:auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 100%;
}
.blog-article-info-category{
    font-size:12px;
    text-align:center;
    color:#FFFFFF;
    margin-left:8px;
    min-width:85px;
    border-radius:10px;
    padding: 0px 10px;
}
.blog-more-button{
    display:flex;
    justify-content: flex-end;
}
.blog-more-button a{
    border:1px solid #3f3f3f;
    display:block;
    max-width:250px;
    width:100%;
    height:auto;
    font-size:18px;
    text-align:center;
    padding:10px 12px;
}
.blog-more-button a:hover{
    opacity:0.7;
}



@media screen and (max-width:980px) {
    .blog,
    .blog-article{
        display:block;
        width:100%;
    }
    .blog-article{
        width:80%;
        margin:0 auto 20px auto;
    }
    .blog-article:last-of-type{
        margin:0 auto 20px auto;
    }
    .blog-more-button{
        display:block;
    }
    .blog-more-button a{
        max-width:80%;
        margin:0 auto 20px auto;
    }
}
