﻿/* 共通CSS */
html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
  height:100%;
}

ul,li 
{
    list-style:none;
    padding:0
}

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

* {
    margin: 0
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    min-height: 100%;
    height: 100%;
    background: #343a40;
    color: #585959;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%
}

input, button, textarea, select {
    font: inherit
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word
}

.required:after {
    content: "*";
    font-weight: bold;
    color: red;
}

.form-control:disabled, .form-control[readonly],
.form-select:disabled {
    background-color: #fff;
    opacity: 1;
    border: none;
    -webkit-appearance: none;
    appearance: none;
}

input[readonly]::placeholder,
textarea[readonly]::placeholder {
    color: transparent !important;
}

input, 
textarea, 
select, 
.form-control,
.form-control-sm,
.form-select{
    font-size: 16px;
}

/* header */

#header {
    background: #f8f9fa;
}

#header h1 img {
    width: 300px;
    max-width: 100%;
}

#container-wrapper {
    background: #f8f9fa;
    padding-bottom: 50px
}


/* Cookie同意 */

#cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 18px;
    color: #fff;
    background: rgba(0,0,0,.7);
    padding: 60px 40px;
    box-sizing: border-box;
    z-index: 300;
    visibility: hidden;
    height: 116px;
}

    #cookie-content a {
        color: #fff !important;
    }

#cookie-agree {
    color: #fff;
    background: dodgerblue;
    padding: .8em 3em;
    font-size: 18px;
    margin-left: 15px;
    text-align: center;
}

#cookie-agree:hover {
    cursor: pointer;
}

/* メディアクエリ */
@media screen and (max-width: 768px) {
    #cookie-content {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    #cookie-content {
        font-size: 3.6vw;
        line-height: 1.5;
        padding: 1.5em 1em 1em 1em;
        height: 12em;
        /*display:block;*/
    }

    #cookie-agree {
        font-size: 4vw;
        padding: .4em 3em;
        margin-left: 0;
    }
}

/* footer */
#footer {
    background: #343a40;
    color: #c2c7d0;
    padding:1rem;
}
#footer-link {
    margin-bottom:1.5rem;
}
#footer-link a {
    color: #c2c7d0;
    margin-right: 1rem;
}
#footer-info {
    text-align:right;
    margin-bottom:1rem;
}

#footer-schedule {
    text-align: center;
    
}

#footer-schedule table {
    color: #c2c7d0;
}

#copyright {
}

/* static */
#static {
    background:#fff;
    border-radius:1rem;
    width:auto;
    padding:1rem;
}

#static h1{
    font-size:1.5rem;
    margin-bottom:1rem;
    background:#f8f9fa;
    padding:0.5rem 1rem;
    border-left:0.5rem solid #343a40;
}

#static .static_content{
    padding:0 1rem;
}

#static dt{
    margin-bottom:0.5rem;
}

#static dd{
    padding:0 0.5rem
}
#static li {
    margin-bottom:0.5rem;
}
