@charset "utf-8";

/*
Base style
*/

* {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

body {
    font-family: 'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    width: 100%;
    color: black;
    overflow-x: hidden;
    background-color: white;
    position: absolute;
}

header {
    top: 0px;
    width: 100%;
    height: 100vh;
    margin: 0px; 
    padding: 0px;
    background-image: url("../images/ScreenHero/screenHeroBG.webp");
    background-position: right;
    background-position: top;
    background-size: cover;
}

.headerLogo {
    margin: 0px;
    padding: 0px;
    display: flex;
    height: 150px;
}

.headerLogo a {
    height: 150px;
    width: 150px;
    margin: 0px;
    padding: auto;
}

.headerLogo a img {
    height: 150px;
    margin: 0px auto;
    padding: 0px;
    background-color: rgb(255, 255, 255, 0.7);
    border-radius: 50%;
}


.burger {
    display: block;
    position: fixed;
    top: 10px;
    right: 10px;
    margin: auto;
    margin-right: 10px;
    cursor: pointer;
    background: white;
    z-index: 5;
}

.burger div {
    width: 35px;
    height: 5px;
    background-color: #333;
    margin: 8px;
    transition: all 0.5s ease-in-out;
}

.burger {
    display: block;
    position: fixed;
    top: 10px;
    right: 20px;
}

.toggle .line1 {
    transform: rotate(405deg) translate(10px, 8.5px);
}
.toggle .line2 {
    opacity: 0;
}
.toggle .line3 {
    transform: rotate(-405deg) translate(10px, -8.5px);
}

.burgerMenu {
    display: block;
    position: fixed;
    top: 50px;
    right: 0;
    margin: 0;
    padding: 0;
    background-color: #333;
    opacity: 0.9;
    height: calc(100vh - 50px);
    width: 300px;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
    z-index: 10;
}

.burgerMenu-active {
    transform: translateX(0%) !important;
}

.burgerMenu ul {
    display: block;
    margin: 0;
    padding: 10px;
}

.burgerMenu ul li {
    display: block;
    list-style: none;
    font-size: 18px;
    height: 8vh;
    margin:0px;
    border: #eee;
}

.burgerMenu ul li a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    height: 8vh;
    width: 300px;
    display: block;
    line-height: 2rem;
    text-align: center;
    margin: 5px;
    padding: 15px;
}



