@charset "utf-8";

/* //// Common //// */
html *,
::before,
::after{
    box-sizing: border-box;
}

body{
    margin: 0;
}

li{
    list-style-type: none;
}

img{
    width: 100%;
    margin: 0;
    display: block;
}

a{
    width: 100%;
    padding: auto;
    border: none;
    text-decoration: none;
}

a:hover{
    opacity: .6;
}

main{
    width: 100%;
    margin: 0 auto;
}

/* //// Header ///// */

header {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    background-color: #fff;
    border-bottom: 1.5px solid #000;
  }

.header{
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 10px 20px 10px 10px;
}

header a{
    color: #000;
}

.logo{
    width: 40%;
    min-width: 310px;
}

.maru{
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: .3;
    visibility: hidden;
}

h1{
    width: 100%;
    display: block;
    margin: 0 auto;
    color: #000;
}

.logo h1 a{
    padding: 0;
}

.nav_menu_ul{
    margin: 0;
    padding-left: 0;
}

.nav_menu_ul li{
    font-family: 'Klee One', cursive;
    font-size: 1.2rem;
    font-weight: bold;
    position: relative;
}

/* /// ハンバーガーメニュー /// */


.nav_toggle {
    display: block;
    position: relative;
    z-index: 9999;
    width: 28px;
    height: 24px;
    margin-top: 10px;
}

.nav_toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    position: absolute;
	transition: transform .5s, opacity .5s;
}

.nav_toggle span:nth-child(1) {
    top: 0;
}

.nav_toggle span:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
}

.nav_toggle span:nth-child(3) {
    bottom: 0;
}


/* /// ハンバーガーメニュークリック後 /// */
.nav_toggle.show span:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
}

.nav_toggle.show span:nth-child(2) {
    opacity: 0;
}

.nav_toggle.show span:nth-child(3) {
    transform: translateY(-12px) rotate(45deg);
}

.nav {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s, visibility .5s;
    background-color: #fff;
}

.nav li {
    padding: 10px 20px;
    color: #e8ece9;
  }
  
  .nav a {
    width: 100%;
    display: block;
    text-align: center;
  }
  
  .nav.show {
    opacity: 0.85;
    visibility: visible;
  }

  iframe {
    width: 90%;
    max-width: 1280px;
    display: block;
    margin: 20px auto;
  }

  footer{
    width: 100%;
    margin: 0 auto;
  }

  .footer_nav{
    width: 100%;
    display: block;
    margin: 0 auto;
    background-color: #ee836f;
  }

  .footer_nav ul{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 15px 0;
  }

  .footer_nav ul li{
    font-family: 'Klee One', cursive;
    font-size: 1rem;
    font-weight: bold;
    margin: 10px;
    border-bottom: dotted 1px #fff;
  }

  .footer_nav ul li a{
    color: #fff;
  }

  footer p{
    width: 100%;
    display: block;
    background-color: #bb5548;
    margin: 0 auto;
    padding: 10px;
    color: #fff;
  }

  small{
    width: 100%;
    text-align: center;
    display: block;
  }
/* //// TB //// */
@media screen and (min-width:768px) {
    .header{
        height: 130px;
        flex-wrap: wrap;
    }

    h1{
        width: 90%;
    }

    .logo{
        width: 40%;
        min-width: 400px;
        margin: 0 auto;
    }

    .hum_menu{
        margin: 0 auto;
    }

    .nav_toggle{
        display: none;
    }

    .nav{
        width: 100%;
        height: auto;
        position: static;
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .nav_menu_ul{
        display: flex;
        justify-content: flex-end;
    }

    .nav_menu_ul li{
        font-size: 1rem;
    }
    
    .nav li{
        padding: 20px;
    }

    .main{
        width: 100%;
        margin: 0 auto;
    }

    section{
        width: 90%;
        margin: 0 auto;
    }

    #content{
    display: block;        
    }
}

/* //// PC //// */
@media screen and (min-width:1025px) {
    .header{
        max-width: 1280px;
        height: 80px;
        flex-wrap: nowrap;
    }

    h1{
        width: 70%;
    }

    .nav_menu_ul{
        margin-top: 5px;
        padding: 0;
        display: flex;
        justify-content: flex-end;
    }

    .nav_menu_ul li{
        font-size: 1rem;
    }

    .nav li {
        padding: .875rem;
        color: #e8ece9;
      }

      .maru{
        width: 30px;
        height: 30px;
        position: absolute;
        top: 2px;
        left: 0px;
        opacity: .3;
        visibility: visible;
    }

    .main{
        max-width: 1280px;
    }

    .pcmv{
        width: 100%;
        height: 40vh;
        object-fit: cover;        
    }

    .footer_nav ul{
        flex-direction: row;
        justify-content: center;
      }

}