@charset 'UTF-8';



/* ================================================
共通の色
================================================ */
:root {
    --super-light-blue:  #cee3fe;
    --light-blue: #6fa3f0;
    --blue: #1665cc;
    --dark-blue: #154b91;
    --light-purple: #c5b2d6;
    --purple: #8f64ab;
    --pink: #ffb2c1;
    --dark-pink: #ff7994;
/*    --red: #f8234e;*/
    --yellow: #ffd673;
    --super-light-grey: #ccc;
    --light-grey: #999;
    --grey: #333;
    --dark-grey: #111;
    --white: #fff;

    --ultra-light-green: #bad4d1;
    --super-light-green: #94bcb7;
    --light-green: #6ea7a1;
    --green: #5a8c84;
    --dark-green: #0b564f;
    --ultra-light-orange: #fcc9ac;
    --super-light-orange: #f9a980;
    --light-orange: #f68b58;
    --orange: #d0653b;
    --dark-orange: #8c3003;
    --super-light-red: #fabea7;
    --light-red: #f37053;
    --red: #c83e36;
    --dark-red: #8b0304;

    /*------- 更新用 -------*/
    --update-bg-color: #6ea7a1; /*light-green*/
    --update-fg-color: #5a8c84; /*green*/
    /*------- 失効再交付 -------*/
    --reissue-bg-color: #f68b58; /*light-orange*/
    --reissue-fg-color: #d0653b; /*orange*/

}



/*------- 用途別カラー -------*/
/* 更新用 */
.update-bg-color {
    background: var(--update-bg-color);
}
/* 失効再交付 */
.reissue-bg-color {
    background: var(--reissue-bg-color);
}

/* 注意喚起用文字 */
.annotation-red-color {
    color: var(--dark-red);
}
.annotation-blue-color {
    color: var(--dark-blue);
}

/*------- カラー指定 -------*/
/* テキスト */
.font-blue {
    color: var(--blue);
}
.font-dark-blue {
    color: var(--dark-blue);
}

.font-red {
    color: var(--red);
}
.font-dark-red {
    color: var(--dark-red)

}
.font-white {
    color: var(--white);
}
.font-light-grey {
    color: var(--light-grey);
}

/* 背景 */
.bg-green {
    background-color: var(--green);
}
.bg-blue {
    background-color: var(--blue);
}
.bg-light-grey {
    background-color: var(--light-grey);
}

/* ================================================
共通のデコレーション
================================================ */

/* テキストの装飾 */
.under-line {
    text-decoration: underline;
}
.font-bold {
    font-weight: bold;
}

/* テキストの配置 */
.text-align-right {
    text-align: right;
}
.text-align-center {
    text-align: center;
}
.text-align-left {
    text-align: left;
}

/* 上付き文字 */
.superscript-annotation {
    font-size: 0.8em;
    vertical-align: top;
}

/* スペースを開けたい場合 */
.under-space {
    margin-bottom: 2rem;
}

/* FontAwesome の画像をセンターで大きく表示する場合 */
.icon-center-big {
    font-size: 5rem;
    text-align: center;
}

.rectangle {
    border: 2px solid var(--grey);
}

/* ================================================
共通のスタイル 特定リンクに画像を挿入
================================================ */

a[href^="https://"]::before {
    font-family: "FontAwesome";
    content: "\f35d";
    position: relative;
    left : 0rem;
    color:var(--grey);
}

a[href^="mailto:"]::before {
    font-family: "FontAwesome";
    content: "\f0e0";
    position: relative;
    left : 0rem;
    color:var(--grey);
}

a[href$=".pdf"]::before {
    font-family: "FontAwesome";
    content: "\f1c1";
    position: relative;
    left : 0rem;
    color:var(--grey);
}


/* ================================================
共通のスタイル html body
================================================ */
html {
    font-size: 100%;
    /* スムーズスクロール */
    scroll-behavior: smooth;
    /* 上部に固定ヘッダがあるため回避 */
    scroll-padding-top: 10rem;

}
body {
	color: var(--grey);
	font-family: sans-serif;
}

/* ================================================
共通のスタイル p img h1 h2
================================================ */
p {
    line-height: 1.7;
}
img {
    max-width: 100%;
}
h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}
h1,
h2 {
    text-align: center;
}


