/*---------------------------------------------
  BASE
---------------------------------------------*/

body {
    font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    line-height: 1.8;
    color: #42464E;
    font-size: 14px;
    text-align: left;
    margin: 0;
    -webkit-text-size-adjust: none;
}

#wrap {
    clear: both;
}

* {
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6,
pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1;
    font-weight: normal;
}

ul {
    list-style: none;
}

dt {
    font-weight: normal;
}

a {
    color: #42464E;
    text-decoration: none;
    word-wrap: break-word;
    word-break: break-all;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
}

a:hover {
    opacity: 0.8;
    text-decoration: none;
}

.border {
    border: 1px solid #EFEFEF !important;
}

input[type="text"], input[type="password"], textarea, select {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    -webkit-appearance: none;
}


/*---------------------------------------------
  SETTING
---------------------------------------------*/

/*** bp ***/
@media screen and (min-width: 992px) {
    .sp {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    .pc {
        display: none;
    }
}

/*** font ***/
.font-base {
    font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

.font-crimson {
    font-family: 'Crimson Text', serif;
}

@font-face {
    font-family: "spinweradC";
    src: url("../font/spinweradC.woff") format("woff"),
    url("../font/spinweradC.woff2") format("woff2"),
    url("../font/spinweradC.ttf") format("truetype");
}

.font-spinwerad {
    font-family: 'spinweradC', serif;
}

/*** width ***/
.w-100 {
    width: 100%;
}

.w-50 {
    width: 50%;
}

.clear {
    overflow: hidden;
    clear: both;
}


/*** button ***/
.btn {
    margin-top: 40px;
    padding-bottom: 20px;
}

.btn a, .btn span {
    font-family: 'Crimson Text', serif;
    padding: 16px 80px;
    background: #92DAE0;
    color: #fff;
    text-align: center;
    display: inline-block;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn a:hover, .btn span:hover {
    opacity: 1;
}

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

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

.simcal-event-description {
    height: 190px;
    overflow: auto;
}

.simcal-event-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: "";
    width: 100%;
    display: inline-block;
}

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

    .btn a:after, .btn span:after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        z-index: -1;
        background: -moz-linear-gradient(90deg, rgba(208, 196, 255, 1) 0%, rgba(146, 218, 224, 1) 50%, rgba(167, 226, 255, 1) 100%);
        background: -webkit-linear-gradient(90deg, rgba(208, 196, 255, 1) 0%, rgba(146, 218, 224, 1) 50%, rgba(167, 226, 255, 1) 100%);
        background: linear-gradient(90deg, rgba(208, 196, 255, 1) 0%, rgba(146, 218, 224, 1) 50%, rgba(167, 226, 255, 1) 100%);
        transition: all 200ms linear;
    }

    .btn a:hover:after, .btn span:hover:after {
        left: 0;
    }

    .simcal-event-title {
        font-size: 12px;
    }
}


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

    .btn {
        width: 230px;
        margin: 40px 0 0;
        padding-bottom: 20px;
    }

    .btn a, .btn span {
        width: 100%;
        padding: 12px 0;
        display: block;
        background: -moz-linear-gradient(90deg, rgba(208, 196, 255, 1) 0%, rgba(146, 218, 224, 1) 50%, rgba(167, 226, 255, 1) 100%);
        background: -webkit-linear-gradient(90deg, rgba(208, 196, 255, 1) 0%, rgba(146, 218, 224, 1) 50%, rgba(167, 226, 255, 1) 100%);
        background: linear-gradient(90deg, rgba(208, 196, 255, 1) 0%, rgba(146, 218, 224, 1) 50%, rgba(167, 226, 255, 1) 100%);
        box-shadow: 6px 6px 20px -6px rgba(85, 85, 85, 0.16);
    }
}

/*---------------------------------------------
  HEADER
---------------------------------------------*/

