@charset "UTF-8";

/* ====================
common
===================== */
html {
    font-size: 62.5%;
}
body {
    color: #222;
    font-family: "Noto Sans JP", Arial, sans-serif;
    font-style: normal;
    background-color: #FFF;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.8px;
}
img {
    max-width: 100%;
    height: auto;
}
li {
    list-style: none;
}
.section__topic {
    font-family: "Onest", Arial, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.3; /* 36.4px */
    letter-spacing: 5.6px;
    text-align: center;
}
.section__topic--favorite {
    color: #FFF;
    background-color: #222;
    padding: 10px 10px 10px 15.6px;
}
.section__txt {
    font-size: 2.0rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-align: center;
    margin-top: 20px;
}
/* fadeIn */
.fadeIn {
    transform: translate(0, 50px);
    opacity: 0;
}
.fadeIn.animated {
    transform: translate(0, 0);
    opacity: 1;
}
.fadeIn, 
.fadeIn.animated {
    transition: all 0.8s ease;
}
/* loading */
#loading {
    background-image: url(../Images/Menu_SP.png);
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    transition: all 2s;
}
.loading {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.loading__txt {
    font-size: 20px;
    text-align: center;
    letter-spacing: 6px;
    padding-left: 10px;
    top: 50%;
}
.loading__bar {
    width: 250px;
    height: 22px;
    border-radius: 20px;
    color: #222;
    margin: 10px auto;
    border: 2px solid;
    position: relative;
    background-color: #F9F9F9;
  }
  .loading__bar::before {
    content: "";
    position: absolute;
    margin: 2px;
    inset: 0 100% 0 0;
    border-radius: inherit;
    background: #222;
    animation: l6 3s forwards;
  }
  @keyframes l6 {
      100% {inset:0}
  }
  .loaded {
    opacity: 0;
    pointer-events: none;
  }
/* common pc */
@media screen and (min-width: 769px) {
    body {
        font-size: 1.8rem;
        letter-spacing: 0.9px;
    }
    .section__txt {
        margin-top: 30px;
    }
    .spBR {
        display: none;
    }
    #loading {
        background-image: url(../Images/loadingImage_PC.svg);
        background-color: #EBEBEB;
    }
    .loading__txt {
        font-size: 30px;
        text-align: center;
        letter-spacing: 6px;
        padding-left: 10px;
        top: 50%;
    }
    .loading__bar {
        width: 300px;
        height: 22px;
        margin: 10px auto;
      }
}
/* header */
.header {
    padding: 30px 8.0% 20px;
    background-color: #EBEBEB;
}
.header__topic {
    font-family: "Onest", Arial, sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 2.4px;
}
/* nav初期表示 */
.nav {
    background-image: url(../Images/Menu_SP.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
    position:fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 100px 16%; 
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(-100%);
    transition: transform 0.4s;
}
.nav.active {
    transform: translateX(0);
}
.nav__list {
    margin: 0 auto;
}
.nav__btn {
    width: 25px;
    height: 25px;
    display:block;
    position: absolute;
    top: 40px;
    right: 34px;
}
.nav__item {
    font-family: "Onest", Arial, sans-serif;
    font-size: 2.0rem;
    letter-spacing: 2px;
    text-align: center;
    margin-top: 50px;
}
.nav__item {
    padding: 5px 10px;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(1.5px);
}
.nav__item a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav__item p {
    margin-right: 15px;
}
.nav__item:first-of-type {
    margin-top: 0;
}
.nav__footer {
    font-family: Onest;
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 2.4px;
    text-align: center;
}
.header__btn {
    width: 25px;
    height: 19px;
    display: block;
    position: absolute;
    top: 30px;
    right: 30px;
}
.home__btn svg{
    display: block;
    width: 55px;
    height: 55px;
    position: fixed;
    bottom: 25px;
    right: 15px;
    z-index: 500;
    color: #222;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
.home__btn.active svg {
    opacity: 1;
    pointer-events: auto;
  }

/* header pc */
@media screen and (min-width: 769px) {
    .header {
        padding: 30px 9.7% 20px 9.7%;
    }
    .header__nav {
        display: flex;
        margin: 0 auto;
        align-items: center;
        max-width: 1160px;
    }
    .nav {
        width: auto;
        height: auto;
        position: static;
        padding: 0;
        transform: translate(0);
        background: transparent;
        margin-left: auto;
    }
    .nav__btn {
        display: none;
    }
    .nav__list {
        display: flex;
        gap: 10px;
    }
    .nav__item:first-of-type {
        display: none;
    }
    .nav__footer {
        display: none;
    }
    .header__btn {
        display: none;
    }
    .nav__item {
        font-size: 1.8rem;
        line-height: 1.3;
        letter-spacing: 1.8px;
        margin-top: 0;
        text-align: left;
        background-color: transparent;
        backdrop-filter: none;
    }
    .nav__item:hover a {
        color: #C3C3C3;
    }
    .home__btn svg{
        right: 3%;
        bottom: 50px;
    }
    .home__btn svg:hover {
        color: #C3C3C3
    }
}
@media screen and  (min-width: 1001px){
    .header__topic {
        font-size: 3.2rem;
        letter-spacing: 3.2px;
    }
}

/* =========== main ========== */
.mainImg__pc {
    display: none;
}
.mainImg__sp {
    width: 100%;
}
.mainTopics {
    padding: 40px 5.3% 30px;
    text-align: center;
}
.mainTopics__name {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.8px;
}
.mainTopics__txt {
    text-align: center;
    margin-top: 20px;
}
/* main pc */
@media screen and (min-width: 769px) {
    .mainImg__pc {
        display: block;
        width: 100%;
    }
    .mainImg__sp {
        display: none;
    }
    .mainTopics {
        padding: 60px 6%;
    }
    .mainTopics__name {
        font-size: 2.8rem;
        letter-spacing: 2.8px;
    }
    .mainTopics__txt {
        margin-top: 30px;
    }
}
/* favorite_things */
.section--things {
    padding: 40px 0;
    background-color: #F9F9F9;
}
.things {
    padding: 0 6%;
}
.things__item {
    margin-top: 20px;
}
.things__img img{
    width: 100%;
    aspect-ratio: 345/160;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    border-top: #222 2px solid;
    border-left: #222 2px solid;
    border-right: #222 2px solid;
}
.things__content {
    border-radius: 0 0 20px 20px;
    background-color: #FFF;
    padding: 20px 20px;
    border: #222 2px solid;
}
.things__content--comic {
    padding: 30px 20px;
}
.things__title {
    display: flex;
    align-items: center;
    justify-content: center;
}
.things__title img {
    display:block;
    width: 24px;
    height: 22px;
}
.things__title--comic img {
    width: 30px;
    height: 30px;
}
.things__title--camp img {
    height: 24px;
    transform: translateY(-3px);
}
.things__name {
    font-family: Onest;
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 2.4px;
    margin-left: 10px;
    line-height: 1;
}
.things__title--comic h4 {
    font-size: 3.0rem;
    font-weight: 900;
    letter-spacing: 3px;
}
.things__txt {
    margin-top: 20px;
}
.things__detail {
    padding: 5px 2.6%;
    margin-top: 20px;
    background-color: #EBEBEB;
    border-radius: 10px;
    text-align: center;
}
/* favorite_things pc */
@media screen and (min-width: 1001px) {
    .section--things {
        padding: 60px 0;
    }
    .things {
        margin: 30px auto 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 9.7%;
    }
    .things__item {
        margin-top: 30px;
        max-width: 1160px;
        display: flex;
    }
    .things__item:first-of-type {
        margin-top: 0;
    }
    .things__img{
        width: 40%;
    }
    .things__img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px 0 0 20px;
        border-top: #222 2px solid;
        border-left: #222 2px solid;
        border-bottom: #222 2px solid;
    }
    .things__content {
        width: 60%;
        border-radius: 0 20px 20px 0;
        padding: 30px 30px;
        border: #222 2px solid;
    }
    .things__title {
        justify-content: flex-start;
    }
}
/* favorite_foods */
.section--foods {
    padding: 40px 0;
    background-color: #FFF;
}
.foods {
    padding: 0 6%;
}
.foods__item {
    margin-top: 20px;
}
.foods__img img{
    width: 100%;
    aspect-ratio: 345/240;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    border-top: #222 2px solid;
    border-left: #222 2px solid;
    border-right: #222 2px solid;
}
.foods__content {
    border-radius: 0 0 20px 20px;
    padding: 20px 20px 24px;
    border: #222 2px solid;
}
.foods__content img {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
}
.foods__name {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 2.4px;
    padding-left: 2.4px;
}
.foods__txt {
    margin-top: 15px;
}
.foods__howto {
    padding: 5px 2.6%;
    background-color: #EBEBEB;
    border-radius: 10px;
    margin-top: 15px;
    text-align: center;
}
.foods__drink {
    padding: 5px 2.6%;
    background-color: #C9C9C9;
    border-radius: 10px;
    margin-top: 15px;
    text-align: center;
}
/* Favorite_foods pc */
@media screen and (min-width: 769px) {
    .section--foods {
        padding: 60px 0;
    }
    .foods {
        display: flex;
        gap: 30px;
        margin-top: 30px;
        margin: 0 auto;
        padding: 0 9.7%;
        justify-content: center;
        height: max-content;
    }
    .foods__content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex-grow: 1;
    }
    .foods__item {
        margin-top: 30px;
        width: 33.3%;
        max-width: 367px;
        display:flex;
        flex-direction: column;
    }
}
/* My_Creations */
.section--creations {
    padding: 40px 6%;
    background-color: #EBEBEB;
}
.creations__item {
    margin-top: 20px;
    padding: 24px 0;
    background-color: #FFF;
    border-radius: 20px;
    border: #222 2px solid;
    text-align: center;
}
.creations__category {
    color: #FFF;
    font-family: Onest;
    font-size: 2.0rem;
    letter-spacing: 2px;
    background-color: #343434;
    border-radius: 10px;
    line-height: normal;
    font-weight: 500;
    padding: 5px 15px 5px 17px ;
    display: inline-block;
}
.creations__fukidashi{
    margin-top: 15px;
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
}
.creations__mockup {
    aspect-ratio: 345/210;
    object-fit: cover;
}
.creations__name {
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.2px;
}
.creations__txt {
    margin-top: 10px;
    text-align: left;
}
.creations__btn {
    display: block;
    background-color: #C9C9C9;
    padding: 5px 10px;
    border-radius: 10px;
    margin-top: 10px;
}
.creations__detail {
    padding: 0 5.8%;
}
/* My_Creations pc */
@media screen and (min-width: 769px) {
    .section--creations {
        padding: 60px 9.7%;
    }
    .creations {
        display: flex;
        gap: 30px;
        margin-top: 30px;
        max-width: 1160px;
        margin: 0 auto;
        padding: 0;
        justify-content: center;
        align-items: stretch;
    }
    .creations__category {
        width: fit-content;
        margin: 0 auto;
    }
    .creations__item {
        margin-top: 30px;
        max-width: 367px;
        width: 33.3%;
        display:flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .creations__detail {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
    .creations__btn:hover {
        background-color: #A3A3A3;
    }
}
/* HOMETOWN */
.section--hometown {
    padding: 40px 6%;
}
.address img {
    display: block;
    width: 18px;
    height: 25px;
    margin-right: 10px;
}
.address {
    margin-top: 20px;
    justify-content: center;
    display: flex;
    align-items: center;
}
.map {
    width: 100%;
    aspect-ratio: 345/400;
    margin: 20px auto 0;
}
/* HOMETOWN pc */
@media screen and (min-width: 769px) {
    .section--hometown {
        padding: 60px 9.7%;
        text-align: center;
    }
    .address {
        margin-top: 30px;
    }
    .map {
        max-width: 1160px;
        margin: 30px auto 0;
        aspect-ratio: 1160/400;
    }
}
/* footer */
.footer {
    padding: 60px 30px;
    background-color: #EBEBEB;
}
.footer__topic {
    font-family: Onest;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.8;
    letter-spacing: 2.4px;
}
.menu {
    margin-top: 30px;
}
.menu__item {
    font-family: Onest;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 1.8px;
    margin-top: 10px;
    padding: 5px 10px 5px 0;
}
.sns {
    margin-top: 30px;
    display:flex;
    gap: 32px;
    justify-content: flex-end;
}
.sns__item a svg{
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    color:#222
}
.copy {
    margin-top: 20px;
    text-align: right;
    line-height: 1;
}
/* footer pc */
@media screen and (min-width: 769px) {
    .footer {
        padding: 40px 14%;
    }
    .footer__group {
        max-width: 1120px;
        display: flex;
        gap : 100px;
        margin: 0 auto;
    }
    .footer__topic {
        font-size: 3.2rem;
        letter-spacing: 3.2px;
        line-height: 1.1;
    }
    .menu {
        margin-top: 0;
    }
    .menu__item {
        line-height: 1.3;
    }
    .menu__item:first-of-type {
        margin-top: 0;
    }
    .menu__item:hover a {
        color: #C3C3C3;
    }
    .sns__item a:hover svg{
        color: #C3C3C3         
    }
    .footer__end {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        margin-left: auto;
    }
}