/* ================================================
共通の wrapper
================================================ */
.wrapper {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.foot-wrapper {
    min-height: calc(100vh - 112px - 80px); /*footer を一番下に配置するためのモノ */
}

/* ================================================
header 共通
================================================ */
header {
    width: 100%;
    z-index: 1;
    background: var(--grey);
}


header .logo-wrapper {
    padding: 0.5rem 0;
    width: 100%;
    background: var(--grey);
    position: fixed;
    top: 0px;
    display: flex;
    justify-content: space-between;
    z-index: 1;
    white-space: nowrap;
}
header .menu-wrapper {
    padding: 1rem 0;
    width: 100%;
    background: var(--grey);
    position: fixed;
    top: 66px;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

header .logo-upper {
    color: var(--white);
    font-size: 0.5rem;
}
header .logo {
    color: var(--white);
    font-size: 1.25rem;
    
}

.btn-menu {
/*    position: absolute;*/
    position: fixed;
    top: 30px;
    right: 12px;
    border: 1px solid rgba(255,255,255,.5);
    color: var(--white);
    padding: .5rem 1rem;
}
.main-nav {
    background: var(--grey);
    width: 0;
    position: absolute;
    /*position: fixed;*/
    z-index: 2;
    /*top: 50px;*/
    right: 0;
    overflow: hidden;
    transition: .5s;
}

.main-nav li {
    text-align: center;
    margin: 2rem 0;
}
.main-nav a {
    display: block;
    color: var(--white);
    font-size: 1rem;
    /*white-space: nowrap;*/
}
.main-nav.open-menu {
    width: 100%;
}

.qa_box {
    position: fixed;
    z-index: 10;
    top: 5px;
    right: 100px;
    width: 7rem;
    font-size: 0.75rem;
    display: block;
    padding: 0.25rem 0.25rem 0.25rem; /* 上　右左　下 */
    text-align: center;
    color: var(--white);
}

.contact_box {
    position: fixed;
    z-index: 10;
    top: 5px;
    right: 20px;
    width: 5rem;
    font-size: 0.75rem;
    display: block;
    padding: 0.25rem 0.25rem 0.25rem; /* 上　右左　下 */
    text-align: center;
    color: var(--white);
}

/* ================================================
index.html フォント
================================================ */
header,
h1,
h2 {
    font-family: impact, sans-serif;
}


/* ================================================
hero index.html用
================================================ */
#hero {
    /*background-color: var(--light-blue);*/
    background-image: url('../images/ship.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /*background-blend-mode: soft-light;*/
/*    animation: bg-color 10s infinite;*/
    height: 100vh;
    display: flex;
    align-items: center;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}


#hero h1 {
    font-size: 2rem;
    font-weight: 500;
    padding-bottom: 2rem;
    background-color: rgba(255,255,255,0.7);
    text-shadow: 1px 2px 3px var(--light-grey);
}
#hero .hero-sub-title {
    text-align: center;
    font-size: 1.5rem;
    background-color: rgba(255,255,255,0.7);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    /*margin-bottom: 1.5rem;*/
}
#hero .hero-body {
    text-align: center;
    border-top: 2px solid var(--grey);
    border-bottom: 2px solid var(--grey);
    padding: .25rem 0;
    font-size: 1rem;
    margin-bottom: 1rem;
    background-color: rgba(255,255,255,0.7);
}

/* ================================================
about index.html用
================================================ */
#about {
    padding: 4rem 1rem;
}
#about h2 {
    background: linear-gradient(var(--light-blue), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
/*    text-fill-color: transparent;*/
}
#about p {
    margin-bottom: 2rem;
}


#about h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* ================================================
check index.html用
================================================ */
#check {
    padding: 4rem 1rem;
}
#check h2 {
    background: linear-gradient(var(--light-purple), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
/*    text-fill-color: transparent;*/
}
#check p {
    margin-bottom: 2rem;
}


#check h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}




/* ================================================
Information index.html用
================================================ */
#info {
    background-image: linear-gradient(var(--light-green), var(--green));
    padding: 7rem 0;
    -webkit-clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
/*    -webkit-clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
    clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);*/
}
#info h2 {
    color: var(--white);
}
.info-table {
    color: var(--white);
    width: 100%;
}
.info-table tr {
    border-bottom: 1px solid rgba(255,255,255,.5);
}
.info-table td {
    display: block;
    line-height: 1.5;
}
.info-date {
    font-size: .875rem;
    padding-top: 1rem;
}
.info-content {
    padding-bottom: 1rem;
}




/* ================================================
footer 共通
================================================ */
#footer {
/*    background-image: linear-gradient(var(--light-green), var(--green));*/
    background-color: var(--blue);
    margin-top: auto;
}


.footer {
    border-top: 1px solid rgba(255,255,255,0.5);
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
    font-size: .875rem;
    color: var(--white);
}
.footer a {
    text-decoration: underline;
}
.footer a:hover {
    text-decoration: underline;
    color: var(--light-blue);
}


