@charset "UTF-8";

.container {
    background-color: var(--primary-white);
}

/*==========================
Header
==========================*/

.header {
    display: flex;
    justify-content: center;
    position: relative;
}

.topIcon {
    width: 22rem;
    height: 6rem;
    position: absolute;
    top: 2.5rem;
    left: 4.1rem;

}

.title_header {
    width: 80.8rem;
    height: 34.3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    border-left: 0.4rem solid var(--primary-black);
    border-right: 0.4rem solid var(--primary-black);
    border-bottom: 0.4rem solid var(--primary-black);
    border-radius: 0 0 2rem 2rem;
    box-shadow: 0.6rem 0.6rem 0 0 var(--primary-gray);
    background-image: url(../image/TOP/BG_TOP.jpg);
    background-repeat: repeat;
    background-size: 15rem 15rem;
    position: relative;
    overflow: clip;
    transform: translateY(-100%);
    animation: bounceDown 0.7s ease-out 1.1s forwards;
}

@keyframes bounceDown {
    0% {
        transform: translateY(-100%);
    }
    50% {
        transform: translateY(6%);
    }
    65% {
        transform: translateY(-3%);
    }
    80% {
        transform: translateY(1%);
    }
    95% {
        transform: translateY(-1%);
    }
    100% {
        transform: translateY(0);
    }
}

.title_header::after {
    content: "";
    display: block;
    width: 100%;
    height: 4rem;
    background: url(../image/GALLERY/Gizagiza_header.png) repeat;
    background-repeat: repeat-x;
    position: absolute;
    top: -2rem;
    background-size: contain;
}

.decolation_header {
    background-color: var(--primary-black);
    color: var(--primary-white);
    width: 100%;
    height: 5.6rem;
    font-family: "pf-videotext";
    font-size: 3.6rem;
    letter-spacing: -0.198rem;
    display: flex;
    justify-content: center;
}

.title_ABOUT {
    padding: 3.1rem 7.1rem 5rem 7.1rem ;
}

.title_ABOUT_sp {
    display: none;
}

.menuIcon {
    width: 7rem;
    height: 8.2rem;
    position: fixed;
    top: 2.5rem;
    right: 6.3rem;
    z-index: 100;
    mix-blend-mode: difference;
    cursor: pointer;
}

/* Header sp */
@media screen and (max-width: 768px) {

    .topIcon {
        display: none;
    }

    .title_header {
        width: 24.4rem;
        height: 9.6rem;
        border-left: 0.2rem solid var(--primary-black);
        border-right: 0.2rem solid var(--primary-black);
        border-bottom: 0.2rem solid var(--primary-black);
        border-radius: 0 0 1rem 1rem;
        box-shadow: 4px 4px 3px 0 var(--primary-gray);
    }

    .title_header::after {
        height: 1.2rem;
        top: -0.6rem;
    }

    .decolation_header {
        height: 1.9rem;
        font-size: 1rem;
        letter-spacing: -0.055rem;
        position: absolute;
        top: 1.5rem;
    }

    .title_ABOUT {
        display: none ;
    }

    .title_ABOUT_sp {
        display: block;
        padding: 1.7rem 2.5rem ;
    }

    .menuIcon {
        width: 3.3rem;
        height: 4rem;
        top: 1.2rem;
        right: 1.6rem;
    }
  
  }
  /* sp 768px */

  /* 円形クロージングアニメーション用 */
.circle-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2001;
    pointer-events: none;
    display: none;
  }
  
  .circle-transition.active {
    display: block;
  }
  
  .circle-transition svg {
    width: 100%;
    height: 100%;
  }
  
  .circle-transition.closing {
    animation: none;
  }
  
  .circle-transition.opening {
    animation: none;
  }


/*==========================
Label CHARACTER
==========================*/

