
/* ------------------------------------
TOP-Visual
------------------------------------- */
.top {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    width: 100%;
    align-content: flex-start;
}
.top-img {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 350px;
    overflow: hidden;
    padding: 0;
}
.top-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center top;
}
.zqill {
    font-family: 'Crimson Text', serif;
    letter-spacing: .3em;
    text-indent: .3em;
    position: absolute;
    color: #fff;
    text-align: center;
    top: 50%;
    left: 25;
    margin: 0;
    width: 100%;
    z-index: 99;
}
.dm {
    position: absolute;
    color: #666;
    background: rgba(243, 243, 242, 0.8);
    padding: 8px 10px 8px 17px;
    left: 1px;
    bottom: 8px;
    line-height: 1.2em;
    z-index: 100;
    transition: 0.5s;
    cursor: pointer;
}
.dm:hover {
    background: rgba(102, 102, 102, 0.8);
    color: #fff;
}
.fadeL {
    opacity: 0;
    animation-name: fade-left;
    animation-duration: 1.1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    animation-delay: 0.3s;
}
@keyframes fade-left {
    0% {
        opacity: 0;
        transform: translateX(-150px);
    }
    100% {
    opacity: 1;
    transform: translateX(0);
    }
}

/* ------------------------------------
NEWS
------------------------------------- */
.news ul{
    padding-inline-start: 0;
}
.date {
    color: #999;
    font-size: 0.85em;
}
.tag {
    background-color: #c9c9c4;
    color: #555;
    font-size: 0.7em;
    padding: 0 8px;
    margin-left: 0.8em;
    border-radius: 7px;
}
.news-title {
    font-size: .85em;
    line-height: 1.3em;
    text-align: justify;
    word-break: break-all;
    border-bottom: #b7b7b7 dashed 1px;
    margin-bottom: 5px;
}
.pick {
    display: block;
}
/* ------------------------------------
ABOUT
------------------------------------- */
.about {
    display: block;
    align-items: flex-end;
}
.zq {
    display: flex;
    justify-content: center;
    align-items: center;
}
.zq-img {
    height: 150px;
}
.zq-img img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

/* ------------------------------------
CONTACT-Accordion
------------------------------------- */
.toggle {
	display: none;
}
.ac-Label {
	padding: .7em;
	display: block;
	color: #666;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 6px;
	background: transparent;
    line-height: 1em;
}
.ac-Label::before{
	content:"";
	width: 6px;
	height: 6px;
	border-top: 1px solid #666;
	border-right: 1px solid #666;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
}
.ac-Label,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.content {
	height: 0;
	margin-bottom:10px;
	padding:0 20px;
	overflow: hidden;
}
.toggle:checked ~ .ac-Label {
    border-radius: 5px 5px 0 0;
    background: #d8d8d2;
}
.toggle:checked ~ .content {
    border: solid rgba(0,0,0,.125);
    border-width: 0 1px 1px;
    border-radius: 0 0 5px 5px;
    background: #f3f3f37d;
}
.toggle:checked + .ac-Label + .content {
	height: auto;
	padding:20px ;
	transition: all .5s;
}
.toggle:checked + .ac-Label::before {
	transform: rotate(-45deg) !important;
}
/* Form */
.accordion input,textarea {
    border: 1px solid #c9c9c9;
    border-radius: 3px;
}
.accordion input {
    padding: .5em;
    margin-bottom: 1em;
}
form div {
    display: flex;
    flex-direction: column;
}
.form-check {
    flex-direction: row;
    margin-bottom: 1em;
}
/* Submit Button */
.submit {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.btn-submit {
    background-color: #c9c9c9;
    color: #f3f3f2;
    width: 50%;
    padding: .5em 0;
    border-radius: 5px;
}

.submit-active {
    background-color: #8da0b6;
    color: #f3f3f2;
    cursor: pointer;
    transition: all 0.5s ease-out;
}
.submit-active:hover{
    background-color: #393f4c;
    color: #f3f3f2;
}

@media only screen and (min-width: 600px) { /* tablet */
    .news-wrapper {
        display: grid;
        grid-template-columns: auto 1fr;
        padding: 0 15px;
    }
    .news {
        margin-left: 30px;
    }
    .news li {
        display: flex;
        align-items: baseline;
        border-bottom: #b7b7b7 dashed 1px;
        margin-top: .4em;
    }
    .news-title {
        margin-left: 5px;
        margin-bottom: 0;
        flex: 1;
        border-bottom: none;
        line-height: normal;
    }
    .dm {
        bottom: 15px;
    }
    #about h2 {
        margin: 0;
    }
    .about {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        align-items: center;
    }
    /* CONTACT Form */
    form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .gc-1 {
        grid-column: 1 / 3;
    }
}
@media only screen and (min-width: 768px) { /* tablet2 */
    .top {
        margin-bottom: 30px;
    }
    .top-img {
        height: 450px;
    }
    .schedule-wrapper {
        display: grid;
        grid-template-columns: auto 1fr;
        margin-top: auto;
        padding: 0 15px;
    }
    .schedule {
        margin-left: 40px;
    }
    .news {
        margin-left: 100px;
    }
    .news h2 {
        margin-block-start: 0;
    }
    .pick {
        display: flex;
        margin-top: 10px;
    }
}
@media only screen and (min-width: 1024px) { /* PC */
    .top-img {
        height: 600px;
    }
    .pick {
        margin-top: 30px;
    }
    #contact {
        display: grid;
        grid-template-columns: auto 1fr;
        margin-top: 3em;
    }
    #contact h2 {
        margin: 0;
    }
    .accordion {
        margin-left: 2em;
    }

    
}