@charset "UTF-8";
/*==========================================================
SP
==========================================================*/
:root {
  --txt: #24415F;
  --title: #FF7B7B;
  --border: 1px solid #24415F;
  --white: #F5F5F5;
  --bg: #24415F;
  --gray: #5A5858;
  --lightgray: #D9D9D9;
  --h1: clamp(28px, 5vw, 48px);
  --h2: clamp(24px, 4vw, 36px);
  --h3: clamp(16px, 2.5vw, 18px);
  --desc: clamp(14px, 2vw, 18px);
  --caption: clamp(12px, 1.5vw, 14px);
  --swiper-wrapper-transition-timing-function: linear !important;
}

body {
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.swiper {
  overflow: visible;
}

.swiper-container {
  height: -moz-max-content;
  height: max-content;
}

.header_nav {
  padding: 16px;
  top: 0;
  position: relative;
  background-color: #fff;
  z-index: 100000;
  width: 100vw;
}
.header_nav_bar {
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  display: grid;
  width: 100%;
  background-color: rgb(255, 255, 255);
  position: relative;
}
.header_nav_bar .menu-wrapper {
  position: relative;
  justify-self: start;
  z-index: 999;
}
.header_nav_bar .menu-wrapper .menu {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 8px;
  border-radius: 25px;
  cursor: pointer;
  animation: fade-in 0.3s ease-in-out;
  width: auto;
  transition: top 0.25s ease;
}
.header_nav_bar .menu-wrapper .menu img {
  height: 32px;
  width: 100%;
  max-width: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 744px) {
  .header_nav_bar .menu-wrapper .menu img {
    max-width: 56px;
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.header_nav_bar .logo img {
  height: 56px;
}
@media screen and (min-width: 744px) {
  .header_nav_bar .logo img {
    max-width: 280px;
    width: 100%;
    height: auto;
  }
}
.header_nav_pc {
  display: none;
}
.header_nav_sp {
  padding: 0;
  background-color: white;
  position: fixed;
  width: 100%;
  top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  left: 0;
}
.header_nav_sp.close {
  animation: fade-in 0.3s ease-in-out;
}
.header_nav_sp.open {
  visibility: visible;
  display: block;
  opacity: 1;
  pointer-events: all;
  overflow-y: auto;
  animation: fade-in 0.3s ease-in-out;
}
.header_nav_sp ul {
  padding: 64px 16px 0 16px;
}
.header_nav_sp ul h3 {
  font-size: var(--h3);
  color: var(--title);
  letter-spacing: 1.2px;
  display: block;
  margin: 0;
}
.header_nav_sp ul .main {
  margin-top: 16px;
}
.header_nav_sp ul .main .category ul {
  padding: 0;
}
.header_nav_sp ul .main .category ul li {
  list-style: none;
}
.header_nav_sp ul .main .category ul li a {
  text-decoration: none;
  color: var(--txt);
  font-weight: 600;
  line-height: 1.6rem;
  font-size: var(--desc);
}
.header_nav_sp ul .main .category ul li a:hover {
  color: var(--title);
}
.header_nav_sp ul .main .tags {
  margin-top: 16px;
}
.header_nav_sp ul .main .tags ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.header_nav_sp ul .main .tags ul li {
  margin-right: 8px;
  margin-bottom: 16px;
}
.header_nav_sp ul .main .tags ul li a {
  padding: 8px;
  line-height: 1.6rem;
  border: 1px solid var(--txt);
  border-radius: 0.5rem;
  text-decoration: none;
  color: var(--txt);
  font-weight: 500;
  font-size: var(--caption);
  transition: color 0.3s ease;
}
.header_nav_sp ul .category ul {
  padding: 0;
}
.header_nav_sp ul .category ul li {
  list-style: none;
}
.header_nav_sp ul .category ul li a {
  text-decoration: none;
  line-height: 1.6rem;
  color: var(--txt);
  font-weight: 600;
  font-size: var(--desc);
}
.header_nav_sp ul .category ul li a:hover {
  color: var(--title);
}
.header_nav_sp ul .follow a {
  background-color: var(--txt);
  color: var(--white);
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
}
.header_nav_sp ul .follow a:hover {
  opacity: 0.8;
}

.fade-in {
  animation: fade-in 0.3s ease-in-out;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*==========================================================
タブレット
==========================================================*/
@media screen and (min-width: 744px) {
  .header_nav_bar .menu-wrapper .menu {
    background: none;
  }
}
/*==========================================================
pc
==========================================================*/
@media screen and (min-width: 1025px) {
  .header_nav {
    padding: 40px 24px;
  }
  .header_nav_sp {
    display: none;
    padding: 100px 0;
    top: 0;
  }
  .header_nav_sp.open {
    overflow: scroll;
  }
  .header_nav_sp.open ul {
    display: block;
  }
  .header_nav_sp ul {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }
  .header_nav_sp ul h3 {
    margin-bottom: 8px;
  }
  .header_nav_sp ul .main {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .header_nav_sp ul .main .category {
    margin-bottom: 24px;
  }
  .header_nav_sp ul .main .category ul {
    display: grid;
    gap: 8px;
  }
  .header_nav_sp ul .main .tags {
    cursor: pointer;
    margin-top: 0;
  }
  .header_nav_sp ul .main .tags li {
    text-align: center;
    line-height: 35px;
    margin-bottom: 16px;
  }
  .header_nav_sp ul .main .tags li a {
    font-size: var(--desc);
    border-radius: 0.5rem;
  }
  .header_nav_sp ul .main .tags li a:hover {
    background: var(--txt);
    color: var(--white);
    overflow: hidden;
  }
  .header_nav_sp ul .category {
    margin-bottom: 24px;
  }
  .header_nav_sp ul .category ul {
    display: grid;
    gap: 8px;
  }
  .header_nav_sp ul .follow {
    margin-top: 24px;
  }
  .header_nav_pc {
    display: block;
    margin-bottom: 50px;
  }
  .header_nav_pc ul {
    display: flex;
    justify-content: center;
    gap: 40px;
  }
  .header_nav_pc ul li {
    list-style: none;
  }
  .header_nav_pc ul li a {
    text-decoration: none;
    color: var(--txt);
    font-weight: bold;
    font-size: 16px;
  }
  .header_nav_pc ul li a:hover {
    color: var(--title);
  }
}/*# sourceMappingURL=header.css.map */