/* ================================================
ステップのフローを表示 共通
================================================ */

    .flow {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: space-between;
        -ms-flex-pack: space-between;
        justify-content: space-between;
    }
    .flow > li {
        -ms-flex-preferred-size: 22%;
        flex-basis: 22%;
    }
    .flow > li .icon {
        font-family: 'Montserrat', sans-serif;
        font-size: 1rem;
        line-height: 50px;
        width: 50px;
        color: #fff;
        background: rgb(107,144,219);
        margin: 0 auto 20px;
        display: block;
        border-radius: 50%;
        text-align: center;
        position: relative;
        letter-spacing: 2px;
    }
    .flow > li .icon::before {
        content: "";
        border: solid transparent;
        border-width: 8px;
        border-top-color: rgb(107,144,219);
        position: absolute;
        top: calc(100% - 2px);
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .flow > li dl {
        padding: 30px 20px;
        margin: 0;
        border: 3px solid rgb(107,144,219);
        font-size: 0.75rem;
        position: relative;
    }
    .flow > li:not(:last-child) dl::before {
        content: "";
        width: 14px;
        height: 14px;
        margin-right: 10px;
        display: inline-block;
        border-top: 4px solid rgb(107,144,219);
        border-right: 4px solid rgb(107,144,219);
        position: absolute;
        top: calc(50% - 14px);
        left: 104%;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .flow > li dl dt {
        font-size: 1.25rem;
        font-weight: 600;
        color: rgb(107,144,219);
        -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
        margin-bottom: 1vh;
        text-align: center;
    }



/* ================================================
固定フローティングボックス（スマホは表示しない） 共通
================================================ */

    /* -------- box1 -------- */
    /* -------- 外側 -------- */
    .floating-box-1 {
        position: fixed;
        z-index: 10;
        bottom: 300px;
        right: 20px;
        width: 5rem;
        height: 5rem;
        font-size: 3rem;
        display: none;
        padding-top: 1.2rem;
        text-align: center;
        color: var(--light-blue);
        background-color: var(--super-light-blue);
        opacity: .8;
    }

    /* -------- 内側 -------- */
    .floating-box-inner-1 {
        position: fixed;
        z-index: 20;
        bottom: 300px;
        right: 20px;
        width: 5rem;
        font-size: 0.8rem;
        display: none;
        padding: 0.25rem 0.25rem 0.5rem; /* 上　右左　下 */
        text-align: center;
        color: var(--grey);
        font-weight: bolder;
    }
    
    /* -------- box2 -------- */
    /* -------- 外側 -------- */
    .floating-box-2 {
        position: fixed;
        z-index: 10;
        bottom: 200px;
        right: 20px;
        width: 5rem;
        height: 5rem;
        font-size: 3rem;
        display: none;
        padding-top: 1.2rem;
        text-align: center;
        color: var(--light-blue);
        background-color: var(--super-light-blue);
        opacity: .8;
    }

    /* -------- 内側 -------- */
    .floating-box-inner-2 {
        position: fixed;
        z-index: 20;
        bottom: 200px;
        right: 20px;
        width: 5rem;
        font-size: 0.8rem;
        display: none;
        padding: 0.25rem 0.25rem 0.5rem; /* 上　右左　下 */
        text-align: center;
        color: var(--grey);
        font-weight: bolder;
    }
    
    /* -------- box3 -------- */
    /* -------- 外側 -------- */
    .floating-box-3 {
        position: fixed;
        z-index: 10;
        bottom: 100px;
        right: 20px;
        width: 5rem;
        height: 5rem;
        font-size: 3rem;
        display: none;
        padding-top: 1.2rem;
        text-align: center;
        color: var(--light-blue);
        background-color: var(--super-light-blue);
        opacity: .8;
    }

    /* -------- 内側 -------- */
    .floating-box-inner-3 {
        position: fixed;
        z-index: 20;
        bottom: 100px;
        right: 20px;
        width: 5rem;
        font-size: 0.8rem;
        display: none;
        padding: 0.25rem 0.25rem 0.5rem; /* 上　右左　下 */
        text-align: center;
        color: var(--grey);
        font-weight: bolder;
    }






/* ================================================
edit-course-list
================================================ */
#edit-course-list {
    padding: 4rem 1rem;
}


#edit-course-list h1 {
    width: "100%";
    background-color: var(--blue);
    padding: 0.5rem 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: left;
    color: var(--white);
}

#edit-course-list h2 {
    background-color: var(--white);
    padding: 0.5rem 0.5rem;
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 3rem;
    margin-bottom: 1rem;
    text-align: left;
    /*width: "300px";*/
    border-left:10px solid var(--blue);
    border-bottom:1px solid var(--blue);
}

#edit-course-list h3 {
    background-color: var(--white);
    padding: 0.5rem 0.5rem;
    font-size: 1.25rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    text-align: left;
    /*width: "300px";*/
    /*border-left:10px solid var(--light-blue);*/
    border-bottom:1px solid var(--light-blue);
}


#edit-course-list table {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem; 
}
#edit-course-list th {
    vertical-align: middle;
    border-top: solid 1px var(--grey);
    border-bottom: solid 1px var(--grey);
    border-right: solid 1px var(--grey);
    border-left: solid 1px var(--grey);
    padding: 0.25rem;
    font-size: 0.8rem;
    text-align: center;

}
#edit-course-list td {
    vertical-align: middle;
    border-top: solid 1px var(--grey);
    border-bottom: solid 1px var(--grey);
    border-right: solid 1px var(--grey);
    border-left: solid 1px var(--grey);
    padding: 0.25rem;
    font-size: 0.8rem;

}



/* ================================================
course-list course.htmlで利用
================================================ */
#course-list {
    padding: 4rem 1rem;
    margin-top: 7rem;
}


#course-list h1 {
    width: "100%";
    background-color: var(--blue);
    padding: 0.5rem 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: left;
    color: var(--white);
}

#course-list h2 {
    background-color: var(--white);
    padding: 0.5rem 0.5rem;
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 3rem;
    margin-bottom: 1rem;
    text-align: left;
    /*width: "300px";*/
    border-left:10px solid var(--blue);
    border-bottom:1px solid var(--blue);
}

#course-list h3 {
    background-color: var(--white);
    padding: 0.5rem 0.5rem;
    font-size: 1.25rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    text-align: left;
    /*width: "300px";*/
    /*border-left:10px solid var(--light-blue);*/
    border-bottom:1px solid var(--light-blue);
}


.course-list table {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem; 
}
.course-list th {
    vertical-align: middle;
    border-top: solid 1px var(--grey);
    border-bottom: solid 1px var(--grey);
    border-right: solid 1px var(--grey);
    border-left: solid 1px var(--grey);
    padding: 0.25rem;
    font-size: 0.8rem;
    text-align: center;

}
.course-list td {
    vertical-align: middle;
    border-top: solid 1px var(--grey);
    border-bottom: solid 1px var(--grey);
    border-right: solid 1px var(--grey);
    border-left: solid 1px var(--grey);
    padding: 0.25rem;
    font-size: 0.8rem;

}

