body, html {
  font-family: noto-sans-cjk-jp, 'Noto Sans JP', sans-serif;
  font-size: 20px;
    font-weight: bold;
  line-height: 2;
  color: #000;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased !important;

  animation: fadeIn 1.5s ease 0s 1 normal;
  -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
}
body::before {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    content: "";
    z-index: -10;
    background-image: url(../img/bg02.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*--- 画面全体をフェードイン(animation設定) ---*/
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 0.02em;
    position: relative;
    margin: 0 auto 2.5rem;
}
h2 {
    font-size: 2rem;
    letter-spacing: 0.3em;
    padding: 0;
}
h2 img {
    width: 8em;
    margin: 0 auto;
}
h3 {
    color: #fff;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
}
h4 {
    position: relative;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 12px 25px;
    border-radius: 9px;
    background: #E6F0F6;
    background: linear-gradient(90deg, #E6F0F6 0%, #E2F5F8 60%, #E9EDF0 100%);
}
h5 {
    color: #C9AA5E;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 0.3em;
    border-bottom: 1px solid;
}
h6 {
    display: flex;
    font-size: 1.1rem;
    font-weight: 700;
}
h6::before {
    font-family: "Font Awesome 5 Free";
    content: "\f45c";
    font-size: 1em;
    font-weight: 900;
    padding-right: 0.5em;
    color: #C9AA5E;
}

a {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
a:hover {
    text-decoration: none;
    outline: none;
}
a img {
  opacity: 1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
a img:hover {
    /*opacity: 0.7;*/
}

/*--- flex 横 ---*/
.flex-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.flex1 > div { width: 100%; }
.flex2 > div { width: 50%; }
.flex3 > div { width: calc(100% / 3); }
.flex4 > div { width: 25%; }
.flex5 > div { width: 20%; }

/*--- flex 縦 ---*/
.flex-column {
    display: flex;
    flex-flow: column;
    justify-content: center;
    height: 100%;
}

/*--- grid ---*/
.grid-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 0.6em;
}
.grid2 { grid-template-columns: 1fr 1fr; }
.grid3 { grid-template-columns: 1fr 1fr 1fr; }

/*--- TEXT OPTION ---*/
p {
    margin: 0 auto 1.5em;
	padding: 0;
    line-height: 2.5;
    letter-spacing: 0.02em;
}
.en-txt {
    font-size: 1.2em;
}

/*--- .btn01 ---*/
.btn00 {
    position: relative;
    display: block;
    max-width: 15em;
    margin: 0 auto;
    text-align: center;
    background-color: #fff;
    border: 4px solid #000;
    border-radius: 5px;
    opacity: 1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.btn01 a {
    position: relative;
    color: #000;
    display: block;
    padding: 1em;
    font-size: 1em;
    line-height: 1.3;
    letter-spacing: 0.02em;
}
.btn01 a::after {
    position: absolute;
    top: 50%;
    right: 1.5em;
    transform: translateY(-50%);
    z-index: 10;
    font-family: "Font Awesome 5 Free";
    content: '\f054';
    font-weight: 900;
    font-size: 15px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.btn01:hover {
    background-color: #000;
    border-color: #000;
    opacity: 1;
}
.btn01:hover a {
    text-decoration: none;
    color: #fff;
    opacity: 1;
}
.btn01 a:hover::after { transform: translate(50%, -50%); }

.btn-img {
    width: 100%;
    margin-bottom: 15px;
    margin-left: 0;
}


/*--- table ---*/
table {
    width: 100%;
    margin: 0 auto 3em;
    /*border: 4px solid #000;*/
    border-radius: 11px;
    /*border-collapse: collapse;*/
    border-collapse: separate;
    border-spacing: 4px;
    background-color: #000;
}
.other-content .js-scrollable:not(:last-of-type) { margin-bottom: 3em; }

table tr {
    background-color: #FFF;
    border-bottom: 4px solid #000;
}
table tr:first-child th { border-radius: 9px 0 0 0; }
table tr:first-child td { border-radius: 0 9px 0 0; }
table tr:last-child td { border-radius: 0 0 9px 0; }
table tr:last-child th { border-radius: 0 0 0 9px; }

table tr th, table tr td {
    color: #000;
    line-height: 1.6;
    letter-spacing: 0.05em;
    padding: 1.2em;
    vertical-align: top;
}
table.nowrap tr th, table.nowrap tr td {
    white-space: nowrap;
}
table tr th { background-color: #f2f2f2; }
table tr td {
    border-left: 1px solid #f2f2f2;
}
table tr th p, table tr td p {
    line-height: 1.6!important;
    text-align: left;
}
table tr th p:last-of-type, table tr td p:last-of-type {
    margin-bottom: 0;
}



/* --------------------------------------------
    グローバルナビゲーション
-------------------------------------------- */
#nav01 {
    line-height: 0;
  position: fixed;
  z-index: 101;
  width: 100%;
  background-color: #000;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.16));
    -moz-filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.16));
    -ms-filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.16));
    filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.16));
}
#drawer-checkbox {
  display: none;
}
.nav-wrap {
    position: relative;
    display: block;
    width: 96%;
    margin: 0 auto;
}
.nav-wrap h1 {
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
}
h1.hd-logo {
    width: 300px;
    margin: 0;
    padding: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
h1.hd-logo img {
    height: auto;
    vertical-align: middle;
}
.nav-list {
    display: block;
    width: 100%;
    list-style: none;
    margin: 0 auto;
    padding: 1.5em 0;
    text-align: right;
    background-color: #000;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.nav-list > li {
    position: relative;
    display: inline-block;
    width: auto;
    margin: 22px auto 22px;
    line-height: 1;
    border-right: 2px solid #fff;
}
.nav-list > li:last-child { border-right: none; }
.nav-list > li > a {
    position: relative;
    color: #fff;
    margin: 0 1em;
    padding: 0 0.2em;
    font-size: 1em;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.nav-list > li > a::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: '';
    width: 0;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.nav-list > li > a:hover, .nav-list > li > a:focus {
    text-decoration: none;
    outline: none;
}
.nav-list > li > a:hover::after, .nav-list > li > a:focus::after {
    width: 100%;
}


/* --------------------------------------------
    メインビジュアル
-------------------------------------------- */
#hd01 {
    position: relative;
    margin-top: 132px;
}
.main-slider {
    position: relative;
    z-index: 10;
    width: 100%;
    background-color: #000;
    line-height: 0;
}
.main-slider .slide-item {
    width: 100%;
    position: relative;
}
.main-slider .main-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.main-cover {
    position: absolute;
    width: 10%;
    max-width: 135px;
    min-width: 80px;
    height: auto;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 10;
}
.main-cover img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* --------------------------------------------
    コンテンツ
-------------------------------------------- */
section {
    position: relative;
    width: calc(100% + 30px);
    margin: 0 -15px;
    padding: 0;
    box-shadow: 0px 0px 3em 0.8em #000;
}
/*--- SECTION OPTION ---*/
.section-wh {
    background-color: #fff;
}

.content-wrap {
    width: 86%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 5rem 0 6rem;
}
.w90 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.flex-box {
    display: flex;
    justify-content: center;
}


/*--   msg   --*/
#msg {
    color: #fff;
    background-color: #000;
    z-index: 5;
}
.msg-wrap {
    position: relative;
    margin-top: 6em;
    padding: 0 0 10em;
}
.msg-wrap::before {
    content: '';
    width: 2em;
    height: 14em;
    position: absolute;
    left: 48%;
    top: 33%;
    transform: translateX(-50%);
    z-index: 100;
    background-image: url(../img/msg-txt01.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.msg-wrap .msg-box {
    position: relative;
    padding: 12vw 0;
}
.msg-wrap .box01 {
    background-image: url(../img/msg-bg01.png);
    background-position: right top;
    background-repeat: no-repeat;
    background-size: contain;
}
.msg-wrap .box02::before {
    content: '';
    width: 60vw;
    height: 60vw;
    position: absolute;
    left: 0;
    top: 20%;
    z-index: 10;
    background-image: url(../img/msg-bg02.png);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: contain;
}
.msg-wrap .box02::after {
    content: '';
    width: 40vw;
    height: 40vw;
    position: absolute;
    left: -10vw;
    bottom: 82%;
    z-index: 0;
    background-image: url(../img/circle01.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.msg-wrap .box03::before {
    content: '';
    width: 46vw;
    height: 46vw;
    position: absolute;
    right: 0;
    bottom: calc(-10em - 6vw);
    z-index: 10;
    background-image: url(../img/msg-bg04.png);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: contain;
}
.msg-wrap .box03::after {
    content: '';
    width: 30vw;
    height: 30vw;
    position: absolute;
    right: 65vw;
    bottom: calc(-10em - 12vw);
    z-index: 1;
    background-image: url(../img/msg-bg05.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.msg-wrap .msg-txt-wrap {
    font-size:max(1.3vw,1rem);
    position: relative;
    z-index: 50;
    width: 86%;
    max-width: 1380px;
    margin: 0 auto;
}
.msg-wrap .box02 .msg-txt-wrap .msg-txt {
    position: relative;
    display: block;
    width: 23em;
    margin-left: auto;
}
.msg-wrap .box02 .msg-txt-wrap .msg-txt::before {
    content: '';
    width: 35vw;
    height: 35vw;
    position: absolute;
    left: 25%;
    top: 15%;
    z-index: -1;
    background-image: url(../img/circle01.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.msg-wrap .box03 .msg-txt-wrap { text-align: center; }
.msg-wrap .box03 .msg-txt-wrap .msg-txt::before {
    content: '';
    width: 12vw;
    height: 12vw;
    position: absolute;
    left: 47%;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    background-image: url(../img/circle01.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

/*--   icon01   --*/
#icon01 {
    background-image: url(../img/bg01.jpg);
    background-position: center bottom;
    background-repeat: repeat;
    background-size: cover;
    background-attachment: fixed;
}
.icon-item01 img {
    width: 5em;
    margin: 0 auto;
}

/*--   rice   --*/
#rice {
    color: #fff;
    background-color: #000;
}
.rice-wrap .rice-box {
    margin: 3.5em auto 4em;
}

/*--   shop   --*/
#shop {
    z-index: 10;
    background-color: #C89641;
}
#shop::before {
    content: '';
    width: 30vw;
    height: 60px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 1;
    background-image: url(../img/shop-bg01.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
}
.shop-wrap .shop-link {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 8em;
}
.shop-wrap .shop-link .btn01 a::after { display: none; }
.shop-box {
    margin-bottom: 8em;
}
.shop-box .shop-tit {
    font-size: 1.1em;
    margin-bottom: 1em;
}
.shop-box .shop-tit > a {
    color: #000;
    padding: 0 0.2em;
}
.shop-box .shop-txt {
    padding-bottom: 1em;
}
.shop-box .shop-txt p {
    font-weight: normal;
    line-height: 1.8em;
}
.shop-box .shop-img {
    position: relative;
}
.shop-box .shop-img::before {
    content: '';
    display: block;
    width: 10em;
    height: 10em;
    border-top: 2px solid #000;
    position: absolute;
    top: -1em;
    z-index: 1;
}
.shop-box .left-bd::before { left: -1em; border-left: 2px solid #000; }
.shop-box .right-bd::before { right: -1em; border-right: 2px solid #000; }

/*--   part   --*/
#part {
    color: #fff;
    text-align: center;
    background-image: url(../img/bg01.jpg);
    background-position: center bottom;
    background-repeat: repeat;
    background-size: cover;
    background-attachment: fixed;
}
#part::before {
    content: '';
    width: 15em;
    height: 15em;
    position: absolute;
    left: 2%;
    top: 0;
    z-index: -1;
    background-image: url(../img/part-bg01.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
}
#part::after {
    content: '';
    width: 16em;
    height: 16em;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 5;
    background-image: url(../img/part-bg03.png);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: contain;
}
.part-wrap {
    position: relative;
    z-index: 10;
}
.part-wrap h2 {
    margin-bottom: 0.5em;
}
.part-wrap h2 span { position: relative; display: inline-block; }
.part-wrap h2 span::before {
    content: '';
    display: block;
    width: 6em;
    height: 6em;
    position: absolute;
    left: calc(100% - 2em);
    top: 20%;
    transform: translate(0, 0);
    z-index: -1;
    background-image: url(../img/part-bg02.png);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: contain;
}
.part-wrap h2 img {
    width: 100%;
    max-width: 16em;
}
.part-box {
    width: 100%;
    max-width: 32em;
    margin: 3em auto 0;
}

/*--   info   --*/
#info {
    color: #fff;
    background-color: #000;
}

/*--   rec   --*/
#rec {
    color: #fff;
    z-index: 10;
    background-color: #C89641;
}
.rec-wrap { padding-bottom: 8rem; }
.rec-wrap .rec-bd {
    position: relative;
    margin-bottom: 5em;
    padding: 1em;
    border: 4px solid #fff;
}
.rec-wrap .rec-bd::before {
    position: absolute;
    content: "";
    width: calc(100% + 38px);
    height: calc(100% + 34px);
    top: -17px;
    left: -19px;
    border: 4px solid #fff;
}
.rec-wrap .rec-bd img {
    width: 100%;
    max-width: 36em;
    margin: 0 auto;
}
.rec-wrap .rec-txt { margin-bottom: 5em; }
.rec-wrap .rec-txt p {
    width: 30em;
    margin: 0 auto;
}
.rec-wrap h3 {
    margin-bottom: 0.8em;
}
.rec-wrap .btn01 { max-width: 19em; border-radius: 60px; }



/* --------------------------------------------
    footer
-------------------------------------------- */
#ft01 {
    position: relative;
    width: calc(100% + 30px);
    margin: 0 -15px;
    padding: 0 15px;
    background-image: url(../img/bg01.jpg);
    background-position: center bottom;
    background-repeat: repeat;
    background-size: cover;
    background-attachment: fixed;
}
#ft01 .ft-wrap {
    width: 80%;
    margin: 0 auto;
    padding: 6em 0 3.5em;
}
#ft01 .ft-logo {
    display: block;
    width: 250px;
    margin: 0 auto 1.5em;
}
#ft01 .row p {
    font-size: 0.9rem;
    margin: 10px auto 0;
    line-height: 1.8;
}
#ft01 p > a {
    color: #fff!important;
    text-decoration: underline;
}
#ft01 .ft-menu01 {
    display: block;
    list-style: none;
    margin: 0 auto 1em;
    padding: 0;
    text-align: center;
    vertical-align: text-top;
}
#ft01 .ft-menu01 .ft-tit {
    line-height: 1;
    display: inline-block;
    margin: 0 auto 15px;
    padding: 0 1em;
    border-right: 1px solid #fff;
}
#ft01 .ft-menu01 .ft-tit:last-child { border-right: none; }
#ft01 .ft-menu01 .ft-tit a {
    color: #fff;
    margin: 0 auto;
    padding: 0;
    line-height: 1.25;
    letter-spacing: 0.05em;
    border-bottom: 0.75px solid #fff;
}
#ft01 .ft-cp {
    position: relative;
    z-index: 10;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-align: center;
    margin: 0 auto;
    padding: 15px 0;
}

