@charset "UTF-8";
/* =============================================
common
================================================ */
:root {
  --primary-white: #e3e3e3;
  --primary-black: #242424;
  --primary-orange: #f04f23;
  --primary-blue: #255fff;
  --primary-gray: #666666;
}

html {
  font-size: 62.5%;
  font-size: clamp(6px ,0.6944vw, 24px);
  font-optical-sizing: auto;
}

body {
  font-family: "english-grotesque","pf-videotext","zen-kaku-gothic-new" ;
  font-style: normal;
  line-height: 1.5;
  font-size: 1.6rem;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
}

/* common PC */
@media screen and (max-width: 768px) {
  .container {
    min-width: 375px;
  }

html {
  font-size: 62.5%;
  font-size: clamp(6px ,2.6666vw, 20px);
}


}
/* pc 769px */


/*==========================
Nav
==========================*/

  .nav {
    width: 91.5rem;
    height: 100vh;
    padding: 0;
    position: fixed;
    background-color: var(--primary-black);
    z-index: 1000;
    right: 0;
    transform: translateX(100%);
    transition: transform 0.4s;
    box-sizing: border-box;
  }

  .nav.active {
  transform: translateX(0);
}

.wrap_nav {
  height: 100%;
  position: relative;  
  overflow-y: scroll;
}

  .inner_nav {
    padding: 6.4rem 10rem;
    display: flex;
    flex-direction: column;
    align-items: end;
    position: relative;  
  }

  .btn_close {
    width: 6rem;
    height: 6rem;
    position: absolute;
    top: 3.5rem;
    right: 6.52rem;
    cursor: pointer;
  }

  .btn_close img {
    width: 100%;
  }

  .logo_nav {
    width: 100%;
    border-top: 0.3rem solid var(--primary-white);
    border-bottom: 0.3rem solid var(--primary-white);
    display: flex;
    justify-content: center;
  }

  .logo_inner_nav {
    width: 100%;
    padding: 5.1rem ;
    transition-duration: .4s;
  }

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

  .logo_inner_nav img {
    width: 100%;
  }

  .menu_nav {
    margin-top: 5.1rem;
    height: 43.2rem;
    display: flex;
  }

  .leftMenu {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .btn_gallery_menu {
    height: 100%;
    color: var(--primary-white);
    font-size: 7.2rem;
    font-weight: 700;
    letter-spacing: -0.56rem;
    display: flex;
    align-items: center;
    border-top: 0.3rem solid var(--primary-white);
    border-bottom: 0.3rem dotted var(--primary-white);
    border-left: 0.3rem solid var(--primary-white);
    border-right: 0.3rem solid var(--primary-white);
    padding-right: 0.5rem;
    justify-content: center;
  }

  .btn_gallery_menu:hover {
    color: var(--primary-orange);
  }

  .btn_goods_menu {
    height: 100%;
    color: var(--primary-white);
    font-size: 7.2rem;
    font-weight: 700;
    letter-spacing: -0.56rem;
    display: flex;
    align-items: center;
    border-bottom: 0.3rem dotted var(--primary-white);
    border-left: 0.3rem solid var(--primary-white);
    border-right: 0.3rem solid var(--primary-white);
    padding-right: 1rem;
    justify-content: center;
  }

  .btn_goods_menu:hover {
    color: var(--primary-orange);
  }

  .btn_about_menu {
    height: 100%;
    color: var(--primary-white);
    font-size: 7.2rem;
    font-weight: 700;
    letter-spacing: -0.56rem;
    display: flex;
    align-items: center;
    border-bottom: 0.3rem solid var(--primary-white);
    border-left: 0.3rem solid var(--primary-white);
    border-right: 0.3rem solid var(--primary-white);
    padding-right: 0.5rem;
    justify-content: center;
  }

 .btn_about_menu:hover {
    color: var(--primary-blue);
  }

  .rightMenu {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .illust_menu {
    height: 66.66666666%;
    border-top: 0.3rem solid var(--primary-white);
    border-bottom: 0.3rem solid var(--primary-white);
    border-right: 0.3rem solid var(--primary-white);
  }

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

  .sns_menu {
    height: 33.33333333%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.9rem;
    border-bottom: 0.3rem solid var(--primary-white);
    border-right: 0.3rem solid var(--primary-white);
  }

  .btn_x_menu {
  transition-duration: .4s;
  }

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

.btn_instagram_menu {
  transition-duration: .4s;
  }

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



/* nav sp */
@media screen and (max-width: 768px) {
  .nav {
    background-color: var(--primary-black);
    width: 34.7rem;
    padding: 0;
    position: fixed;
    transform: translateX(100%);
    transition: transform 0.4s;
  }

  .nav.active {
    transform: translateX(0);
}

  .wrap_nav {
    overflow-y: auto;
    height: 100%;
    }

  .inner_nav {
    padding: 8rem 2.8rem;
    position: relative;
    flex-direction: column;
    min-height: 100vh;
  }

  .contents_nav {
    margin: auto 0;
  }

  .btn_close {
    position: fixed;
    width: 3.3rem;
    height: 3.3rem;
    right: 1.6rem;
  }

  .logo_nav {
    border-top: 0.2rem solid var(--primary-white);
    border-bottom: 0.2rem solid var(--primary-white);
  }

  .logo_inner_nav {
    width: 100%;
    padding: 2.5rem 0 2.5rem 0 ;
  }

  .logo_inner_nav img {
    width: 100%;
  }

  .menu_nav {
    margin-top: 1.5rem;
    height: 53.8rem;
    flex-direction: column;
    align-items: center;
  }

  .leftMenu {
    flex: unset;
    width: 100%;
  }

  .btn_gallery_menu {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -0.28rem;
    justify-content: center;
    border-top: 0.2rem solid var(--primary-white);
    border-bottom: 0.3rem dotted var(--primary-white);
    border-left: 0.2rem solid var(--primary-white);
    border-right: 0.2rem solid var(--primary-white);
    padding-left: unset;
  }

  .btn_goods_menu {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -0.28rem;
    justify-content: center;
    border-bottom: 0.3rem dotted var(--primary-white);
    border-left: 0.2rem solid var(--primary-white);
    border-right: 0.2rem solid var(--primary-white);
    padding-left: unset;
  }

  .btn_about_menu {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -0.28rem;
    justify-content: center;
    border-bottom: 0.2rem solid var(--primary-white);
    border-left: 0.2rem solid var(--primary-white);
    border-right: 0.2rem solid var(--primary-white);
    padding-left: unset;
  }

  .rightMenu {
    flex: unset;
  }

  .illust_menu {
    height: 100%;
    border-top: none;
    border-bottom: 0.2rem solid var(--primary-white);
    border-right: 0.2rem solid var(--primary-white);
    border-left: 0.2rem solid var(--primary-white);
  }

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

  .sns_menu {
    margin-top: 1.5rem;
    margin-left: auto;
    width: 9.6rem;
    height: 4rem;
    gap: 1.6rem;
    border-bottom: none;
    border-right: none;
  }

  .btn_x_menu,
  .btn_instagram_menu {
    width: 4rem;
    height: 4rem;
  }

   .btn_x_menu img,
   .btn_instagram_menu img {
    width: 100%;
    height: 100%;
  }
  
  }
  /* sp 768px */

/*==========================
Footer
==========================*/
.footer {
  display: flex;
  flex-direction: column;
}

.logo_footer {
  background-color: var(--primary-black);
  width: 100%;
  height: 63.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 122.2rem;
  transition-duration: .5s;
}

.logo:hover {
  transform: scale(1.03);
}

.menu_footer {
  display: flex;
  height: 37.4rem ;
  background-image: url(../image/TOP/BG_TOP.jpg);
  background-repeat: repeat;
  background-size: 15rem 15rem;
}

.decolation_footerMenu {
  width: 8.4rem;
  display: flex;
  justify-content: center;
  text-align: center;
  background-color: var(--primary-gray);
}

.text_admit {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  color: var(--primary-white);
  font-size: 4rem;
  font-weight: 700;
}

.image_footerMenu {
  width: 44.1rem;
  border-left: 0.2rem solid var(--primary-black);
  border-right: 0.1rem solid var(--primary-black);
}

.image_footerMenu img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.contents_footer {
  width: 70.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.contents_footer::after {
content: "";
display: block;
width: 25.7rem;
height: 26.1rem;
background: url(../image/TOP/Stamp.png) no-repeat center / cover;
position: absolute;
right: -1rem;
top: -5rem;
transform: rotate(10deg);
opacity: 0.2;
z-index: 0.1;
animation: 25s linear infinite rotation;
}

@keyframes rotation{
0%{ transform:rotate(0);}
100%{ transform:rotate(360deg); }
}

.contents_footerMenu {
  width: 54.7rem;
  height: 29.4rem;
  position: relative;
  z-index: 100;
}

.text_from {
  color: var(--primary-gray);
  font-family: "pf-videotext";
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6rem;
  letter-spacing: -0.032rem;
}

.text_here {
  margin-top: 0.8rem;
  margin-left: 1.2rem ;
  color: var(--primary-gray);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.6rem;
  letter-spacing: -0.064rem;
}

.text_to {
  margin-top: 3.2rem;
  color: var(--primary-gray);
  font-family: "pf-videotext";
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6rem;
  letter-spacing: -0.032rem;
}

.menuBar_footer {
  margin-top: 0.6rem;
  height: 5.2rem;
  border-top: 0.3rem solid var(--primary-black);
  border-bottom: 0.3rem solid var(--primary-black);
}

.menuBar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  color: var(--primary-white);
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -0.16rem;
  text-shadow: 0.3rem 0 0 var(--primary-black);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--primary-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
}

.btn_top_footer:hover {
  color: var(--primary-gray);
}

.btn_gallery_footer:hover {
  color: var(--primary-orange);
}

.btn_goods_footer:hover {
  color: var(--primary-orange);
}

.btn_about_footer:hover {
  color: var(--primary-blue);
}

.extra_footer {
  display: grid;
  gap: 1rem;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  margin-top: 3.2rem;
  height: 11.6rem;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
}

.decoText_footerMenu {
  height: 100%;
  position: relative;
  grid-row:1/3;
  grid-column:1/2;
}

.decoText_footerMenu::after {
  content: "";
  display: block;
  width: 6.1rem;
  height: 3.5rem;
  background: url(../image/TOP/Emoji_NURUNURU.png) no-repeat center / cover;
  position: absolute;
  right: 1rem;
  top: 0.6rem;
    animation:jump 4s infinite;
  -webkit-animation:jump 4s infinite;
  -moz-animation:jump 4s infinite;
}
@keyframes jump{
  0%{transform:translate(0,0px);}
  3%{transform:translate(0,-1rem);}
  5%{transform:translate(0,0px);}
  6%{transform:translate(0,-0.5rem);}
  7%{transform:translate(0,0px);}
  100%{transform:translate(0,0px);}
}
@-webkit-keyframes jump{
  0%{-webkit-transform:translate(0,0px);}
  3%{-webkit-transform:translate(0,-1rem);}
  5%{-webkit-transform:translate(0,0px);}
  6%{-webkit-transform:translate(0,-0.5rem);}
  7%{-webkit-transform:translate(0,0px);}
  100%{-webkit-transform:translate(0,0px);}
}
@-moz-keyframes jump{
  0%{-moz-transform:translate(0,0px);}
  3%{-moz-transform:translate(0,-1rem);}
  5%{-moz-transform:translate(0,0px);}
  6%{-moz-transform:translate(0,-0.5rem);}
  7%{-moz-transform:translate(0,0px);}
  100%{-moz-transform:translate(0,0px);}
}

.decoText_a {
  color: var(--primary-gray);
  font-family: "pf-videotext";
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2rem;
  letter-spacing: -0.008rem;
}

.decoText_b {
  color: var(--primary-gray);
  font-family: "pf-videotext";
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 2rem;
  letter-spacing: -0.05rem;
}

.line_decoText {
  margin-top: 1.6rem;
  display: flex;
  width: 100%;
  height: 0.2rem;
  background-color: var(--primary-gray);
}

.decoText2 {
  margin-top: 1.4rem;
  color: var(--primary-gray);
  font-family: "pf-videotext";
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6rem;
  letter-spacing: -0.024rem;
}

.sns_footerMenu {
  display: flex;
  justify-content: flex-end;
  gap: 1.347rem;
  width: 12.7rem;
  height: 5.7rem;
}

.btn_x_footer {
  transition-duration: .4s;
}

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

.btn_instagram_footer {
  transition-duration: .4s;
}

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

.copyright {
  color: var(--primary-gray);
  font-family: "pf-videotext";
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.07rem;
}

.btn_contact_footerMenu {
  width: 21.2rem;
  background-color: var(--primary-gray); 
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;
  position: relative;
  cursor: pointer;
  overflow: hidden; 
}

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

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

.btn_contact_footerMenu * {
  position: relative;
  z-index: 1;
}

.btn_contact_footerMenu::before {
  content: "";
  display: block;
  width: 0.4rem;
  height: 100%;
  background: url(../image/GALLERY/Gizagiza_footer.png) repeat;
  background-repeat: repeat-y;
  position: absolute;
  background-size: 100%;
  left: 0px;
}

.contact_contents {
  width: 24.2rem;
  transform: rotate(-90deg);
}

.contact_footer {
  height: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary-white);
  font-size: 4rem;
  font-weight: 700;
}

.arrow_contact {
  width: 2.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact_jp {
  font-family: "zen-kaku-gothic-new";
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--primary-white);
}

.barcode_footer {
  margin-top: 0.8rem;
}

.barcode_footer_sp {
  display: none;
}

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

.logo_footer {
  height: 16.7rem;
}

.logo {
  width: 31.7rem;
}

.menu_footer {
  flex-direction: column;
  height: 48.3rem ;
  background-image: url(../image/TOP/BG_TOP.jpg);
  background-repeat: repeat;
  position: relative;
}

.decolation_footerMenu {
  display: none;
}

.image_footerMenu {
  width: 19.5rem;
  height: 19.5rem;
  border: 1px solid var(--primary-black);
  position: absolute;
  right: 2.5rem;
  top: 6rem;
}

.image_footerMenu img {
  height: 100%;
}

.contents_footer {
  width: 100%;
  height: 38.4rem;
  position: relative;
}

.contents_footer::after {
  width: 20.18rem;
  height: 20.38rem;
  position: absolute;
  right: -6rem;
  bottom: -9rem;
  top: unset;
  z-index: 0.1;
  animation: 25s linear infinite rotation;
}

@keyframes rotation{
0%{ transform:rotate(0);}
100%{ transform:rotate(360deg); }
}

.contents_footerMenu {
  width: 32.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fromHere {
  display: flex;
}

.text_from {
  font-size: 1rem;
  letter-spacing: -0.002rem;
}

.text_here {
  margin-top: 0.1rem;
  margin-left: 0.3rem ;
  font-size: 1.4rem;
  letter-spacing: -0.028rem;
}

.text_to {
  margin-top: 0;
  font-size: 1rem;
  letter-spacing: -0.002rem;
  line-height: 1;
}

.menuBar_footer {
  margin-top: 1.3rem;
  width: 10.2rem;
  height: 15.2rem;
  border-top: 2px solid var(--primary-gray);
  border-bottom: 2px solid var(--primary-gray);
}

.menuBar {
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.12rem;
  -webkit-text-stroke-width: 0.1rem;
  line-height: 1;
  padding: 1,5rem 0;
  text-shadow: 0.2rem 0 0 var(--primary-black);
}

.extra_footer{
  height: unset;
  margin-top: 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 100;
}

.decoText_footerMenu {
  height: 100%;
  position: relative;
}

.decoText_footerMenu::after {
  content: "";
  display: block;
  width: 4rem;
  height: 2.3rem;
  background: url(../image/TOP/Emoji_NURUNURU.png) no-repeat center / cover;
  position: absolute;
  right: 0.7rem;
  top: 0.2rem;
}

.decoText_a {
  font-size: 1rem;
  letter-spacing: -0.005rem;
  line-height: 1;
}

.decoText_b {
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.056rem;
}

.line_decoText {
  margin-top: 1.2rem;
  display: flex;
  width: 22.2rem;
  height: 2px;
}

.decoText2 {
  margin-top: 1.4rem;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 0.9rem;
  letter-spacing: -0.014rem;
}

.sns_footerMenu {
  justify-content: flex-start;
  gap: 0.6rem;
  width: 6.5rem;
  height: 3rem;
}

.copyright {
  font-size: 0.7rem;
  line-height: 1;
  letter-spacing: -0.014rem;
}

.btn_contact_footerMenu {
  width: 100%;
  height: 9.9rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn_contact_footerMenu::before {
    content: "";
    display: block;
    width: 100%;
    height: 0.4rem;
    background: url(../image/GALLERY/Gizagiza_footer_sp.png) repeat;
    background-repeat: repeat-x;
    position: absolute;
    top: 0px;
}

.btn_contact_footerMenu::after {
  transition: unset
}

.contact_contents {
  width: 19.7rem;
  height: 6.2rem;
  transform: rotate(0deg);
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;
}

.contact_footer {
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
}

.arrow_contact {
  width: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(-90deg);
  margin-left: 0.77rem ;
}

.contact_jp {
  font-size: 1rem;
}

.barcode_footer {
  display: none;
}

.barcode_footer_sp {
  display: block;
  margin-top: 0.8rem;
  width: 100%;
}
}
/* sp 768px */

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

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