#control-panel {
    margin-bottom: 0.5rem;

}

.txt-control-panel {
    padding: 0.25rem;
    font-size: 0.8rem;
    text-align: center;
    background-color: var(--white);
}
.select-pref {
    padding: 0.25rem;
    border: 2px solid #ccc;
    font-size: 0.8rem;
    text-align: center;
}


#course-list hr {
    margin: 4rem;
    border-style: dotted;
    border-color: var(--grey);
}

#course-list p {
    margin-top: 1rem;
    margin-bottom: 1rem;
}


#course-list .flex-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
#course-list .box-2-item-left {
    margin: 0.25rem;
    padding: 0.25rem;
    width: 90%;
    background-color: var(--blue);
    color: var(--white);
    text-align: center;
    vertical-align: middle;
    
}
#course-list .box-2-item-left {
    vertical-align: middle;
    
}
#course-list .box-2-item-right {
    margin: 0.25rem;
    padding: 0.25rem;
    /*background-color: var(--light-blue);*/
    /*vertical-align: middle;*/
    width: 90%;
    
}

#course-list .box-2-item-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    padding:0.25rem
    /*border-bottom: 1px solid var(--blue);*/
}

#course-list .box-2-item-contents {
    font-size: 1rem;
}


/* ================================================
場所表示用のモーダル
================================================ */
button.course-list {
    margin: 0.1rem;
    padding: 0.1rem;
    font-size: 0.8rem;
    border: 1px solid var(--grey);
    color: var(--grey);
}
  
button.course-list:hover {
    background-color: var(--blue);
    color: var(--white);
    border: 1px solid var(--blue);

}

button.course-list-noborder {
    margin: 0.1rem;
    padding: 0.1rem;
    font-size: 0.8rem;
/*    border: 1px solid var(--grey);*/
    color: var(--grey);
    text-align: left;

}
  
button.course-list-noborder:hover {
    background-color: var(--blue);
    color: var(--white);
/*    border: 1px solid var(--blue);*/

}



.popup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: scroll;
  }
  
.popup-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    text-align: center;
}
  
/*モーダル内*/

.modal-course-list-table {
    width: 100%;
}

.modal-course-list tr:nth-child(odd) td {
    background-color: var(--super-light-blue);
}

.modal-course-list-l {
    /*    display: block;*/
        text-align: left;
        line-height: 1.25;
        width: 30%;
}
.modal-course-list-r {
        /*    display: block;*/
            text-align: left;
            line-height: 1.25;
            width: 70%;
}
            
/*.modal-course-list-ul {
    width: 100%;
    position: static;
    display: flex;
    background: var(--super-light-blue);
}

.modal-course-list-ul li {
    text-align: center;
    margin: 0.5rem;
}
*/

.modal-course-list h2 {
    background-color: var(--white);
    padding: 0.5rem 0.5rem;
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 3rem;
    margin-bottom: 1rem;
    text-align: left;
    /*width: "300px";*/
    border-left:10px solid var(--blue);
    border-bottom:1px solid var(--blue);
}

/* googlemapの横幅を指定するための要素 */
.map-wrap {
    max-width: 100%; /* ここに横幅を指定 */
  }
   
/* Google Mapを囲う要素 */
.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%; /* 比率を4:3に固定 */
}
   
  /* Google Mapのiframe */
  .map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }



/* ================================================
ページ遷移用のスタイル
================================================ */
.pagination {
    display: flex;
    justify-content: center;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 1rem;
    text-align: center;
}

.pagination .page-other {
    border-radius: 5px;
    padding-top: 4px;
    display: inline-block;
    width: 2rem;
    height: 2rem;
    padding: 0.2rem;
    margin: 1rem 0.25rem 1rem 0.25rem;
    background: var(--super-light-grey);
    color: var(--white);
}
.pagination .page-other:hover {
    background-color: var(--blue);
    color: var(--white);
}

.pagination .page-current {
    border-radius: 5px;
    padding-top: 4px;
    display: inline-block;
    width: 2rem;
    height: 2rem;
    padding: 0.2rem;
    margin: 1rem 0.25rem 1rem 0.25rem;
    background: var(--light-blue);
    color: var(--white);
}
.pagination .page-current:hover {
    background-color: var(--light-blue);
    color: var(--white);
}



/*------------sub page-------------------------- */

/* ================================================
sub-page 共通
================================================ */
#sub-page {
    padding: 4rem 1rem;
/*    scroll-margin: 7rem;*/
    margin-top: 7rem;
}


#sub-page img {
    margin-bottom: 1rem;    
}

#sub-page h1 {
    width: "100%";
    background-color: var(--blue);
    padding: 0.5rem 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: left;
    color: var(--white);
}

#sub-page h2 {
    background-color: var(--white);
    padding: 0.5rem 0.5rem;
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 3rem;
    margin-bottom: 1rem;
    text-align: left;
    /*width: "300px";*/
    border-left:10px solid var(--blue);
    border-bottom:1px solid var(--blue);
}

