@charset "utf-8";

* {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

header {
    height: 70px;
    padding: 20px 0;
    position: relative;
    z-index: 10;
    background-color: rgba(0, 0, 0, .666);
}

.header__inner{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto;
  }

.header-logo {
    color: #fff;
    font-size: 36px;
    position: fixed;
    top: 0px;
    width: 100%;
    padding: 10px;
    z-index: 1;
}

 /*メディアクエリによる表示・非表示*/

 .pc{
    display: block;
  }
  
  .sp{
    display: none;
  }
@media (max-width: 768px) {
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
}

/*ボタン*/

.header__btn{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    height: 75px;
    width: 75px;
    background-color: transparent;
    z-index: 2;
  }
  
  /*ハンバーガーアイコン*/
  
  .header__btn .icon{
    display: block;
    position: relative;
    top: 0;
    margin: 0 auto;
    width: 24px;
    height: 2px;
    background-color: #ccc;
    transition: 0.3s ease;
  }
  
  .header__btn .icon::before,
  .header__btn .icon::after{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    transition: all 0.3s;
    background-color: #ccc;
  }
  
  .header__btn .icon::before{
    top: -8px;
  }
  
  .header__btn .icon::after{
    top: 8px;
  }
  
  /*ナビゲーション*/

.header__navigation{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    text-align: center;
    transition: 0.3s ease;
    transform: translateX(100%);
  }
  
  .header__navigation ul{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0;
    padding: 0;
    height: 100%;
    list-style-type: none;
  }
  
  .header__navigation a{
    display: block;
    padding: 0.8em;
    color: #333;
    letter-spacing: 0.8em;
    font-weight: bold;
    font-size: 1.25em;
    text-decoration: none;
  }
  
  /*open*/
  
  .open .header__btn .icon{
    background-color: transparent;
  }
  
  .open .header__btn .icon::before,
  .open .header__btn .icon::after{
    top: 0;
    background-color: #333;
  }
  
  .open .header__btn .icon::before{
    transform: rotate(45deg);
  }
  
  .open .header__btn .icon::after{
    transform: rotate(-45deg);
  }
  
  .open .header__navigation{
    transform: translateX(0);
  }

  @media screen and (min-width:768px) {
    .header{
        height: 90px;
        background-color: rgba(0,0,0,666);
    }
    .header__inner{
        align-items: center;
    }
    .header__btn{
        display: none;
    }
    .header__navigation{
        position: relative;
        margin-right: -0.8em;
        background: none;
        transform: translateX(0);
    }
    .header__navigation ul{
        flex-direction: row;
        justify-content: flex-end;
    }
    .header__navigation a{
        color: #fff;
        font-weight: normal;
        font-size: 1em;
    }
  }
  @media screen and (min-width:992px) {
    header{
        padding-top: 30px;
    }
    header .header__logo{
        flex: none;
    }
    header .header__logo img{
        width: 115px;
    }
  }


.img1 {
    background-image: url(img/img1.png);
    background-size: contain;
    background-repeat: no-repeat;
    object-fit: cover;
    height: 80vh;
    width: 100%;
}

.img2 {
    background-image: url(img/img2.png);
    background-size: contain;
    background-repeat: no-repeat;
    object-fit: cover;
    height: 80vh;
    width: 100%;
}

.circle {
    width: 100px;
    height: 100px;
    margin: 20px;
    font-size: 14px;
  }
  div svg {
    overflow: visible;
  }
  div path {
    fill: none;
  }
  div text {
    fill: #0089A7;
  }

#menu{
    background-image: url(img/back1.png);
    background-size: 1200px;
    color: #fff;
}

h1{
    font-size: 48px;
    margin: 30px;
    text-align: center;
}
.flex{
    display: flex;
    justify-content: center;
    padding: 20px;
}

.scroll-fade-side{
    margin: 50px auto;
}

.img{
    height: 200px;
    padding: 20px;
    object-fit: cover;
    width: 323.6px;
}

.contents {
    align-items: center;
    margin: 20px 30px;
    list-style: none;
}

span{
    font-size: 24px;
}

p{
    margin: 30px auto;
}

#access{
    background-image: url(img/back2.png);
    background-size: cover;
    color: #fff;
}

.tizu, .green{
    width: 500px;
    height: 309px;
    object-fit:  scale-down;
}

footer {
    background-color: rgba(0, 0, 0, .666);
    margin: 20px auto 0;
    padding: 20px 0;
    text-align: center;
}

@media  only screen and (max-width: 896px){
    .img2{
        display: none;
    }
    .flex{
        width: 100%;
        display: block;
    }
    
    #menu,#access{
        background-image: none;
    }
    h1{
        color: #000;
    }
    p{
        color: #000;
    }
    .tizu, .green{
        width: 100%;
        height: auto;
    }
}