/* --------------------------------------------
    TopPage
-------------------------------------------- */
.topBtn {
    color: #fff;
    font-weight: bold;
    border-radius: 100%;
    width: 124px;
    height: 124px;
    position: absolute;
    top: -4em;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: block;
    margin: 0 auto 50px;
    padding: 45px 10px;
    text-align: center;
    background-color: #D12926;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.topBtn::after {
    position: absolute;
    top: 0.5em;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-size: 1em;
    font-family: "Font Awesome 5 Free";
    content: '\f077';
    font-weight: 900;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-color: #D12926;
    -webkit-text-stroke-width: 1px
}
.topBtn:hover, .topBtn:focus {
    color: #fff;
    background-color: #000;
    text-decoration: none;
    outline: none;
}
.topBtn:hover::after, .topBtn:focus::after {
    -webkit-text-stroke-color: #000;
}


/* --------------------------------------------
    Roading display
-------------------------------------------- */
#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 1000;
}
#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px!important;
  text-align: center;
  color: #fff;
  z-index: 2;
}
/* 揺れる円 */
.loading {
  position: relative;
  width: 150px;
  height: 150px;
}
.circle1,
.circle2,
.circle3 {
  opacity: 0.5;
  position: absolute;
  left: 0;
  background: #1F2A57;
  width: 100%;
  height: 100%;
  transform-origin: 50% 47%;
  /*border-radius: 40%;*/
  border-radius: 40% 60% 49% 51% / 54% 57% 43% 46%;
  animation: rotation 6.7s infinite linear;
}
.circle2 {
  border-radius: 70% 30% 67% 33% / 35% 66% 34% 65% ;
  animation: rotation 15s infinite linear;
}
.circle3 {
  border-radius: 75% 25% 36% 64% / 36% 43% 57% 64%;
  animation: rotation 7.2s infinite linear;
}
.title {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    z-index: 1;
    width: 150px;
    height: 150px;
    text-align: center;
    /*animation: text-fade 300ms infinite linear;*/
}
.title img {
    width: 100%;
    padding: 30px 18px;
}
/* 回転アニメーション */
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* --------------------------------------------
    Responsive
