@charset "UTF-8";
/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background-color: rgba(102, 51, 51, 0.9);
  /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}
#g-nav li img {
  width: 20%;
}

#g-nav li a {
  color: #ffffff;
  text-decoration: none;
  padding: 20px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 40px;
  right: 50px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: #663333;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #ffffff;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
  z-index: 99999;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
  z-index: 99999;
}

header {
  right: 0;
  z-index: 100;
  width: 80%;
  height: 190px;
  margin-left: 10%;
  display: flex;
  position: relative;
}
header .logo {
  position: fixed;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  left: 3rem;
  margin: auto;
  width: 60%;
  height: 4rem;
}
header .logo .flour {
  width: 20%;
  margin-right: 50px;
}
header .logo img {
  width: 15%;
  margin-right: 30px;
}
header .list1 {
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  padding: 0 70px;
  width: 70%;
  height: 3.2rem;
  justify-content: space-around;
  padding-top: 40px;
  /*現在地とhoverの設定*/
}
header .list1 li a {
  vertical-align: middle;
  color: #fff;
  position: relative;
}
header .list1 li a::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  margin-bottom: -10px;
  bottom: 0;
  left: 0%;
  /*線の形状*/
  width: 100%;
  height: 2px;
  background: #663333;
  /*アニメーションの指定*/
  transition: all 0.3s;
  transform: scale(0, 1);
  /*X方向0、Y方向1*/
  transform-origin: center top;
  /*上部中央基点*/
}
header .list1 .current a::after,
header .list1 a:hover::after {
  transform: scale(1, 1);
  /*X方向にスケール拡大*/
}
header .list1 .current a,
header .list1 .list1 li a:hover {
  color: #663333;
}

.h-icon {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 90px;
  right: 50px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  padding: 10px;
}
.h-icon .cart {
  margin: 0 0 15px 0;
}

#main .main-img {
  text-align: right;
  position: relative;
  top: 10px;
}
#main .main-img img {
  width: 90%;
  height: 620px;
  -o-object-fit: cover;
     object-fit: cover;
}
#main .text {
  position: absolute;
  top: 55%;
  right: 0%;
  transform: translate(-50%, -50%);
  padding: 0;
  margin: 0;
  color: #fff;
}
#main .text h1 {
  font-size: 27px;
}
#main .text h2 {
  font-size: 21px;
  letter-spacing: 1px;
}

footer {
  margin: 2% 15%;
  height: 120px;
  display: flex;
  color: #fff;
  justify-content: space-around;
  align-items: flex-end;
}
footer img {
  width: auto;
  height: 110px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 20px;
}
footer h5 {
  font-size: 20px;
  margin-bottom: 5px;
}
footer p {
  line-height: 25px;
  letter-spacing: 1px;
  font-size: 14px;
}

.copyright {
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

html {
  overflow: scroll;
}

body {
  font-family: "Zen Old Mincho", serif;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #9C868E;
  margin: 0;
}

#main {
  display: flex;
  width: 70%;
  margin: 0 auto;
  justify-content: center;
  text-align: center;
  padding-top: 30px;
}
#main .pc-none1,
#main .pc-none2 {
  display: none;
}
#main .box {
  opacity: 0;
}
#main .fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
#main .delay-time02 {
  animation-delay: 0.7s;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#main-ph {
  text-align: center;
  margin-top: 80px;
}
#main-ph img {
  width: 50%;
  height: 625px;
  -o-object-fit: cover;
     object-fit: cover;
}

