@charset "UTF-8";
/* CSS Document */
header {
  position: sticky;
  /* headerを追従にする */
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #E03535;
  z-index: 999; }
  @media screen and (max-width: 767px) {
    header {
      background-color: inherit; } }
  header > div {
    margin-left: 3rem; }
    @media screen and (max-width: 991px) {
      header > div {
        margin-left: 2rem; } }
    @media screen and (max-width: 767px) {
      header > div {
        margin-left: 0; } }
    header > div h1 {
      margin: 0; }
  header .header-pc nav {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media screen and (max-width: 991px) {
      header .header-pc nav > div {
        width: 180px; } }
    header .header-pc nav > div h1 {
      width: 250px; }
      @media screen and (max-width: 1199px) {
        header .header-pc nav > div h1 {
          width: 200px; } }
      @media screen and (max-width: 991px) {
        header .header-pc nav > div h1 {
          width: 170px; } }
    header .header-pc nav ul {
      margin: 0;
      display: flex;
      align-items: center;
      justify-content: flex-end; }
      header .header-pc nav ul li a {
        font-family: "Josefin Sans", sans-serif;
        font-size: 28px;
        font-size: 2.8rem;
        padding: 0 2.5rem;
        display: block;
        color: white;
        text-align: left;
        line-height: 1;
        transition: 0.3s;
        display: flex;
        align-content: center;
        flex-wrap: wrap;
        height: 115px; }
        @media screen and (max-width: 1399px) {
          header .header-pc nav ul li a {
            font-size: 25px;
            font-size: 2.5rem;
            padding: 0 2rem; } }
        @media screen and (max-width: 1199px) {
          header .header-pc nav ul li a {
            font-size: 20px;
            font-size: 2rem;
            padding: 0 1.5rem; } }
        @media screen and (max-width: 991px) {
          header .header-pc nav ul li a {
            font-size: 18px;
            font-size: 1.8rem;
            padding: 0 1.3rem;
            height: 100px; } }
        header .header-pc nav ul li a span {
          display: block;
          font-family: 'Noto Sans JP', sans-serif;
          font-size: 14px;
          font-size: 1.4rem;
          margin-top: 0.5rem; }
          @media screen and (max-width: 991px) {
            header .header-pc nav ul li a span {
              font-size: 12px;
              font-size: 1.2rem; } }
        header .header-pc nav ul li a:hover {
          background: #fff;
          color: #E03535; }

.header {
  position: sticky !important;
  /* headerを追従にする */
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #E03535;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  z-index: 999; }
  .header .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 2rem; }
  .header .logo {
    display: flex; }
    .header .logo a {
      display: block; }
      .header .logo a img {
        width: 75%; }
        @media screen and (max-width: 575px) {
          .header .logo a img {
            width: 70%; } }

.drawer__button {
  position: relative;
  width: 4rem;
  height: 4rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 999; }
  .drawer__button > span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4rem;
    height: 2px;
    background-color: white;
    transform: translateX(-50%); }
  .drawer__button > span:first-child {
    transform: translate(-50%, calc(-50% - 1rem));
    transition: transform 0.3s ease; }
  .drawer__button > span:nth-child(2) {
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease; }
  .drawer__button > span:last-child {
    transform: translate(-50%, calc(-50% + 1rem));
    transition: transform 0.3s ease; }

.drawer__button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg); }
.drawer__button.active > span:nth-child(2) {
  opacity: 0; }
.drawer__button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg); }

.drawer__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden; }
  .drawer__nav .drawer__nav__inner {
    position: relative;
    width: 60%;
    height: 100%;
    background-color: #E03535;
    padding: 0;
    margin: 0 0 0 auto;
    overflow: scroll;
    transform: translateX(100%);
    transition: transform 0.3s ease; }
    .drawer__nav .drawer__nav__inner .drawer__nav__menu {
      list-style: none;
      padding-left: 0;
      padding-top: 7.5rem; }
      .drawer__nav .drawer__nav__inner .drawer__nav__menu .drawer__nav__link {
        font-family: "Josefin Sans", sans-serif;
        font-size: 20px;
        font-size: 2rem;
        display: block;
        color: white;
        text-decoration: none;
        padding: 2rem;
        border-bottom: solid 1px lightgray;
        transition: 0.3s;
        line-height: 1; }
        .drawer__nav .drawer__nav__inner .drawer__nav__menu .drawer__nav__link span {
          display: block;
          font-family: 'Noto Sans JP', sans-serif;
          font-size: 14px;
          font-size: 1.4rem;
          margin-top: 1rem; }
          @media screen and (max-width: 575px) {
            .drawer__nav .drawer__nav__inner .drawer__nav__menu .drawer__nav__link span {
              margin-top: 0.5rem; } }
        .drawer__nav .drawer__nav__inner .drawer__nav__menu .drawer__nav__link:hover {
          background-color: #fff;
          color: #E03535; }
      .drawer__nav .drawer__nav__inner .drawer__nav__menu li:last-child {
        border-bottom: none; }

.drawer__nav.active {
  opacity: 1;
  visibility: visible; }
  .drawer__nav.active .drawer__nav__inner {
    transform: translateX(0); }

footer {
  background: #E03535;
  color: #fff;
  padding: 5rem; }
  @media screen and (max-width: 991px) {
    footer {
      padding: 5rem 3rem; } }
  @media screen and (max-width: 767px) {
    footer {
      padding: 5rem 2rem 1rem; } }
  @media screen and (max-width: 767px) {
    footer {
      padding: 5rem 1rem 1rem; } }
  footer .row > div:first-child {
    position: relative; }
  footer .logo {
    margin-bottom: 2rem; }
    @media screen and (max-width: 767px) {
      footer .logo {
        text-align: center; } }
    @media screen and (max-width: 991px) {
      footer .logo img {
        width: 80%; } }
    @media screen and (max-width: 767px) {
      footer .logo img {
        width: auto; } }
    @media screen and (max-width: 575px) {
      footer .logo img {
        width: 70%; } }
  footer .shopinfo {
    line-height: 1.8; }
    @media screen and (max-width: 767px) {
      footer .shopinfo {
        text-align: center; } }
  @media screen and (max-width: 767px) {
    footer .insta-logo {
      text-align: center;
      margin-bottom: 2rem; } }
  footer iframe {
    width: 100%;
    height: 390px; }
    @media screen and (max-width: 1199px) {
      footer iframe {
        height: 350px; } }
    @media screen and (max-width: 991px) {
      footer iframe {
        height: 300px; } }
    @media screen and (max-width: 575px) {
      footer iframe {
        height: 250px; } }
  footer .copyright {
    position: absolute;
    bottom: 0px; }
    @media screen and (max-width: 767px) {
      footer .copyright {
        position: inherit;
        text-align: center; } }
