@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: 55%;
  padding-top: 150px;
  padding-bottom: 300px;
  /*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 #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: space-between;
  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(33.3333333333% - 17px);
  position: relative;
}
#tab-box .notice #tab1 .tab1-box ul li:nth-child(n+4),
#tab-box .notice #tab1 .tab2-box ul li:nth-child(n+4),
#tab-box .notice #tab1 .tab3-box ul li:nth-child(n+4),
#tab-box .notice #tab1 .tab4-box ul li:nth-child(n+4),
#tab-box .notice #tab2 .tab1-box ul li:nth-child(n+4),
#tab-box .notice #tab2 .tab2-box ul li:nth-child(n+4),
#tab-box .notice #tab2 .tab3-box ul li:nth-child(n+4),
#tab-box .notice #tab2 .tab4-box ul li:nth-child(n+4),
#tab-box .notice #tab3 .tab1-box ul li:nth-child(n+4),
#tab-box .notice #tab3 .tab2-box ul li:nth-child(n+4),
#tab-box .notice #tab3 .tab3-box ul li:nth-child(n+4),
#tab-box .notice #tab3 .tab4-box ul li:nth-child(n+4),
#tab-box .notice #tab4 .tab1-box ul li:nth-child(n+4),
#tab-box .notice #tab4 .tab2-box ul li:nth-child(n+4),
#tab-box .notice #tab4 .tab3-box ul li:nth-child(n+4),
#tab-box .notice #tab4 .tab4-box ul li:nth-child(n+4) {
  margin-top: 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;
  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 #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 {
  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 #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: 2px solid #663333;
}
#tab-box .notice .area {
  display: none;
  /*はじめは非表示*/
  opacity: 0;
  /*透過0*/
  padding: 50px 9%;
}
#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;
  }
}

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

〇 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----------------------------------------------------------------------------*/
@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=gallery.css.map */