#tab-box {
  /*お知らせタブ*/
}
#tab-box .notice {
  margin: 0 auto;
  width: 65%;
  padding-top: 80px;
  padding-bottom: 50px;
  /*tabの形状*/
  /*liにactiveクラスがついた時の形状*/
  /*エリアの表示非表示と形状*/
  /*areaにis-activeというクラスがついた時の形状*/
}
#tab-box .notice .tab {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  border-bottom: 2px solid #663333;
  position: relative;
}
#tab-box .notice .tab :hover {
  text-decoration: none;
}
#tab-box .notice .tab li {
  position: relative;
  z-index: 1;
  bottom: -2px;
  text-align: center;
}
#tab-box .notice .tab li a {
  display: block;
  margin: 0 2px;
  padding: 15px 30px;
  color: #fff;
}
#tab-box .notice #tab1 .tab1-box ul,
#tab-box .notice #tab1 .tab2-box ul,
#tab-box .notice #tab1 .tab3-box ul,
#tab-box .notice #tab1 .tab4-box ul,
#tab-box .notice #tab1 .tab5-box ul,
#tab-box .notice #tab2 .tab1-box ul,
#tab-box .notice #tab2 .tab2-box ul,
#tab-box .notice #tab2 .tab3-box ul,
#tab-box .notice #tab2 .tab4-box ul,
#tab-box .notice #tab2 .tab5-box ul,
#tab-box .notice #tab3 .tab1-box ul,
#tab-box .notice #tab3 .tab2-box ul,
#tab-box .notice #tab3 .tab3-box ul,
#tab-box .notice #tab3 .tab4-box ul,
#tab-box .notice #tab3 .tab5-box ul,
#tab-box .notice #tab4 .tab1-box ul,
#tab-box .notice #tab4 .tab2-box ul,
#tab-box .notice #tab4 .tab3-box ul,
#tab-box .notice #tab4 .tab4-box ul,
#tab-box .notice #tab4 .tab5-box ul,
#tab-box .notice #tab5 .tab1-box ul,
#tab-box .notice #tab5 .tab2-box ul,
#tab-box .notice #tab5 .tab3-box ul,
#tab-box .notice #tab5 .tab4-box ul,
#tab-box .notice #tab5 .tab5-box ul {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
#tab-box .notice #tab1 .tab1-box ul li,
#tab-box .notice #tab1 .tab2-box ul li,
#tab-box .notice #tab1 .tab3-box ul li,
#tab-box .notice #tab1 .tab4-box ul li,
#tab-box .notice #tab1 .tab5-box ul li,
#tab-box .notice #tab2 .tab1-box ul li,
#tab-box .notice #tab2 .tab2-box ul li,
#tab-box .notice #tab2 .tab3-box ul li,
#tab-box .notice #tab2 .tab4-box ul li,
#tab-box .notice #tab2 .tab5-box ul li,
#tab-box .notice #tab3 .tab1-box ul li,
#tab-box .notice #tab3 .tab2-box ul li,
#tab-box .notice #tab3 .tab3-box ul li,
#tab-box .notice #tab3 .tab4-box ul li,
#tab-box .notice #tab3 .tab5-box ul li,
#tab-box .notice #tab4 .tab1-box ul li,
#tab-box .notice #tab4 .tab2-box ul li,
#tab-box .notice #tab4 .tab3-box ul li,
#tab-box .notice #tab4 .tab4-box ul li,
#tab-box .notice #tab4 .tab5-box ul li,
#tab-box .notice #tab5 .tab1-box ul li,
#tab-box .notice #tab5 .tab2-box ul li,
#tab-box .notice #tab5 .tab3-box ul li,
#tab-box .notice #tab5 .tab4-box ul li,
#tab-box .notice #tab5 .tab5-box ul li {
  width: calc(33.3333333333% - 20px);
  position: relative;
}
#tab-box .notice #tab1 .tab1-box ul li a,
#tab-box .notice #tab1 .tab2-box ul li a,
#tab-box .notice #tab1 .tab3-box ul li a,
#tab-box .notice #tab1 .tab4-box ul li a,
#tab-box .notice #tab1 .tab5-box ul li a,
#tab-box .notice #tab2 .tab1-box ul li a,
#tab-box .notice #tab2 .tab2-box ul li a,
#tab-box .notice #tab2 .tab3-box ul li a,
#tab-box .notice #tab2 .tab4-box ul li a,
#tab-box .notice #tab2 .tab5-box ul li a,
#tab-box .notice #tab3 .tab1-box ul li a,
#tab-box .notice #tab3 .tab2-box ul li a,
#tab-box .notice #tab3 .tab3-box ul li a,
#tab-box .notice #tab3 .tab4-box ul li a,
#tab-box .notice #tab3 .tab5-box ul li a,
#tab-box .notice #tab4 .tab1-box ul li a,
#tab-box .notice #tab4 .tab2-box ul li a,
#tab-box .notice #tab4 .tab3-box ul li a,
#tab-box .notice #tab4 .tab4-box ul li a,
#tab-box .notice #tab4 .tab5-box ul li a,
#tab-box .notice #tab5 .tab1-box ul li a,
#tab-box .notice #tab5 .tab2-box ul li a,
#tab-box .notice #tab5 .tab3-box ul li a,
#tab-box .notice #tab5 .tab4-box ul li a,
#tab-box .notice #tab5 .tab5-box ul li a {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
#tab-box .notice #tab1 .tab1-box ul li div,
#tab-box .notice #tab1 .tab2-box ul li div,
#tab-box .notice #tab1 .tab3-box ul li div,
#tab-box .notice #tab1 .tab4-box ul li div,
#tab-box .notice #tab1 .tab5-box ul li div,
#tab-box .notice #tab2 .tab1-box ul li div,
#tab-box .notice #tab2 .tab2-box ul li div,
#tab-box .notice #tab2 .tab3-box ul li div,
#tab-box .notice #tab2 .tab4-box ul li div,
#tab-box .notice #tab2 .tab5-box ul li div,
#tab-box .notice #tab3 .tab1-box ul li div,
#tab-box .notice #tab3 .tab2-box ul li div,
#tab-box .notice #tab3 .tab3-box ul li div,
#tab-box .notice #tab3 .tab4-box ul li div,
#tab-box .notice #tab3 .tab5-box ul li div,
#tab-box .notice #tab4 .tab1-box ul li div,
#tab-box .notice #tab4 .tab2-box ul li div,
#tab-box .notice #tab4 .tab3-box ul li div,
#tab-box .notice #tab4 .tab4-box ul li div,
#tab-box .notice #tab4 .tab5-box ul li div,
#tab-box .notice #tab5 .tab1-box ul li div,
#tab-box .notice #tab5 .tab2-box ul li div,
#tab-box .notice #tab5 .tab3-box ul li div,
#tab-box .notice #tab5 .tab4-box ul li div,
#tab-box .notice #tab5 .tab5-box ul li div {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
}
#tab-box .notice #tab1 .tab1-box ul li div img,
#tab-box .notice #tab1 .tab2-box ul li div img,
#tab-box .notice #tab1 .tab3-box ul li div img,
#tab-box .notice #tab1 .tab4-box ul li div img,
#tab-box .notice #tab1 .tab5-box ul li div img,
#tab-box .notice #tab2 .tab1-box ul li div img,
#tab-box .notice #tab2 .tab2-box ul li div img,
#tab-box .notice #tab2 .tab3-box ul li div img,
#tab-box .notice #tab2 .tab4-box ul li div img,
#tab-box .notice #tab2 .tab5-box ul li div img,
#tab-box .notice #tab3 .tab1-box ul li div img,
#tab-box .notice #tab3 .tab2-box ul li div img,
#tab-box .notice #tab3 .tab3-box ul li div img,
#tab-box .notice #tab3 .tab4-box ul li div img,
#tab-box .notice #tab3 .tab5-box ul li div img,
#tab-box .notice #tab4 .tab1-box ul li div img,
#tab-box .notice #tab4 .tab2-box ul li div img,
#tab-box .notice #tab4 .tab3-box ul li div img,
#tab-box .notice #tab4 .tab4-box ul li div img,
#tab-box .notice #tab4 .tab5-box ul li div img,
#tab-box .notice #tab5 .tab1-box ul li div img,
#tab-box .notice #tab5 .tab2-box ul li div img,
#tab-box .notice #tab5 .tab3-box ul li div img,
#tab-box .notice #tab5 .tab4-box ul li div img,
#tab-box .notice #tab5 .tab5-box ul li div img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
#tab-box .notice .tab li.active a {
  background: #663333;
  color: #fff;
  border-bottom: 2px solid #663333;
}
#tab-box .notice .area {
  display: none;
  /*はじめは非表示*/
  opacity: 0;
  /*透過0*/
  padding: 50px 15%;
}
#tab-box .notice .area.is-active {
  display: block;
  /*表示*/
  animation-name: displayAnime;
  /*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#item {
  width: 950px;
  margin: 0 auto;
  color: #fff;
}
#item .notes {
  margin-top: 50px;
  width: 100%;
  justify-content: center;
}
#item .notes h5 {
  padding-bottom: 10px;
  font-size: 20px;
  text-align: center;
}
#item .notes p {
  border: 1px solid #fff;
  padding: 30px;
  font-size: 15px;
  line-height: 25px;
  width: 620px;
  margin: 0 auto;
}
#item .Form {
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
  margin: 0 auto;
  justify-content: center;
}
#item .Form p {
  color: #fff;
  font-weight: 100;
}
#item .Form h2 {
  margin-top: 70px;
  margin-bottom: 20px;
  margin-right: 10px;
  position: relative;
}
#item .Form h2::after {
  content: "";
  position: absolute;
  top: 48%;
  width: 97%;
  border-top: 1px solid;
  margin-left: 25px;
}
@media screen and (max-width: 480px) {
  #item .Form {
    margin-top: 40px;
  }
}
#item .Form-Item {
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
#item .Form-Item label {
  padding-left: 30px;
}
#item .checks:checked {
  display: none;
  animation: fadein 1.5s;
}
#item .Form-Item2 {
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#item .Form-Item2 label {
  padding-left: 30px;
}
@media screen and (max-width: 480px) {
  #item .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}
#item .Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 15px;
  text-align: left;
  padding-left: 20px;
}
@media screen and (max-width: 480px) {
  #item .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}
#item .Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 480px) {
  #item .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
#item .Form-Item-Label-Required {
  border-radius: 0px;
  margin-right: 8px;
  padding-top: 5px;
  padding-bottom: 8px;
  width: 33px;
  height: 25px;
  display: inline-block;
  text-align: center;
  background: #663333;
  color: #fff;
  font-size: 12px;
}
#item .Form-Item-Label-Required2 {
  border-radius: 0px;
  margin-right: 8px;
  padding-top: 5px;
  padding-bottom: 8px;
  width: 33px;
  height: 25px;
  display: inline-block;
  text-align: center;
  background: #777;
  color: #fff;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  #item .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}
#item .Form-Item-Input {
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 13px;
  color: #333;
}
@media screen and (max-width: 480px) {
  #item .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
#item .Form-Item-Textarea {
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 13px;
}
@media screen and (max-width: 480px) {
  #item .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}
#item .Form-Btn {
  border: 1px solid #fff;
  text-align: center;
  margin-top: 32px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 250px;
  height: 50px;
  display: block;
  color: #fff;
  font-size: 15px;
  position: relative;
  transition: background-color 0.5s;
}
#item .Form-Btn:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 480px) {
  #item .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}

.box {
  text-align: left;
  color: #fff;
  margin-bottom: 80px;
}
.box h6 {
  margin-bottom: 10px;
  font-size: 20px;
}
.box p {
  font-size: 14px;
  border: 1px solid #fff;
  padding: 40px;
  line-height: 30px;
  height: 200px;
  overflow-y: scroll;
}

.__order_form_area {
  width: 800px;
  margin: 0 auto;
  position: relative;
}
.__order_form_area h2 {
  width: 100%;
  position: relative;
  padding: 2rem 0;
}
.__order_form_area h2 p {
  width: auto;
}
.__order_form_area h2::after {
  content: "";
  position: absolute;
  top: 48%;
  width: calc(100% - 160px);
  border-top: 1px solid #ffffff;
  margin-left: 160px;
}
.__order_form_area .__order_form_area_heading {
  background-color: #fff;
  color: #663333;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1.5px;
  padding: 5px 0;
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 50px;
}
.__order_form_area .__order_form_box {
  width: 680px;
  margin: 0 auto;
}
.__order_form_area .__order_form_box ul {
  width: 100%;
  display: flex;
  flex-flow: column;
}
.__order_form_area .__order_form_box ul #visit_date,
.__order_form_area .__order_form_box ul #visit_time {
  display: flex;
}
.__order_form_area .__order_form_box ul #message_card {
  display: none;
}
.__order_form_area .__order_form_box ul li {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  margin: 1.2rem 0;
}
.__order_form_area .__order_form_box ul li .__order_title {
  max-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.__order_form_area .__order_form_box ul li .__order_title span {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0.2rem;
  background-color: #663333;
  padding: 0.6rem 0.4rem;
  font-size: 0.8rem;
}
.__order_form_area .__order_form_box ul li .__order_title .nin {
  background-color: #777;
}
.__order_form_area .__order_form_box ul li .__order_title p {
  margin: 0 0 0 1rem;
}
.__order_form_area .__order_form_box ul li .__order_input {
  width: calc(100% - 280px);
  display: flex;
  justify-content: space-between;
  position: relative;
}
.__order_form_area .__order_form_box ul li .__order_input .select_box_arrow {
  position: absolute;
  left: 42%;
  top: 15px;
  color: #9c868e;
  transition: 0.5s;
}
.__order_form_area .__order_form_box ul li .__order_input .selected {
  position: absolute;
  left: 42%;
  top: 15px;
  color: #9c868e;
  transition: 0.5s;
  transform: scale(1, -1);
}
.__order_form_area .__order_form_box ul li .__order_input .change_select_box2 {
  position: absolute;
  left: 42%;
  top: 15px;
  color: #9c868e;
  transition: 1s;
  transform: rotate(-180deg);
}
.__order_form_area .__order_form_box ul li .__order_input #atena {
  display: none;
}
.__order_form_area .__order_form_box ul li .__order_input .__order_input_radio {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.__order_form_area .__order_form_box ul li .__order_input .__order_input_radio input[type=radio] {
  width: 50px;
  height: 50px;
}
.__order_form_area .__order_form_box ul li .__order_input .__order_input_radio label {
  width: calc(100% - 50px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.__order_form_area .__order_form_box ul li .__order_input input {
  width: 100%;
  padding: 0.9rem;
  background-color: #eaedf2;
  color: #333;
}
.__order_form_area .__order_form_box ul li .__order_input .total {
  background-color: #9c868e;
  font-weight: bold;
  font-size: 2em;
  color: #fff;
}
.__order_form_area .__order_form_box ul li .__order_input textarea {
  width: 100%;
  height: 216px;
  padding: 0.9rem;
  background-color: #eaedf2;
  color: #333;
}
.__order_form_area .__order_form_box ul li .__order_input select {
  width: 50%;
  padding: 0.9rem !important;
}
.__order_form_area .__order_form_box ul li .__order_input option {
  width: 100%;
  height: auto;
  background-color: #eaedf2;
  color: #333;
}
.__order_form_area .__order_form_box ul li .__order_input .note {
  width: 50%;
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 0 0px 0 10px;
}
.__order_form_area .__order_form_box ul li .__order_input .note a:hover {
  color: #663333;
}
.__order_form_area .__order_form_box ul li .__order_input .heading {
  background-color: #eaedf2;
  color: #663333;
  padding: 10px 20px 10px 10px;
}
.__order_form_area .__order_form_box ul li .radio {
  display: flex;
}
.__order_form_area .__order_form_box #delivery {
  transition: 1s all;
}
.__order_form_area .__order_form_box .delivery_check_box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.__order_form_area .__order_form_box .delivery_check_box label {
  width: 100%;
  height: auto;
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.__order_form_area .__order_form_box .delivery_check_box label #delivery_check {
  width: 0px;
  height: 0px;
  opacity: 0;
}
.__order_form_area .__order_form_box .delivery_check_box label #delivery_check:checked + .dummy_checkbox {
  background-color: #ffffff;
  box-sizing: border-box;
}
.__order_form_area .__order_form_box .delivery_check_box label #delivery_check:checked + .dummy_checkbox::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJmZWF0aGVyIGZlYXRoZXItY2hlY2siPjxwb2x5bGluZSBwb2ludHM9IjIwIDYgOSAxNyA0IDEyIj48L3BvbHlsaW5lPjwvc3ZnPg==") no-repeat center;
  background-size: contain;
}
.__order_form_area .__order_form_box .delivery_check_box label .dummy_checkbox {
  width: 20px;
  height: 20px;
  display: block;
  background-color: #ffffff;
  position: relative;
  margin-right: 20px;
}

/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 SECTION TITLE 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  header {
    width: 100%;
    margin-left: -1%;
    text-align: center;
  }
  header .logo {
    width: 70%;
    height: 3.2rem;
    margin-top: 50px;
    margin-left: 8%;
    justify-content: center;
  }
  header .logo .flour {
    width: 30%;
    margin-right: 20px;
  }
  header .logo .cafe {
    width: 22%;
  }
  header .logo img {
    width: 25%;
    margin-right: 20px;
  }
  header .list1 {
    display: none;
  }
  header .list1 li {
    display: none;
  }
  footer {
    margin: 2% 3%;
    height: 100px;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
  }
  footer img {
    width: auto;
    height: 60px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-right: 10px;
  }
  footer h5 {
    font-size: 20px;
    margin-bottom: 5px;
  }
  footer p {
    line-height: 25px;
    letter-spacing: 1px;
    font-size: 13px;
  }
}
/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  header {
    right: 0;
    z-index: 100;
    width: 100%;
    height: 150px;
    margin-left: 0%;
    display: flex;
    position: relative;
  }
  header .logo {
    width: 90%;
    height: 3.2rem;
    margin-top: 40px;
    margin-left: -10px;
  }
  header .logo .flour {
    width: 120px;
    margin-right: 20px;
  }
  header .logo .cafe {
    width: 100px;
  }
  header .list1 {
    display: none;
  }
  header .openbtn {
    top: 20px;
    right: 20px;
  }
  header .h-icon {
    top: 70px;
    right: 20px;
  }
  footer {
    margin: 0 auto;
    height: auto;
    width: 100%;
    display: block;
    color: #fff;
    justify-content: center;
    align-items: center;
  }
  footer img {
    width: auto;
    height: 75px;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 40px 10px 20px 20px;
    justify-content: center;
  }
  footer h5 {
    font-size: 20px;
    margin-left: 20px;
  }
  footer p {
    line-height: 25px;
    letter-spacing: 1px;
    font-size: 14px;
    margin: 0 20px;
  }
  .copyright {
    text-align: center;
    color: #fff;
    margin-bottom: 0px;
    bottom: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
/* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 SECTION TITLE 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #main-ph {
    text-align: center;
    margin-top: 80px;
  }
  #main-ph img {
    width: 80%;
    height: 625px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #main {
    display: flex;
    width: 90%;
    margin: 0 auto;
    justify-content: center;
    text-align: center;
    padding-top: 30px;
  }
  #main img {
    width: 100%;
  }
  #main .pc-none1,
  #main .pc-none2 {
    display: none;
  }
  #main .box {
    opacity: 0;
  }
  #main-ph {
    width: 90%;
    text-align: center;
    margin-top: 80px;
    margin: 0 auto;
  }
  #main-ph img {
    width: 100%;
    height: 550px;
    margin-top: 50px;
  }
}
/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  #main {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 300px;
    padding-top: 0px;
    padding-bottom: 20px;
    margin-top: 20px;
  }
  #main .heading {
    width: 200px;
    height: 200px;
    position: relative;
  }
  #main .heading > img {
    width: 190px;
    position: absolute;
    left: 10px;
    top: 10px;
  }
  #main .media-none {
    display: none;
  }
  #main .pc-none1 {
    display: block;
    width: 200px;
    height: 200px;
    position: absolute;
    top: -20%;
    left: -20%;
  }
  #main .pc-none1 img {
    width: 200px;
    height: 200px;
  }
  #main .pc-none2 {
    display: block;
    width: 200px;
    height: 200px;
    position: absolute;
    bottom: -30%;
    right: -20%;
  }
  #main .pc-none2 img {
    width: 200px;
    height: 200px;
  }
  #main .box {
    opacity: 0;
  }
  #main .fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
  }
  #main .delay-time02 {
    animation-delay: 0.7s;
  }
  @keyframes fadeUpAnime {
    from {
      opacity: 0;
      transform: translateY(100px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  #main-ph {
    text-align: center;
    margin-top: 0px;
  }
  #main-ph img {
    width: 100%;
    height: 300px;
  }
}
/* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 SECTION TITLE 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
/* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #item {
    width: 90%;
  }
  #item .item_list {
    width: 100%;
  }
  #item .item_list li {
    width: calc(25% - 20px);
    margin-top: 50px;
  }
  #item .item_list li img {
    width: 170px;
    height: 170px;
  }
  #item .item_list li div p {
    width: 100px;
    line-height: 0.4rem;
  }
  #item .item_list li div div {
    width: calc(100% - 50px);
    display: flex;
    align-items: flex-end;
  }
  #item .total_calc_box {
    width: 100%;
  }
  #item .total_calc_box p {
    margin-left: 10px;
    margin-top: 4px;
    font-weight: 100;
    font-size: 12.5px;
  }
}
/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  #main .pc-none1 {
    display: block;
    width: 200px;
    height: 200px;
    position: absolute;
    top: -20%;
    left: -20%;
  }
  #main .pc-none1 img {
    width: 200px;
    height: 200px;
  }
  #main .pc-none2 {
    display: block;
    width: 200px;
    height: 200px;
    position: absolute;
    bottom: -20%;
    right: -20%;
  }
  #main .pc-none2 img {
    width: 200px;
    height: 200px;
  }
  #item {
    width: 90%;
  }
  #item .item_list {
    width: 100%;
    height: auto;
    display: block;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  #item .item_list li {
    width: 100%;
    margin: 100px auto 0 auto;
    justify-content: center;
    text-align: center;
  }
  #item .item_list li img {
    width: 250px;
    height: 250px;
  }
  #item .item_list li h3 {
    margin: 10px 0 5px;
    font-size: 20px;
  }
  #item .item_list li p {
    margin: 5px 0;
  }
  #item .item_list li div {
    width: 90%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
  }
  #item .item_list li div p {
    margin-left: 80px;
    width: 200px;
    line-height: 0.4rem;
  }
  #item .item_list li div div {
    width: 100%;
    display: flex;
    align-items: flex-end;
  }
  #item .item_list li div div input[type=number] {
    width: 50px;
    background-color: #fff;
    color: #333;
    padding: 10px;
  }
  #item .item_list li div div input[type=number]::-webkit-inner-spin-button, #item .item_list li div div input[type=number]::-webkit-outer-spin-button {
    opacity: 1;
  }
  #item .item_list li div div span {
    margin-left: 5px;
  }
  #item .total_calc_box {
    width: 100%;
    display: block;
    justify-content: space-around;
    align-items: center;
    margin-top: 55px;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
  }
  #item .total_calc_box h4 {
    margin-right: 10px;
    margin-bottom: 10px;
  }
  #item .total_calc_box p {
    margin-left: 10px;
    font-weight: 100;
    font-size: 14px;
  }
  #item .total_calc_box p:first-child {
    margin-top: 20px;
  }
  #item .total_calc_box div:first-child {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: flex-end;
  }
  #item .total_calc_box div:first-child textarea {
    display: none;
  }
  #item .total_calc_box div:first-child input[type=text] {
    width: 200px;
    border: 1px solid #fff;
    color: #ffffff;
    padding: 10px;
  }
  #item .total_calc_box div:last-child {
    display: flex;
    flex-flow: column;
  }
  #item .notes {
    margin-top: 0px;
    display: block;
    width: 100%;
    justify-content: center;
  }
  #item .notes h5 {
    padding-top: 0px;
    padding-right: 30px;
    font-size: 20px;
  }
  #item .notes p {
    border: 1px solid #fff;
    padding: 30px;
    font-size: 14px;
    line-height: 25px;
    width: 100%;
  }
  #item .__order_form_area {
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  #item .__order_form_area h2 {
    width: 100%;
    position: relative;
    padding: 2rem 0;
  }
  #item .__order_form_area h2 p {
    width: auto;
  }
  #item .__order_form_area h2::after {
    content: "";
    position: absolute;
    top: 48%;
    width: calc(100% - 160px);
    border-top: 1px solid #ffffff;
    margin-left: 160px;
  }
  #item .__order_form_area .__order_form_box {
    width: 100%;
    margin: 0 auto;
  }
  #item .__order_form_area .__order_form_box ul {
    width: 100%;
    display: flex;
    flex-flow: column;
  }
  #item .__order_form_area .__order_form_box ul #message_card {
    display: none;
  }
  #item .__order_form_area .__order_form_box ul li {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-flow: column;
    margin: 1.2rem 0;
  }
  #item .__order_form_area .__order_form_box ul li .__order_title {
    max-width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
  }
  #item .__order_form_area .__order_form_box ul li .__order_title span {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 0.2rem;
    background-color: #663333;
    padding: 0.6rem 0.4rem;
    font-size: 0.8rem;
  }
  #item .__order_form_area .__order_form_box ul li .__order_title .nin {
    background-color: #777;
  }
  #item .__order_form_area .__order_form_box ul li .__order_title p {
    margin: 0 0 0 1rem;
  }
  #item .__order_form_area .__order_form_box ul li .__order_input {
    width: 100%;
  }
  #item .__order_form_area .__order_form_box ul li .__order_input input {
    padding: 0.9rem;
    background-color: #eaedf2;
    color: #333;
  }
  #item .__order_form_area .__order_form_box ul li .__order_input .total {
    background-color: #9c868e;
    font-weight: bold;
    font-size: 2em;
    color: #fff;
  }
  #item .__order_form_area .__order_form_box ul li .__order_input textarea {
    width: 100%;
    height: 216px;
    padding: 0.9rem;
    background-color: #eaedf2;
    color: #333;
  }
  #item .__order_form_area .__order_form_box .delivery_check_box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #item .__order_form_area .__order_form_box .delivery_check_box label {
    width: 100%;
    height: auto;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .box {
    text-align: left;
    color: #fff;
    margin-bottom: 80px;
  }
  .box h6 {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .box p {
    font-size: 14px;
    border: 1px solid #fff;
    padding: 40px;
    line-height: 30px;
    height: 200px;
    overflow-y: scroll;
  }
}
/* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/*===================================================================================================
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

〇 SECTION TITLE 〇

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
====================================================================================================*/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 1024px～1280px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  #tab-box {
    /*お知らせタブ*/
  }
  #tab-box .notice {
    width: 80%;
  }
  #tab-box .notice .area {
    padding: 50px 80px;
  }
}
/* 1024px～1280px responsive-close



/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □  

◆	Stylesheet: 768px～1023px(iPad縦からiPad横)までのモニタで適用	◆

start----------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #tab-box {
    /*お知らせタブ*/
  }
  #tab-box .notice {
    width: 100%;
  }
  #tab-box .notice .tab li a {
    padding: 15px 20px;
  }
  #tab-box .notice .area {
    padding: 50px 80px;
  }
}
/* 768px～1023px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************/
/**********************************************************************************
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 

◆	Stylesheet: 767pxまで(スマホ)のモニタで適用	◆

□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
start----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  #main .pc-none1 {
    display: block;
    width: 200px;
    height: 200px;
    position: absolute;
    top: -25%;
    left: -20%;
  }
  #main .pc-none1 img {
    width: 210px;
    height: 210px;
  }
  #main .pc-none2 {
    display: block;
    width: 200px;
    height: 200px;
    position: absolute;
    bottom: -25%;
    right: -23%;
  }
  #main .pc-none2 img {
    width: 200px;
    height: 200px;
  }
  #tab-box {
    /*お知らせタブ*/
  }
  #tab-box .notice {
    margin: 0 auto;
    width: 100%;
    padding-top: 0px;
    padding-bottom: 100px;
    /*tabの形状*/
    /*liにactiveクラスがついた時の形状*/
    /*エリアの表示非表示と形状*/
    /*areaにis-activeというクラスがついた時の形状*/
  }
  #tab-box .notice .tab {
    display: block;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    border-top: 0px solid #663333;
    position: relative;
  }
  #tab-box .notice .tab :hover {
    text-decoration: none;
  }
  #tab-box .notice .tab li {
    position: relative;
    z-index: 1;
    bottom: -2px;
    text-align: center;
    border-bottom: 2px solid #663333;
  }
  #tab-box .notice .tab li a {
    display: block;
    margin: 0 0px;
    padding: 15px 0px;
    color: #fff;
  }
  #tab-box .notice #tab1 .tab1-box ul,
  #tab-box .notice #tab1 .tab2-box ul,
  #tab-box .notice #tab1 .tab3-box ul,
  #tab-box .notice #tab1 .tab4-box ul,
  #tab-box .notice #tab2 .tab1-box ul,
  #tab-box .notice #tab2 .tab2-box ul,
  #tab-box .notice #tab2 .tab3-box ul,
  #tab-box .notice #tab2 .tab4-box ul,
  #tab-box .notice #tab3 .tab1-box ul,
  #tab-box .notice #tab3 .tab2-box ul,
  #tab-box .notice #tab3 .tab3-box ul,
  #tab-box .notice #tab3 .tab4-box ul,
  #tab-box .notice #tab4 .tab1-box ul,
  #tab-box .notice #tab4 .tab2-box ul,
  #tab-box .notice #tab4 .tab3-box ul,
  #tab-box .notice #tab4 .tab4-box ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  #tab-box .notice #tab1 .tab1-box ul li,
  #tab-box .notice #tab1 .tab2-box ul li,
  #tab-box .notice #tab1 .tab3-box ul li,
  #tab-box .notice #tab1 .tab4-box ul li,
  #tab-box .notice #tab2 .tab1-box ul li,
  #tab-box .notice #tab2 .tab2-box ul li,
  #tab-box .notice #tab2 .tab3-box ul li,
  #tab-box .notice #tab2 .tab4-box ul li,
  #tab-box .notice #tab3 .tab1-box ul li,
  #tab-box .notice #tab3 .tab2-box ul li,
  #tab-box .notice #tab3 .tab3-box ul li,
  #tab-box .notice #tab3 .tab4-box ul li,
  #tab-box .notice #tab4 .tab1-box ul li,
  #tab-box .notice #tab4 .tab2-box ul li,
  #tab-box .notice #tab4 .tab3-box ul li,
  #tab-box .notice #tab4 .tab4-box ul li {
    width: calc(50% - 17px);
    position: relative;
  }
  #tab-box .notice #tab1 .tab1-box ul li:nth-child(n+3),
  #tab-box .notice #tab1 .tab2-box ul li:nth-child(n+3),
  #tab-box .notice #tab1 .tab3-box ul li:nth-child(n+3),
  #tab-box .notice #tab1 .tab4-box ul li:nth-child(n+3),
  #tab-box .notice #tab2 .tab1-box ul li:nth-child(n+3),
  #tab-box .notice #tab2 .tab2-box ul li:nth-child(n+3),
  #tab-box .notice #tab2 .tab3-box ul li:nth-child(n+3),
  #tab-box .notice #tab2 .tab4-box ul li:nth-child(n+3),
  #tab-box .notice #tab3 .tab1-box ul li:nth-child(n+3),
  #tab-box .notice #tab3 .tab2-box ul li:nth-child(n+3),
  #tab-box .notice #tab3 .tab3-box ul li:nth-child(n+3),
  #tab-box .notice #tab3 .tab4-box ul li:nth-child(n+3),
  #tab-box .notice #tab4 .tab1-box ul li:nth-child(n+3),
  #tab-box .notice #tab4 .tab2-box ul li:nth-child(n+3),
  #tab-box .notice #tab4 .tab3-box ul li:nth-child(n+3),
  #tab-box .notice #tab4 .tab4-box ul li:nth-child(n+3) {
    margin-top: 20px;
  }
  #tab-box .notice #tab1 .tab1-box ul li:nth-child(2n),
  #tab-box .notice #tab1 .tab2-box ul li:nth-child(2n),
  #tab-box .notice #tab1 .tab3-box ul li:nth-child(2n),
  #tab-box .notice #tab1 .tab4-box ul li:nth-child(2n),
  #tab-box .notice #tab2 .tab1-box ul li:nth-child(2n),
  #tab-box .notice #tab2 .tab2-box ul li:nth-child(2n),
  #tab-box .notice #tab2 .tab3-box ul li:nth-child(2n),
  #tab-box .notice #tab2 .tab4-box ul li:nth-child(2n),
  #tab-box .notice #tab3 .tab1-box ul li:nth-child(2n),
  #tab-box .notice #tab3 .tab2-box ul li:nth-child(2n),
  #tab-box .notice #tab3 .tab3-box ul li:nth-child(2n),
  #tab-box .notice #tab3 .tab4-box ul li:nth-child(2n),
  #tab-box .notice #tab4 .tab1-box ul li:nth-child(2n),
  #tab-box .notice #tab4 .tab2-box ul li:nth-child(2n),
  #tab-box .notice #tab4 .tab3-box ul li:nth-child(2n),
  #tab-box .notice #tab4 .tab4-box ul li:nth-child(2n) {
    margin-left: 20px;
  }
  #tab-box .notice #tab1 .tab1-box ul li a,
  #tab-box .notice #tab1 .tab2-box ul li a,
  #tab-box .notice #tab1 .tab3-box ul li a,
  #tab-box .notice #tab1 .tab4-box ul li a,
  #tab-box .notice #tab2 .tab1-box ul li a,
  #tab-box .notice #tab2 .tab2-box ul li a,
  #tab-box .notice #tab2 .tab3-box ul li a,
  #tab-box .notice #tab2 .tab4-box ul li a,
  #tab-box .notice #tab3 .tab1-box ul li a,
  #tab-box .notice #tab3 .tab2-box ul li a,
  #tab-box .notice #tab3 .tab3-box ul li a,
  #tab-box .notice #tab3 .tab4-box ul li a,
  #tab-box .notice #tab4 .tab1-box ul li a,
  #tab-box .notice #tab4 .tab2-box ul li a,
  #tab-box .notice #tab4 .tab3-box ul li a,
  #tab-box .notice #tab4 .tab4-box ul li a {
    position: absolute;
    z-index: 1;
    top: 0;
  }
  #tab-box .notice #tab1 .tab1-box ul li div,
  #tab-box .notice #tab1 .tab2-box ul li div,
  #tab-box .notice #tab1 .tab3-box ul li div,
  #tab-box .notice #tab1 .tab4-box ul li div,
  #tab-box .notice #tab2 .tab1-box ul li div,
  #tab-box .notice #tab2 .tab2-box ul li div,
  #tab-box .notice #tab2 .tab3-box ul li div,
  #tab-box .notice #tab2 .tab4-box ul li div,
  #tab-box .notice #tab3 .tab1-box ul li div,
  #tab-box .notice #tab3 .tab2-box ul li div,
  #tab-box .notice #tab3 .tab3-box ul li div,
  #tab-box .notice #tab3 .tab4-box ul li div,
  #tab-box .notice #tab4 .tab1-box ul li div,
  #tab-box .notice #tab4 .tab2-box ul li div,
  #tab-box .notice #tab4 .tab3-box ul li div,
  #tab-box .notice #tab4 .tab4-box ul li div {
    aspect-ratio: 1/1;
    width: 100%;
    position: relative;
  }
  #tab-box .notice #tab1 .tab1-box ul li div img,
  #tab-box .notice #tab1 .tab2-box ul li div img,
  #tab-box .notice #tab1 .tab3-box ul li div img,
  #tab-box .notice #tab1 .tab4-box ul li div img,
  #tab-box .notice #tab2 .tab1-box ul li div img,
  #tab-box .notice #tab2 .tab2-box ul li div img,
  #tab-box .notice #tab2 .tab3-box ul li div img,
  #tab-box .notice #tab2 .tab4-box ul li div img,
  #tab-box .notice #tab3 .tab1-box ul li div img,
  #tab-box .notice #tab3 .tab2-box ul li div img,
  #tab-box .notice #tab3 .tab3-box ul li div img,
  #tab-box .notice #tab3 .tab4-box ul li div img,
  #tab-box .notice #tab4 .tab1-box ul li div img,
  #tab-box .notice #tab4 .tab2-box ul li div img,
  #tab-box .notice #tab4 .tab3-box ul li div img,
  #tab-box .notice #tab4 .tab4-box ul li div img {
    width: 100%;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #tab-box .notice .tab li.active a {
    background: #663333;
    color: #fff;
    border-bottom: 0px solid #663333;
  }
  #tab-box .notice .area {
    display: none;
    /*はじめは非表示*/
    opacity: 0;
    /*透過0*/
    padding: 50px 20px;
  }
  #tab-box .notice .area.is-active {
    display: block;
    /*表示*/
    animation-name: displayAnime;
    /*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
  }
  @keyframes displayAnime {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}
/* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************//*# sourceMappingURL=onlineshop.css.map */