@charset "utf-8";

/*
 * 初期化
 */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; font-weight: normal; box-sizing:border-box} body { line-height: 1; } article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }

ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: none; }
a { margin: 0; padding: 0; font-size: 100%; vertical-align: baseline; background: transparent; text-decoration: none; word-break:break-all}
del { text-decoration: line-through; }
abbr[title], dfn[title] { border-bottom: 1px dotted; cursor: help; }
table { border-collapse: collapse; border-spacing: 0; }
hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
input, select { vertical-align: middle; }
a { text-decoration: none; color: #000} img {width: 100%;}


/*
 * 共通
 */
html {
    --main-color: #000000;
    --main-bg-color: #fef2be;
    --main-dark-color: #12840A;
    --accent-color: #EE880E;
    --serif: "Noto Serif Jp", Meiryo, serif;
    scroll-behavior: smooth;
}

a:hover {
    color: #F64D4D;
    transition: all ease .5s;
}

body {
    width: 100%;
    margin: 0 auto;
    font-family: var(--serif);
    color: var(--main-color);
}

/*
 * fade-in
 */
.fade-in {
    transition: transform .8s ease, opacity .8s ease;
    transform: translateY(21px);
    opacity: 0;
}

.fade-in.show {
    opacity: 1;
    transform: none;
}

/*
 * PC背景
 */

.bg-wrap-pc {
    background: url("../img/bg_pc.jpg");
    position: fixed;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    display: flex;
    z-index: 0;
}
@media only screen and (max-width: 769px) {
    .bg-wrap-pc {
        display: none;
    }
}

.bg-wrap-pc .dummy-left, .bg-wrap-pc .dummy-right {
        flex-basis: 50%;
}

.bg-wrap-pc .dummy-content {
    flex-basis: 375px;
    flex-shrink: 0;
    background: #fffbe7;/*#FFFEF5;*/
    border-left: solid 5px var(--accent-color);
    border-right: solid 5px var(--accent-color);
    box-sizing: content-box;
    background: var(--accent-color);
}

.bg-wrap-pc .logo-pc {
    width: 192px;
    margin: 0 auto;
    margin-top: 100px;
    display: block;
    opacity: 0;
}

.show .bg-wrap-pc .logo-pc {
    opacity: 1;
    transition: ease all .5s;
    transition-delay: .6s;
}

.bg-wrap-pc .nav {
    width: 192px;
    margin: 0 auto;
    margin-top: 30px;
}


.bg-wrap-pc .nav li {
    text-align: center;
    opacity: 0;
    font-family: "Irish Grover", system-ui;
    letter-spacing: .1em;
}

.show .bg-wrap-pc .nav li {
    opacity: 1;
    transition: ease all .5s;
    transition-delay: 1s;
}

.show .bg-wrap-pc .nav li:nth-child(2) {
    transition-delay: 1.2s;
}
.show .bg-wrap-pc .nav li:nth-child(3) {
    transition-delay: 1.4s;
}
.show .bg-wrap-pc .nav li:nth-child(4) {
    transition-delay: 1.6s;
}

.bg-wrap-pc .nav li a {
    color: #fff;
    font-size: 20px;
    display: inline-block;
    border-radius: 1000px;
    padding: 6px 20px 10px;
    margin: 3px;
    transition: all ease .5s;
}
.bg-wrap-pc .nav li.active a {
    background: #F64D4D;
}

.content-wrap {
    max-width: 375px;
    /*max-width: 480px;*/
    display: block;
    flex-basis: 375px;
    height: 100vh;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    opacity: 0;
}
@media only screen and (max-width: 769px) {
    .content-wrap {
        max-width: 100%;
    }
}

.show .content-wrap {
   opacity: 1;
   transition: opacity ease .8s;
   transition-delay: 2s;
}
@media only screen and (max-width: 769px) {
    .show .content-wrap {
        transition-delay: 0s;
    }
}

.sec {
    padding: 20px;
}
@media only screen and (max-width: 769px) {
    .sec {
        padding: calc(20 / 375 * 100vw);
    }
}

.sec-title {
    margin-bottom: 10px;
}
@media only screen and (max-width: 769px) {
    .sec-title {
        margin-bottom: calc(10 / 375 * 100vw);
    }
}

.sec-title h2 {
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.06em;
    font-weight: bold;
}
@media only screen and (max-width: 769px) {
    .sec-title h2 {
        font-size: calc(11 / 375 * 100vw);
    }
}

/*
 * sec-main
 */

.sec-main {
    position: relative;
    background: var(--main-bg-color);
    overflow: hidden;
    background-image: url("../img/main-bg.svg");
    background-size: 250%;
    background-repeat:no-repeat;
    background-position: left -215px top 80px;
}
@media only screen and (max-width: 769px) {
    .sec-main {
        background-position: left calc(-215 / 375 * 100vw) top calc(80 / 375 * 100vw);
    }
}

.img-wrap-title {
    z-index: 1;
    position: relative;
    transition: transform .8s ease, opacity .8s ease;
    transform: translateY(20px);
    opacity: 0;
}

.show .img-wrap-title {
    opacity: 1;
    transform: none;
    transition-delay: 2.5s;
}
@media only screen and (max-width: 769px) {
    .show .img-wrap-title {
        transition-delay: .5s;
    }
}

.sec-main .hero {
    margin-top: 20px;
    margin-right: -20px;
    z-index: 1;
    position: relative;
    overflow: hidden;
    transform: translate(100%, 0);
    transition: transform ease .8s, opacity ease .8s;
    transition-delay: 3s;
    opacity: 0;
}
@media only screen and (max-width: 769px) {
    .sec-main .hero {
        transition-delay: 1.5s;
        margin-top: calc(20 / 375 * 100vw);
        margin-right: calc(-20 / 375 * 100vw);
    }
}

.show .sec-main .hero {
    opacity: 1;
    transform: translate(0%, 0);
}

.sec-main .hero span {
    display: block;
    transform: translate(-100%, 0);
    opacity: 0;
}

.show .sec-main .hero span {
    opacity: 1;
    transform: translate(0%, 0);
    transition: all ease 1s;
    transition-delay: 2.5s;
}
@media only screen and (max-width: 769px) {
    .show .sec-main .hero span {
        transition-delay: 1s;
    }
}

.sec-main .hero .curry {
    width: 350px;
    display: block;
    margin-left: auto;
}
@media only screen and (max-width: 769px) {
    .sec-main .hero .curry {
        width: calc(350 / 375 * 100vw);
    }
}

.sec-main p {
    margin-top: 10px;
    font-size: 22px;
    line-height: 1.65;
    font-weight: bold;
    letter-spacing: 0.06em;
    z-index: 1;
    position: relative;
    transition: transform .8s ease, opacity .8s ease;
    transform: translateY(20px);
    opacity: 0;
}
@media only screen and (max-width: 769px) {
    .sec-main p {
        margin-top: calc(10 / 375 * 100vw);
        font-size: calc(22 / 375 * 100vw);
    }
}

.show .sec-main p {
    opacity: 1;
    transform: none;
    transition-delay: 3.5s;
}
@media only screen and (max-width: 769px) {
    .show .sec-main p {
        transition-delay: 1.5s;
    }
}

.sec-main .nav ul {
    text-align: center;
    justify-content: space-around;
    margin: 20px 0;
    font-family: "Irish Grover", system-ui;
    letter-spacing: .1em;
    transition: transform .8s ease, opacity .8s ease;
    transform: translateY(20px);
    opacity: 0;
}
@media only screen and (max-width: 769px) {
    .sec-main .nav ul {
        margin: calc(25 / 375 * 100vw) 0;
    }
}

.show .sec-main .nav ul {
    opacity: 1;
    transform: none;
    transition-delay: 4s;
}
@media only screen and (max-width: 769px) {
    .show .sec-main .nav ul {
        transition-delay: 2s;
    }
}

.sec-main .nav ul li {
    font-size: 17px;
    display: inline-block;
    justify-content: space-around;
}
@media only screen and (max-width: 769px) {
    .sec-main .nav ul li {
        font-size: calc(17 / 375 * 100vw);
    }
}

.sec-main .nav ul li a {
    padding: 10px 5px 0;
}
@media only screen and (max-width: 769px) {
    .sec-main .nav ul li a {
        padding: calc(10 / 375 * 100vw) calc(5 / 375 * 100vw) 0;
    }
}

/* snow */
.snow {
  /*雪の色*/
  color: #fff;
  /*雪の大きさ*/
  font-size: 10px;
  /*初期位置*/
  position: absolute;
  top: 100%;
  /*雪を適当な幅で降らせる*/
  text-shadow:
  5vw   -100px 6px,
  10vw  -50px 0,
  20vw  -300px 0,
  30vw  -80px 3px,
  39vw  -250px 0,
  42vw  -30px 4px,
  56vw  -10px 10px,
  63vw  -180px 0,
  78vw  0px 0,
  86vw  -280px 2px,
  94vw  -170px 0;
  /*雪アニメーション1*/
  animation: roll 15s linear infinite;
  z-index: 0;
}
  /*2つめの雪アニメーション*/
.snow2nd{
    top: 40%;
    font-size: 13px;
    animation: roll 17s linear infinite;
}

.snow3nd{
    top: 60%;
    font-size: 6px;
    animation: roll 10s linear infinite;
}

.snow4nd{
    top: 30%;
    font-size: 5px;
    animation: roll 9s linear infinite;
}

.snow5nd{
    top: 80%;
    font-size: 5px;
    animation: roll 13s linear infinite;
}

@keyframes roll {
    0% {
        transform:rotate(0deg);
    }
   90% {
    opacity:1;
    }
   100% {
    transform:rotate(50deg);
    top:0%;
    }
}


/*
 * お知らせ
 */

.sec-latest {
    padding-top: 60px;
    background: #FFFBE7;
    margin-top: -30px;
}
@media only screen and (max-width: 769px) {
    .sec-latest {
        padding-top: calc(60 / 375 * 100vw);
        margin-top: calc(-30 / 375 * 100vw);
    }
}

.content {
    background: #fff;
    border: solid 2px var(--accent-color);
    border: solid 2px #F64D4D;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
}
@media only screen and (max-width: 769px) {
    .content {
        padding: calc(20 / 375 * 100vw);
    }
}

.content h3 {
    line-height: 1.5;
    font-size: 20px;
    padding-bottom: 7px;
    margin-bottom: 20px;
    /*border-bottom: solid 2px #F64D4D;*/
    display: flex;
    vertical-align: bottom;
    align-items: center;
    font-weight: bold;
}
@media only screen and (max-width: 769px) {
    .content h3  {
        font-size: calc(20 / 375 * 100vw);
        padding-bottom: calc(7 / 375 * 100vw);
        margin-bottom: calc(20 / 375 * 100vw);
    }
}

.content h3::before,.content h3::after {
    content: "";
    width: 10px;
    height: 10px;
    display: block;
    display: none;
    background: #F64D4D;
    border-radius: 1000px;
    margin-top: auto;
    margin-bottom: -13px;
    flex-shrink: 0;
}

.content h3::after {
    margin-left: auto;
}

.content iframe {
    border: solid 2px #ccc;
    width: 100%;
    height: 200px;
    display: block;
}
@media only screen and (max-width: 769px) {
    .content iframe  {
        height: calc(200 / 375 * 100vw);
    }
}

.content a {
    display: block;
    color: #F99F03;
    text-align: center;
    padding: 10px;
}
@media only screen and (max-width: 769px) {
    .content a  {
        padding: calc(10 / 375 * 100vw);
    }
}

.content a:hover {
    color: #F64D4D;
    transition: all ease .5s;
}

p, .past {
    line-height: 2;
    font-size: 16px;
    margin-bottom: 20px;
    font-family: var(--text-font);
}
@media only screen and (max-width: 769px) {
    p, .past  {
        font-size: calc(16 / 375 * 100vw);
        margin-bottom: calc(20 / 375 * 100vw);
    }
}

p:last-child {
    margin-bottom: 0px;
}

.past {
    margin-top: 40px;
}
@media only screen and (max-width: 769px) {
    .past  {
        margin-top: calc(40 / 375 * 100vw);
    }
}

.past h3 {
    background: var(--accent-color);
    color: #fff;
    font-weight: bold;
    border-radius: 1000px;
    text-align: center;
    padding: 5px;
}
@media only screen and (max-width: 769px) {
    .past h3  {
        padding: calc(5 / 375 * 100vw);
    }
}

.past ul {
    margin-top: 10px;
    margin-bottom: 20px;
    margin-left: 1em;
}
@media only screen and (max-width: 769px) {
    .past ul  {
        margin-top: calc(10 / 375 * 100vw);
        margin-bottom: calc(20 / 375 * 100vw);
    }
}

.border-decoration-latest {
    font-size: 0;
    margin-top: -1px;
    margin-bottom: -10px;
}

@media only screen and (max-width: 769px) {
    .border-decoration-latest  {
        margin-top: calc(-1 / 375 * 100vw);
        margin-bottom: calc(-10 / 375 * 100vw);
    }
}


/*
 * コンセプト
 */

.sec-concept {
    background: #fff;
    padding-top: 80px;
    overflow: hidden;
    margin-top: -20px;
    margin-bottom: -30px;
}
@media only screen and (max-width: 769px) {
    .sec-concept  {
        padding-top: calc(50 / 375 * 100vw);
        margin-top: calc(-20 / 375 * 100vw);
        margin-bottom: calc(-30 / 375 * 100vw);
    }
}

.sec-concept .sec-title h2 {
    margin-bottom: -20px;
}
@media only screen and (max-width: 769px) {
    .sec-concept .sec-title h2  {
        margin-bottom: calc(-20 / 375 * 100vw);
    }
}

.sec-concept .concept {
    margin-top: 20px;
    font-size: 21px;
    line-height: 1.5;
}
@media only screen and (max-width: 769px) {
    .sec-concept .concept  {
        margin-top: calc(20 / 375 * 100vw);
        font-size: calc(21 / 375 * 100vw);
    }
}

.sec-concept .hukusai {
    width: 180px;
}
@media only screen and (max-width: 769px) {
    .sec-concept .hukusai  {
        width: calc(180 / 375 * 100vw);
    }
}


.sec-concept .hukusai-list {
    color: var(--accent-color);
    margin-top: 50px;
    font-family: sans-serif;
    text-align: center;
    position: relative;
}
@media only screen and (max-width: 769px) {
    .sec-concept .hukusai-list  {
        margin-top: calc(50 / 375 * 100vw);
    }
}

.sec-concept .hukusai-list li {
    display: block;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: .06em;
}
@media only screen and (max-width: 769px) {
    .sec-concept .hukusai-list li {
        font-size: calc(14 / 375 * 100vw);
    }
}

.sec-concept .hukusai-list img {
    display: block;
    margin-top: 5px;
}
@media only screen and (max-width: 769px) {
    .sec-concept .hukusai-list img {
        margin-top: calc(5 / 375 * 100vw);
    }
}

.sec-concept .hukusai-1 {
    margin-top: -20px;
    margin-left: auto;
    margin-right: -25px;
}
@media only screen and (max-width: 769px) {
    .sec-concept .hukusai-1 {
        margin-top: calc(-20 / 375 * 100vw);
        margin-right: calc(-25 / 375 * 100vw);
    }
}

.sec-concept .hukusai-2 {
    margin-top: -100px;
    margin-left: -25px;
}
@media only screen and (max-width: 769px) {
    .sec-concept .hukusai-2 {
        margin-top: calc(-100 / 375 * 100vw);
        margin-right: calc(-25 / 375 * 100vw);
    }
}

.sec-concept .hukusai-3 {
    margin-top: -60px;
    margin-left: auto;
    margin-bottom: 30px;
    width: 190px;
}
@media only screen and (max-width: 769px) {
    .sec-concept .hukusai-3 {
        margin-top: calc(-60 / 375 * 100vw);
        margin-bottom: calc(30 / 375 * 100vw);
        width: calc(190 / 375 * 100vw);
    }
}

.border-decoration-concept {
    margin-bottom: -2px;
    font-size: 0;
}
@media only screen and (max-width: 769px) {
    .border-decoration-concept  {
        margin-bottom:  calc(-2 / 375 * 100vw);
    }
}


/*
 * 定番メニュー
 */

.sec-menu {
    background: #FFFBE7;
    padding-bottom: 50px;
    margin-bottom: -25px;
}
@media only screen and (max-width: 769px) {
    .sec-menu {
        padding-bottom: calc(50 / 375 * 100vw);
        margin-bottom: calc(-25 / 375 * 100vw);
    }
}

.sec-menu .sec-title h2 {
    margin-bottom: -30px;
}
@media only screen and (max-width: 769px) {
    .sec-menu .sec-title h2 {
        margin-bottom: calc(-30 / 375 * 100vw);
    }
}

.sec-menu h3 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    padding-top: 10px;
}
@media only screen and (max-width: 769px) {
    .sec-menu h3 {
        font-size: calc(18 / 375 * 100vw);
        margin-top: calc(20 / 375 * 100vw);
        padding-top: calc(10 / 375 * 100vw);
    }
}