.textLabel_character {
    margin-top: 12rem;
    border-top: 2px solid var(--primary-black);
    width: 100%;
    height: 12rem;
    background-color: var(--primary-blue);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 0.5;
    overflow: hidden;
   }

   .inner_character {
    display: flex;
}
   
   .decoText_character {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 9.6rem;
    font-weight: 900;
    padding-left: 2rem;
    color: var(--primary-white);
    -webkit-text-stroke-width: 0.2rem;
    -webkit-text-stroke-color: var(--primary-black);
    text-shadow: 0.7rem 0.6rem 0 var(--primary-black);
   }

  .decoText_character:nth-child(odd) {
    animation: loop 80s -40s linear infinite;
  }
  
  .decoText_character:nth-child(even) {
    animation: loop2 80s linear infinite;
  }

  @keyframes loop {
    0% {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-100%);
    }
}

@keyframes loop2 {
    0% {
      transform: translateX(0);
    }
    to {
      transform: translateX(-200%);
    }
}

.r {
    letter-spacing: 1rem;
}

/* Label CHARACTER sp */
@media screen and (max-width: 768px) {

    .textLabel_character {
        margin-top: 3.2rem;
        border-top: 2px solid var(--primary-black);
        height: 4.4rem;
        background-color: var(--primary-blue);
        margin-inline: calc(50% - 50vw);
        z-index: 20;
   }

   .decoText_character {
    font-size: 4rem;
    -webkit-text-stroke-width: 0.1rem;
    text-shadow: 0.2rem 0.1rem 0 var(--primary-black);
   }

   .r {
    letter-spacing: 0.4rem;
   }
}
  /* sp 768px */

/*==========================
Character
==========================*/

   .character {
    background-color: var(--primary-black);
    border-top: 2px solid var(--primary-white);
    height: 77.3rem;
   }

   .contents_character {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
   }

   .card_character {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transform: rotate(-6deg);
    z-index: 300;
   }

   .illust_card {
    width: 44.1rem;
    position: absolute;
    bottom: -35rem;
    right: 3rem;
    transform: rotate(-6deg);
    z-index: 300;
    animation:MANURUfuwafuwa ease-in-out 2s infinite alternate;
    -webkit-animation:MANURUfuwafuwa ease-in-out 2s infinite alternate;
    -moz-animation:MANURUfuwafuwa ease-in-out 2s infinite alternate;
   }
   
   @keyframes MANURUfuwafuwa{
     0%   { transform:translate(0%, 0%); }
     100% { transform:translate(0%, -1.5rem); }
   }
   @-webkit-keyframes MANURUfuwafuwa{
     0%   { -webkit-transform:translate(0%, 0%); }
     100% { -webkit-transform:translate(0%, -1.5rem); }
   }
   
   @-moz-keyframes MANURUfuwafuwa{
     0%   { -moz-transform:translate(0%, 0%); }
     100% { -moz-transform:translate(0%, -1.5rem); }
   }  

   .introduction_character {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-left: 9rem;
   }

   .introductionText_character {
    width: 51.5rem;
   }

   .text_name_character {
    width: 33.9rem;
    height: 6.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px 20px 0 0;
    border-top: 2px solid var(--primary-black);
    border-left: 2px solid var(--primary-black);
    border-right: 2px solid var(--primary-black);
    background-color: var(--primary-blue);
    box-shadow: 6px 6px 0 0 var(--primary-gray);
    font-family: "zen-kaku-gothic-new";
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--primary-white);
    -webkit-text-stroke-width: 1.3px;
    -webkit-text-stroke-color: var(--primary-black);
    text-shadow: 0.3rem 0.3rem 0 var(--primary-black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
    position: relative;
    z-index: 1;
   }

   .text_introduction_character {
    width: 100%;
    height: 26.5rem;
    border: 2px solid var(--primary-black);
    background-color: var(--primary-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 6.1rem;
    box-shadow: 6px 6px 0 0 var(--primary-gray);
    color: var(--primary-black);
    font-family: "zen-kaku-gothic-new";
    font-size: 2.4rem;
    line-height: 4.8rem;
    font-weight: 500;
    letter-spacing: -0.112rem;
    position: relative;
    z-index: 2;
   }

   .text_introduction_1 span {
    border-bottom: 2px solid var(--primary-blue);
    font-weight: 600;
    font-size: 2.8rem;
   }

    .text_introduction_2 span {
    border-bottom: 2px solid var(--primary-blue);
        font-weight: 600;
            font-size: 2.8rem;
   }

   .spbr {
    display: none;
   }

   .btn_galleryPage_character {
    margin-top: 2.6rem;
    margin-left: 31.5rem;
    width: 20rem;
    height: 6.2rem; 
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-white);
    color: var(--primary-white);
    font-weight: 900;
    -webkit-text-stroke-width: 0.2rem;
    -webkit-text-stroke-color: var(--primary-black);
    text-shadow: 0.3rem 0.3rem 0 var(--primary-black);
    font-size: 3.2rem; 
    letter-spacing: -0.2rem;
    border: 2px solid var(--primary-black);
    box-shadow: 0.6rem 0.6rem 0 0 var(--primary-gray);
    overflow: hidden;
    position: relative;
    z-index: 1;
    flex-direction: row-reverse;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
}

