@charset "UTF-8";
.button a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 230px;
    padding: 10px 0px 10px 25px;
    font-family: "Noto Sans Japanese";
    line-height: 1.8;
    text-decoration: none;
    color: #333;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}

.button a:before, .button a:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
}
.button a:before {
  width: 0.5rem;
  height: 0.5rem;
  left: 1.1rem;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  z-index: 2;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}
.button a:after {
  left: 0;
  background: #eee;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 4rem;
  transform: translateY(-50%);
  transition: all 0.5s;
}
.button a span {
  position: relative;
  transition: all 0.3s;
  z-index: 3;
}

.button a:hover span {
  color: #fff;
}
.button a:hover:before {
  left: 2.5rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}
.button a:hover:after {
  right: 0;
  width: 100%;
  background: #333;
}


/*------------------------------- インスタグラム ------------------------------*/
#insta{
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
    & a{
        text-decoration: none;
    }

    & ul{
        box-sizing: border-box;
        padding: 0;
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;

        & li{
            list-style: none;
            box-sizing: border-box;
            width: calc(100% / 3);
            padding: 0.3rem;
            position: relative;
            aspect-ratio: 1/1;
            border-radius: 10px;    
            overflow: hidden;   
            & .captionTxt{
                display: block;
                width: 100%;
                height: 100%;
                font-size: 14px;
                line-height: 1.8;
                text-align: left;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                background-color: rgba(0,0,0,.75);
                color: #fff;
                opacity: 0;
            }
            & .like_count{
                font-size: 12px;
                line-height: 2;
                display: block;
                text-align: center;
                position: relative;
                &::before{
                    content: "\02665";
                    color: #d4245f;
                    font-size: 14px;
                    vertical-align: middle;
                    padding-right: 0.25em;
                }
            }
            img{
              transition: transform .6s ease;
                object-fit: cover;
                width: 100%;
                height: 100%;
                aspect-ratio: 1/1;
                border-radius: 10px;
            }
                img:hover {
                    transform: scale(1.1);
                  }
                
                /* & .captionTxt{
                    transition: .5s opacity, .25s filter;
                    opacity: 1;
                } */            
        }
    }
}

@media screen and (min-width:600px) {
}

@media screen and (min-width:1025px) {
}
#profile{
.flexbox {
    max-width: 700px;
    margin: 0 auto;
    gap: 5%;
        .left {
          width: calc(100% / 5);
          background-color: #ffffff;
          border-radius: 50%;
          aspect-ratio: 1 / 1;
          align-items: center;
          display: flex;
          justify-content: center;
            img{
              width: 80%;
              height: 80%;
              object-fit: contain;
                }
        }
        .right{
            width: calc((100% / 5)* 4);
            text-align: start;
            .follw{
                display: flex;
                .flexbox{
                    width:auto;
                    margin-left: 0;
                }
            }
                p{
                margin: 0 20px 0 0;
                font-size: 1.1rem;
                }
    #biography{
        width: 100%;
        text-align: start;
    }
}
}
}
/* ハンバーガーメニュー */




a.menu-item {
  text-transform: uppercase;
  margin-bottom: 3px;
  display: block;
}
.hr {
  width: 30px;
  height: 3px;
  background: var(--white);
  margin: 15px auto 15px auto;
  box-shadow: 1px 1px 2px var(--black);
}
.table {
  display: table;
  height: 100%;
  width: 100%;
}

.cell {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.container {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 0;
  transition: all 0.75s cubic-bezier(.77,.06,.28,.85);
}

.container.push {
    margin-left: -50%;
}

#menu-trigger {
  position: fixed;
  top: 4.6%;
  right: 3%;
  z-index: 1000;
  transition: all 0.5s ease;
  transform: scale(0.85);
}

#menu-trigger div {
  position: relative;
  display: block;
  height: 5px;
  margin-bottom: 7px;
  width: 40px;
  background: black;
  transition: all 0.5s ease;
  box-shadow: 1px 1px 2px var(--black);
}

#menu-trigger:hover {
  cursor: pointer;
}

#menu-trigger:hover div:nth-child(odd) {
  width: 35px;
}

#menu-trigger:hover div:nth-child(even) {
  width: 25px;
}

#menu-trigger.clicked div:nth-child(even) {
  opacity: 0;
}

#menu-trigger.clicked div:nth-child(1) {
  transform: rotate(45deg);
  top: 12px;
}

#menu-trigger.clicked div:nth-child(3) {
  transform: rotate(-45deg);
  top: -12px;
}

#menu-trigger.clicked:hover div {
  width: 40px !important;
}

#menu-trigger.clicked:hover {
  transform: scale(0.75);
}

.hum-menu {
  position: fixed;
  top: 0px;
  right: -100%;
  width: 50%;
  height: 100vh;
  z-index: 98;
  background:#8f8f8f;
  transition: all 0.75s cubic-bezier(.77, .06, .28, .85);
}

.hum-menu.open {
  right: 0;
  box-shadow: 1px 0px 5px #111111;
}

.menu-tint {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--blue);
  opacity: 0;
  z-index: -1;
  transition: all 0.75s cubic-bezier(.77, .06, .28, .85);
}

.menu-tint.open {
  opacity: 0.15;
  z-index: 97;
}


@media(max-width:480px){
  #Hamburger {
    .hum-menu {
        width: 100%;
    }
  }
}

/* ---------------feadin --------------------- */
.fade-in {
  opacity: 0;
  transition: opacity 3s ease;
}

.fade-in.show {
  opacity: 1;
}

/* ---------------matrix--------------------- */
.matrix .bg-wrap,
.matrix .bg-wrap .inn {
  display: block;
}
 
.matrix .bg-wrap {
  overflow: hidden;
  opacity: 0;
}
 
.matrix .bg-wrap + .bg-wrap {
  margin-top: 10px;
}
 
.matrix .bg-wrap .inn{
  font-size: 1.5rem;
  line-height: 3;
  margin-bottom: 50px;
}
 
.matrix .bg-wrap .inn {
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
 
.matrix.is-animated .bg-wrap {
  opacity: 1;
}
 
.matrix.is-animated .bg-wrap .inn {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}

/* ローディング画面 */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  background-color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 3.5s 3.5s forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.loading__logo {
  opacity: 0;
  animation: logo_fade 5s 0.5s forwards;
  width: 100px;
  height: 100px;
  object-fit: contain;
}

@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  60% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
  }
}

