@charset "UTF-8";
/* ********************************************
// --- リセット ---
// ※ブラウザのデフォルトCSSをリセット
// ***************************************** */

* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
}

body {
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
    background-image: url(../img/p0428_m.png);
}

header,
footer,
nav,
menu,
article,
aside,
section,
details,
figcaption,
figure {
    display: block;
}

ul,
ol {
    list-style: none;
}

table {
    border-collapse: collapse;
}

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

a img {
    border: none;
}

strong {
    font-weight: normal;
}

i {
    font-style: normal;
}

a {
    text-decoration: none;
    color: #5972ff;
}

.wrap {
    overflow: hidden;
}

/*header*/
.header {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 75px;
    background-color: #fafafa;
    z-index: 1;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .16);
}

.header-title {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 30px;
    margin-left: 20px;
    padding-top: 15px;
    color: #010202;
    z-index: 2;
}

.global-nav {
    position: fixed;
    right: -320px;
    /* これで隠れる */
    top: 0;
    width: 300px;
    /* スマホに収まるくらい */
    height: 100vh;
    padding-top: 40px;
    background-color: #fff;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto;
    /* メニューが多くなったらスクロールできるように */
}

.hamburger {
    position: absolute;
    right: 0;
    top: 10px;
    width: 40px;
    /* クリックしやすいようにちゃんと幅を指定する */
    height: 40px;
    /* クリックしやすいようにちゃんと高さを指定する */
    cursor: pointer;
    z-index: 300;
}

.global-nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.global-nav__item {
    text-align: center;
    padding: 0 14px;
}

.global-nav__item a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #111;
}

.global-nav__item a:hover {
    background-color: #eee;
}

.hamburger__line {
    position: absolute;
    left: 1px;
    width: 30px;
    height: 2px;
    background-color: #111;
    transition: all .6s;
}

.hamburger__line--1 {
    top: 13px;
}

.hamburger__line--2 {
    top: 20px;
}

.hamburger__line--3 {
    top: 27px;
}

.black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
}

/* 表示された時用のCSS */
.nav-open .global-nav {
    right: 0;
}

.nav-open .black-bg {
    opacity: .8;
    visibility: visible;
}

.nav-open .hamburger__line--1 {
    transform: rotate(45deg);
    top: 20px;
}

.nav-open .hamburger__line--2 {
    width: 0;
    left: 50%;
}

.nav-open .hamburger__line--3 {
    transform: rotate(-45deg);
    top: 20px;

}

.routebox {
    font-size: 12px;
    margin-right: 55px;
    margin-top: 22px;
}

.log {
    width: 100px;
    position: absolute;
    top: 1px;
    left: 30px;
}

#syutten {
    float: right;
    font-size: 10px;
    margin-right: 100px;
}

/*main*/
main {
    margin-top: 100px;
    margin-bottom: 50px;
}

.course {
    width: 70%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.osusume {
    text-align: center;
    width: 60%;
    background-color: #d1cdc0;
    border-radius: 10px;
    border-left: solid 10px #ff9336;
    margin-left: auto;
    margin-right: auto;
}

.ruto {
    width: 60%;
    position: relative;
    left: 10px;
    margin-top: 25px;
    margin-left: auto;
    margin-right: auto;
}

.ruto ul {
    line-height: 50px;
}

.ruto ul li::before {
    content: "\2022";
    /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: #ff9336;
    /* Change the color */
    font-weight: bold;
    /* If you want it to be bold */
    display: inline-block;
    /* Needed to add space between the bullet and the text */
    width: 1em;
    /* Also needed for space (tweak if needed) */
    margin-left: -1em;
    /* Also needed for space (tweak if needed) */
}

.sec01,
.sec02,
.sec03,
.sec04 {
    width: 80%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 20px;
    padding-top: 20px;
    margin-top: 20px;
    background-color: #f5f5f5;
    text-align: center;
    word-wrap: break-word;
}

.textbox {
    width: 90%;
    height: auto;
    margin: 0 auto;
    line-height: 30px;
    font-family: 游教科書体;
}

.textbox h1 {
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    border-bottom: solid #ff9336 1px;
}

#tera {
    width: 140px;
}

#ame {
    width: 150px;
}

.imgbox {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#dango02,
#dango,
#aqua,
#aqua02 {
    padding-right: 10px;
    padding-top: 10px;
}


.linkbox {
    width: 50%;
    height: 30px;
    background-color: #ff9336;
    border-radius: 20px;
    text-align: center;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

.linkbox a {
    text-decoration: none;
}


footer {
    background-color: rgba(0, 0, 0, 0.5);
    height: 130px;
}

.copy {
    margin-right: auto;
    margin-left: auto;
    color: #fff;
    text-align: center;
    height: 20px;
    margin-top: 20px;
    padding-top: 30px;
    width: 200px;
    font-size: 20px;
}

.footer-nav {
    width: 480px;
    margin: auto;
    padding-top: 20px;
}

.footer-nav li {
    text-align: center;
    width: 100px;
    padding-right: 20px;
    float: left;

}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    font-size: 20px;
}

/*--レスポンシブ--*/
@media screen and (max-width: 633px) {
    .header-title {
        font-size: 20px;
        padding-top: 22px;
    }

    #menu1 {
        margin-top: 26px;
    }

    .nav li:first-child {
        border-top: solid 1px white;
    }

    .box {
        width: 100%;
        height: 300px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }

    #dango02,
    #dango,
    #aqua,
    #aqua02 {
        padding-right: 0;
        padding-top: 5px;
    }

    a,
    p {
        font-size: 10px;
    }
}

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

    .header-title {
        font-size: 10px;
    }
}

/*map*/
#sample {
    width: 700px;
    height: 400px;
}