.btn_galleryPage_character::before {
    content: "";
    width: 1.5rem;
    height: 2rem;
    background: url(../image/TOP/Button_Arrow.svg) no-repeat center / cover;
    margin-left: 1rem;
}

.btn_galleryPage_character::after {
    background: var(--primary-orange);
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
}

.btn_galleryPage_character:hover {
    color: var(--primary-white);
    -webkit-text-stroke-color: var(--primary-black); 
    -webkit-text-stroke-width: 0.2rem;
    text-shadow: 0.3rem 0.3rem 0 var(--primary-black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
}

.btn_galleryPage_character:hover::after {
    transform: scale(1,1);
}

/* Character sp */
@media screen and (max-width: 768px) {

   .character {
    border-top: 2px solid var(--primary-white);
    height: 38rem;
   }

   .contents_character {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
    height: 100%;
   }

   .card_character {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
   }

   .illust_card {
    width: 17.6rem;
    height: 35.9rem;
    transform: rotate(-9deg);
    z-index: 300;
    position: absolute;
    top: -19rem;
    left: 1.5rem;
   }

   .illust_card img {
    width: 100%;
   }

   .introduction_character {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: unset;
   }

   .introductionText_character {
    width: 14.5rem;
   }

   .text_name_character {
    width: 100%;
    height: 3.8rem;
    border-top: 2px solid var(--primary-black);
    border-left: 2px solid var(--primary-black);
    border-right: 2px solid var(--primary-black);
    box-shadow: 6px 6px 0 0 var(--primary-gray);
    font-size: 1.6rem;
    -webkit-text-stroke-width: 1px;
    text-shadow: 0.15rem 0.15rem 0 var(--primary-black);
   }

   .text_introduction_character {
    width: 100%;
    height: 21.3rem;
    border: 2px solid var(--primary-black);
    align-items: center;
    padding-left: unset;
    justify-content: center;
    gap: 1.2rem;
    box-shadow: 6px 6px 0 0 var(--primary-gray);
    font-size: 1.2rem;
    line-height: 2.2rem;
    letter-spacing: -0.048rem;
   }

   .text_introduction_1 span {
    border-bottom: 2px solid var(--primary-blue);
    font-weight: 600;
    font-size: 1.2rem;
   }

    .text_introduction_2 span {
    border-bottom: 2px solid var(--primary-blue);
    font-weight: 600;
    font-size: 1.2rem;
   }

    .spbr {
    display: inline-block;
   }

    .btn_galleryPage_character {
    margin-top: 2.7rem;
    margin-left: 1.8rem;
    width: 12.7rem;
    height: 3.3rem; 
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-orange);
    color: var(--primary-white);
    font-weight: 900;
    -webkit-text-stroke-width: 0.1rem;
    -webkit-text-stroke-color: var(--primary-black);
    text-shadow: 0.2rem 0.2rem 0 var(--primary-black);
    font-size: 2rem; 
    letter-spacing: -0.2rem;
    border: 0.2rem solid var(--primary-black);
    box-shadow: 0.3rem 0.3rem 0 0 var(--primary-gray);
    overflow: hidden;
    position: relative;
    z-index: 1;
    flex-direction: row-reverse;
}

.btn_galleryPage_character::before {
    content: "";
    width: 1.1rem;
    height: 1.5rem;
    background: url(../image/TOP/Button_Arrow.svg) no-repeat center / cover;
    margin-left: 1rem;
}

.btn_galleryPage_character::after {
    background: var(--primary-gray);
    transition: unset ;
  }

  .btn_galleryPage_character:hover {
    color: var(--primary-white);
    background-color: var(--primary-gray);
    -webkit-text-stroke-color: var(--primary-black); 
    -webkit-text-stroke-width: 0.1rem;
    text-shadow: 0.2rem 0.2rem 0 var(--primary-black);
  }


}
  /* sp 768px */