.sec-menu h3::before {
    content: "";
    background-image: url("../img/decoration-green.png");
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
    width: 27px;
    height: 30px;
    margin-right: 3px;
}
@media only screen and (max-width: 769px) {
    .sec-menu h3::before {
        width: calc(27 / 375 * 100vw);
        height: calc(30 / 375 * 100vw);
        margin-right: calc(3 / 375 * 100vw);
    }
}

.sec-menu h3:last-child::before {
    content: "";
    background-image: url("../img/decoration-orange.png");
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
    width: 27px;
    height: 30px;
    margin-right: 3px;
}

.sec-menu img {
    margin: 20px 0 0;
}
@media only screen and (max-width: 769px) {
    .sec-menu img {
        margin: calc(20 / 375 * 100vw) 0;
    }
}

.sec-menu .price {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    margin-left: auto;
    text-align: right;
}
@media only screen and (max-width: 769px) {
    .sec-menu .price {
        font-size: calc(18 / 375 * 100vw);
    }
}

/*
 * SNS
 */

.sec-sns {
    background: var(--main-bg-color);
    padding-left: 0;
    padding-right: 0;
    box-sizing: content-box;
    border-radius: 0 0 10px 10px;
}

.sec-sns p {
    margin: 20px;
}
@media only screen and (max-width: 769px) {
    .sec-sns p {
        margin: calc(20 / 375 * 100vw);
    }
}