-------------------------------------------- */
@media screen and (min-width: 768px) {
  /*--- .scrolled ---*/
  .scrolled h1.hd-logo { width: 190px; }
  .scrolled .nav-list { padding: 0.2em 0 0.6em; }
}
@media screen and (max-width: 1430px) {
    .msg-wrap::before { top: 27%; }
@media screen and (max-width: 1200px) {
    body, html { font-size: 18px; }
    h1.hd-logo { width: 250px; }
    #hd01 { margin-top: 124px; }
    .nav-list > li > a { margin: 0 0.8em; }
    .msg-wrap .msg-box { padding: 15vw 0; }
    .msg-wrap .msg-box:last-of-type { padding: 8vw 0; }
    .shop-box:last-of-type { margin-bottom: 0; }
}
@media screen and (max-width: 991px) {
  body, html { font-size: 18px; }
    h2 img { width: 7em; }
  .content-wrap { width: 90%; }
    .btn00 { max-width: 14em; }

/* --------------------------------------------
    nav
-------------------------------------------- */
#nav01 { width: 100%; height: 80px; }
#hd01 { margin-top: 80px; }
h1.hd-logo { width: 200px; z-index: 999; }
.scrolled h1.hd-logo { width: 160px; }
#drawer-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    padding: 12px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999;
    cursor: pointer;
}
#drawer-checkbox:checked ~ #drawer-icon {
  content: "";
  background-color: transparent;
}
#drawer-icon span {
  background:  #fff;
    border-radius: 15px;
  display: block;
  width: 30px;
  height: 4px;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}
