@charset "UTF-8";

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

html,
body {
    margin: 0;
    padding: 0;
}


body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    background: #fff;
    color: #333;
    font-family: "游ゴシック体", yugothic, "游ゴシック", "Yu Gothic", "メイリオ", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}

header,
nav,
section,
main,
footer {
    display: block;
}

h1,
h2,
a,
p,
span,
em,
small,
strong,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
nav,
header,
hgroup,
footer,
img,
address,
time,
iframe,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    border: 0;
    margin: 0;
    padding: 0;
}

a,
a:visited {
    color: inherit;
    outline: none;
}

img {
    border: none;
    height: auto;
    max-width: 100%;
    vertical-align: top;
}


ul,
ol {
    list-style: none;
}

table {
    border: 1px solid #eee;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    width: 100%;
}

th,
td {
    border: 1px solid #eee;
    padding: 4px 6px;
    text-align: left;
    vertical-align: top;
}


.inner {
    margin: 0 auto;
    max-width: 100%;
    padding: 80px 0;
    padding-top: 68px;
    width: 1083px;
}

.section-title {
    font-size: 60px;
    font-weight: 700;
    padding-bottom: 36px;
    position: relative;
    text-align: center;
}

.section-title::after {
    -webkit-transform: translate(-50%);
    background: #F44336;
    bottom: 0;
    content: "";
    height: 5px;
    left: 50%;
    position: absolute;
    transform: translate(-50%);
    width: 76px;
}



#header {
    background: linear-gradient(top left, rgb(250, 177, 253), rgb(255, 120, 255));
    background: -moz-linear-gradient(top left, rgb(250, 177, 253), rgb(255, 120, 255));
    background: -webkit-linear-gradient(top left, rgb(253, 223, 177), #FFC778);
    background: linear-gradient(to bottom right, rgb(242, 201, 155), rgb(255, 120, 120));
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 20;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

#header>.inner {
    align-items: center;
    display: flex;
    height: 100px;
    padding: 0;
}

.header-nav {
    margin-left: auto;
    padding-top: 6px;
}



.header-item {
    display: inline-block;
    padding: 0 12px;
}






.header-item>a {

    color: #fff;
    display: block;
    padding: 8px;
    text-decoration: none;
    transition: all 0.3s ease 0s;
}

.header-item>a.m_active {
    border-bottom: 3px solid #e81919;
}

.header-item>a:hover {
    border-bottom: 3px solid #e81919;
}

.header-logo {
    color: #fff;
    padding-top: 12px;
}

.header-logo a {
    text-decoration: none;
}

.header-logo a:hover {
    opacity: 0.6;
}

.header-logo5 {
    color: #fff;
    padding-top: 15px;
    margin-left: 15px;
}


#nav-drawer {
    position: relative;
    padding-left: 60px;
}

/*チェックボックス等は非表示*/
.nav-unshown {
    display: none;
}

/*アイコンのスペース*/
#nav-open {
    display: inline-block;
    width: 30px;
    height: 22px;
    vertical-align: middle;
    position: inherit;
    left: 10rem;
}

/*ハンバーガーアイコン*/
#nav-open span,
#nav-open span:before,
#nav-open span:after {
    position: absolute;
    height: 3px;
    /*線の太さ*/
    width: 25px;
    /*長さ*/
    border-radius: 3px;
    background: #555;
    display: block;
    content: '';
    cursor: pointer;
}

#nav-open span:before {
    bottom: -8px;
}

#nav-open span:after {
    bottom: -16px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
    display: none;
    /*はじめは隠しておく*/
    position: fixed;
    z-index: 99;
    top: 0;
    /*全体に広がるように*/
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
}

/*メニュー中身*/
#nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    /*最前面に*/
    width: 80%;
    max-width: 330px;
    /*最大幅（調整してください）*/
    height: 100%;
    background: #ff9999;
    background: url(../img/sss.jpg) no-repeat center center/cover;
    transition: .3s ease-in-out;
    /*滑らかに表示*/
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
    /*左に隠しておく*/
}

#nav-content ul {
    border: 1px solid white;
    margin: 18px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;

}


#nav-content .header-item {
    font-size: 1.5rem;
    border-bottom: 1px dashed white;
    width: 100%;

}



/*チェックが入ったら表示*/
#nav-input:checked~#nav-close {
    display: block;
    /*カバーを表示*/
    opacity: .6;
}

#nav-input:checked~#nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    /*中身を表示（右へスライド）*/
    box-shadow: 6px 0 25px rgba(0, 0, 0, .15);
}



#mv {
    background-image: url(../img/m2.png);
    background-size: cover;
    background-position: 45% 60%;
}


#mv>.inner {
    min-height: 700px;
    padding: 0;
    position: relative;
    width: 100%;
}

.mv-content {
    -webkit-transform: translateX(-50%);
    left: 50%;
    position: absolute;
    text-align: center;
    top: 250px;
    transform: translateX(-50%);
    width: 100%;
}

