@charset "utf-8";

/* 共通部分
---------- */
html {
    font-size: 100%;
}
body{
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.7;
    color: black;
    max-width: 100%;
    margin: 0 auto;
}
header {
    width: 100%;
    min-height: 50vh;
}
 a {
    text-decoration: none;
}
@media screen and (min-width: 1025px) {
    .report-menu {
        display: none !important;
    }
}
label {
    cursor: pointer;
}
.report-menu label {
    color: #525252;
}
.toggle {
    display: none;
}
.toggle + ul {
    max-height: 0;
    overflow: hidden;
    transition: all .5s ease;
    text-align: right;
}
.toggle:checked + ul {
    max-height: 500px;
    transition: all 2s ease-in;
}
#gnav-content {
    display: flex;
    justify-content: space-between;
}

#header {
    position: relative;
    overflow: hidden;
}
#header {
    position: fixed;
    width: 100%;
    height: 60px;
    background-color: rgba(255, 140, 45, .8);
    padding: 10px 60px;
    box-sizing: border-box;
    top: 0;
    left: 0;
    align-items: center;
    z-index: 20;
} 
#header.fixed {
    position: fixed;
    top: 0;
    left: 0;
} 
.header {
    display: flex;
    justify-content: space-between;
    padding: 0;     
}
.header h1 {
    margin-top: -10px;
}
.header h1 a {
    font-size: 1.5rem;
    color: white;
}   
.header h1 a:hover {
    color: darkgray;
}
.img-box {
    width: 100%;
    height: 130vh;
    overflow: hidden;
    position: relative;
}
.img-box>div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130vh;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 10;
    /* 追記　*/
    opacity: 0;
    animation-name: fade;
    animation-duration: 12s;
    animation-iteration-count: infinite;
}
@keyframes fade {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 0;
        transform: scale(1.05);
    }
    100% {
        opacity: 0;
        z-index: 0;
    }
}
.img-box>div:first-of-type {
    background-image: url(images/makuragi2.jpg);
}
.img-box>div:nth-of-type(2) {
    background-image: url(images/sakuramidori.psd.jpg);
    animation-delay: 4s;
}
.img-box>div:last-of-type {
    background-image: url(images/siyakusyo.JPG);
    animation-delay: 8s;
}
.header, .page-header {
    display: flex;
    justify-content: space-between;
    background-size: 100%;
    min-height: 50vh;
}
.header .btn-gNav , .page-header .btn-gNav {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 24px;
    z-index: 12;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}
.header .btn-gNav span, .page-header .btn-gNav span {
    position: absolute;
    width: 100%;
    height: 4px;
    background: white;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}