header {
    width: 88px;
    height: 100vh;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

header h1.pc {
    width: 100%;
    height: calc(100vh - 88px);
    margin: 0 auto;
    padding-bottom: 30px;
    text-align: center;
    background: #fff;
    position: absolute;
    top: 88px;
    left: 0;
}

header h1.pc img {
    height: 100%;
    max-height: 400px;
}

header h1.pc a:hover {
    opacity: 1;
}


@media screen and (min-width: 992px) {
    header h1.pc {
        min-height: 400px;
    }

    header .logo h1 {
        display: none;
    }
}


/*** menu ***/
header .menuarea {
    width: 650px;
    height: 100vh;
    background-color: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -999;
    transform: translateX(-650px);
    transition: all .5s;
}

header .menuarea.open {
    transform: translateX(0px);
}

header .menuarea .menu_inner {
    margin: 88px 80px 88px 140px;
    font-family: 'Crimson Text', serif;
}

header .menuarea .menu_inner li a {
    color: #5B6D77;
}

header .menuarea .menu_inner .navi-box {
    overflow: hidden;
    clear: both;
}

header .menuarea .menu_inner .navi {
    width: 50%;
    float: left;
}

header .menuarea .menu_inner .navi li {
    font-size: 22px;
    margin-bottom: 1em;
}

header .menuarea .menu_inner .sns li {
    display: inline-block;
    font-size: 22px;
    margin-right: 1em;
}

header .menuarea .copy {
    position: absolute;
    bottom: 80px;
    right: 0;
    -webkit-transform: rotate(90deg);
    color: #D5DEE8;
    font-size: 10px;
}


/*** hamburger ***/
header .menu-btn {
    width: 88px;
    height: 88px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
}

header .hamburger {
    width: 24px;
    height: 16px;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 9999;
    display: block;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    transition: all .4s;
    cursor: pointer;
}

header .hamburger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #42464E;
    margin: 0 auto;
}

header .hamburger span:nth-of-type(1) {
    top: 0;
}

header .hamburger span:nth-of-type(2) {
    top: 50%;
    margin-top: -1px;
}

header .hamburger span:nth-of-type(3) {
    bottom: 0;
}

header .hamburger span:nth-of-type(1) {
    -webkit-animation: menu-ber01 .75s forwards;
    animation: menu-ber01 .75s forwards;

}

header .hamburger span:nth-of-type(2) {
    transition: all .25s .25s;
    opacity: 1;
}

header .hamburger span:nth-of-type(3) {
    -webkit-animation: menu-ber02 .75s forwards;
    animation: menu-ber02 .75s forwards;
}

header .active span:nth-of-type(1) {
    -webkit-animation: active-menu-ber01 .75s forwards;
    animation: active-menu-ber01 .75s forwards;
    background-color: #42464E;

}

header .active span:nth-of-type(2) {
    opacity: 0;
}

header .active span:nth-of-type(3) {
    -webkit-animation: active-menu-ber03 .75s forwards;
    animation: active-menu-ber03 .75s forwards;
    background-color: #42464E;
}