#drawer-icon span::before,
#drawer-icon span::after {
  -webkit-transform: rotate(0);
  background: #fff;
    border-radius: 15px;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  transform: rotate(0);
  transition: all 0.3s ease-in-out;
}
#drawer-icon span::before { margin-top: -16px; }
#drawer-icon span::after { margin-top: 28px; }
#drawer-checkbox:checked ~ #drawer-icon span {
  background: rgba(51, 51, 51, 0);
  top: 50%;
}
#drawer-checkbox:checked ~ #drawer-icon span::before,
#drawer-checkbox:checked ~ #drawer-icon span::after {
  content: "";
  display: block;
  width: 135%;
  height: 100%;
  position: absolute;
  background-color: #fff;
}
#drawer-checkbox:checked ~ #drawer-icon span::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: 0;
}
#drawer-checkbox:checked ~ #drawer-icon span::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: 0;
}
/*--- メニューコンテンツ ---*/
#drawer-content {
    overflow: auto;
    position: fixed;
    right: 0;
    z-index: 100;
    width: 0;
    max-width: 0;
    height: 0;
    display: none;
    background-color: #000;
}
#drawer-content .nav-box {
    display: block;
    width: 100%;
    margin: 3em auto 6em;
    padding: 0;
    text-align: center;
    vertical-align: top;
}
#drawer-content .nav-box h4 a { color: #fff; }
#drawer-content .nav-box a:hover { text-decoration: none; opacity: 0.7; }
#drawer-content .nav-box .nav-list {
  width: 100%;
  margin: 0 auto;
  padding: 0;
    text-align: center;
}
#drawer-content .nav-box .nav-list li {
  display: block;
  height: auto;
  position: relative;
  line-height: 1.8;
  letter-spacing: 0.05em;
  list-style-type: none;
  margin: 0 auto 30px;
  padding: 0;
    border-right: none;
}
#drawer-content .nav-box .nav-list li a { display: inline-block; color: #fff; padding: 5px; }
/*
  #drawer-content .nav-box .nav-list li.contact-menu , #drawer-content .nav-box .nav-list li.shop-menu{ display: inline-block!important; }
  #drawer-content .nav-box .nav-list li.contact-menu a , #drawer-content .nav-box .nav-list li.shop-menu a { display: block; padding: 0!important; margin: 0 2px!important; }
  #drawer-content .nav-box .nav-list li.contact-menu img { width: 100%; max-width: 140px; }
  #drawer-content .nav-box .nav-list li.shop-menu img { width: 100%; max-width: 183px; }

#drawer-content .menuicon {
  width: 100%;
  margin: 75px auto 80px;
  text-align: center;
}
*/
.close-content #drawer-content { display: none!important; }
#drawer-checkbox:checked ~ #drawer-content {
    display: block;
  transform: translateY(0);
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 80px;
    background-color: #000;
    animation: fadeIn 0.5s ease 0s 1 normal;
    -webkit-animation: fadeIn 0.5s ease 0s 1 normal;
    overflow-y: scroll;
}
#drawer-close {
  display: none;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 1;
  transition: all 0.3s ease-in-out 0s;
}
  #drawer-checkbox:checked ~ #drawer-close {
    display: block;
    opacity: 1;
      margin: 0;
      background-color: transparent;
      z-index: 100;
  }

    .msg-wrap { padding-bottom: 15em; }
    .msg-wrap::before { left: 50%; top: 7vw; height: 20vw; }
    .msg-wrap .msg-box { padding: 7em 0; }
    .msg-wrap .box01 { padding-top: 46vw; background-size: 82vw; }
    .msg-wrap .msg-txt-wrap { width: 90%; max-width: 22em; text-align: center;}
    .msg-wrap .box02::before { top: -8em; width: 16em; height: 16em; background-image: url(../img/msg-bg02_s.png); }
    .msg-wrap .box02::after { width: 35vw; height: 35vw; left: auto; right: 48vw; bottom: 92%; }
    .msg-wrap .box02 .msg-txt-wrap .msg-txt::before { width: 25vw; height: 25vw; left: 55%; top: -26%; }
    .msg-wrap .box03 .msg-txt-wrap .msg-txt::before { width: 20vw; height: 20vw; left: 52%; bottom: 32%; top: auto; transform: translateY(0); }
    .msg-wrap .box03::before {
        content: '';
        width: 25em;
        height: 25em;
        position: absolute;
        left: 0;
        top: -7em;
        z-index: 10;
        background-image: url(../img/msg-bg03_s.png);
        background-position: left top;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .msg-wrap .box03 .msg-txt-wrap p { font-size: 1.4em; line-height: 2; }
    .msg-wrap::after {
        content: '';
        width: 42vw;
        height: 42vw;
        position: absolute;
        right: 0;
        bottom: 1%;
        z-index: 10;
        background-image: url(../img/msg-bg04.png);
        background-position: right bottom;
        background-repeat: no-repeat;
        background-size: contain;
    }
    .msg-wrap .box03::after { width: 35vw; height: 35vw; right: 60vw; bottom: calc(-15em - 10vw); }
    .icon-item01 img { width: 4em; }
    .shop-box .shop-img::before { width: 7em; height: 7em; }
    #part::after { width: 15em; height: 15em; }
    .part-wrap h2 img { max-width: 14em; }
    .part-wrap h2 span::before { width: 5em; height: 5em; left: calc(100% - 1em); top: 15%; }
    .rec-wrap .rec-bd img { max-width: 30em; }

@media screen and (max-width: 767px) {
  body, html { font-size: 16px; }
    h2 img { width: 6em; }
  .flex-box { display: block; }
    .flex-box > div { width: 100%!important; }
    .grid-box { grid-template-columns: 1fr 1fr; }
    .grid3 { grid-template-columns: 1fr 1fr; }

    h1.hd-logo, .scrolled h1.hd-logo { width: 225px; top: 20px; left: 50%; transform: translateX(-50%); }

    .msg-wrap .box02 .msg-txt-wrap .msg-txt::before { width: 12em; height: 12em; left: 60%; top: -22%; }
    .msg-wrap .box02::after { width: 16em; height: 16em;  right: 50vw; bottom: 100%; }
    .msg-wrap::after { width: 50vw; height: 50vw; }
    .msg-wrap .box03::after { width: 40vw; height: 40vw; }
    .rice-wrap .rice-box { max-width: 360px; }
    .rice-wrap > p:last-of-type { width: 100%; max-width: 27em; }
    #shop::before { width: 18em; }
    .shop-wrap .shop-link { max-width: 460px; }
    .shop-box { width: 100%; max-width: 520px; margin: 0 auto 8em; }
    .shop-box .shop-tit { text-align: center; }
    .shop-box .shop-btn .btn-img { margin: 0 auto 15px; }
    .shop-box .shop-img { margin-bottom: 1.5em; }
    .shop-box .shop-img::before { display: none; }
    .part-wrap h2 img { max-width: 12em; }
    .part-box .btn01 { margin-bottom: 15px; }
    .part-wrap h2 span::before { display: none; }
    #part::before {
        content: '';
        display: block;
        width: 9em;
        height: 9em;
        position: absolute;
        left: -1.5em;
        top: 10%;
        transform: translate(0, 0);
        z-index: 0;
        background-image: url(../img/part-bg02.png);
        background-position: center left;
        background-repeat: no-repeat;
        background-size: contain;
    }
    #part::after { width: 13em; height: 13em; }
    .rec-wrap .rec-bd img { max-width: 25em; }
    .topBtn { width: 110px; height: 110px; top: -3em; }
    #icon01, #part, #ft01 { background-size: 800px; }
}
@media screen and (max-width: 600px) {
    body, html { font-size: 16px; }
    h3 { font-size: 1.4rem; }
    #nav01 { height: 70px; }
    .nav-wrap { width: 98%; }
    h1.hd-logo, .scrolled h1.hd-logo { width: 195px; top: 17px; }
    table { border-collapse: collapse; border-spacing: 0; border: 4px solid #000; }
    table tr th, table tr td { display: block; }
    #drawer-icon { width: 60px; height: 70px; }
    #drawer-checkbox:checked ~ #drawer-content { margin-top: 70px; }
    #hd01 { margin-top: 70px; }
    .content-wrap { width: 88%; padding: 4rem 0; }
    .msg-wrap { padding-bottom: 20em; }
    .msg-wrap .msg-txt-wrap { width: 92%; }
    .msg-wrap .box02 .msg-txt-wrap .msg-txt { width: 100%; }
    .msg-wrap::before { left: 50%; top: 15vw; height: 40vw; }
    .msg-wrap .box01 { background-image: url(../img/msg-bg01_s.png); padding-top: 92vw; background-size: 100%; }
    .msg-wrap .msg-box:last-of-type { padding: 10em 0 2.5em; }
    .msg-wrap::after { width: 18em; height: 16em; bottom: 7%; }
    .msg-wrap .box03::after { width: 16em; height: 13em; right: auto; left: -3.5em; bottom: calc(-20em - 8vw); }
    .msg-wrap .box03 .msg-txt-wrap .msg-txt::before { width: 7em; height: 7em; left: 55%; bottom: 30%; }
    .msg-wrap .box03::before { width: 22em; height: 20em; }
    .rice-wrap > p:first-of-type { width: 100%; max-width: 15em; }
    .shop-wrap .shop-link { margin-bottom: 5em; }
    .shop-box:not(:last-of-type) { margin-bottom: 6em; }
    #part::after { display: none; }
    #part::before { width: 8em; height: 8em; top: 15%; }

    .part-wrap h2 { margin-bottom: 1.5em; }
    .part-wrap h2 img { max-width: 9em; }
    .part-wrap > p:first-of-type { width: 100%; max-width: 18em; }
    .rec-wrap .rec-bd { margin-bottom: 3em; }
    .rec-wrap .rec-bd::before {
        width: calc(100% + 30px);
        height: calc(100% + 30px);
        top: -15px;
        left: -16px;
    }
    .rec-wrap .rec-txt p { width: 100%; max-width: 30em; line-height: 2; margin-bottom: 1em; }
    #ft01 .ft-logo { width: 200px; margin-bottom: 2.5em; }
}
