@charset "UTF-8";
/* －－－－－－－テーマカラーの設定－－－－－－－ */
:root{
    --base-color: white;
    --main-color: white;
    --accent-color: white;
}
/* －－－－－－－初期設定－－－－－－－ */
html{
    font-size:14.5px;
}
body{
    font-family: '源暎ちくご明朝',serif;
}
ul li a{
    text-decoration: none;
    font-size: 0.8rem;
}
a{
    text-decoration: none;
}

.container{
    max-width: 1000px;
    margin: auto;
    padding: 1% 4% 4% 4%;
}
.container2{
    max-width: 900px;
    margin: auto;
    padding: 1% 4% 1% 4%;
}
.container3,.theme{
    max-width: 900px;
    margin: auto;
    padding: 1% 4% 1% 4%;
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
    .container2,.container3{
        padding-top: 0%;
    }
}

hr{
    margin: auto;
    margin-top: 5%;
    margin-bottom: 5%;
}
p{
    color: rgba(12, 12, 12, 0.75);
    /* margin-top: 5%; */
}

/* －－－－－－－ヘッダー－－－－－－－ */
/* index　（headerで共通部分指定、画像だけclassで替えるのはできなかった） */
header .index_img{
    margin-top: 0;
    margin: auto;   
    display: block;
    position: relative;
    background-image: url("images/index_image.jpg");
    background-size: 100%;
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    height: 100vh;
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
    header .index_img{
        height: 50vh;
    }
}
/* 不登校のためのヨガ */
header .crayon_img{
    margin-top: 50px;
    margin: auto;   
    display: block;
    position: relative;
    background-image: url("images/pocket_yoga_crayon_image.jpg");
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    height: 100vh;
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
    header .crayon_img{
        height: 50vh;
    }
}
/* for women */
header .women_img{
    margin-top: 50px;
    margin: auto;   
    display: block;
    position: relative;
    background-image: url("images/pocket_yoga_for_women_image .jpg");
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    height: 100vh;
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
    header .women_img{
        height: 50vh;
    }
}
/* スケジュール */
header .schedule_img{
    margin-top: 50px;
    margin: auto;   
    display: block;
    position: relative;
    background-image: url("images/schedule_image.jpg");
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    height: 100vh;
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
    header .schedule_img{
        height: 50vh;
    }
}
/* 申込み */
header .contact_img{
    margin-top: 50px;
    margin: auto;   
    display: block;
    position: relative;
    background-image: url("images/contact_image.jpg");
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    height: 100vh;
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
    header .contact_img{
        height: 50vh;
    }
}
.nav ul{
    /* background-color: blue;　　　　位置合わせのための色づけ */
    display: flex;
    justify-content: space-around;
    position: absolute;
    top: 5%;
    width: 100%;
}
.nav ul li a{
    color: white;
    font-size: 0.8rem;
    padding: 10px 15px;
}
.nav ul li{
    list-style: none;
    border: solid 1px white;
    height: 30px;
    width: 120px;
    text-align: center;
}
.nav ul li:hover{
    background-color: rgba(255, 255, 255, 0.628);
    transition: 0.8s;
}

/* －－－－－－－トップページ　メイン－－－－－－－ */
/* －－－－－－－共通部分－－－－－－－ */
.container2 img {
    margin: auto;   
    margin-bottom: 3%;
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
    .container2 img{
        display: block;
    }
}
/* h2のマージン再考 */
h2{
    margin-right: 30px;
}
.container2 h2{
    color: skyblue;
    font-size: 1.8rem;
    padding: 20px 30px ;
    border: solid 1px skyblue;
    text-align: center;     
    /* margin-bottom: 20px; */
}
.large{
    color: skyblue;
    font-size: 1.7rem;
    padding: 20px/ 30px ;
}

.container2 {
    display: flex;
    gap: 30px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .container2 {
        display: block;
    }
}
.contact h3 a{
    background-color: skyblue;
    color: white;
    font-size: 1.5rem;
    text-align: center;
    padding: 10px 60px 10px 60px;
    font-family: 'さわらびゴシック',sans-serif;
}
.contact h3 a:hover{
    background-color: white;
    color: skyblue;
    transition: 0.8s;
    border: solid 1px skyblue;
}

.tel{
    color: skyblue;
    font-size: 1.5rem;
    margin: auto;
    margin-top: 20px;
}

/* －－－－－－－フッター－－－－－－－ */
footer{
    color: white;
    text-align: center;
    background-color: skyblue;
    align-items: center;
}
.rights{
    line-height: 50px;
}