#sub-page h3 {
    background-color: var(--white);
    padding: 0.5rem 0.5rem;
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 3rem;
    margin-bottom: 1rem;
    text-align: left;
    /*width: "300px";*/
    /*border-left:10px solid var(--light-blue);*/
    border-bottom:1px solid var(--light-blue);
}

#sub-page h4 {
    background-color: var(--white);
    padding: 0.25rem 0.25rem;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 1rem;
    /*margin-bottom: 1rem;*/
    text-align: left;
    text-decoration: underline;
    /*width: "300px";*/
    /*border-left:10px solid var(--light-blue);*/
    /*border-bottom:1px solid var(--light-blue);*/
}

#sub-page .box-info {
    margin-top: 2rem;
    margin-bottom: 2rem;
    width: "80%";
    text-align: "center";
    padding: 20px;
    border: 1px solid #333;
}
#sub-page .box-info-nomargin-bottom {
    margin-top: 2rem;
    width: "80%";
    text-align: "center";
    padding: 20px;
    border: 1px solid #333;
}
#sub-page .box-info-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    /*border-bottom: 1px solid var(--blue);*/
}
#sub-page .box-info-contents {
    font-size: 1rem;
}

#sub-page .arrow-down {
    font-size: 5rem;
    transform: scale(2.0, 0.8);
    color: var(--light-grey);
}

#sub-page table {
    margin-top: 1rem;
    margin-bottom: 1rem; 
}
#sub-page th {
    vertical-align: middle;
    border-top: solid 1px var(--grey);
    border-bottom: solid 1px var(--grey);
    border-right: solid 1px var(--grey);
    border-left: solid 1px var(--grey);
    padding: 0.5rem;

}
#sub-page td {
    vertical-align: middle;
    border-top: solid 1px var(--grey);
    border-bottom: solid 1px var(--grey);
    border-right: solid 1px var(--grey);
    border-left: solid 1px var(--grey);
    padding: 0.5rem;

}

#sub-page .nec-width-fix {
    width: 4rem;
}

#sub-page .flex-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
#sub-page .box-2-item {
    margin: 1rem;
    padding: 0.5rem;
    width: 90%;
    
}
#sub-page .box-2-item-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    padding:0.25rem
    /*border-bottom: 1px solid var(--blue);*/
}

#sub-page .box-2-item-contents {
    font-size: 1rem;
}

#sub-page hr {
    margin: 4rem;
    border-style: dotted;
    border-color: var(--grey);
}
#sub-page .hr-top {
    /*margin: 4rem;*/
    margin: 25rem 4rem 4rem 4rem;
    border-style: dotted;
    border-color: var(--grey);
}


/* 2box スマホの場合には縦に並べる pcの場合には横並び */
#sub-page .flex-box-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#sub-page .box-2-item-left {
    padding: 0.5rem 0.5rem 0.25rem 0.5rem;
    width: 90%;
    text-align: left;
    vertical-align: middle;
    
}
#sub-page .box-2-item-right {
    padding: 0.5rem 0.5rem 0.25rem 0.5rem;
    width: 90%;
    text-align: center;
    border-bottom: solid 1px var(--light-grey);

}





/* ================================================
ボタンのスタイル
================================================ */

.a-button {
    display: block;
    margin-top: 0.5rem;
    margin-left: 1rem;
    padding: 0.25rem 0.25rem;
    border-style: solid;
    color: var(--blue);
    border: 1px solid var(--blue);
}
.a-button:hover {
    display: block;
    margin-top: 0.5rem;
    margin-left: 1rem;
    padding: 0.25rem 0.25rem;
    border-style: solid;
    color: var(--white);
    background-color: var(--blue);
    border: 1px solid var(--blue);
}

.a-button-big {
    display: block;
    margin-top: 0.5rem;
    padding: 0.5rem 0.5rem;
    text-align: center;
    border-style: solid;
    color: var(--white);
    font-weight: bold;
    background-color: var(--red);
    border: 1px solid var(--red);
}
.a-button-big:hover {
    display: block;
    margin-top: 0.5rem;
    border-style: solid;
    color: var(--white);
    background-color: var(--dark-red);
    border: 1px solid var(--dark-red);
}

.a-button-update {
    display: block;
    margin-top: 0.5rem;
    margin-left: 1rem;
    padding: 0.25rem 0.25rem;
    border-style: solid;
    color: var(--update-fg-color);
    border: 1px solid var(--update-bg-color);
}
.a-button-update:hover {
    display: block;
    margin-top: 0.5rem;
    margin-left: 1rem;
    padding: 0.25rem 0.25rem;
    border-style: solid;
    color: var(--white);
    background-color: var(--update-fg-color);
    border: 1px solid var(--update-fg-color);
}

.a-button-reissue {
    display: block;
    margin-top: 0.5rem;
    margin-left: 1rem;
    padding: 0.25rem 0.25rem;
    border-style: solid;
    color: var(--reissue-fg-color);
    border: 1px solid var(--reissue-bg-color);
}
.a-button-reissue:hover {
    display: block;
    margin-top: 0.5rem;
    margin-left: 1rem;
    padding: 0.25rem 0.25rem;
    border-style: solid;
    color: var(--white);
    background-color: var(--reissue-fg-color);
    border: 1px solid var(--reissue-fg-color);
}


.a-inline {
    color: var(--blue);
    text-decoration: none;
}
.a-inline:hover {
    color: var(--white);
    background-color: var(--blue);
    text-decoration: none;
}


