@charset "utf-8";

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN",
        "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1b0529;


}

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

.inner {
    max-width: 960px;
    margin-inline: auto;
}

.logo {
    width: 20%;
}

h2 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 30px;
}

h3 {
    font-size: 20px;
    text-align: center;
    padding-bottom: 15px;
}

.wrap {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
}

.info p {
    font-size: 20px;
}

header {
    border-top: 4px solid #6d238d;
}
.toggle{
    display: none;
}

.gnav {
    background-color: #6d238d;
}

.gnav ul {
    display: flex;
    justify-content: center;
}

.gnav li {
    font-size: 18px;
    color: #fff;
    padding: 15px 40px;
}
.gnav li:hover{
    background-color: #ded0e7;

} 
.current{
    border-bottom: 2px solid #cfc5d5;
}

.marker {
    background-color: #ded0e7;
    color: #1b0529;
    margin: 0 3px;
    padding: 0 3px;
}

section {
    padding: 70px 0;
}

p {
    padding-bottom: 15px;
}

.inner2 {
    max-width: 650px;
    margin-inline: auto;
}

.course {
    background-color: #cfc5d5;
}

.item_wrap {
    display: flex;
    justify-content: space-between;
}

.item1 {
    width: 33%;
    object-fit: cover;
    padding: 10px;
    margin-bottom: 30px;
}

.btn a {
    text-decoration: none;
    border: 1px solid #6d238d;
    border-radius: 10px;
    padding: 10px;
    background-color: #fff;

}

.btn {
    display: block;
    text-align: center;
    padding-bottom: 70px;
}

.trainer_img {
    width: 180px;
    height: 220px;
    object-fit: cover;
    float: left;
    margin: 10px;
}

.message {
    background-image: url(../images/bg_01.jpg);
    background-size: cover;
    background-attachment: fixed;
}

.trainer_message {
    color: #fff;
}

.message p {
    color: #fff;
}

.trainer_name {
    text-align: right;
}

table {
    margin: 0 auto;
    width: 650px;

}

tr,
td {
    border: 1px solid #cfc5d5;
    padding: 15px 30px;
}

th {
    border: 1px solid #cfc5d5;
    padding: 15px;
    background-color: #deddde;
}

footer {
    background: rgb(109, 35, 141);
    background: linear-gradient(180deg, rgba(109, 35, 141, 1) 0%, rgba(0, 0, 0, 1) 100%);
    ;
    color: #fff;
    font-size: 14px;
}
.gnav2 ul{
    display: flex;
    justify-content: center;
    padding-top: 30px;
}
.gnav2 li {
    padding: 5px;
    border-right: 2px solid #cfc5d5;
    display: inline;
    
}
.gnav a,
.gnav2 a{
    color: #fff;
    text-decoration: none;
}

.gnav2 li:hover{
    background-color: #ded0e7;

}
.copy-right{
    text-align: center;
    margin-top: 30px;
}
.totop a{
    text-decoration: none;
    text-align: center;
    color: #fff;
    display: inline-block;
    border: 1px solid #6d238d;
    background-color:#6d238d;
    opacity: 0.8;
    padding: 10px 30px;


}
.totop{
    position: fixed;
    right: 10%;
    bottom: 0;
}
/* レスポンシブ */
@media screen and (max-width:768px){
    .inner{
        max-width: 700px;
        margin-inline: auto;
    }
    .gnav li{
        padding: 10px;
        font-size: 14px;
    }
    .info p{
        font-size: 14px;
    }
}
@media screen and (max-width:560px){
    .inner,
    .inner2{
        max-width: 90%;
    }
    .gnav2{
        font-size: 14px;
        padding: 5px;
    }
    .item_wrap{
        display: flex;
        flex-wrap: wrap;
    }
    .item1{
        width: 100%;
    }
    table{
        max-width: 90%;
    }
    /* ハンバーガー */
    .toggle {
        display: block;
        position: fixed;
        right: 13px;
        top: 12px;
        width: 42px;
        height: 42px;
        z-index: 3;
     }
  
     .toggle span {
        display: block;
        position: absolute;
        width: 30px;
        border-bottom: solid 3px #333;
        transition: 0.35s ease-in-out;
        left: 6px;
     }
  
     .toggle span:nth-child(1) {
        top: 9px;
     }
     .toggle span:nth-child(2) {
        top: 18px;
     }
     .toggle span:nth-child(3) {
        top: 27px;
     }
  
     .toggle.active span:nth-child(1) {
        top: 18px;
        left: 6px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
     }
  
     .toggle.active span:nth-child(2),
     .toggle.active span:nth-child(3) {
        top: 18px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
     }
  
     .gnav {
        width: 60%;
        position: fixed;
        margin: 0 auto;
        left: 0;
        right: 0;
        top: -110%;
        transition: ease 0.7s;
        z-index: 10;
     }
  
     .gnav.active {
        top: 80px;
     }
  
     .gnav ul {
        display: block;
     }
  
     .gnav a {
        text-align: center;
     }
  
     .gnav li + li a {
        border-bottom: 1px solid #b2a9b5;
     }
  }
    



