@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;
}

#send {
  width: 850px;
  margin: 0 auto;
}
#send .send_box {
  text-align: center;
  height: auto;
  margin: 150px auto;
}
#send .send_box h2 {
  width: 100%;
  height: auto;
  font-size: 30px;
  text-align: center;
  margin: 0 0 10px 0;
  color: #fff;
  letter-spacing: 2px;
}
#send .send_box h5 {
  text-align: center;
  color: #fff;
  letter-spacing: 1px;
}
#send .send_box p {
  width: 100%;
  text-align: justify;
  color: #fff;
  font-size: 15px;
  line-height: 25px;
  padding-top: 50px;
}

@media screen and (max-width: 920px) {
  #send {
    width: 85%;
    margin: 0 auto;
  }
  #send .send_box {
    text-align: center;
    height: auto;
    margin: 150px auto;
    width: 100%;
  }
  #send .send_box h2 {
    width: 100%;
    height: auto;
    font-size: 30px;
    text-align: center;
    margin: 0 0 10px 0;
    color: #fff;
    letter-spacing: 2px;
  }
  #send .send_box h5 {
    text-align: center;
    color: #fff;
    letter-spacing: 1px;
  }
  #send .send_box p {
    width: 100%;
    text-align: justify;
    color: #fff;
    font-size: 15px;
    line-height: 25px;
    padding-top: 50px;
  }
}
#contact {
  width: 1150px;
  margin: 0 auto;
  padding: 100px 0;
}
#contact .conta-p {
  text-align: center;
  padding-bottom: 20px;
  font-size: 15px;
  color: #fff;
  line-height: 20px;
}
#contact .Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
  margin: 0 auto;
  justify-content: center;
}
#contact .Form p {
  color: #fff;
  font-weight: 100;
}
@media screen and (max-width: 480px) {
  #contact .Form {
    margin-top: 40px;
  }
}
#contact .Form-Item {
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
#contact .Form-Item label {
  padding-left: 30px;
}
@media screen and (max-width: 480px) {
  #contact .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}
#contact .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) {
  #contact .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}
#contact .Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 480px) {
  #contact .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
#contact .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;
}
#contact .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) {
  #contact .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}
#contact .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;
}
@media screen and (max-width: 480px) {
  #contact .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
#contact .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) {
  #contact .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}
#contact .Form-Btn {
  border: 1px solid #fff;
  text-align: center;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 250px;
  height: 50px;
  display: block;
  background: var(--maincolor);
  color: #fff;
  font-size: 15px;
  transition: background-color 0.5s;
}
#contact .Form-Btn:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 480px) {
  #contact .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}

.box {
  text-align: left;
  color: #fff;
}
.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;
}

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

〇 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) {
  #contact {
    width: 90%;
  }
  #contact .conta-p {
    text-align: center;
  }
}
/* 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: -25%;
  }
  #main .pc-none1 img {
    width: 170px;
    height: 170px;
  }
  #main .pc-none2 {
    display: block;
    width: 200px;
    height: 200px;
    position: absolute;
    bottom: -45%;
    right: -35%;
  }
  #main .pc-none2 img {
    width: 160px;
    height: 160px;
  }
  #contact {
    width: 90%;
    margin: 0 auto;
  }
  #contact .conta-p {
    text-align: center;
  }
  #contact .Form {
    margin-top: 40px;
  }
  #contact .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
  }
  #contact .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
  #contact .Form-Item-Label.isMsg {
    margin-top: 0;
  }
  #contact .Form-Item-Label-Required {
    border-radius: 0px;
    padding-top: 6px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
  #contact .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
  #contact .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
  #contact .Form-Btn {
    width: 260px;
  }
  .box {
    margin-top: 50px;
  }
}
/* 767px responsive-closed */
/*end ----------------------------------------------------------------------------
□ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ □ 
**********************************************************************************//*# sourceMappingURL=contact.css.map */