/*------- ul の各種スタイル -------*/

/* chk 最初の字下げが異なるため注意 */
.ul-style-chk {
    position: relative;
    padding-left: 2rem;
}
.ul-style-chk li {
    /*line-height: 1.5;*/
    padding: 0.25rem 1rem;
    list-style-type: none!important;
}
.ul-style-chk li:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00c";
    position: absolute;
    left : 0rem;
    /*color:var(--grey);*/
}


/* arrow >の形 */
.ul-style-arrow {
    position: relative;
    padding-left: 0.5rem;
}
.ul-style-arrow li {
    padding: 0.25rem 0.5rem;
    list-style-type: none!important;
    text-indent: -1.25rem;
}
.ul-style-arrow li:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    position: relative;
    left : 0 rem;
    padding-right: 0.5rem;
    /*color:var(--grey);*/
}

/* carret ▲を90度寝かせた形*/
.ul-style-carret {
    position: relative;
    padding-left: 0.5rem;
}
.ul-style-carret li {
    padding: 0.25rem 0.5rem;
    list-style-type: none!important;
    text-indent: -1.25rem;
}
.ul-style-carret li:before {
    font-family: "FontAwesome";
    content: "\f0da";
    position: relative;
    left : 0 rem;
    padding-right: 0.25rem;
    /*color:var(--grey);*/
}
ul ul {
    padding-left: 2rem;
}

/* squarecheck □の中にチェックあり*/
.ul-style-squarecheck {
    position: relative;
    padding-left: 0.5rem;
}
.ul-style-squarecheck li {
    padding: 0.25rem 0.5rem;
    list-style-type: none!important;
    text-indent: -1.25rem;
}
.ul-style-squarecheck li:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 100;
    content: "\f14a";
    position: relative;
    left : 0 rem;
    padding-right: 0.5rem;
    /*color:var(--grey);*/
}


/* square □のみ*/
.ul-style-square {
    position: relative;
    padding-left: 0.5rem;
}
.ul-style-square li {
    padding: 0.25rem 0.5rem;
    list-style-type: none!important;
    text-indent: -1.25rem;
}
.ul-style-square li:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 100;
    content: "\f0c8";
    position: relative;
    left : 0 rem;
    padding-right: 0.5rem;
    /*color:var(--grey);*/
}

/* square-xmark □の中に×*/
.ul-style-square-xmark {
    position: relative;
    padding-left: 0.5rem;
}
.ul-style-square-xmark li {
    padding: 0.25rem 0.5rem;
    list-style-type: none!important;
    text-indent: -1.25rem;
}
.ul-style-square-xmark li:before {
    font-family: "FontAwesome";
    font-weight: 100;
    content: "\f2d3";
    position: relative;
    left : 0 rem;
    padding-right: 0.5rem;
    /*color:var(--grey);*/
}

/* dot ・を表示*/
.ul-style-dot {
    position: relative;
    padding-left: 0.5rem;
}
.ul-style-dot li {
    padding: 0.25rem 0.5rem;
    list-style-type: none!important;
    text-indent: -1rem;
}
.ul-style-dot li:before {
    font-weight: 100;
    content: "・";
    position: relative;
    left : 0 rem;
    padding-right: 0rem;
    /*color:var(--grey);*/
}

/* dannotation ※を表示 上下の padding は他と異なりなくしています*/
.ul-style-annotation {
    position: relative;
    padding-left: 0.5rem;
}
.ul-style-annotation li {
    padding: 0rem 0.5rem;
    list-style-type: none!important;
    text-indent: -1rem;
}
.ul-style-annotation li:before {
    font-weight: 100;
    content: "※";
    position: relative;
    left : 0 rem;
    padding-right: 0rem;
    /*color:var(--grey);*/
}


/* annotation-small ※を表示（フォントサイズ小）*/
.ul-style-annotation-small {
    position: relative;
    padding-left: 0.5rem;
    font-size: 0.9rem;
    line-height: 0.5rem;
}
.ul-style-annotation-small li {
    padding: 0.25rem 0.5rem;
    list-style-type: none!important;
    text-indent: -1rem;
}
.ul-style-annotation-small li:before {
    font-weight: 100;
    content: "※";
    position: relative;
    left : 0 rem;
    padding-right: 0rem;
/*    color:var(--grey);*/
}

/* annotation-small ※を表示（フォントサイズ小）*/
.ul-style-annotation-ultra-small {
    position: relative;
    padding-left: 0.5rem;
    font-size: 0.75rem;
    line-height: 0.75rem;
}
.ul-style-annotation-ultra-small li {
    padding: 0.1rem 0.5rem;
    list-style-type: none!important;
    text-indent: -0.75rem;
}
.ul-style-annotation-ultra-small li:before {
    font-weight: 100;
    content: "※";
    position: relative;
    left : 0 rem;
    padding-right: 0rem;
}



/* サイトマップ用　基本carret*/
.ul-style-sitemap {
    position: relative;
    padding-left: 1.5rem;
}
.ul-style-sitemap li {
    padding: 0.5rem 1.5rem;
    list-style-type: none!important;
    text-indent: -1.25rem;
}
.ul-style-sitemap li:before {
    font-family: "FontAwesome";
    content: "\f0da";
    position: relative;
    left : 0 rem;
    padding-right: 1.25rem;
    /*color:var(--grey);*/
}