/* －－－－－－－ヨガページ－－－－－－－ */
.here0{
    position: relative;
}
.here{
    position: absolute;
    right: 10%;
    top: 0%;
}
@media (max-width: 768px) {
    .here{
        top: -20%;
    }
}
.here a{
    font-family: '源暎ちくご明朝',serif;
    color: skyblue;
    /* font-weight: bold; */
    font-size: 1.2rem;
    padding: 20px;
    border: solid 1px skyblue;
    text-decoration: none;
}

.here a:hover{
    background-color: skyblue;
    color: white;
    padding: 20px;
    text-align: center;
    transition: 0.8s;
}
.item ul li{
    list-style: none;
}

.title{
    align-items: center;
}
.container3 h2{
    color: skyblue;
    font-size: 1.8rem;
    border: solid 1px skyblue;
    text-align: center;
    padding-bottom: 5px;
    /* margin-bottom: 30px; */
}
.container2 h3{
    color: skyblue;
    font-size: 1.6rem;
    /* width: 30vw; */
}
.container2 p,.container3 p{
    /* margin-left: 50px; */
    margin-top: 5%;
    margin-bottom: 5%;
}

.text h2{
    font-family: 'さわらびゴシック',sans-serif;
    color: white;
    font-size: 1rem;
    background-color: skyblue;
    width: 30vw;
    margin-left: 30px;
    margin-top: 2%;
}
@media (max-width: 768px) {
    .text h2{
        width: 200px;
    }
}
.area_right{
    width: 45vw;
    margin-left: 10%;
}
@media (max-width: 768px) {
    .area_right{
        width: 90vw;
        margin-left: 0;
    }
}
.area_right a :hover{
    color: white;
    background-color: skyblue;
    transition: 0.8s;
}
/* レスポンシブ対応 */
/* @media (max-width: 768px) {
    .area_right{
        width: 100px;
    }
} */
.theme h2,.about_all{
    font-family: '源暎明朝',serif;
    color: skyblue;
    font-size: 1.8rem;
    border: solid skyblue 1px;
    padding: 5px 0;
    text-align: center;
    margin: auto;
    margin-bottom: 10px;
}
.theme{
    margin-bottom: 15%;
}
.item ul{
    margin-bottom: 5%;
    margin-top: 5%;
}
.item h2{
    background-color: skyblue;
    color: white;
    font-family: 'さわらびゴシック',sans-serif;
    font-size: 1.4rem;
    padding: 5% 3%;
    border-radius: 5px;
}
@media (max-width: 768px) {
    .item h2{
        width: 300px;
    }
}
.item h3{
    color: skyblue;
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.theme_all{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;    
}
.theme_box{
    color: skyblue;
}
.theme_box h3{
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
}
.theme_content{
    color: skyblue;
    border: solid 1px skyblue;
    font-size: 1.8rem;
    text-align: center;
    padding-top: 70px;
    padding-bottom: 30px;
}
.l3{
    padding-top: 75px;
}
.about_all{
    margin-bottom: 5%;
}
/* －－－－－－－スケジュールページ－－－－－－－ */
.schedule{
    display: flex;
}
.calender p{
    margin: auto;
}
.calender h2{
    color: skyblue;
    font-size: 2rem;
    margin-top: 30px;
    border: solid 1px skyblue;
    text-align: center;
    margin-bottom: 30px;
    margin: auto;
}
.calender p{
    text-align: center;
    margin-top: 80px;
}

/* －－－－－－－申込みページ－－－－－－－ */
iframe{
    margin: auto;
}
.contact_form p{
    font-size: 1.3rem;
    color: skyblue;
    margin-left: 130px;
    margin-top: 70px;
    margin-bottom: 30px;
}
.input_box{
    display: flex;
    margin-bottom: 10px;
}
input,textarea{
    border: solid 1px skyblue;
    width: 800px;
    height: 2rem;
    padding-left: 50px;
}
label{
    width: 130px;
}

.button_send{
    margin-top: 30px;
    text-align: center;
    margin: auto;
    display: block;
   
}
.button_send button{
    color: skyblue;
    font-family: 'さわらびゴシック',sans-serif;
    font-size: 1.2rem;
    border: solid 1px skyblue;
    padding: 10px 50px;
}
.button_send button:hover{
    background-color: skyblue;
    color: white;
    transition: 0.8s;
}
.contact{
    margin-top: 5%;
}



/* －－－－－－－トップへ戻るボタン－－－－－－－ */
.for_top{
    font-family: 'さわらびゴシック',sans-serif;
    position: fixed;
    bottom: 80px;
    right: 50px;
}
.for_top a{
    color: skyblue;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 20px;
    border: solid 1px skyblue;
    border-radius: 15px;
}
.for_top a:hover{
    background-color: skyblue;
    color: white;
    padding: 20px;
    text-align: center;
    transition: 0.8s;
}