.content {
    position: relative;
    width: 100%;
    height: calc(100% - 150px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content .textBox {
    max-width: 100vw;
    position: absolute;
    top: 0px;
    left: 30px;
}

.content .textBox .titleImg {
    width: 90%;
    display: block;
    margin: auto;
}

.content .textBox .titleImg img {
    width: 500px;
}



.circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(184, 107, 20, 0.7);
    clip-path: circle(800px at right 1000px);
}

.content .imgBox {
    width: 600px;
    display: flex;
    position: absolute;
    bottom: 0px;
    right: 0;
    justify-content: flex-end;
}

.content .imgBox img {
    width: 100%;
}

.content .thumb {
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: flex;
}

.content .thumb li {
    list-style: none;
    display: inline-block;
    margin: auto 10px;
    cursor: pointer;
    transition: 0.5s;
}

.content .thumb li :hover {
    transform: translateY(-15px);
}


.content .thumb li img {
    max-width: 100px;
}





main {
    width: 100%;
    padding: auto;
    margin: 0px auto 0px;
}


main article {
    background: linear-gradient(-45deg,white,#ffe8b7,white);
    margin: 0px;
    padding: 30px;
    box-sizing: border-box;
}

main article h1 {
    text-align: center;
}

.gallery {
    margin: 10px 50px;
    text-align: center;
}

.gallery a {
    text-decoration: none;
}

.gallery img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    padding: 10px;
}

.gallery img:hover {
    transform: scale(1.1);
    transition: 0.7s;
}






/* 上に戻るボタンのデザイン */

.return {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    text-decoration: none;
    background-color: #1f0f00;
    display: block;
    text-align: center;
    border-radius: 24px;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.4s ease-in;
  }
  
  .return::before {
    content: '\f062';
    font-family: 'Font Awesome 6 Free';
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    line-height: 48px;
  }
  
  /* fadeinクラスがついた時だけ表示する */
  .return.fadein {
    opacity: 1;
  }
  
  /* ここまでボタンのデザイン */


footer {
    position: relative;
    width: 100%;
    height: 50px;
    background: #331d00;
}

footer p {
    width: 100%;
    position: absolute;
    font-size: 0.9rem;
    color: #ffffff;
    text-align: center;
}



  /* ブレーキングポイント768px */

@media screen and (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    header {
        top: 0px;
        width: 100vw;
        height: 100vh;
    }
       
    .headerLogo {
        width: 100%;
        height: 70px;
        z-index: 10;
    }

    .burger {
        display: block;
        position: fixed;
        top: 10px;
        right: 5px;
        margin: auto;
        margin-right: 5px;
        cursor: pointer;
    }
    
    .burger div {
        width: 35px;
        height: 5px;
        background-color: #333;
        margin: 8px;
        transition: all 0.5s ease-in-out;
    }
       
    .toggle .line1 {
        transform: rotate(405deg) translate(10px, 8.5px);
    }
    .toggle .line2 {
        opacity: 0;
    }
    .toggle .line3 {
        transform: rotate(-405deg) translate(10px, -8.5px);
    }
    
    .burgerMenu {
        display: block;
        position: fixed;
        top: 50px;
        left: 35vw;
        margin: 0;
        padding: 0;
        background-color: #333;
        opacity: 0.9;
        height: 80vh;
        width: 65vw;
        transform: translateX(100%);
        transition: all 0.5s ease-in-out;
        z-index: 10;
    }
    
    .burgerMenu-active {
        transform: translateX(0%) !important;
    }
    
    .burgerMenu ul {
        display: block;
        margin: 0;
        padding: 0;
    }
    
    .burgerMenu ul li {
        display: block;
        list-style: none;
        font-size: 18px;
        height: 7vh;
        text-align: center;
        margin:0px;
        border: #eee;
    }
    
    .burgerMenu ul li a {
        text-decoration: none;
        color: white;
        font-weight: 600;
        height: 7vh;
        display: block;
        line-height: 55px;
        margin: 0;
        padding: 0;
    }
        

    .headerLogo a {
        height: 70px;
    }

    .headerLogo a img {
        height: 70px;
    }
    
    .content {
        position: relative;
        top: 0px;
        display: block;
        width: 100%;
        height: calc(100vh - 70px);
    }
    
    .content .textBox {
        width: 80vw;
        left: 0;
    }

    .content .textBox .titleImg img {
        width: 300px;
        margin: 5px 15px;
    }
    
    .circle {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        clip-path: circle(80vw at center bottom);
    }
    
    .content .imgBox {
        width: 100vw;
        display: block;
        position: absolute;
        bottom: 30px;
    }
    
    .content .imgBox img {
        width: 100%;
    }
    
    .content .thumb {
        position: absolute;
        bottom: 0px;
        left: 0;
        display: block;
        width: 100%;
        padding: 0 10px;
    }
    
    .content .thumb li {
        display: inline-block;
        margin: auto 0px;
        width: 23%;
        cursor: pointer;
        transition: 0.5s;
    }
    
    .content .thumb li :hover {
        transform: translateY(-15px);
    }
    
    
    .content .thumb li img {
        max-width: 20vw;
    }
    
    
    

 
    
    .gallery {
        margin: 10px 10px;
    }
    
    .gallery img {
        width: 240px;
        height: 180px;
    }

    .tag {
        font-size: 0.8rem;
        margin: 0.5rem 0.5rem;
        padding: 5px 1rem;
        border: 1px solid black;
    }
       
  
}




  /* ブレーキングポイント420px */

  @media screen and (max-width: 420px) {
    h1 {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    .headerLogo h1 {
        font-size: 1.1em;
    }

   
  }