/* =================================
Reset
================================= */
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0; }

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
figure,
blockquote,
dl,
dd {
  margin: 0; }

/* Set core root defaults */
html {
  scroll-behavior: smooth; }

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5; }

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none; }

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto; }

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block; }

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em; }

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit; }

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
  filter: blur(10px); }

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    -o-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important; } }

/* =================================
Base
================================= */
html {
  font-size: 62.5%; }

body {
  font-family: -apple-system, blinkMacSystemFont, "Noto Sans JP", sans-serif;
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2; }
  @media only screen and (max-width: 768px) {
    body {
      -webkit-text-size-adjust: 100%; } }

/* Link */
a {
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  text-decoration: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* placeholder */
::-webkit-input-placeholder {
  color: #c4c4c4; }
:-ms-input-placeholder {
  color: #c4c4c4; }
::-ms-input-placeholder {
  color: #c4c4c4; }
::placeholder {
  color: #c4c4c4; }

/* =================================
layout
================================= */
/* common */
.l-wrapper {
  background: url(../images/bg_pattern.png) repeat 0 0; }

.l-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px; }

a:hover {
  text-decoration: none;
  opacity: .5; }

.title-default {
  margin-bottom: 40px;
  color: #a12522;
  font-size: 3rem;
  font-weight: 700;
  text-align: center; }
  @media only screen and (max-width: 768px) {
    .title-default {
      font-size: 2.4rem; } }
  .title-default span {
    display: inline-block;
    border-bottom: 2px dashed #a12522; }

/* header */
.l-header h1 {
  padding: 16px 20px;
  background: #000;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 700;
  text-align: center; }
  @media only screen and (max-width: 768px) {
    .l-header h1 {
      font-size: 1.2rem; } }
  .l-header h1 br {
    display: none; }
    @media only screen and (max-width: 768px) {
      .l-header h1 br {
        display: block; } }

/* footer */
.l-footer {
  margin-top: 100px; }
  @media only screen and (max-width: 768px) {
    .l-footer {
      margin-top: 30px; } }
  .l-footer .company-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media only screen and (max-width: 768px) {
      .l-footer .company-info {
        display: block; } }
    .l-footer .company-info figure {
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2;
      width: 430px;
      margin-left: auto; }
      @media only screen and (max-width: 768px) {
        .l-footer .company-info figure {
          width: 100%; } }
      .l-footer .company-info figure img {
        width: 100%; }
    .l-footer .company-info .info-list {
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1;
      width: calc(100% - 480px); }
      @media only screen and (max-width: 768px) {
        .l-footer .company-info .info-list {
          width: 100%;
          padding: 20px; } }
      .l-footer .company-info .info-list li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 5px 0;
        border-bottom: 1px solid #cfcfcf; }
        .l-footer .company-info .info-list li:first-child {
          border-top: 1px solid #cfcfcf; }
        .l-footer .company-info .info-list li .th {
          min-width: 5em; }
        .l-footer .company-info .info-list li .td {
          width: calc(100% - 7em);
          margin-left: auto; }
  .l-footer .map {
    margin: 70px 0; }
    @media only screen and (max-width: 768px) {
      .l-footer .map {
        margin: 30px 0; } }
    .l-footer .map iframe {
      width: 100%; }
  .l-footer .sns-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .l-footer .sns-link li {
      width: 50px; }
      .l-footer .sns-link li + li {
        margin-left: 30px; }
      .l-footer .sns-link li a:hover img {
        opacity: .5; }
      .l-footer .sns-link li img {
        width: 100%; }
  .l-footer .copyright {
    padding: 50px 0 20px;
    font-size: 1.2rem;
    text-align: center; }
    @media only screen and (max-width: 768px) {
      .l-footer .copyright {
        padding-top: 30px; } }

/* contents */
.kv {
  position: relative; }
  .kv .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%; }
    .kv .logo img {
      width: auto;
      max-width: 40%;
      margin: 0 auto; }
      @media only screen and (max-width: 768px) {
        .kv .logo img {
          max-width: 90%; } }
  .kv img {
    width: 100%; }

.sec-about {
  padding: 50px 0 80px;
  border-top: 10px solid #ffd925; }
  @media only screen and (max-width: 768px) {
    .sec-about {
      padding: 40px 0; } }
  .sec-about .read-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media only screen and (max-width: 768px) {
      .sec-about .read-wrap {
        display: block; } }
    .sec-about .read-wrap .text {
      max-width: 700px; }
    .sec-about .read-wrap .illust {
      width: calc(100% - 730px);
      margin: -80px 0 0 auto; }
      @media only screen and (max-width: 768px) {
        .sec-about .read-wrap .illust {
          width: calc(100% - 60px);
          margin: 0 auto; } }
      .sec-about .read-wrap .illust img {
        width: 100%;
        mix-blend-mode: multiply; }
    .sec-about .read-wrap p {
      line-height: 1.6; }
      .sec-about .read-wrap p + p {
        margin-top: 1em; }
  .sec-about .bottom-image {
    margin-top: 45px; }
    @media only screen and (max-width: 768px) {
      .sec-about .bottom-image {
        margin-top: 20px; } }
    .sec-about .bottom-image img {
      width: 100%; }

.sec-menu {
  padding: 40px 0;
  background: #333; }
  @media only screen and (max-width: 768px) {
    .sec-menu {
      padding: 20px 0; } }
  .sec-menu h2 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center; }
  .sec-menu .popular-menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: -32px; }
    @media only screen and (max-width: 768px) {
      .sec-menu .popular-menu-list {
        margin-top: 0; } }
    .sec-menu .popular-menu-list + .popular-menu-list {
      margin-top: 0; }
    @media only screen and (max-width: 768px) {
      .sec-menu .popular-menu-list.main li {
        width: 100%; } }
    @media only screen and (max-width: 768px) {
      .sec-menu .popular-menu-list.main li:nth-child(3n+1) {
        margin-left: 0; } }
    @media only screen and (max-width: 768px) {
      .sec-menu .popular-menu-list.main li span {
        font-size: 2rem; } }
    .sec-menu .popular-menu-list li {
      width: calc(100% / 3 - (64px / 3));
      margin: 32px 0 0 32px; }
      @media only screen and (max-width: 768px) {
        .sec-menu .popular-menu-list li {
          width: calc(100% / 2 - 7.5px);
          margin: 15px 0 0 15px; } }
      .sec-menu .popular-menu-list li:nth-child(3n+1) {
        margin-left: 0; }
        @media only screen and (max-width: 768px) {
          .sec-menu .popular-menu-list li:nth-child(3n+1) {
            margin-left: 15px; } }
      @media only screen and (max-width: 768px) {
        .sec-menu .popular-menu-list li:nth-child(2n+1) {
          margin-left: 0; } }
      .sec-menu .popular-menu-list li .photo-wrap {
        position: relative; }
      .sec-menu .popular-menu-list li span {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 100%;
        color: #fff;
        font-size: 2.8rem;
        font-weight: 700;
        text-align: center;
        line-height: 1.2;
        text-shadow: 0 0 4px #000; }
        @media only screen and (max-width: 768px) {
          .sec-menu .popular-menu-list li span {
            font-size: 1.6rem; } }
        .sec-menu .popular-menu-list li span small {
          font-size: 2.5rem; }
          @media only screen and (max-width: 768px) {
            .sec-menu .popular-menu-list li span small {
              font-size: 1.4rem; } }
      .sec-menu .popular-menu-list li img {
        width: 100%; }
      .sec-menu .popular-menu-list li .summary {
        margin-top: 10px;
        color: #fff;
        line-height: 1.5; }
      .sec-menu .popular-menu-list li .price {
        color: #fff;
        font-size: 1.4rem;
        text-align: right; }
        .sec-menu .popular-menu-list li .price strong {
          font-size: 1.8rem; }
  .sec-menu .notes {
    margin-top: 30px;
    color: #fff; }

.sec-origin {
  padding: 60px 0; }
  @media only screen and (max-width: 768px) {
    .sec-origin {
      padding: 30px 0; } }
  .sec-origin .origin-wrap {
    padding: 50px;
    background: #cfc599; }
    @media only screen and (max-width: 768px) {
      .sec-origin .origin-wrap {
        padding: 20px; } }
    .sec-origin .origin-wrap h2 {
      margin-bottom: 10px;
      font-size: 2.4rem;
      font-weight: 700;
      text-align: center; }
      @media only screen and (max-width: 768px) {
        .sec-origin .origin-wrap h2 {
          margin-bottom: 10px;
          font-size: 1.8rem; } }
    .sec-origin .origin-wrap .fig-wrap {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      @media only screen and (max-width: 768px) {
        .sec-origin .origin-wrap .fig-wrap {
          display: block; } }
    .sec-origin .origin-wrap dl {
      max-width: 700px; }
      .sec-origin .origin-wrap dl dt {
        margin-bottom: 10px;
        font-size: 1.8rem;
        font-weight: 500; }
        @media only screen and (max-width: 768px) {
          .sec-origin .origin-wrap dl dt {
            font-size: 1.6rem; } }
      .sec-origin .origin-wrap dl dd {
        font-size: 1.4rem; }
        .sec-origin .origin-wrap dl dd + dd {
          margin-top: 1em; }
    .sec-origin .origin-wrap figure {
      margin-top: -60px; }
      @media only screen and (max-width: 768px) {
        .sec-origin .origin-wrap figure {
          margin-top: 10px; } }
      .sec-origin .origin-wrap figure img {
        width: 100%; }

.sec-order {
  padding: 60px 0; }
  @media only screen and (max-width: 768px) {
    .sec-order {
      padding: 30px 0; } }
  .sec-order .read {
    margin-bottom: 50px;
    font-size: 1.8rem;
    text-align: center; }
    @media only screen and (max-width: 768px) {
      .sec-order .read {
        margin-bottom: 20px;
        font-size: 1.4rem; } }
  .sec-order .order-menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .sec-order .order-menu-list.main {
      margin-top: -32px; }
      @media only screen and (max-width: 768px) {
        .sec-order .order-menu-list.main {
          display: block;
          margin-top: 0; } }
      .sec-order .order-menu-list.main li {
        width: calc(100% / 2 - 16px); }
        @media only screen and (max-width: 768px) {
          .sec-order .order-menu-list.main li {
            width: 100%;
            margin-left: 0; } }
        .sec-order .order-menu-list.main li:nth-child(2n+1) {
          margin-left: 0; }
        @media only screen and (max-width: 768px) {
          .sec-order .order-menu-list.main li + li {
            margin-top: 15px; } }
    .sec-order .order-menu-list li {
      position: relative;
      width: calc(100% / 4 - 24px);
      margin: 32px 0 0 32px; }
      @media only screen and (max-width: 768px) {
        .sec-order .order-menu-list li {
          width: calc(100% / 2 - 7.5px);
          margin: 15px 0 0 15px; } }
      .sec-order .order-menu-list li:nth-child(4n+1) {
        margin-left: 0; }
      @media only screen and (max-width: 768px) {
        .sec-order .order-menu-list li:nth-child(2n+1) {
          margin-left: 0; } }
      .sec-order .order-menu-list li span {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 100%;
        color: #fff;
        font-size: 2.8rem;
        font-weight: 700;
        text-align: center;
        line-height: 1.2;
        text-shadow: 0 0 4px #000; }
        @media only screen and (max-width: 768px) {
          .sec-order .order-menu-list li span {
            font-size: 1.6rem; } }
      .sec-order .order-menu-list li img {
        width: 100%; }

.sec-contact {
  padding: 60px 0; }
  @media only screen and (max-width: 768px) {
    .sec-contact {
      padding: 30px 0; } }
  .sec-contact .contact-box {
    max-width: 560px;
    margin: 0 auto;
    padding: 15px;
    background: #e5cd25; }
    .sec-contact .contact-box h3 {
      font-size: 1.8rem;
      font-weight: 700;
      text-align: center; }
      @media only screen and (max-width: 768px) {
        .sec-contact .contact-box h3 {
          font-size: 1.6rem; } }
    .sec-contact .contact-box .tel {
      font-size: 2.8rem;
      text-align: center; }
    .sec-contact .contact-box .hours {
      font-size: 1.8rem;
      text-align: center; }
      @media only screen and (max-width: 768px) {
        .sec-contact .contact-box .hours {
          font-size: 1.6rem; } }
