@charset "UTF-8";
/* CSS Document */
.wrapper {
  overflow-x: hidden;
}
/*--------------------------------

ローディング

--------------------------------*/
#loading {
  background: #000;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  overflow: hidden;
}
.loading-image01 img, .loading-image02 img, .loading-image03 img {
  height: 70px;
}
.loading-image04 img {
  height: 30px;
}
.loading-image01, .loading-image02, .loading-image03, .loading-image04 {
  left: 50%;
  transform: translateX(-50%);
}
.loading-image01 {
  position: absolute;
  top: calc(50% - 180px);
}
.loading-image02 {
  position: absolute;
  top: calc(50% - 90px);
}
.loading-image03 {
  position: absolute;
  top: calc(50% + 0px);
}
.loading-image04 {
  position: absolute;
  top: calc(50% + 120px);
}
/* 4-1 ふわっ（下から） */
.openingfadeUp {
  animation-name: openingfadeUpAnime;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes openingfadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.openingfadeUp.delaytime05 {
  animation-delay: 0.5s;
}
.openingfadeUp.delaytime15 {
  animation-delay: 1.5s;
}
.openingfadeUp.delaytime25 {
  animation-delay: 2.5s;
}
.openingfadeUp.delaytime35 {
  animation-delay: 4.0s;
}
/*--------------------------------
スマホ／ローディング
--------------------------------*/
@media only screen and (max-width : 768px) {
  .loading-image01 img, .loading-image02 img, .loading-image03 img {
    height: 50px;
  }
  .loading-image04 img {
    height: 20px;
  }
  .loading-image01 {
    position: absolute;
    top: calc(50% - 140px);
  }
  .loading-image02 {
    position: absolute;
    top: calc(50% - 70px);
  }
  .loading-image03 {
    position: absolute;
    top: calc(50% + 0px);
  }
  .loading-image04 {
    position: absolute;
    top: calc(50% + 100px);
  }
}
/*--------------------------------

ページトップボタン

--------------------------------*/
#js-pagetop {
  position: fixed;
  width: 50px;
  height: 50px;
  border-radius: 2px;
  background: #000;
  color: #fff;
  bottom: 50px;
  right: 50px;
  cursor: pointer;
  z-index: 999;
}
#js-pagetop::after {
  content: "";
  background-color: #fff;
  height: 1px;
  width: 14px;
  position: absolute;
  top: 50%;
  left: 23px;
  transform: translateX(-50%);
  transform: rotate(45deg);
}
#js-pagetop::before {
  content: "";
  background-color: #fff;
  height: 1px;
  width: 14px;
  position: absolute;
  top: 50%;
  right: 23px;
  transform: translateX(-50%);
  transform: rotate(-45deg);
}
/*--------------------------------
スマホ／ページトップボタン
--------------------------------*/
@media only screen and (max-width : 768px) {
  #js-pagetop {
    bottom: 10px;
    right: 10px;
  }
}
/*--------------------------------

リンク設定

--------------------------------*/
a {
  text-decoration: none;
  color: #003366;
  transition: 0.3s ease-in-out;
    
}
a:hover {
  opacity: 0.6;
}
/*--------------------------------

見出し設定

--------------------------------*/
main h1 {
  font-size: 5em;
  line-height: 1.6em;
}
main h2 {
  font-size: 1.4em;
  line-height: 1.6em;
  margin-bottom: 30px;
}
main h3 {
  font-size: 2.3em;
  line-height: 1.6em;
  letter-spacing: 0.1em;
}
main h4 {
  font-size: 1.0em;
  line-height: 1.4em;
}
main h5 {
  font-size: 1.0em;
  line-height: 1.6em;
}
main h6 {
  font-size: 0.8em;
  line-height: 1.6em;
}
/*--------------------------------
スマホ／見出し設定
--------------------------------*/
@media only screen and (max-width : 768px) {
  main h2 {
    font-size: 1.2em;
  }
  main h3 {
    font-size: 2.0em;
  }
}
/*--------------------------------

ボディー 

--------------------------------*/
body {
  font-family: 'YakuHanJP', 'Roboto Condensed', 'Noto Sans JP', sans-serif;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 100%;
} /*--------------------------------
スマホ／ボディー 
--------------------------------*/
@media only screen and (max-width : 768px) {}
/*--------------------------------

ヘッダー

--------------------------------*/
/*--------------------------------

メイン

--------------------------------*/
main {
  font-weight: 300;
  font-size: 90%;
  line-height: 2.4em;
  letter-spacing: 0.15em;
}
/*--------------------------------
スマホ／メイン
--------------------------------*/
@media only screen and (max-width : 768px) {}
/*--------------------------------

フッター

--------------------------------*/
footer {
  background: #000;
  text-align: center;
  padding: 50px 0;
}
footer .flexWrap {
  margin: 0 auto 50px;
  justify-content: center;
}
footer .flexWrap .flexBox {
  padding: 0 20px;
}
footer .flexWrap .flexBox img {
  height: 80px;
}
footer .copyright {
  width: 90%;
  font-size: 90%;
  color: #aa2634;
  border-top: solid #aa2634 1px;
  padding: 50px 0 0;
  margin: 0 auto;
}
/*--------------------------------
スマホ／フッター
--------------------------------*/
@media only screen and (max-width : 768px) {}
/*--------------------------------

レイアウト

--------------------------------*/
.flexWrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
footer .flexWrap .flexBox img {
  height: 40px;
}
footer .flexWrap .flexBox {
  padding: 0 10px;
}
.flexBox:last-child {
  margin-right: 0px;
}
.spnone {
  display: block;
}
/*--------------------------------
スマホ／レウアウト
--------------------------------*/
@media only screen and (max-width : 768px) {
  .spnone {
    display: none;
  }
}
/*--------------------------------

トップページ

--------------------------------*/
/*ヒーローエリア*/
.hero {
  width: 100%;
  height: 90vh;
  position: relative;
  z-index: -100;
  background: #000;
}
.hero img {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 50%;
}
.hero h1 {
  position: fixed;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1em;
  color: #fff;
}
.mainImg {
  width: 100%;
  height: 100vh;
  background-image: url("../img/main.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
/*about us*/
.aboutus {
  background: #aa2634;
  text-align: center;
  color: #fff;
  padding: 160px 0;
  line-height: 2.3em;
}
.aboutus h3 {
  margin-bottom: 60px;
  position: relative;
}
.aboutus h3::after {
  content: "";
  height: 1px;
  width: 60px;
  background: #fff;
  position: absolute;
  left: 50%;
  bottom: -0.5em;
  transform: translateX(-50%);
}
.aboutus .titleWrap {}
/*--------------------------------
スマホ／トップページ
--------------------------------*/
@media only screen and (max-width : 768px) {
  /*ヒーローエリア*/
  .hero {
    width: 100%;
    height: 70vh;
    position: relative;
    z-index: -100;
    background: #000;
  }
  .hero img {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 50%;
  }
  .hero h1 {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1em;
    color: #fff;
  }
  .mainImg {
    width: 100%;
    height: 50vh;
    background-image: url("../img/main.jpg");
    background-position: center;
    background-size: cover;
    /*  background-repeat: no-repeat;*/
  }
  /*about us*/
  .aboutus {
    /*  background: #aa2634;*/
    text-align: left;
    /*  color: #fff;*/
    padding: 60px 10%;
    /*  line-height: 2.3em;*/
  }
  .aboutus h3 {
    text-align: center;
    margin-bottom: 40px;
    /*  position: relative;*/
  }
}
/*--------------------------------------
----------------------------------------
feature
----------------------------------------
--------------------------------------*/
.feature {
  background: #000;
  color: #fff;
}
.feature .flexWrap {
  position: relative;
}
.feature .flexWrap .contentBox {
  width: 50%;
}
.feature .flexWrap .imgWrap {
  width: 50%;
  order: 1;
}
.feature .contentBox h3 {
  font-size: 1.2em;
  margin-bottom: 1em;
}
.feature .flexWrap .contentBox .txtBox {
  width: calc(100% - 200px);
}
/*--------------------------------
スマホ／feature
--------------------------------*/
@media only screen and (max-width : 768px) {
  .feature .flexWrap {
    display: block;
    position: static;
  }
  .feature .flexWrap .contentBox {
    width: 90%;
    margin: 0px auto;
    padding: 30px 0;
  }
  .feature .flexWrap .imgWrap {
    width: 100%;
    height: 300px;
  }
  .feature .flexWrap .contentBox .txtBox {
    width: calc(100% - 0px);
  }
}
/*--------------------------------------
feat_products
--------------------------------------*/
.feature .feat_products {
  height: 80vh;
  position: relative;
  text-align: right;
}
.feature .flexWrap.feat_products .contentBox .txtBox {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  z-index: 1;
  width: calc(50% - 150px);
}
.feature .feat_products.flexWrap .imgWrap .bgimg {
  background: url("../img/feature01.jpg");
  height: 100%;
  background-position: center;
  background-size: 120%;
  background-repeat: no-repeat;
}
.feature .flexWrap.feat_products .contentBox .txtBox::after {
  content: "";
  width: 50px;
  height: 110px;
  background-color: #aa2634;
  top: 0px;
  right: -100px;
  position: absolute;
}
/*--------------------------------
スマホ／feature_products
--------------------------------*/
@media only screen and (max-width : 768px) {
  .feature .feat_products {
    height: auto;
    position: static;
    text-align: left;
  }
  .feature .flexWrap.feat_products .contentBox .txtBox {
    position: static;
    transform: translateY(0%);
    width: calc(100% - 0px);
  }
  .feature .flexWrap.feat_products .contentBox .txtBox::after {
    content: "";
    width: 50px;
    height: 110px;
    top: -30px;
    left: -10%;
    position: absolute;
    z-index: -2;
  }
}
/*--------------------------------------
feat_taste
--------------------------------------*/
.feature .feat_taste {
  height: 80vh;
  position: relative;
}
.feature .feat_taste .contentBox .txtBox {
  position: absolute;
  top: 50%;
  left: calc(50% + 100px);
  transform: translateY(-50%);
  z-index: 1;
  width: calc(50% - 150px);
}
.feature .feat_taste .imgWrap {
  order: -1;
}
.feature .feat_taste .imgWrap .bgimg {
  background: url("../img/feature02.jpg");
  height: 100%;
  background-position: center;
  background-size: cover;
}
.feature .flexWrap.feat_taste .contentBox .txtBox::after {
  content: "";
  width: 50px;
  height: 110px;
  background-color: #aa2634;
  top: 0px;
  left: -100px;
  position: absolute;
}
/*--------------------------------
スマホ／feature_taste
--------------------------------*/
@media only screen and (max-width : 768px) {
  .feature .feat_taste {
    height: auto;
    position: static;
  }
  .feature .feat_taste .contentBox .txtBox {
    position: static;
    /*
  top: 50%;
  left: calc(50% + 100px);
*/
    transform: translateY(0%);
    /*  z-index: 1;*/
    width: calc(100% - 0px);
  }
  .feature .flexWrap.feat_taste .contentBox .txtBox::after {
    content: "";
    width: 50px;
    height: 110px;
    top: -30px;
    left: -10%;
    position: absolute;
    z-index: -2;
  }
}
/*--------------------------------------
feat_style
--------------------------------------*/
.feature .feat_style {
  height: 80vh;
  position: relative;
  text-align: right;
}
.feature .flexWrap.feat_style .contentBox .txtBox {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  z-index: 1;
  width: calc(50% - 150px);
}
.feature .feat_style.flexWrap .imgWrap .bgimg {
  background: url("../img/feature03.jpg");
  height: 100%;
  background-position: center;
  background-size: 120%;
}
.feature .flexWrap.feat_style .contentBox .txtBox::after {
  content: "";
  width: 50px;
  height: 110px;
  background-color: #aa2634;
  top: 0px;
  right: -100px;
  position: absolute;
}
/*--------------------------------
スマホ／feature_style
--------------------------------*/
@media only screen and (max-width : 768px) {
  .feature .feat_style {
    height: auto;
    position: static;
    text-align: left;
  }
  .feature .flexWrap.feat_style .contentBox .txtBox {
    position: static;
    transform: translateY(0%);
    /*  z-index: 1;*/
    width: calc(100% - 0px);
  }
  .feature .flexWrap.feat_style .contentBox .txtBox::after {
    content: "";
    width: 50px;
    height: 110px;
    top: -30px;
    left: -10%;
    position: absolute;
    z-index: -2;
  }
}
/*--------------------------------------
feat_design
--------------------------------------*/
.feature .feat_design {
  height: 80vh;
  position: relative;
}
.feature .feat_design .contentBox .txtBox {
  position: absolute;
  top: 50%;
  left: calc(50% + 100px);
  transform: translateY(-50%);
  z-index: 1;
  width: calc(50% - 150px);
  /*  order: 1;*/
}
.feature .feat_design .imgWrap {
  order: -1;
}
.feature .feat_design .imgWrap .bgimg {
  background: url("../img/feature04.jpg");
  height: 100%;
  background-position: center;
  background-size: cover;
}
.feature .flexWrap.feat_design .contentBox .txtBox::after {
  content: "";
  width: 50px;
  height: 110px;
  background-color: #aa2634;
  top: 0px;
  left: -100px;
  position: absolute;
}
/*--------------------------------
スマホ／feature_design
--------------------------------*/
@media only screen and (max-width : 768px) {
  .feature .feat_design {
    height: auto;
    position: static;
  }
  .feature .feat_design .contentBox .txtBox {
    position: static;
    transform: translateY(0%);
    width: calc(100% - 0px);
  }
  .feature .flexWrap.feat_design .contentBox .txtBox::after {
    content: "";
    width: 50px;
    height: 110px;
    top: -30px;
    left: -10%;
    position: absolute;
    z-index: -2;
  }
}
/*--------------------------------------
----------------------------------------
menu
----------------------------------------
--------------------------------------*/
.menu {
  position: relative;
}
.menu .topimg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.menu .topimg img {
  height: 480px;
}
.menu .title {
  background: #aa2634;
  color: #fff;
  width: 100%;
  text-align: center;
  height: 350px;
}
.menu .title h3 {
  font-size: 17em;
  letter-spacing: 0.2em;
  line-height: 1;
}
.menu .title h3 span {
  padding: 0 170px;
}
.menu .txt {
  font-weight: bold;
}
.menu .txt .price {
  font-weight: 100;
  display: block;
}
/*スリックスライダー*/
.menu .double-slider {
  padding: 140px 0;
}
.menu .double-slider .main-slider li {
  background: url("../img/menu_bg.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 210px;
  margin-top: 20px;
}
.menu .double-slider ul.main-slider img {
  height: 210px;
  margin: 0 auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.menu .double-slider ul.main-slider img.pudding {
  top: 40%;
  left: 50%;
  transform: translateY(-50%, -40%);
}
.menu .double-slider p {
  text-align: center;
  line-height: 1.6em;
  margin-top: 30px;
}
.menu .double-slider p a {
  background: #000;
  color: #fff;
  padding: 5px 15px 7px;
  display: inline-block;
  margin-top: 10px;
  border-radius: 2px;
}
.menu .double-slider p a span {
  color: #fff;
  position: relative;
  padding-right: 20px;
}
.menu .double-slider p a span::before {
  content: "";
  background-color: #aa2634;
  height: 1px;
  width: 7px;
  position: absolute;
  top: calc(50% + 4px);
  left: 45px;
  transform: translateY(-50%);
  transform: rotate(-45deg);
}
.menu .double-slider p a span::after {
  content: "";
  background-color: #aa2634;
  height: 1px;
  width: 7px;
  position: absolute;
  top: calc(50% - 1px);
  left: 45px;
  transform: translateY(-50%);
  transform: rotate(45deg);
}
.menu .double-slider .main-slider li {
  background: url("../img/menu_bg.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 210px;
  margin-top: 20px;
}
.menu .double-slider ul .slick-dots li {
  background: none;
  height: auto;
  margin-top: 0px;
}
/*モーダル表示用*/
.modal {
  display: none;
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 900;
}
/* モーダル背景 */
.modal-bg {
  position: absolute;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}
/* モーダル本体 */
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: scroll; /* はみ出た部分はスクロールさせる */
  height: 60%; /* これが無いと「overflow:scroll」が利かない */
  width: 60%; /* これが無いと「overflow:scroll」が利かない */
  background: #fff;
  padding: 80px;
}
.modal-content .flexWrap {
  /*  width: 100%;*/
  flex-wrap: wrap;
  justify-content: flex-start;
}
.modal-content .flexWrap .flexBox {
  margin-right: 60px;
  width: calc(33.33% - 40px);
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  font-size: 90%;
  line-height: 1.8em;
}
.modal-content .flexWrap .flexBox:nth-child(3) {
  margin-right: 0px;
}
.modal-content .flexWrap .flexBox h4 {
  font-size: 1.1em;
  margin: 30px 0 10px;
}
.modal-content .flexWrap .flexBox img {
    width: 200px;
  height: auto;
  margin: 0 auto;
  display: block;
}
.modal-content .flexWrap .flexBox dl {
  /*  border-top: 1px solid #000;*/
  padding-top: 10px;
  /*  margin-top: 20px;*/
  margin-top: auto;
}
.modal-content .flexWrap .flexBox dt {
  float: left;
  background: #000;
  color: #fff;
  padding: 2px;
  font-size: 0.8em;
  width: 90px;
  text-align: center;
  margin-bottom: 3px;
}
.modal-content .flexWrap .flexBox dd {
  margin-left: 120px;
  padding: 2px;
  margin-bottom: 3px;
}
.modal-content .flexWrap .flexBox p span {
  font-size: 70%;
}
.closeWrap {
  /*    position: relative;*/
}
.modal-content .price {
  padding: 20px 0;
  border-top: 1px solid #000;
  font-size: 1.1em;
  margin-top: 30px;
}
.modal-content .price.source {
  margin-top: 1.1em;
}
.price span {
  background: #aa2634;
  padding: 1px 5px 2px;
  color: #fff;
  margin-right: 1em;
  font-size: 0.8em;
}
.closeWrap {
  /*    position: relative;*/
}
.closeWrap .js-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  display: block;
}
/* モーダルウィンドウ表示中に記事本体を固定 */
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}
/*--------------------------------
スマホ／menu
--------------------------------*/
@media only screen and (max-width : 768px) {
  .menu .double-slider .main-slider li {
    background: url("../img/menu_bg.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 210px;
    margin-top: 20px;
  }
  .menu {
    /*  position: relative;*/
  }
  .menu .topimg {}
  .menu .topimg img {
    height: 140px;
  }
  .menu .title {
    height: 120px;
  }
  .menu .title h3 {
    font-size: 3.6em;
    line-height: 2;
  }
  .menu .title h3 span {
    padding: 0 50px;
  }
  /*スリックスライダー*/
  .menu .double-slider {
    padding: 70px 0;
  }
  .menu .double-slider .main-slider li {
    background: url("../img/menu_bg.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 110px;
    margin-top: 20px;
  }
  .menu .double-slider .main-slider .slick-list li {}
  .menu .double-slider ul.main-slider img {
    height: 110px;
  }
  .menu .double-slider p {
    /*  text-align: center;*/
    font-size: 90%;
    margin-top: 20px;
  }
  .menu .double-slider p a {
    font-size: 90%;
  }
  .menu .double-slider p a span {
    padding-right: 8px;
  }
  .menu .double-slider p a span::before {
    top: calc(50% + 3px);
    left: 37px;
  }
  .menu .double-slider p a span::after {
    top: calc(50% - 0px);
    left: 37px;
  }
  /*モーダル表示用*/
  .modal {}
  /* モーダル背景 */
  .modal-bg {}
  /* モーダル本体 */
  .modal-content {
    padding: 40px;
  }
  .modal-content .flexWrap {
    display: block;
  }
  .modal-content .flexWrap .flexBox {
    margin-right: 0px;
    width: calc(100% - 0px);
    margin-bottom: 40px;
  }
  .modal-content .flexWrap .flexBox:nth-child(3n) {
    margin-right: 0px;
  }
  .modal-content .flexWrap .flexBox:nth-child(2n) {
    margin-right: 0px;
  }
  .modal-content .flexWrap .flexBox h4 {
    font-size: 1.0em;
    margin: 20px 0 10px;
    text-align: center;
  }
  .modal-content .flexWrap .flexBox img {
    height: 130px;
  }
  .modal-content .flexWrap .flexBox dl {}
  .modal-content .flexWrap .flexBox dt {
    width: 80px;
  }
  .modal-content .flexWrap .flexBox dd {
    margin-left: 100px;
  }
  .modal-content .flexWrap .flexBox p span {}
  .closeWrap {}
  .modal-content .price {
    font-size: 0.9em;
  }
  .price span {
    font-size: 0.7em;
  }
}
/*--------------------------------------
----------------------------------------
topics
----------------------------------------
--------------------------------------*/
.topics {
  background: #aa2634;
  padding: 100px 0;
  color: #fff;
}
.topics .flexWrap {
  width: 70%;
  margin: 0 auto;
}
.topics .flexWrap .flexBox {
  margin-right: 60px;
  width: calc(33.33% - 40px);
}
.topics .flexWrap .flexBox:last-child {
  margin-right: 0px;
}
.topics .flexWrap .flexBox img {
  width: 100%;
  margin-bottom: 30px;
}
.topics h4 {
  font-size: 1.0em;
  line-height: 1.4em;
  margin-bottom: 40px;
  position: relative;
  text-align: center
}
.topics h4::after {
  content: "";
  height: 1px;
  width: 60px;
  background: #fff;
  position: absolute;
  left: 50%;
  bottom: -1em;
  transform: translateX(-50%);
}
/*--------------------------------
スマホ／topics
--------------------------------*/
@media only screen and (max-width : 768px) {
  .topics {
    padding: 50px 0;
  }
  .topics .flexWrap {
    width: 70%;
    display: block;
  }
  .topics .flexWrap .flexBox {
    margin-right: 0px;
    width: calc(100% - 0px);
    margin-bottom: 40px;
  }
  .topics .flexWrap .flexBox:last-child {}
  .topics .flexWrap .flexBox img {
    margin-bottom: 20px;
  }
  .topics h4 {}
  .topics h4::after {}
}
/*--------------------------------------
----------------------------------------
parallax
----------------------------------------
--------------------------------------*/
.parallax {
  background-image: url("../img/parallaxBg.jpg");
  padding: 40vh 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
/*--------------------------------
スマホ／parallax
--------------------------------*/
@media only screen and (max-width : 768px) {
  .parallax {
    background-position: center right;
    background-attachment: scroll;
  }
}
/*--------------------------------------
----------------------------------------
info
----------------------------------------
--------------------------------------*/
.info {
  background: #fff;
  padding: 100px 0;
  line-height: 1.6em;
}
.info .flexWrap {
  width: 70%;
  margin: 0 auto;
}
.info .flexWrap .flexBox {
  padding: 0 50px;
  width: 50%;
}
.info .flexWrap .flexBox div {
  margin-bottom: 60px;
}
.info .flexWrap .flexBox img {
  width: 100%;
}
.info .flexWrap .flexBox iframe {
  width: 100%;
  height: 280px;
}
.info .flexWrap {
  width: 70%;
  margin: 0 auto;
}
.info .flexWrap .sns {
  /*background: #EEE;*/
  /*    padding: 0px 0;*/
  text-align: center;
}
.info .flexWrap .sns .flexWrap {
  width: 55%;
  margin: 30px auto 0;
}
.info .flexWrap .sns .flexWrap .flexBox {
  padding: 0px; /*    これ入れないと上のpadding　を継承してしまう*/
}
.info .flexWrap .sns .fab {
  font-size: 2em;
}
.info .flexWrap .sns a .fab.fa-twitter-square {
  color: #1DA1F2;
}
.info .flexWrap .sns a .fab.fa-facebook-square {
  color: #1877f2;
}
.info .flexWrap .sns img {
  width: 2em;
}
.info h3 {
  font-size: 1.8em;
  line-height: 1em;
  text-align: center;
  border: 2px solid #aa2634;
  padding: 10px;
  margin-bottom: 20px;
  color: #aa2634;
}
.info h4 {
  letter-spacing: 0.4em;
  color: #aa2634;
  position: relative;
}
.info h4::before {
  content: "";
  background-color: #aa2634;
  height: 1px;
  width: 60px;
  position: absolute;
  top: 50%;
  left: 0px;
}
.info h4::after {
  content: "";
  background-color: #aa2634;
  height: 1px;
  width: 60px;
  position: absolute;
  top: 50%;
  right: 0px;
}
.info p {
  margin-bottom: 20px;
  text-align: center;
  color: #aa2634;
}
.info .flexWrap .flexBox .contact a, .info .flexWrap .flexBox .media a, .info .flexWrap .flexBox .recruit a {
  text-align: center;
  background: #aa2634;
  border: 2px solid #aa2634;
  border-radius: 5px;
  padding: 5px 0;
  color: #fff;
  width: 80%;
  display: block;
  font-size: 0.8em;
  position: relative;
  margin: 0 auto;
}
.info .flexWrap .flexBox .contact a::before, .info .flexWrap .flexBox .media a::before, .info .flexWrap .flexBox .recruit a::before {
  content: "";
  background-color: #fff;
  height: 1px;
  width: 30px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
.info .flexWrap .flexBox .contact a::after, .info .flexWrap .flexBox .media a::after, .info .flexWrap .flexBox .recruit a::after {
  content: "";
  background-color: #fff;
  height: 1px;
  width: 10px;
  position: absolute;
  top: calc(50% - 4px);
  left: 31px;
  transform: translateY(-50%);
  transform: rotate(45deg);
}
.info .flexWrap .payment img {
  width: 80%;
  display: block;
  margin: 0 auto;
}
.info .shop p {
  text-align: left;
}
/*--------------------------------
スマホ／info
--------------------------------*/
@media only screen and (max-width : 768px) {
  .info {
    padding: 50px 0;
  }
  .info .flexWrap {
    width: 90%;
    display: block;
  }
  .info .flexWrap .flexBox {
    padding: 0 0px;
    width: 100%;
  }
  .info .flexWrap .flexBox div {
    margin-bottom: 20px;
  }
  .info .flexWrap .flexBox img {}
  .info .flexWrap .flexBox iframe {}
  .info .flexWrap .sns {}
  .info .flexWrap .sns .flexWrap {
    display: flex;
  }
  .info .flexWrap .sns .flexWrap .flexBox {}
  .info .flexWrap .sns .fab {
    font-size: 3em;
  }
  .info h3 {
    font-size: 1.2em;
  }
  .info h4 {}
  .info h4::before {}
  .info h4::after {}
  .info p {}
  .info .flexWrap .flexBox .contact a, .info .flexWrap .flexBox .media a {}
  .info .flexWrap .flexBox .contact a::before, .info .flexWrap .flexBox .media a::before {}
  .info .flexWrap .flexBox .contact a::after, .info .flexWrap .flexBox .media a::after {}
  .info .shop p {}
}