.mv-title {
    color: white;
    font-size: 68px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.mv-btn {
    margin-top: 74px;
    text-align: center;
}

.mv-btn a {
    background: linear-gradient(top left, rgb(250, 177, 253), rgb(255, 120, 255));
    background: -moz-linear-gradient(top left, rgb(250, 177, 253), rgb(255, 120, 255));
    background: -webkit-linear-gradient(top left, rgb(253, 223, 177), #FFC778);
    background: linear-gradient(to bottom right, rgb(242, 201, 155), rgb(255, 120, 120));
    border-radius: 12px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    color: #fff;
    display: inline-block;
    font-size: 38px;
    font-weight: 700;
    height: 83px;
    line-height: 83px;
    max-width: 100%;
    text-align: center;
    text-decoration: none;
    width: 390px;
}

.btn-gradient-radius:hover {
    background-image: linear-gradient(45deg, #FFC107 0%, #f76a35 100%);
}

.mv-btn a:hover {
    opacity: 0.6;
}



#price {
    background: #efefef;
}

#price>.inner {
    padding-bottom: 102px;
}

.price-content {
    display: flex;
    padding-top: 80px;
}

.price-img {
    margin-right: auto;
    text-align: center;
    width: 33.24%;
}

.price-table {
    width: 55.58%;
}

.price-table table,
.price-table th,
.price-table td {
    background: #fff;
    border: 1px solid #707070;
    vertical-align: middle;
}

.price-table th {
    background: #999;
    color: #fff;
    padding: 13px;
    text-align: center;
}

.price-table th:first-child {
    width: 160px;
}

.price-table td {
    color: #333;
    padding: 13px;
    text-align: center;
}

.price-table td .m_em {
    color: #e81919;
}

.price-table td .m_attend {
    font-size: 14px;
}

.price-attention {
    padding: 10px 0px;
    color: #ff3b7e;
    font-size: 14px;
}

.price-attention1 {
    padding-top: 10px;
}

.price-attention a:hover {
    opacity: 0.6;
}






#news>.inner {
    padding-bottom: 48px;
    width: 838px;
}

.news-items {
    padding-top: 90px;
}

.news-item {
    border-bottom: 1px solid #707070;
    padding: 18px 0 16px;
    position: relative;
}

.news-item:last-child {
    border-bottom: none;
}

.news-meta {
    font-size: 0;
    left: 0;
    position: absolute;
    top: 16px;
}

.news-time {
    display: inline-block;
    font-size: 16px;
    vertical-align: middle;
    width: 115px;
}



.news-title {
    line-height: 1.625;
    padding-left: 245px;
}

.news-title a {
    color: #333;
    font-size: 16px;
    text-decoration: none;
}

.news-title a:hover {
    opacity: 0.6;
}

.news-archive-link {
    margin-top: 26px;
    text-align: center;
}

.news-archive-link a {
    color: #d81717;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.news-archive-link a:hover {
    opacity: 0.6;
}

.news-archive-link {
    height: 8px;
    vertical-align: middle;
}




#access {
    background-color: #efefef;
}

#access>.inner {
    max-width: 100%;
    padding-bottom: 88px;
    width: 800px;
}

.access-map {
    margin: 104px auto 40px;
    padding-top: 50%;
    position: relative;
    width: 100%;
}

.access-map iframe {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.access-info {
    font-size: 0;
    margin-top: 14px;
}

.access-info dt {
    display: inline-block;
    font-size: 16px;
    vertical-align: middle;
    width: 120px;
}

.access-info dd {
    display: inline-block;
    font-size: 16px;
    vertical-align: middle;
    width: calc(100% - 120px);
}



.access-btn {
    padding-top: 37px;
    text-align: center;
}

.access-btn a {
    background: linear-gradient(top left, rgb(250, 177, 253), rgb(255, 120, 255));
    background: -moz-linear-gradient(top left, rgb(250, 177, 253), rgb(255, 120, 255));
    background: -webkit-linear-gradient(top left, rgb(253, 223, 177), #FFC778);
    background: linear-gradient(to bottom right, rgb(242, 201, 155), rgb(255, 120, 120));
    border-radius: 12px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    color: #fff;
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    height: 56px;
    line-height: 56px;
    max-width: 100%;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease 0s;
    width: 305px;
}



.access-btn a:hover {
    opacity: 0.6;
}


.bosyu {
    margin: 5%;
    width: 90%;
}

.bosyu th {
    width: 30%;
}

.bosyu td {
    width: 70%;
}


.bosyu td,
.bosyu th {
    border: solid 2px #333;
    padding: 10px;
}




.attention1 {
    margin: 4%;
    flex-flow: column;
    font-size: 1rem;
    color: rgb(214, 44, 95);
    font-style: italic;
    font-weight: 900;
}


.attention2 {
    text-align: center;
    padding-top: 50px;
}

h3 {text-align: center;
}


#footer {
    background: linear-gradient(rgb(109, 109, 109), rgb(84, 84, 84));
    position: relative;
}

#footer>.inner {
    padding-bottom: 31px;
    padding-top: 83px;
}