.header .btn-gNav span:nth-child(1), .page-header .btn-gNav span:nth-child(1) {
    top: 0;
}
.header .btn-gNav span:nth-child(2), .page-header .btn-gNav span:nth-child(2) {
    top: 10px;
}
.header  .btn-gNav span:nth-child(3), .page-header .btn-gNav span:nth-child(3) {
    top: 20px;
}
.header .btn-gNav.open span:nth-child(1),.page-header .btn-gNav.open span:nth-child(1) {
    background: white;
    top: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.header .btn-gNav.open span:nth-child(2),.page-header .btn-gNav.open span:nth-child(2),
.header .btn-gNav.open span:nth-child(3),.page-header .btn-gNav.open span:nth-child(3) {
    top: 6px;
    background: white;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
.btn-gNav {
    display: none;
}
.gNav .main-nav {
    display: flex;
    justify-content: space-between;
}
.gNav .main-nav li {
    margin: 0 auto;
    padding: 0 10PX;
}
.comment {
    margin: auto;
    margin-top: 100px;
    font-size: 1.25rem;
    color: white;
    text-shadow: 1px 3px 3px black;
}
.main-nav {
    display: flex;
    font-weight: bold;
    font-size: 1.25rem;
    list-style : none;
    color: black;  
    text-align: left;
}
.main-nav a {
    color: white;
}   
.main-nav a:hover {
    color: darkgray;
}
#news {
    max-width: 85%;
    margin: auto;
    padding-top: 30px;
    margin-bottom: 30px;
}

#news h2 {
    font-size: 2rem;
    text-align: center;
}
#news ul {
    width: 85%;
    margin: auto;
    text-align: center;
    list-style-type: none;  
}
#news ul li {
    width: 100%;
    padding: 20px 0 20px 175px;
    border-bottom: 1px dotted #b8860b;
    text-indent: -175px;
    font-size: 1.25rem;  
}
#news a {
    color: black;
}
#news a:hover {
    color: darkgoldenrod;
}
article {
    padding: 30px 0;
}
article {
    max-width: 85%;
    margin: auto;
}  
div {
    padding: 2%;
}  
.wrapper {
    display: flex;
    justify-content: space-between;
}
.into {
    text-align: center;
    font-size: 2rem;
}
.star {
    text-align: center;
}
#into p {
    max-width: 100%;
    font-size: 1.5rem;
}
#into img{
    max-width: 100%;
}
.site a:hover{
    color: darkgoldenrod;
}
.contact {
    position: fixed;
    width: 270px;
    bottom: 10px;
    left: 0;
    text-align: center;
    padding: 10px;
    background-color: rgba(255, 255, 255, 1);
    z-index: 20;
}
.contact img {
    width: 15%;
    text-align: right;
    margin-left: 0;
    padding-left: 0;
}
.contact p {
    font-size: .75rem;
    text-align: right;
    margin-right: 5px;
}
.cont1 h2 {
    margin-right: 10px;
    font-size: 1rem;
    margin-top: -5px;
    color: black;
}
.cont1 h2:hover {
    color: darkgoldenrod;
}
.cont1 {
    display: flex;
    justify-content: flex-end;
}
.share {
    position: fixed;
    width: 110px;
    height: 65px;
    padding: 20px 0;
    padding-left: 15px;
    bottom: 15px;
    left: 0;
    background-color: black;
    z-index: 20;
}
.share a {
    color: white;
    font-size: .75rem;
}
.share a:hover {
    color: darkgoldenrod;
}
.share img {
    width: 20%;

}
footer {
    text-align: center;
    font-size: 1.25rem;
    background-image: url(images/icecoffee.JPG);
    height: 25vh;
} 
footer a {
    color: black;
} 
footer a:hover {
    color: darkgoldenrod;
}