/* Timeline */
.timeline {
    list-style: decimal inside;
    font-family: 'Sawarabi Mincho', sans-serif;
}
.timeline-item {
    margin-bottom: 2rem;
}
.timeline-title {
    font-size: 1.375rem;
    display: inline-block;
    margin-bottom: 1rem;
}
.timeline-content {
    font-family: sans-serif;
}


/* form */

.input-text-1L {
    width: 80%;
    padding: 0.25rem;
    margin: 0.25rem 0.25rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}
.input-text-1L:focus {
    border-color: var(--light-blue);
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5rem);
    outline: none;
}

.input-button {
    background-color: var(--light-blue);
    color: var(--white);
    padding: 0.25rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    width: 50%;
    display: block;
    margin: 0 auto;
}

.input-button:hover {
    background-color: var(--blue);
}


.input-button-calm {
    background-color: var(--light-grey);
    color: var(--white);
    margin: 1rem auto;
    padding: 0.25rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    width: 50%;
    display: block;
/*    margin: 0 auto;*/
}

.input-button-calm:hover {
    background-color: var(var(--grey));
}


/*.pw-container {
    position: relative;
    width:80%;
    margin: 0.25rem;
    padding: 0.25rem;
}*/
.pw-input {
    width: 100%;
    padding: 0.25rem;
    margin: 0.25rem 0.25rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}
.pw-button {
    position:absolute;
    top: 0.5em;
    right: 0.1em;
    margin:0;
    padding:0;
    border: none;
    background:none;
}

.select-data {
    border: 1px solid;
    border-color: var(--light-grey);
    padding: 0.5rem 0.5rem;
    margin: 0.25rem 0.25rem;
    border-radius: 5px;
}




/* ================================================
FAQ html
================================================ */
.qa-box dt {
    padding: 0.5rem 0.5rem 0.5rem 2rem;
    border-radius: 5px;
    background: var(--super-light-blue);
    text-indent: -1.5rem;
    width: 100%;
}
.qa-box dt:before {
    content: "Q.";
    font-weight: bold;
    margin-right: 7px;
}
.qa-box dd {
    padding: 0.5rem 0.5rem 1.5rem 2rem;
    text-indent: -1.5rem;
}
.qa-box dd:before {
    content: "A.";
    color: var(--blue);
    font-weight: bold;
    margin-right: 2px;
}

.qa-box a {
    text-decoration: underline;
    color: var(--blue);
}

/* ================================================
question-box index.html about
================================================ */
.question-box {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: stretch;
    align-content: stretch;
    /*height: 3vh;*/
    margin-bottom: 1rem;
    row-gap: 1rem;
}

.question-area {
    width: 90%;
    border: solid 2px var(--blue);
    background-color: var(--super-light-blue);
    padding: 0.5rem;
    border-radius: 5px;
    color: var(--grey);
    box-shadow: 0 0 0 0.25rem var(--super-light-blue);
}

.question-button1 {
    width: 90%;
    border: dashed 1px var(--blue);
    background-color: var(--super-light-blue);    
    padding: 0.5rem;
    box-shadow: 0 0 0 0.25rem var(--super-light-blue);
}

.question-button2 {
    width: 90%;
    border: dashed 1px var(--blue);
    background-color: var(--super-light-blue);    
    padding: 0.5rem;
    box-shadow: 0 0 0 0.25rem var(--super-light-blue);
}

.question-button1:hover {
    border: dashed 1px var(--white);
    background-color: var(--blue);    
    padding: 0.5rem;
    color: var(--white);
    box-shadow: 0 0 0 0.25rem var(--super-light-blue);
}

.question-button2:hover {
    border: dashed 1px var(--white);
    background-color: var(--blue);    
    padding: 0.5rem;
    color: var(--white);
    box-shadow: 0 0 0 0.25rem var(--super-light-blue);
}

.answer-area {
    width: 90%;
    border: solid 2px var(--purple);
    background-color: var(--light-purple);
    padding: 0.5rem;
    border-radius: 5px;
    color: var(--grey);
    text-align: center;
    box-shadow: 0 0 0 0.25rem var(--purple);

}

.answer-button-other {
    width: 90%;
    border: dashed 1px var(--grey);
    background-color: var(--super-light-grey);    
    padding: 0.5rem;
    box-shadow: 0 0 0 0.25rem var(--super-light-grey);
    white-space: normal; /* 文字を折り返す */
}

.answer-button-reissue {
    width: 90%;
    border: dashed 2px var(--orange);
    background-color: var(--super-light-orange);
    padding: 0.5rem;
    box-shadow: 0 0 0 0.25rem var(--super-light-orange);
    white-space: normal; /* 文字を折り返す */
}
.answer-button-reissue:hover {
    width: 90%;
    border: dashed 2px var(--super-light-orange);
    background-color: var(--orange);
    padding: 0.5rem;
    box-shadow: 0 0 0 0.25rem var(--orange);
    white-space: normal; /* 文字を折り返す */
    font-weight: 500;
    color: var(--white);
}

.answer-button-update {
    width: 90%;
    border: dashed 2px var(--green);
    background-color: var(--super-light-green);
    padding: 0.5rem;
    box-shadow: 0 0 0 0.25rem var(--super-light-green);
    white-space: normal; /* 文字を折り返す */
}
.answer-button-update:hover {
    width: 90%;
    border: dashed 2px var(--super-light-green);
    background-color: var(--green);
    padding: 0.5rem;
    box-shadow: 0 0 0 0.25rem var(--green);
    white-space: normal; /* 文字を折り返す */
    font-weight: 500;
    color: var(--white);
}