@-webkit-keyframes menu-ber01 {
    0% {
        -webkit-transform: translateY(6px) rotate(45deg);
    }
    50% {
        -webkit-transform: translateY(6px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
    }
}

@keyframes menu-ber01 {
    0% {
        transform: translateY(6px) rotate(45deg);
    }
    50% {
        transform: translateY(6px) rotate(0);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

@-webkit-keyframes menu-ber02 {
    0% {
        -webkit-transform: translateY(-6px) rotate(-45deg);
    }
    50% {
        -webkit-transform: translateY(-6px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
    }
}

@keyframes menu-ber02 {
    0% {
        transform: translateY(-6px) rotate(-45deg);
    }
    50% {
        transform: translateY(-6px) rotate(0);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

@-webkit-keyframes active-menu-ber01 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(8px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(8px) rotate(45deg);
    }
}

@keyframes active-menu-ber01 {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(8px) rotate(0);
    }
    100% {
        transform: translateY(8px) rotate(45deg);
    }
}

@-webkit-keyframes active-menu-ber03 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(-8px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(-8px) rotate(-45deg);
    }
}

@keyframes active-menu-ber03 {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-7px) rotate(0);
    }
    100% {
        transform: translateY(-7px) rotate(-45deg);
    }
}


/*--------------------
  SP
--------------------*/
@media screen and (max-width: 991px) {

    header {
        width: 66px;
        height: auto;
        background: none;
    }

    header h1.pc {
        display: none;
    }

    /*** menu ***/
    header .menuarea {
        width: 90vw;
        transform: translateX(-90vw);
        transition: all .5s;
    }

    header .menuarea.open {
        transform: translateX(0px);
    }

    header .menuarea .menu_inner {
        margin: 66px 30px 30px 86px;
        overflow: hidden;
        clear: both;
    }

    header .menuarea .menu_inner .logo {
        width: 66px;
        position: absolute;
        top: 66px;
        left: 0;
    }

    header .menuarea .menu_inner .logo h1 {
        height: calc(100vh - 66px);
        padding-top: 36px;
        margin: 0 auto;
        text-align: center;
    }

    header .menuarea .menu_inner .logo h1 img {
        height: 70%;
    }

    header .menuarea .menu_inner .navi {
        width: 100%;
        float: none;
    }

    header .menuarea .menu_inner .navi li {
        width: 100%;
        float: none;
        font-size: 22px;
        margin-bottom: 16px;
    }

    header .menuarea .menu_inner .sns li {
        display: inline-block;
        font-size: 22px;
        margin-right: 1em;
    }

    header .menuarea .copy {
        position: absolute;
        bottom: 80px;
        right: 0;
        -webkit-transform: rotate(90deg);
        color: #D5DEE8;
        font-size: 10px;
    }


    /*** hamburger ***/
    header .menu-btn {
        width: 66px;
        height: 66px;
    }
}


/*---------------------------------------------
  CONTENTS
---------------------------------------------*/

#contents {
    padding: 200px 0 0;
    background: url("../images/contents-bg.png") no-repeat top right/31%, -moz-linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(242, 253, 255, 1) 100%);
    background: url("../images/contents-bg.png") no-repeat top right/31%, -webkit-linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(242, 253, 255, 1) 100%);
    background: url("../images/contents-bg.png") no-repeat top right/31%, linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(242, 253, 255, 1) 100%);
}


/*default*/
#contents .contents-inner {
    margin: 0 60px 150px 148px;
}

#contents .contents-inner h2 {
    font-family: 'spinweradC', serif;
    letter-spacing: 5px;
    font-size: 48px;
    border-bottom: solid 2px #EAEFF4;
    margin-bottom: 90px;
    padding: 0 0 100px 60px;
}

#contents .contents-inner .contents-box {
    padding-left: 60px;
}

#contents .contents-inner .contents-box .btn {
    margin: 40px auto 0;
    padding: 0;
    text-align: center;
}

#contents .contents-inner .contents-box.details dd a {
    color: #9C2DB1;
    text-decoration: underline;
}


/*large*/
#contents .contents-inner-large {
    width: 100%;
    margin: 0 auto;
}

#contents .contents-inner-large h2 {
    font-family: 'spinweradC', serif;
    letter-spacing: 5px;
    font-size: 48px;
    margin: 0 60px 100px 208px;
}


/*--------------------
  SP
--------------------*/
@media screen and (max-width: 991px) {

    #contents {
        padding: 100px 0 0;
        background: url("../images/contents-bg.png") no-repeat top right/45%, -moz-linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(242, 253, 255, 1) 100%);
        background: url("../images/contents-bg.png") no-repeat top right/45%, -webkit-linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(242, 253, 255, 1) 100%);
        background: url("../images/contents-bg.png") no-repeat top right/45%, linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(242, 253, 255, 1) 100%);
    }


    /*default*/
    #contents .contents-inner {
        margin: 0 30px 80px;
    }

    #contents .contents-inner h2 {
        font-size: 32px;
        margin-bottom: 40px;
        padding: 0 0 32px 0px;
    }

    #contents .contents-inner .contents-box {
        padding-left: 0px;
    }


    /*large*/
    #contents .contents-inner-large {
        width: 100%;
        margin: 0 auto;
    }

    #contents .contents-inner-large h2 {
        font-size: 32px;
        margin: 0 30px 72px;
    }

}