/*==========================
Label CREATOR
==========================*/

  .textLabel_creator {
    width: 100%;
    height: 12rem;
    background-color: var(--primary-white);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 0.5;
    overflow: hidden;
   }

   .inner_creator {
    display: flex;
}
   
   .decoText_creator {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 9.6rem;
    font-weight: 900;
    padding-left: 2rem;
    color: var(--primary-blue);
    -webkit-text-stroke-width: 0.2rem;
    -webkit-text-stroke-color: var(--primary-black);
    text-shadow: 0.7rem 0.6rem 0 var(--primary-black);
   }

  .decoText_creator:nth-child(odd) {
    animation: loop 80s -40s linear infinite reverse;
  }
  
  .decoText_creator:nth-child(even) {
    animation: loop2 80s linear infinite reverse;
  }

  @keyframes loop {
    0% {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-100%);
    }
}

@keyframes loop2 {
    0% {
      transform: translateX(0);
    }
    to {
      transform: translateX(-200%);
    }
}


/* Label CREATOR sp */
@media screen and (max-width: 768px) {

    .textLabel_creator {
        border-top: 2px solid var(--primary-black);
        height: 4.4rem;
        margin-inline: calc(50% - 50vw);
   }

      .decoText_creator {
        font-size: 4rem;
        -webkit-text-stroke-width: 0.1rem;
        text-shadow: 0.2rem 0.1rem 0 var(--primary-black);
   }
}
  /* sp 768px */

/*==========================
Creator
==========================*/

.creator {
    background-color: var(--primary-gray);
    border-top: 2px solid var(--primary-black);
    height: 77.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
   }

.contents_creator {
    width: 122.4rem;
    height: 60rem;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: MANURUfuwafuwa ease-in-out 2s infinite alternate;
    -webkit-animation: MANURUfuwafuwa ease-in-out 2s infinite alternate;
    -moz-animation: MANURUfuwafuwa ease-in-out 2s infinite alternate;
}

/* アニメーションにrotateを追加 */
@keyframes MANURUfuwafuwa {
    0%   { transform: rotate(4deg) translate(0%, 0%); }
    100% { transform: rotate(4deg) translate(0%, -1.5rem); }
}

@-webkit-keyframes MANURUfuwafuwa {
    0%   { -webkit-transform: rotate(4deg) translate(0%, 0%); }
    100% { -webkit-transform: rotate(4deg) translate(0%, -1.5rem); }
}

@-moz-keyframes MANURUfuwafuwa {
    0%   { -moz-transform: rotate(4deg) translate(0%, 0%); }
    100% { -moz-transform: rotate(4deg) translate(0%, -1.5rem); }
}