.footer-menu {
    display: flex;
    margin-bottom: 90px;
}

.footer-logo {
    width: 30%;
}



.footer-info {
    margin-top: 13px;
}

.footer-info dt {
    color: #fff;
    display: inline-block;
}

.footer-info dd {
    color: #fff;
    display: inline-block;
}

.footer-items {
    padding: 0 12px;
    text-align: center;
    width: 50%;
}

.footer-items li {
    display: inline-block;
    margin-bottom: 8px;
    margin-right: 30px;
}

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

.footer-items li a {
    color: #fff;
    text-decoration: none;
}

.footer-items li a:hover {
    opacity: 0.6;
}

.copy {
    color: #fff;
    font-size: 14px;
    text-align: center;
}

.copy a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.copy a:hover {
    opacity: 0.6;
}

#totop {
    bottom: 10px;
    position: absolute;
    right: 10px;
}


#totop a img {
    width: 60px;
    border-radius: 50%;
    border: solid;
    border-color: #b70b46;
    position: fixed;
    bottom: 30px;
    top: 600px;
    right: 0;
    margin: 0;
    margin-right: 10px;

}

#totop a:hover {
    opacity: 0.6;
}







/*トップお知らせ**/

.inform {
    border: solid 1.5px red;
    font-size: 0.7em;
    padding: 15px;
    text-align: center;
}

.infotitle {
    font-size: large;
}








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

    .inner {
        padding-left: 24px;
        padding-right: 24px;
    }

    #header>.inner {
        padding-left: 24px;
        padding-right: 24px;
    }

    #mv>.inner {
        padding-left: 24px;
        padding-right: 24px;
    }

    .price-table th:first-child {
        width: 120px;
    }

}



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

    .inner {
        padding-top: 38px;
    }

    .section-title {
        font-size: 32px;
        padding-bottom: 16px;
    }

    .section-title::after {
        height: 3px;
        width: 32px;
    }

    #footer>.inner {
        padding-bottom: 16px;
        padding-top: 32px;
    }

    .footer-menu {
        display: block;
        margin-bottom: 32px;
    }

    .footer-logo {
        margin-bottom: 58px;
        width: 100%;
    }

    .footer-items {
        margin-bottom: 18px;
        width: 100%;
    }

   

    #totop a img {
        width: 48px;
        top: 400px;
    }


    #header>.inner {
        height: 60px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .header-nav {
        display: none;
    }

    .header-logo {
        font-size: 1.2rem;
        padding-top: 0px;
    }

    .header-logo5 {
        display: none;
    }

    .header-logo img {
        width: 180px;
    }


    #mv>.inner {
        min-height: 384px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .mv-content {
        -webkit-transform: none;
        padding-top: 120px;
        position: static;
        transform: none;
    }

    .mv-title {
        font-size: 28px;
    }

    .mv-lead {
        font-size: 24px;
    }

    .mv-btn {
        margin-top: 52px;
    }

    .mv-btn a {
        font-size: 20px;
        height: 52px;
        line-height: 52px;
        max-width: 65%;
    }

    .access-map {
        margin-bottom: 24px;
        margin-top: 52px;
    }

    .access-info dt {
        width: 80px;
    }

    .access-info dd {
        width: calc(100% - 80px);
    }



    .news-items {
        padding-top: 52px;
    }

    .news-meta {
        align-items: center;
        display: flex;
        margin-bottom: 8px;
        overflow: hidden;
        position: static;
    }

    .news-title {
        padding-left: 0;
    }

    #price>.inner {
        padding-bottom: 62px;
    }

    .price-content {
        display: block;
        padding-top: 52px;
    }

    .price-img {
        margin-bottom: 24px;
        width: 100%;
    }

    .price-table {
        width: 100%;
    }

    .price-table th:first-child {
        width: 80px;
    }


    .bosyu {
        margin: 0;
        margin-top: 30px;
        width: 100%;
        font-size: 15px;
    }

    .bosyu td,
    .bosyu th {
        border: solid 1px rgb(23, 21, 22);
        padding: 3px 5px;
    }



    .attention1 {
        padding-top: 20px;
        font-size: 0.7rem;
    }

    .attention2 {
        padding-top: 30px;
    }


}




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

    #nav-drawer {
        display: none;
    }

}


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

    .mv-content {
        padding-top: 150px;
    }

    .mv-btn {
        margin-top: 22px;
    }

    .price-content {
        padding-top: 32px;
    }
}


@media screen and (max-width:380px) {
    #nav-drawer {
        padding-left: 30px;
    }

}

@media screen and (max-width: 365px) {
    #nav-drawer {
        padding-left: 5px;
    }

    .header-logo {
        font-size: 1rem;
    }

    .bosyu {
        font-size: 0.5rem;
        margin-top: 20px;
    }

    .attention1 {
        font-size: 0.4rem;
    }
}