/*---------------------------------------------
  FOOTER
---------------------------------------------*/

footer {
    background: #5B6D77;
    color: #fff;
    overflow: hidden;
    clear: both;
    position: relative;
    z-index: 9;
}

footer h2 {
    font-size: 30px;
    font-family: 'spinweradC', serif;
    letter-spacing: 5px;
}

footer a {
    color: #fff;
}

footer .footer-contents {
    overflow: hidden;
    clear: both;
}


/*contact*/
footer .footer-menu .contact p {
    margin: 34px auto;
}

/*button*/
footer .footer-btn {
    margin-top: 60px;
    padding-bottom: 20px;
}

footer .footer-btn a {
    font-family: 'Crimson Text', serif;
    padding: 16px 80px;
    text-align: center;
    display: inline-block;
    background-color: #fff;
    color: #5B6D77;
    font-size: 12px;
}

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

    footer .footer-btn {
        width: 230px;
        margin: 60px 0 0;
        padding-bottom: 20px;
    }

    footer .footer-btn a {
        width: 100%;
        padding: 12px 0;
        display: block;
    }
}

/*navi*/
footer .footer-menu .footer-navi li {
    font-family: 'Crimson Text', serif;
    font-size: 12px;
}

/*** footer logo ***/
footer .footer-logo .sns li {
    font-size: 22px;
    display: inline-block;
    margin-right: 1em;
}

footer .footer-logo .sns li:last-child {
    margin-right: 0;
}

/*** copy ***/
footer .copy {
    overflow: hidden;
    clear: both;
    font-size: 10px;
    color: #828F96;
}


/*--------------------
  PC
--------------------*/

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

    footer .footer_inner {
        margin: 100px 60px 70px 148px;
    }

    footer .footer-contents {
        width: 90%;
        float: right;
        margin-bottom: 80px;
        display: flex;
        align-items: center;
    }

    /*** footer menu ***/
    footer .footer-menu {
        border-left: solid 1px #4A5C65;
        flex: 1;
        order: 1;
    }

    /*contact*/
    footer .footer-menu .contact {
        border-bottom: solid 1px #4A5C65;
        padding: 0 0 5% 5%;
    }

    /*navi*/
    footer .footer-menu .footer-navi {
        padding: 5% 0 0 5%;
    }

    footer .footer-menu .footer-navi li {
        display: inline-block;
        margin-right: 32px;
    }

    /*** footer logo ***/
    footer .footer-logo {
        width: calc(338px - 10%);
        padding-right: 60px;
    }

    footer .footer-logo .logo {
        margin-bottom: 56px;
    }

    /*** copy ***/
    footer .copy {
        text-align: right;
    }


}


/*--------------------
  SP
--------------------*/
@media screen and (max-width: 991px) {

    footer .footer_inner {
        margin: 40px 30px 80px 70px;
    }

    /*contact*/
    footer .footer-menu .contact h2 {
        font-size: 12px;
        letter-spacing: 3px;
    }

    /*navi*/
    footer .footer-menu .footer-navi {
        margin: 40px auto;
        padding: 40px 0;
        border-top: solid 1px #4A5C65;
        border-bottom: solid 1px #4A5C65;
    }

    footer .footer-menu .footer-navi li {
        margin-bottom: 16px;
    }

    footer .footer-menu .footer-navi li:last-child {
        margin-bottom: 0;
    }

    /*** footer logo ***/
    footer .footer-logo .logo {
        width: 70%;
        margin-bottom: 40px;
    }

    footer .footer-logo .logo img {
        max-width: 250px;
    }

    /*** copy ***/
    footer .copy {
        text-align: center;
        margin: 60px 0 0 -30px;
    }


}