.sub-wrapper {
    display: flex;
    justify-content: space-between;
}
.sub-wrapper h2 {
    padding-left: 30px;
} 
.sub-wrapper2 {
    display: flex;
    list-style: none;
    margin: 20px 30px;
}      
.sub-wrapper2 li {    
    font-size: 1.25rem;
    margin-left: 2rem;
}
/* top-page 
----------- */
* {
    box-sizing: border-box;
    list-style: none;
    padding: 0;
    margin: 0;
}
.content {
    width: 500px;
    height: 500px; 
}
.content:nth-child(1) {
    background-color: tomato;
}
.content:nth-child(2) {
    background-color: orange;
}
.content:nth-child(3) {
    background-color: #1e90ff;
}
.content:nth-child(4) {
    background-color: green;
}
.wrap {
    display: flex;
    align-items: center;
    max-width: 85%;
    height: 550px;
    overflow: hidden;
    margin: auto;
}
.slideshow {
    display: flex;
    text-align: center;
    padding: 0;
    -webkit-animation: loop-slide 20s infinite linear 1s both;
    animation: loop-slide 20s infinite linear 1s both;
}
.slideshow figcaption {
    color: black;
    font-weight: bold;
    font-size: 3rem;
    margin-top: -20px;
}
.slideshow p {
    color: black;
    font-size: 1rem;
    padding-top: 0;
}
.slideshow figcaption:hover {
    color: darkgray;
}
.slideshow figure img {
    width: 75%; 
}
@-webkit-keyframes loop-slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%); 
    }
} 
@keyframes loop-slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
/* ホバー時に動きを止める　*/
.slide-paused:hover .slideshow {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
/* ホバー時の装飾　*/
.content-hover {
    transition: all .2s;
    margin-right: 20px; 
}
.content-hover:hover {
    transform: translateY(-20px);
    border-radius: 0 10%;
    box-shadow: 0 3px 10px 0 #333;
    opacity: .8;
    cursor: pointer;
}
.tweet {
    text-align: center;
    font-size: 1.25rem;
    margin: 50px 0 70px 0;  
}

/* Report
----------- */
.page-header {
    min-height: 50vh;
}

.report-header {
    background-image: url(images/beer2.jpg);
    background-size: 100%;
    min-height: 40vh;   
    margin: auto;
}
.report-header h2 {
    font-size: 8rem;
    margin: auto;
    text-align: center;
} 
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    width: 85%;
    margin: auto;
    margin-top: 40px;
}
.breadcrumb li:not(:last-of-type)::after {
    content: ">";
    margin: 0 .6em;
    color: black;
}
.breadcrumb li a {
    color:  tomato;
}
.breadcrumb li a:hover {
    color: grey;
}
.main-nav li {
    padding-right: 0;
}
.grid {
    width: 85%;
    margin: auto;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-top: 20px;
    margin-bottom: 5%;
}
.grid img {
    width: 100%;
}
.item p {
    color: black;
}
.item p:hover {
    color: darkgray;
}
/* 各記事
------------- */
.photo {
    width: 85%;
    margin: auto;
    padding-top: 50px;
}
.photo {   
    display: flex;
    justify-content: space-between;
}
.swiper {
    max-width: 50%;    
}
#post {
    padding-top: 0;
}
.guide {
    text-align: right;
    padding: 20px;
}
.guide2 {
    display: flex;
    justify-content: space-between;
}
.guide, .guide2 {
    width: 85%;
    margin: auto;
    padding: 30px 0;
}
.guide a, .guide2 a {
    font-weight: bold;
    font-size: 1rem;
    color: white;
    background-color: tomato;
    padding: 10px;
    border-radius: 15px;
}
.guide a:hover, .guide2 a:hover {
    color: #525252;
}

.swiper img {
    width: 80%;
    margin: auto;
}
/* column&diary
-------------- */
.column-header {
    background-image: url(images/beer2.jpg);
    background-size: 100%;
    min-height: 40vh;
    margin: auto;
}
.column-header h2 {
    font-size: 7.5rem;
    margin: auto;
    text-align: center;
}
.column {
    width: 100%;
    margin: auto;
}
.kaeru {
    width: 60%;
    margin: auto;
}
.kaeru img {
    margin: auto;
    width: 85%;
}
#freepost {
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding-top: 0;
    background-color: rgb(100, 34, 16);
}
#freepost p {
    color: white;
    padding: 10px;
    font-size: 1rem;
}        
#item1 {
    width: 100%;
}
#item2 {
    width: 100%;
}
.diary {
    width: 65%;
    margin: auto;
}
/* introduction */
.intro-header {
    background-image: url(images/beer2.jpg);
    background-size: 100%;
    min-height: 40vh;
    margin: auto;
}
.intro-header h2 {
    font-size: 7.5rem;
    margin: auto;
    text-align: center;
}
/* Other 
----------　*/
.other {
    margin: 100px;
    text-align: center;
    font-size: 2.5rem;
}
/* archive
----------  */
.menu {
    margin: auto;
    color: white;
    text-align: center;
    text-shadow: 1px 1px 2px black;
}
.grid2 {
    width: 85%;
    margin: auto;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-top: 20px;
    margin-bottom: 5%;
}
.big-box {
    grid-column: 3 / 5;
    grid-row: 1 / 3;   
}
.big-box img {
    height: 91%;
    width: 100%;
    object-fit: cover;
}
.big-box2 {
    grid-column: 1 / 3;
    grid-row: 3 / 5;
}
.big-box2 img {
    height: 91%;
    width: 100%;
    object-fit: cover;
}
.grid2 img {
    width: 100%;
}
#title3 {
    padding-top: 0;
    font-size: 5rem; 
}
.menu p {
    font-size: 2.5rem;
}
/* privacypolicy
----------------- */
#title2-p {
    font-size: 5rem;
}
.privacy {
    width: 85%;
    margin: auto;
    padding: 20px 0 50px 0;
}
.privacy h2 {
    padding: 10px 0;
}
.privacy h3 {
    padding: 10px 0;
}
/* 仕事がない
------------- */
.talks-header {
    background-color: burlywood;
    width: 100%;
    background-size: 40%;
    background-position: right;
    min-height: 40vh;
}
.talks {
    display: flex;
    justify-content: space-between;
}
.talks-header img {
    width: 30%;
    height: auto;
    object-fit: contain;
}
.talks-header h2 {
    font-size: 4rem;
    text-align: left;
    margin-top: 0;
    margin-bottom: -60px;
    margin-left: 50px;
}
.talks-header p {
    font-size: 3rem;
    text-align: left;
    margin-top: -100px;
    margin-left: 100px;
    color: white;
   } 