.decoration-line {
    margin-bottom: -24px;
}
@media only screen and (max-width: 769px) {
    .decoration-line {
        margin-bottom: calc(-24 / 375 * 100vw);
    }
}

.sec-sns .sec-title {
    padding: 0 20px;
}
@media only screen and (max-width: 769px) {
    .sec-sns .sec-title {
        padding: 0 calc(20 / 375 * 100vw);
    }
}

.sec-sns a {
    background: var(--accent-color);
    color: #fff;
    text-align: center;
    font-weight: bold;
    width: 90%;
    margin: 20px auto;
    display: block;
    padding: 15px 0;
    border-radius: 1000px;
    font-size: 20px;
    letter-spacing: 0.06em;
}
@media only screen and (max-width: 769px) {
    .sec-sns a {
        margin: calc(20 / 375 * 100vw) auto;
        padding: calc(15 / 375 * 100vw) 0;
        font-size: calc(20 / 375 * 100vw);
    }
}

.sec-sns a.line {
     background: #06C755;
     margin-bottom: 50px;
}


.sec-sns .timeline {
    display: flex;
    flex-wrap: wrap;
}

.sec-sns .timeline li {
    flex-basis: 33.333333%;
    font-size: 0;
}

/*
 * フッター
 */

.sec-footer {
    background: var(--accent-color);
    color: #fff;
    padding-bottom: 5px;
}
@media only screen and (max-width: 769px) {
    .sec-footer {
        padding-bottom: calc(5 / 375 * 100vw) auto;
    }
}

.sec-footer img {
    width: 133px;
    margin: 0 auto 20px;
    display: block;
}
@media only screen and (max-width: 769px) {
    .sec-footer img {
        width: calc(133 / 375 * 100vw);
        margin: 0 auto calc(20 / 375 * 100vw);
    }
}

.sec-footer .copyright {
    padding-top: 5px;
    border-top: solid 1px #F99F03;
    font-size: 10px;
    text-align: center;
}
@media only screen and (max-width: 769px) {
    .sec-footer .copyright {
       padding-top: calc(5 / 375 * 100vw);
        font-size: calc(10 / 375 * 100vw);
    }
}