.title_creator {
    width: 18.1rem;
    height: 100%;
    background-color: var(--primary-black); 
    border-radius: 2rem 0 0 2rem;
    border-left: 2px solid var(--primary-black);
    border-top: 2px solid var(--primary-black);
    border-bottom: 2px solid var(--primary-black);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

.title_creator::after {
    content: "";
    display: block;
    width: 0.4rem;
    height: 100%;
    background: url(../image/ABOUT/Gizagiza_creator.png) repeat;
    background-repeat: repeat-y;
    position: absolute;
    background-size: 100%;
    right: -0.8px;
}

.contents_title_creator {
    width: 11.685rem;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    color: var(--primary-white);
}

.mainTitle {
    font-size: 9.6rem;
    letter-spacing: -0.48rem;
    line-height: 1;
    font-weight: 700;
}

.subTitle {
    font-size: 3.2rem;
    letter-spacing: -0.128rem;
    line-height: 1;
    font-weight: 700;
}

.card_creator {
    flex: 1;
    padding: 0 5.3rem 0 5.3rem;
    height: 100%;
    border-radius: 0 2rem 2rem 0;
    border-top: 2px solid var(--primary-black);
    border-bottom: 2px solid var(--primary-black);
    border-right: 2px solid var(--primary-black);
    background-image: url(../image/TOP/BG_TOP.jpg);
    background-repeat: repeat;
    background-size: 15rem 15rem;
    display: flex;
}

.contents_card_creator {
    display: flex;
    gap: 4.3rem;
}

.image_creator {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon_creator {
    width: 50rem;
    height: 50rem;
}

.icon_creator img {
    width:100% ;
    height: 100%;
}

.introduction_creator {
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.contents_introduction_creator {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.name_creator {
    display: flex;
    flex-wrap: wrap;
}

.title_name {
    color: var(--primary-gray);
    font-family: "pf-videotext";
    font-size: 1.6rem;
    letter-spacing: -0.0512rem;
    line-height: 1;
    width: 100%;
}

.name_jp {
    font-family: "zen-kaku-gothic-new";
    color: var(--primary-black);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    width: 100%;
    margin-left: -0.1rem;
    margin-top: 0.3rem;
}

.name_en {
    color: var(--primary-black);
    font-size: 12.8rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.64rem;
    margin-left: -1rem;
    margin-top: -1.3rem;
}

.info_creator {
    border-top: 2px solid var(--primary-gray);
    border-bottom: 2px solid var(--primary-gray);
    padding: 2.6rem 0 2.6rem 0;
}

.title_info {
    color: var(--primary-gray);
    font-family: "pf-videotext";
    font-size: 1.6rem;
    letter-spacing: -0.0512rem;
    line-height: 1;
}

.what_info {
    width: 26.9rem;
}

.text_info {
    color: var(--primary-black);
    font-family: "zen-kaku-gothic-new";
    font-size: 2rem;
    font-weight: 500;
    line-height: 3.3rem;
    letter-spacing: -0.02rem;
    margin-top: 4.1rem;
}

.link_creator {
    width: 100%;
    display: flex;
    gap: 1.75rem;
    margin-top: 2.8rem;
}

.btn_contact {
    width: 23.2rem;
    height:5.7rem;
    transition-duration: .4s;
}

.btn_contact img {
    width: 100%
}

.btn_contact:hover {
    transform: scale(1.08);
  }

.btn_contact_sp {
    display: none;
}

.btn_x {
    width: 5.7rem;
    height:5.7rem;
    transition-duration: .4s;
}

.btn_x img {
    width: 100%
}

.btn_x:hover {
    transform: scale(1.08);
  }

.btn_instagram {
    width: 5.7rem;
    height:5.7rem;
    transition-duration: .4s;
}

.btn_instagram img {
    width: 100%
}

.btn_instagram:hover {
    transform: scale(1.08);
  }

/* Creator sp */
@media screen and (max-width: 768px) {

.creator {
    height: 75.3rem;
   }

.contents_creator {
        width: 31.8rem;
        height: 68.3rem;
        flex-direction: column;
        animation: MANURUfuwafuwaSP ease-in-out 2s infinite alternate;
        -webkit-animation: MANURUfuwafuwaSP ease-in-out 2s infinite alternate;
        -moz-animation: MANURUfuwafuwaSP ease-in-out 2s infinite alternate;
    }

    @keyframes MANURUfuwafuwaSP {
        0%   { transform: rotate(2deg) translate(0%, 0%); }
        100% { transform: rotate(2deg) translate(0%, -1.5rem); }
    }

    @-webkit-keyframes MANURUfuwafuwaSP {
        0%   { -webkit-transform: rotate(2deg) translate(0%, 0%); }
        100% { -webkit-transform: rotate(2deg) translate(0%, -1.5rem); }
    }

    @-moz-keyframes MANURUfuwafuwaSP {
        0%   { -moz-transform: rotate(2deg) translate(0%, 0%); }
        100% { -moz-transform: rotate(2deg) translate(0%, -1.5rem); }
    }

.title_creator {
    width: 100%;
    height: 10rem;
    border-radius: 2rem 2rem 0 0;
    border-left: unset;
    border-top: unset;
    border-bottom: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

.title_creator::after {
    content: "";
    display: block;
    width: 100%;
    height: 0.3rem;
    background: url(../image/ABOUT/Gizagiza_creator_SP.png) repeat;
    background-repeat: repeat-x;
    position: absolute;
    bottom: -0.2rem;
}

.contents_title_creator {
    width: 100%;
    writing-mode: unset;
    transform: rotate(0deg);
    flex-direction: column;
}

.mainTitle {
    font-size: 4.8rem;
    font-weight: 900;
    letter-spacing: unset;
}

.subTitle {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: unset;
}

.card_creator {
    flex: 1;
    padding:unset;
    gap: 4.3rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 0 0 2rem 2rem;
    border-top: unset;
    border-bottom: 2px solid var(--primary-black);
    border-left: 2px solid var(--primary-black);
    border-right: 2px solid var(--primary-black);
    background-image: url(../image/TOP/BG_TOP.jpg);
    background-repeat: repeat;
}

.contents_card_creator {
    width: 22.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: unset;
}

.image_creator {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon_creator {
    width: 100%;
    height: 22.4rem;
}

.introduction_creator {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.contents_introduction_creator {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.name_creator {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1.4rem;
}

.title_name {
    font-size: 1.1rem;
    letter-spacing: -0.0352rem;
}

.name_jp {
    font-size: 1.6rem;
    margin-left: -0.1rem;
    margin-top: 0.1rem;
}

.name_en {
    font-size: 5.6rem;
    letter-spacing: -0.28rem;
    margin-left: -0.4rem;
    margin-top: -0.6rem;
}

.info_creator {
    padding: 1.4rem 0 1.4rem 0;
}

.title_info {
    font-size: 1.1rem;
    letter-spacing: -0.0352rem;
}

.what_info {
    width: 15rem;
}

.text_info {
    font-size: 1.2rem;
    line-height: 2.1rem;
    letter-spacing: -0.014rem;
    margin-top: 1.4rem;
}

.link_creator {
    width: 100%;
    gap: 0.7rem;
    margin-top: 1.4rem;
}

.btn_contact {
    display: none;
}

.btn_contact_sp {
    display: block;
    width: 13.6rem;
    height: 3.8rem;
}

.btn_contact_sp img {
    width: 100%;
}

.btn_x {
    width: 3.8rem;
    height: 3.8rem;
}

.btn_instagram {
    width: 3.8rem;
    height: 3.8rem;
}

}
  /* sp 768px */


/*==========================
Btn_links
==========================*/

.buttons {
    border-top: 2px solid var(--primary-black);
    width: 100%;
    height: 24.6rem;
    background-color: var(--primary-white);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.buttons::after {
    content: "";
    display: block;
    width: 16.6rem;
    height: 23.2rem;
    background: url(../image/ABOUT/Emoji_MANURU_heart.png) no-repeat center / cover;
    position: absolute;
    right: 15.8rem;
    bottom: -4.5rem;
    animation: katakata 1.5s  infinite;
}

@keyframes katakata {
  0% {transform: translate(0px, 0px) rotateZ(0deg)}
  25% {transform: translate(1px, 1px) rotateZ(1deg)}
  50% {transform: translate(0px, 0px) rotateZ(0deg)}
  75% {transform: translate(1px, 1px) rotateZ(-1deg)}
  100% {transform: translate(0px, 0px) rotateZ(0deg)}
}

.btn_pageTransition {
    width: 59.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.btn_galleryPage {
  width: 28.7rem;
  height: 8.7rem; 
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-black);
  color: var(--primary-black);
  -webkit-text-stroke-width: 0.2rem;
  -webkit-text-stroke-color: var(--primary-white);
  text-shadow: 0.3rem 0.3rem 0 var(--primary-white);
  font-size: 4rem; 
  font-weight: 900;
  letter-spacing: -0.2rem;
  border: 0.2rem solid var(--primary-black);
  box-shadow: 0.6rem 0.6rem 0 0 var(--primary-gray);
  overflow: hidden;
  position: relative;
  z-index: 1;
  flex-direction: row-reverse;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
}

.btn_galleryPage::before {
  content: "";
  width: 1.95rem;
  height: 2.6rem;
  background: url(../image/TOP/Button_Arrow.svg) no-repeat center / cover;
  margin-left: 2rem;
}

.btn_galleryPage::after {
  background: var(--primary-orange);
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.btn_galleryPage:hover {
  color: var(--primary-white);
  -webkit-text-stroke-color: var(--primary-black); 
  -webkit-text-stroke-width: 0.2rem;
  text-shadow: 0.4rem 0.4rem 0 var(--primary-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
}

.btn_galleryPage:hover::after {
 transform: scale(1,1);
}

.btn_goodsPage {
  width: 28.7rem;
  height: 8.7rem; 
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-black);
  color: var(--primary-black);
  -webkit-text-stroke-width: 0.2rem;
  -webkit-text-stroke-color: var(--primary-white);
  text-shadow: 0.3rem 0.3rem 0 var(--primary-white);
  font-size: 4rem; 
  font-weight: 900;
  letter-spacing: -0.2rem;
  border: 0.2rem solid var(--primary-black);
  box-shadow: 0.6rem 0.6rem 0 0 var(--primary-gray);
  overflow: hidden;
  position: relative;
  z-index: 1;
  flex-direction: row-reverse;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
}

.btn_goodsPage::before {
  content: "";
  width: 1.95rem;
  height: 2.6rem;
  background: url(../image/TOP/Button_Arrow.svg) no-repeat center / cover;
  margin-left: 2rem;
}

.btn_goodsPage::after {
  background: var(--primary-orange);
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.btn_goodsPage:hover {
  color: var(--primary-white);
  -webkit-text-stroke-color: var(--primary-black); 
  -webkit-text-stroke-width: 0.2rem;
  text-shadow: 0.4rem 0.4rem 0 var(--primary-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
}

.btn_goodsPage:hover::after {
    transform: scale(1,1);
}

/* Btn_links sp */
@media screen and (max-width: 768px) {

    .buttons {
        height: 25rem;
        position: relative;
    }

    .buttons::after {
        width: 11.6rem;
        height: 11.9rem;
        background: url(../image/ABOUT/Emoji_MANURU_heart_sp.png) no-repeat center / cover;
        right: 13rem;
        bottom: -2.7rem;
    }

    .btn_pageTransition{
        width: 15.6rem;
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 2.2rem;
    }

    .btn_galleryPage {
        width: 100%;
        height: 4.2rem; 
        background-color: var(--primary-orange);
        color: var(--primary-white);
        -webkit-text-stroke-width: 0.1rem;
        -webkit-text-stroke-color: var(--primary-black);
        text-shadow: 0.2rem 0.2rem 0 var(--primary-black);
        font-size: 2.4rem; 
        letter-spacing: -0.168rem;
        border: 2px solid var(--primary-black);
        box-shadow: 0.6rem 0.6rem 0 0 var(--primary-gray);
      }

      .btn_galleryPage::before {
        content: "";
        width: 1.4rem;
        height: 1.9rem;
        margin-left: 1.2rem;
      }

      .btn_galleryPage::after {
        background: var(--primary-black);
        transition: unset ;
      }

       .btn_galleryPage:hover {
        color: var(--primary-black);
        -webkit-text-stroke-color: var(--primary-white); 
        -webkit-text-stroke-width: 0.1rem;
        text-shadow: 0.2rem 0.2rem 0 var(--primary-white);
      }

      .btn_goodsPage {
        margin-top: 1.5rem;
        width: 100%;
        height: 4.2rem; 
        background-color: var(--primary-orange);
        color: var(--primary-white);
        -webkit-text-stroke-width: 0.1rem;
        -webkit-text-stroke-color: var(--primary-black);
        text-shadow: 0.2rem 0.2rem 0 var(--primary-black);
        font-size: 2.4rem; 
        letter-spacing: -0.168rem;
        border: 2px solid var(--primary-black);
        box-shadow: 0.6rem 0.6rem 0 0 var(--primary-gray);
      }

      .btn_goodsPage::before {
        content: "";
        width: 1.4rem;
        height: 1.9rem;
        margin-left: 1.2rem;
      }

      .btn_goodsPage::after {
        background: var(--primary-black);
        transition: unset ;
      }

       .btn_goodsPage:hover {
        color: var(--primary-black);
        -webkit-text-stroke-color: var(--primary-white); 
        -webkit-text-stroke-width: 0.1rem;
        text-shadow: 0.2rem 0.2rem 0 var(--primary-white);
      }

  }
  /* sp 768px */


  /* Safariのみに適用する調整 */
@supports (-webkit-hyphens:none) {
  /* Safari専用 */
  .btn_galleryPage_character {
    text-shadow: 0.2rem 0.15rem 0 var(--primary-black);
  }

  .btn_galleryPage_character:hover {
    text-shadow: 0.21rem 0.15rem 0 var(--primary-black);
}

  .text_name_character {
    text-shadow: 0.15rem 0.15rem 0 var(--primary-black);
    -webkit-text-stroke-width: 0.5px;
  }

  .btn_galleryPage,
  .btn_goodsPage {
    text-shadow: 0.25rem 0.25rem 0 var(--primary-white);
  }

  .btn_galleryPage:hover,
  .btn_goodsPage:hover {
    text-shadow: 0.3rem 0.3rem 0 var(--primary-black);
  }

     @media screen and (max-width: 768px) {
      .btn_galleryPage_character {
        text-shadow: 0.13rem 0.13rem 0 var(--primary-black);
  }

      .btn_galleryPage_character:hover {
        text-shadow: 0.13rem 0.13rem 0 var(--primary-black);
  }
      .text_name_character {
        text-shadow: 0.1rem 0.1rem 0 var(--primary-black);
        -webkit-text-stroke-width: 0.5px;
    }

      .btn_galleryPage,
      .btn_goodsPage {
        text-shadow: 0.21rem 0.15rem 0 var(--primary-black);
  }

      .btn_galleryPage:hover,
      .btn_goodsPage:hover {
        text-shadow: 0.21rem 0.15rem 0 var(--primary-white);
}
  }
}