.conver {
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}
.p a {
    color: white;
}
.p a:hover {
    color: darkgrey;
}
.nonal img {
    width: 100%;
}
.garly p {
    width: 85%;
    margin: auto;
}

/* モバイル版　
----------- */
/* 共通部分
----------- */
             
@media screen and (max-width: 1024px) {
    header {
        min-height: 45vh;
        width: 100%;
    }
    .header h1 {
        margin: -10px -40px;
    }
    #gnav-btn {
        color: white;
        background-color:  rgba(255, 140, 45, .8);
        padding: 10px;
        font-size: 1rem;
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 100;
        border: solid 1px #525252;
        border-radius: 3px;
    }
    #gnav-content {
        position: fixed;
        top: -100px;
        left: 0;
        z-index: 10;
        transition: 0.3s;
    }    
    .img-box {
        width: 100%;
        height: 50vh;
    }
    .img-box>div {
        width: 100%;
        height: 50vh;
    }
    .btn-gNav {
        display: block;
    }
    .gNav {
        position: fixed;
        top: 0;
        right: -1024px;
        width: 100%;
        min-height: 40vh;
        background-color: rgba(255, 140, 45, .8);
        font-size: 16px;
        box-sizing: border-box;
        z-index: 10;
        transition: .3s;
    }
    span {
        z-index: 25;
    }
    .gNav.open {
        right: 0;
    }
    .gNav .main-nav {
        padding: 0;
        width: 100%;
        height: 100%;
        display: block;
        flex-direction: column;
        text-align: center;
    }
    .gNav .main-nav li {
        width: 70%;
        padding: 5px;
        border-bottom: #525252 1px solid;
    }
    .page-header {
        flex-direction: column;
        text-align: center;
        min-height: 35vh;
        padding: 0;
    }
    .comment {
        text-align: center;
        font-size: 1rem;
        margin: auto;
        padding: 0 30px;
        padding-bottom: 100px;
        color: white;
        text-shadow: 1px 1px 2px black;
    }
    .main-nav {
        flex-direction: column;
        text-align: right;
        padding-top: 0;
        padding-right: 20px;  
    }
    .main-nav li {
        padding: -15px;
    }
    .main-nav li a {
        font-size: 1rem;
        color: white;
    }
    .main-nav a:hover {
        color: #525252;
    }
    .menumenu li { 
        text-align: center; 
        background-color: white;
    } 
    .menumenu li a {
        font-size: .85rem;
        color: rgb(255, 140, 45);
    } 
    .wrapper {
        flex-direction: column;
        align-items: center;
    }
    #news {
        padding-top: 0;
        margin-top: 20px;
        margin-bottom: -60px;
    }
    #news ul {   
        text-align: center;
    }
    #news ul li {
        margin: auto;
        padding-left: 150px;
        text-align: left;
        text-indent: -150px;
        padding-bottom: 0;
        font-size: 1rem;
    }
    .share {
        position: fixed;
        width: 90px;
        bottom: 13px;
        height: 60px;
        left: 0;
        background-color: black;
        padding-top: 0;
    }
    .share a {
        color: white;
        font-size: .75rem;
    }
    .share a:hover {
        color: darkgoldenrod;
    }
    .share img {
        width: 20%;
        margin-left: 20px;
    }
    .content {
        width: 300px;
        height: 300px;
    }
    .tweet {
        margin-top: -60px;
    }
    .slideshow figcaption  {
        font-size: 2rem;
        margin-top: 0;
    }
    .slideshow figure img {
        width: 65%;
    }
    #into img {
        max-width: 85%;
        margin-left: 30px;
    }
    #into p {
        font-size: 1rem;
    }
    .sub-wrapper {
        flex-direction: column;
    }
    .sub-wrapper h2 {
        margin: auto;
        padding-left: 0;
    }
    .sub-wrapper2 {
        flex-direction: column;
    }
    .sub-wrapper2 a {
        color: white;
        padding: 0 5px;
    }
    .sub-wrapper2 li {
        text-align: right;
        font-size: 1rem;
    }
    .copy p {
        margin: auto;
        margin-top: -25px;
        margin-bottom: 30px;
    }  
    #title2 {
        font-size: 3.5rem; 
        text-align: center;
        margin: auto;
    }
    .menu {
        margin: auto;
        color: white;
        text-shadow: 1px 1px 2px black;
    }
    #title3 {
        padding-top: 0;
        font-size: 2rem;
    }
    .contact {
        position: fixed;
        width: 250px;
        bottom: 10px;
        left: 0;
        text-align: right;
        padding: 5px;
        background-color: rgba(255, 255, 255, 1);
        z-index: 20;
    }
    .contact img {
        width: 3rem;
    }
    .contact p {
        font-size: .75rem;
    }
    .cont1 h2 {
        margin-right: 10px;
        font-size: 1rem;
        padding: 0;
    }
    .cont1 {
        display: flex;
        justify-content: right;
    }
    .menu p{
        font-size: 1.5rem;
    }
    .report-header {
        width: 100%;
        flex-direction: column;
        background-image: url(images/beer.jpg);
        height: 40vh;
    }
    .breadcrumb {
        margin: auto;
        margin-top: 20px;
        margin-bottom: 0;
    }
    .photo {
        width: 100%;
        flex-direction: column;
        margin: auto;
    }
    #post {
        width: 85%;
        margin: auto;
    }
    .art p {
        background-color: white;
        margin-left: 355px;
        margin-right: 10px;
        padding-right: 10px;
    }
    .art select {
        background-color: white;
        margin-right: 10px;
        padding: 0 5px;
    }
    .swiper {
       max-width: 75%;
    }
    .swiper img {
        width: 100%;
        padding-bottom: 20px;
        margin: auto;
    }
    .column-header {
        flex-direction: column;
        background-image: url(images/beer.jpg);
        height: 40vh;
    }  
    .column-header h2 {
        font-size: 3.5rem;
        margin: 0;
        margin-bottom: 20px;
        padding-top: 0; 
        text-align: center;
    }
    .column {
        width: 100%;
        margin: auto;
    }
    .kaeru img {
        margin: auto;
        width: 100%;
    }
    #freepost {
        flex-direction: column;
    }
    .diary {
        width: 85%;
    }
    #freepost p {
        padding: 10px;
        font-size: 1rem;
    }   
    .intro-header h2 {
        font-size: 3.5rem; 
        margin: 0;
        margin-bottom: 20px;
        padding-top: 0;
        text-align: center;
    }
    .intro-header {
        flex-direction: column;
        background-image: url(images/beer.jpg);
        height: 40vh;
    }
    #title2-p {
        font-size: 3.5rem;
    }
    #title4 {
        font-size: 3rem;
    }
    .big-box, .big-box2 {
        grid-column: auto;
        grid-row: auto;
    }
    .big-box img, .big-box2 img {
        height: auto;
    }
    .talks-header {
        min-height: 30vh;
        margin-bottom: 0;
    }
    #title5 {
        padding-top: 100px;
        font-size: 2rem;
        margin-left: 5%;
    }
    .talks img {
        padding-top: 100px;
    }
    .talks-header p {
        font-size: 1.25em;
        margin-top: 0;
        text-align: right; 
        margin-right: 5%; 
        padding: 5%;
        color: white;
    }
    .conver {
        flex-direction: column;
        padding: 20px 0;
    }
    footer {
        background-size: 100%;
        height: 45vh;
    }
}