/* 絞り込み条件を表示する場所 */
#course-list .nd-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    font-size: 0.8rem;
}
#course-list .nd-info {
    padding: 0.25rem;
    margin: 0.25rem 0.5rem 1rem 0.5rem;
    background-color: var(--super-light-blue);
}
#course-list .nd-cancel {
    padding: 0.25rem;
    margin: 0.25rem 0.5rem 1rem 0.5rem;
    background-color: var(--super-light-grey);
}

.box-info-alert {
    margin-top: 1rem;
    margin-bottom: 1rem;
    width: "80%";
    text-align: "center";
    padding: 1rem 2rem 1rem 2rem;
    border: 1px solid var(--dark-red);
}
/*
DESKTOP SIZE
================================================ */
@media (min-width: 600px) {



    /* ================================================
    question-box index.html about
    ================================================ */
    .question-area {
        width: 30%;
    }

    .question-button1 {
        width: 30%;

    }

    .question-button2 {
        width: 30%;

    }
    .answer-area {
        width: 45%;

    }
    .answer-button-other {
        width: 45%;
    }
    .answer-button-reissue {
        width: 45%;
    }
    .answer-button-reissue:hover {
        width: 45%;
    }
    .answer-button-update {
        width: 45%;
    }
    .answer-button-update:hover {
        width: 45%;
    }



    header .logo-upper {
        color: var(--white);
        font-size: 0.75rem;
    }
    header .logo {
        color: var(--white);
        font-size: 1.5rem;
    }
    



    /* Common */
    h2 {
        font-size: 5rem;
    }
    a:hover,
    .ticket-btn:hover {
        transition: .3s;
    }
    a:hover {
        color: var(--blue);
    }
    .ticket-btn:hover {
        background: var(--blue);
    }

/* Header */
    .btn-menu {
        display: none;
    }
    .main-nav {
        width: 100%;
        position: static;
        display: flex;
    }
    .main-nav li {
        margin: 0 0 0 1.5rem;
    }
/* Hero */
    #hero h1 {
        font-size: 3rem;
        line-height: 4rem;

    }
    .hero-title {
        font-size: 1.5rem;
    }
/* Infomation */
    .info-table td {
        display: table-cell;
    }
    .info-date {
        padding: 1.125rem 0 1rem 1rem;
    }
    .info-content {
        padding: 1rem 1rem 1rem 0;
    }
/* footer-box */
/*    #footer-box {
        white-space: nowrap;
    }*/
    .box1 {
        width: 400px;
        margin: auto;
    }

    /* subpage */
    #sub-page .box-2-item {
        margin: 1rem;
        padding: 0.5rem;
        width: 40%;
    
    }

    /* 2box スマホの場合には縦に並べる pcの場合には横並び */
    #sub-page .box-2-item-left {
        width: 35%;
        text-align: left;
        border-bottom: solid 1px var(--light-grey);
    
    }
    #sub-page .box-2-item-right {
        width: 55%;
        text-align: left;
        border-bottom: solid 1px var(--light-grey);
    }



    /* course-list */
    #course-list .box-2-item-left {
        /*margin: 1rem;*/
        /*padding: 0.5rem;*/
        width: 35%;
    
    }
    #course-list .box-2-item-right {
        /*margin: 1rem;*/
        /*padding: 0.5rem;*/
        width: 55%;
    
    }


    /* Timeline */
    .timeline-item {
        display: flex;
        margin-bottom: 0;
    }
    .timeline-title {
        width: 24%;
        padding: 2rem 2.5rem 2rem 0;
        text-align: right;
    }
    .timeline-content {
        border-left: 5px solid #f8f6f2;
        width: 76%;
        padding: 1.5rem 0 1.5rem 2.5rem;
        position: relative;
    }
    .timeline-content::before {
        display: block;
        width: 2.25rem;
        height: 2.25rem;
        background: #d0bea2;
        text-align: center;
        padding: .1rem;
        position: absolute;
        top: 1.5rem;
        left: -1.5rem;
        /* Font Awesome */
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        color: #fff;
        font-size: 1.25rem;
    }
    .icon-file::before{
        content: '\f56e';
    }
    .icon-code::before{
        content: '\f121';
    }
    .icon-chat::before{
        content: '\f086';
    }
    .icon-hands::before{
        content: '\f2b5';
    }


    /* ================================================
    固定フローティングボックス（PCの場合は表示に切替　設定はスマホ側で）
    ================================================ */
    /* -------- box1 -------- */
    /* -------- 外側 -------- */
    .floating-box-1 {
        display:block;
    }

    /* -------- 内側 -------- */
    .floating-box-inner-1 {
        display: block;
    }
    
    /* -------- box2 -------- */
    /* -------- 外側 -------- */
    .floating-box-2 {
        display:block;
    }

    /* -------- 内側 -------- */
    .floating-box-inner-2 {
        display: block;
    }
    
    /* -------- box3 -------- */
    /* -------- 外側 -------- */
    .floating-box-3 {
        display:block;
    }

    /* -------- 内側 -------- */
    .floating-box-inner-3 {
        display: block;
    }
    












}
