@charset "utf-8";

/* ========================================================================
   Component: Base
 ========================================================================== */
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
img {
  max-width: 100%;
}
* {
  box-sizing: border-box;
}
ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
li {
  list-style-type: none;
}
/* Links
 ========================================================================== */
a {
  color: inherit;
  text-decoration: none;
}
a[target=_blank]:after {
  font-family: "Hobonichi-Icons";
  content: "\e914";
  font-weight: normal;
  font-size: 1em; /* フォントサイズちょっと小さく */
  position: static; /* ちょっと上付きにするための指定 */
  top: -.2em; /* ちょっと上付きにする */
}
.pc {
  display: block;
}
.tb {
  display: block;
}
.sp {
  display: none;
}
.brpc {
  display: block;
}
.brsp {
  display: none;
}
.brpcsp {
  display: block;
}
.mt10 {
  margin-top: 10px;
}
/*header nav
 * --------------------------------------------------------*/
header {
  max-width: 100%;
  width: 100%;
}
#top-head {
  position: fixed;
  width: 100%;
  margin: 0 auto;
  padding: 35px 0 0;
  line-height: 1;
  z-index: 10;
}
#top-head {
  font-size: 0.8125rem;
  text-decoration: none;
}
#top-head a {
  font-size: 0.8125rem;
  text-decoration: none;
  vertical-align: -webkit-baseline-middle;
}
#top-head .inner {
  position: relative;
  padding-bottom: 10px;
}
#top-head .logo {
  max-width: 171px;
  width: 100%;
  margin: auto;
  background-image: url(../img/common/logo.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 50px;
}
#top-head .logoWrap {
  width: 20%;
  margin: auto;
}
#top-head .inner figcaption {
  padding-top: 10px;
  line-height: 1.6;
}
.linenupWrap .list-left li.ttl,
.linenupWrap .list-right li.ttl,
#top-head .inner figcaption,
#top-head a {
  font-family: 'Hiragino Mincho W3 JIS2004', "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.sabnavPc {
  color: #FFF;
  width: 30%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  left: 70%;
  top: 0;
}
.sabnavPc li:last-child {
  width: 50px;
}
.sabnavPc a {
  color: #FFF;
}
.cartIcon a {
  background-image: url(../img/common/cartlink.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: 30px;
  height: 32px;
}
.cartIcon.sp {
  position: absolute;
  top: 0;
  right: 20px;
}
.cartIcon span {
  visibility: hidden;
}
.cartIcon:before {
/*  content: "";
  display: inline-block;
  background-image: url(../img/common/cartlink.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 30px;
  height: 32px;*/
}
/* transition */
#top-head,
#top-head .logo {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
/* Fixed */
#top-head.fixed {
  padding-top: 15px;
  background: #FFF;
}
#top-head.fixed .logo {
  color: #666;
  background-image: url(../img/common/logo-g.svg);
}
#top-head.fixed:after {
  width: 100%;
  margin-top: 20px;
}
#top-head.fixed .burger > div {
  background-color: gray;
}
#top-head.fixed,
#top-head.fixed a{
  color: #000;
}
#top-head.fixed .sabnavPc {
  width: 30%;
}
#top-head.fixed .cartIcon a {
  display: inline-block;
  background-image: url(../img/common/cart.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 30px;
  height: 32px;
}
#top-head.fixed .cartIcon:before {
  background-image:none;
}
/* Hamburger */
header .burger {
  width: 30px;
  height: 60px;
  cursor: pointer;
  position: absolute;
  left: 100px;
  top: 0;
  z-index: 1;
}
header .burger > div {
  width: 100%;
  height: 3px;
  background-color: #FFF;
  border-radius: 6px;
  position: absolute;
}
.normal:first-child {
  top: 0;
  left: 0;
  transition: 0.2s;
}
.normal:nth-child(2) {
  top: 9px;
  left: 0;
}
.normal:last-child {
  top: 18px;
  left: 0;
  transition: 0.2s;
}
.burger:hover .normal:first-child {
  top: -3px;
}
.burger:hover .normal:last-child {
  top: 21px;
}
.topline {
  animation: top 0.5s;
  transform: rotate(45deg);
  top: 10px;
}
.bottomline {
  animation: bottom 0.5s;
  transform: rotate(-45deg);
  top: 10px;
}
@keyframes top {
  0% {
    transform: rotate(0deg);
  }
  0% {
    top: 0;
  }
  100% {
    transform: rotate(45deg);
  }
  100% {
    top: 10px;
  }
}
@keyframes bottom {
  0% {
    transform: rotate(0deg);
  }
  0% {
    top: 21px;
  }
  100% {
    transform: rotate(-45deg);
  }
  100% {
    top: 10px;
  }
}
.nav {
  width: 100%;
  height: 100%;
  background-color: #EEE;
  color: #000;
  display: none;
  /*opacity: 0.9;*/
  position: fixed;
  top: -12px;
  left: 0;
  overflow: scroll;
}
.nav-list {
  text-align: center;
  margin-top: 40px;
  overflow: scroll;
}
.linenupWrap {
  width: 1000px;
  margin: 60px auto 0;
  border-bottom: 1px solid;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.linenupWrap .list-left {
  width: 50%;
}
.linenupWrap .list-right {
  width: 45%;
}
.linenupWrap .list-left li.ttl,
.linenupWrap .list-right li.ttl {
  border-bottom: 1px solid;
  text-align: left;
  line-height: 3;
  font-size: 1rem;
}
.linenupWrap .list-left .inner,
.linenupWrap .list-right .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.linenupWrap .list-right .inner {
  flex-direction: column;
  justify-content: center;
}
.linenupWrap .list-right .inner ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.linenupWrap .list-right .inner ul li {
  margin-right: 10px;
}

.linenupWrap .list-left .inner figure,
.linenupWrap .list-right .inner figure {
  margin: 50px 0 0;
}
.linenupWrap .list-left .inner figure.last,
.linenupWrap .list-right .inner figure.last {
  margin: 50px 0;
}
.linenupWrap .list-left .inner figure img {
  max-width: 140px;
  width: 100%;
}
.nav .inner-nav {
  width: 1000px;
  margin: 30px auto;
}
.nav .inner-nav ul {
  display: flex;
}
.nav .inner-nav ul li {
  margin-right: 50px;
}
.humbergerTtl {
  text-align: center;
  position: relative;
  top: 30px;
}
.humbergerTtl img {
  max-width: 170px;
}


/*Pop-up
 * -----------------*/
.popup-wrap {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow-y: scroll;
  opacity: 1;
  text-align: center;
  margin-bottom: 35px;
}
.popup-button {
  width: 100%;
  cursor: pointer;
}
.popup-button img {
  width: 60%;
}
.popup-closeUp {
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  text-align: right;
  color: #000;
  cursor: pointer;
  position: absolute;
  top: 30px;
  right: 20px;
}
.popup {
  position: fixed;
  display: flex;
  opacity: 0;
  z-index: -999;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.56);
  transition: opacity 0.3s, z-index 0.3s;
}
.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.popup-content {
  position: relative;
  z-index: 5;
  width: 600px;
  max-height: 100%;
  padding: 30px;
  border-radius: 4px;
  background-color: #f9f9f9;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.29);
  overflow: scroll;
}
.popup-content h2 {
  margin: 0;
  font-size: 18px;
}
.popup-content .datail {
  margin-top: 30px;
}
.popup-content ul {
  margin-top: 20px;
}
.popup-content ul li {
  shape-margin: 10px;
}
.popup-content ul li .inner-flex {
  display: flex;
}
.popup-content ul li .inner-flex .inner-img {
  margin-right: 20px;
}
.popup-content ul li .inner-flex .inner-img img {
  max-width: 60px;
}
.popup-content ul li .inner-flex .inner-txt {
  display: flex;
  flex-direction: column;
  position: relative;
}
.popup-content ul li .inner-flex .inner-txt p {
  margin: 0;
  font-size: 16px;
}
.popup-content ul li .inner-cart img {
  width: 100%;
  max-width: 60%;
}
.popup-content ul li .inner-cart.small img {
  width: 100%;
  max-width: 90%;
}
.popup-content .note {
  margin-top: 10px;
}
.popup-content .note li {
  font-size: 12px;
}
.popup-content ul li .inner-flex .inner-cart {
  display: inline-block;
  box-sizing: border-box;
  text-align: center;
  font-size: 0.875rem;
  cursor: pointer;
  text-align: center;
  justify-content: space-around;
}
.cartImgSize {
  text-align: left;
}

#popup {
  display:none;
}
#popup:checked ~ .popOne {
  opacity: 1;
  z-index: 9999;
  transition: opacity 0.5s, z-index 0.5s;
}
#popup:checked ~ .popup-wrapOne {
  overflow: hidden;
  filter: blur(10px);
  filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius='10');
  transition: filter .5s;
}

#popupTwo {
  display:none;
}
#popupTwo:checked ~ .popupTwo {
  opacity: 1;
  z-index: 9998;
  transition: opacity 0.5s, z-index 0.5s;
}
#popupTwo:checked ~ .popup-wrapTwo {
  overflow: hidden;
  filter: blur(10px);
  filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius='10');
  transition: filter .5s;
}
#popupThree {
  display:none;
}
#popupThree:checked ~ .popupThree{
  opacity: 1;
  z-index: 9998;
  transition: opacity 0.5s, z-index 0.5s;
}
#popupThree:checked ~ .popup-wrapThree {
  overflow: hidden;
  filter: blur(10px);
  filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius='10');
  transition: filter .5s;
}
#popup4 {
  display:none;
}
#popup4:checked ~ .popup4 {
  opacity: 1;
  z-index: 9998;
  transition: opacity 0.5s, z-index 0.5s;
}
#popup4:checked ~ .popup-wrap4 {
  overflow: hidden;
  filter: blur(10px);
  filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius='10');
  transition: filter .5s;
}
#popup6 {
  display:none;
}
#popup6:checked ~ .popup6 {
  opacity: 1;
  z-index: 9998;
  transition: opacity 0.5s, z-index 0.5s;
}
#popup6:checked ~ .popup-wrap6 {
  overflow: hidden;
  filter: blur(10px);
  filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius='10');
  transition: filter .5s;
}
#popup5 {
  display:none;
}
#popup5:checked ~ .popup5 {
  opacity: 1;
  z-index: 9998;
  transition: opacity 0.5s, z-index 0.5s;
}
#popup5:checked ~ .popup-wrap5 {
  overflow: hidden;
  filter: blur(10px);
  filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius='10');
  transition: filter .5s;
}
#popup7 {
  display:none;
}
#popup7:checked ~ .popup7 {
  opacity: 1;
  z-index: 9998;
  transition: opacity 0.5s, z-index 0.5s;
}
#popup7:checked ~ .popup-wrap7 {
  overflow: hidden;
  filter: blur(10px);
  filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius='10');
  transition: filter .5s;
}
#popup8 {
  display:none;
}
#popup8:checked ~ .popup8 {
  opacity: 1;
  z-index: 9998;
  transition: opacity 0.5s, z-index 0.5s;
}
#popup8:checked ~ .popup-wrap8 {
  overflow: hidden;
  filter: blur(10px);
  filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius='10');
  transition: filter .5s;
}
#popup9 {
  display:none;
}
#popup9:checked ~ .popup9 {
  opacity: 1;
  z-index: 9998;
  transition: opacity 0.5s, z-index 0.5s;
}
#popup9:checked ~ .popup-wrap9 {
  overflow: hidden;
  filter: blur(10px);
  filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius='10');
  transition: filter .5s;
}
#popup10 {
  display:none;
}
#popup10:checked ~ .popup10 {
  opacity: 1;
  z-index: 9998;
  transition: opacity 0.5s, z-index 0.5s;
}
#popup10:checked ~ .popup-wrap10 {
  overflow: hidden;
  filter: blur(10px);
  filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius='10');
  transition: filter .5s;
}
#popup11 {
  display:none;
}
#popup11:checked ~ .popup11 {
  opacity: 1;
  z-index: 9998;
  transition: opacity 0.5s, z-index 0.5s;
}
#popup11:checked ~ .popup-wrap11 {
  overflow: hidden;
  filter: blur(10px);
  filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius='10');
  transition: filter .5s;
}
#popup12 {
  display:none;
}
#popup12:checked ~ .popup12 {
  opacity: 1;
  z-index: 9998;
  transition: opacity 0.5s, z-index 0.5s;
}
#popup12:checked ~ .popup-wrap12 {
  overflow: hidden;
  filter: blur(10px);
  filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius='10');
  transition: filter .5s;
}
#popup13 {
  display:none;
}
#popup13:checked ~ .popup13 {
  opacity: 1;
  z-index: 9998;
  transition: opacity 0.5s, z-index 0.5s;
}
#popup13:checked ~ .popup-wrap13{
  overflow: hidden;
  filter: blur(10px);
  filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius='10');
  transition: filter .5s;
}
#popup14 {
  display:none;
}
#popup14:checked ~ .popup14 {
  opacity: 1;
  z-index: 9998;
  transition: opacity 0.5s, z-index 0.5s;
}
#popup14:checked ~ .popup-wrap14 {
  overflow: hidden;
  filter: blur(10px);
  filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius='10');
  transition: filter .5s;
}
#popup15 {
  display:none;
}
#popup15:checked ~ .popup15 {
  opacity: 1;
  z-index: 9998;
  transition: opacity 0.5s, z-index 0.5s;
}
#popup15:checked ~ .popup-wrap15 {
  overflow: hidden;
  filter: blur(10px);
  filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius='10');
  transition: filter .5s;
}
#popup16 {
  display:none;
}
#popup16:checked ~ .popup16 {
  opacity: 1;
  z-index: 9998;
  transition: opacity 0.5s, z-index 0.5s;
}
#popup16:checked ~ .popup-wrap16 {
  overflow: hidden;
  filter: blur(10px);
  filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius='10');
  transition: filter .5s;
}
#popup17 {
  display:none;
}
#popup17:checked ~ .popup17 {
  opacity: 1;
  z-index: 9998;
  transition: opacity 0.5s, z-index 0.5s;
}
#popup17:checked ~ .popup-wrap17 {
  overflow: hidden;
  filter: blur(10px);
  filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius='10');
  transition: filter .5s;
}
#popup18 {
  display:none;
}
#popup18:checked ~ .popup18 {
  opacity: 1;
  z-index: 9998;
  transition: opacity 0.5s, z-index 0.5s;
}
#popup18:checked ~ .popup-wrap18 {
  overflow: hidden;
  filter: blur(10px);
  filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius='10');
  transition: filter .5s;
}

/*#popup02 {
  display:none;
}
#popup02:checked ~ .popup {
  opacity: 1;
  z-index: 9999;
  transition: opacity 0.5s, z-index 0.5s;
}
#popup02:checked ~ .popup-wrap {
  overflow: hidden;
  filter: blur(10px);
  filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius='10');
  transition: filter .5s;
}*/
/*cartまわり
 * --------------------------------------------------------*/
.stockPosition {
  position: absolute;
  top: 0;
  right: 40%;
}

/*selectボタンを使う場合
 * --------------------------------------------------------*/
/*.cp_ipselect {
  overflow: hidden;
  width: 90%;
  margin: 2em auto;
  text-align: center;
}
.cp_ipselect select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}
.cp_ipselect select::-ms-expand {
    display: none;
}
.cp_ipselect.cp_sl02 {
  position: relative;
  border: 1px solid #bbbbbb;
  border-radius: 2px;
  background: #ffffff;
}
.cp_ipselect.cp_sl02::before {
  position: absolute;
  top: 0.8em;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666666;
  pointer-events: none;
}
.cp_ipselect.cp_sl02:after {
  position: absolute;
  top: 0;
  right: 2.5em;
  bottom: 0;
  width: 1px;
  content: '';
  border-left: 1px solid #bbbbbb;
}
.cp_ipselect.cp_sl02 select {
  padding: 8px 38px 8px 8px;
  color: #666666;
}*/

/*toppageBtn
 * --------------------------------------------------------*/
#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  bottom: 20px;
}
#page_top a{
  display: block;
  z-index: 999;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 3px;
  width: 40px;
  height: 40px;
  font-weight: bold;
  text-align: center;
}

/*footer
 * --------------------------------------------------------*/
.footer-container {
  background-image: url(../img/common/footer.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  max-width: 100%;
  padding: 0 90px 100px;
}
.footer-container li,
.other p {
  font-size: 0.8125rem;
  color: #FFF;
  line-height: 1.8;
  font-family: 'Hiragino Mincho W3 JIS2004', "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.footer-area {
  max-width: 1000px;
  width: 100%;
  margin: auto;
}
.footer-wrap {
  display: flex;
  border-bottom: 1px solid #FFF;
  padding: 100px 0 30px;
}
.footer-wrap .staff {
  margin-right: 100px;
}
.footer-wrap .noteco {
  margin-top: 23px;
}
.other {
  display: flex;
  position: relative;
  margin-top: 10px;
}
.other p {
  margin: 0;
  position: absolute;
  top: 0;
  right: 0;
}
.other1,
.other2 {
  display: flex;
}
.other1 li,
.other2 li {
  margin-right: 20px;
}
.footer-area .other li.mail img {
  width: 20px;
  vertical-align: text-top;
  margin-right: 3px;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .tb {
    display: block;
  }
  .linenupWrap,
  .nav .inner-nav {
    width: 90%;
  }
  .footer-container {
    padding: 0 60px 50px;
  }
  .footer-wrap {
    padding: 40px 0 30px;
  }
}

@media screen and (max-width: 600px) {
  .pc {
    display: none;
  }
  .tb {
    display: none;
  }
  .sp {
    display: block;
  }
  .brpc {
    display: none;
  }
  .brsp {
    display: block;
  }
  .swiper-wrapper .swiper-slide.slide1:before {
    background: url(../img/sp01.jpg);
    background-size: cover;
    background-position: center center;
  }
  .swiper-wrapper .swiper-slide.slide2:before {
    background: url(../img/0043.jpg);
    background-size: cover;
    background-position: center center;
  }
  .swiper-wrapper .swiper-slide.slide3:before {
    background: url(../img/0528.jpg);
    background-size: cover;
    background-position: center center;
  }
  /*header nav
 * --------------------------------------------------------*/
  header {
    max-width: 100%;
    width: 100%;
  }
  #top-head {
    position: fixed;
    width: 100%;
    margin: 0 auto;
    padding: 35px 0 0;
    line-height: 1;
    z-index: 10;
  }
  #top-head a,
  #top-head {
    color: inherit;
    font-size: 0.8125rem;
    text-decoration: none;
  }
  #top-head .inner {
    position: relative;
  }
  #top-head .logo {
    height: 50px;
  }
  #top-head .logoWrap {
    width: 50%;
  }
/* transition */
  #top-head,
  #top-head .logo {
      transition: all 0.3s ease;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
  }
/* Fixed */
  #top-head.fixed {
      padding: 15px 0;
      background: #FFF;
  }
  #top-head.fixed .logo {
      color: #666;
      background-image: url(../img/common/logo-g.svg);
      background-repeat: no-repeat;
  }
  #top-head.fixed:after {
      width: 100%;
      margin-top: 20px;
  }
  #top-head.fixed .burger > div {
    background-color: gray;
  }
/* Hamburger */
  header .burger {
    left: 30px;
  }
  .nav {
    height: 100%;
  }
  .linenupWrap {
    text-align: center;
    margin: 40px auto;
    display: block;
  }
  .linenupWrap {
    width: 80%;
    border-bottom: none;
    display: block;
  }
  .linenupWrap .list-left {
    width: 100%;
  }
  .linenupWrap .list-right {
    width: 100%;
    margin-bottom: 80px;
  }
  .linenupWrap .list-left .inner,
  .linenupWrap .list-right .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .linenupWrap .list-right .inner ul {
    display: block;
  }
  .linenupWrap .list-left .inner figure img {
    max-width: 130px;
  }
  .humbergerTtl {
    top: 5px;
  }
  .spnav {
    margin-top: 30px;
  }
  .spnav ul {
    border-bottom: 1px solid #FFF;
    border-top: 1px solid #FFF;
    text-align: center;
  }
  .spnav ul li:first-child {
    display: flex;
    justify-content: space-around;
    border-bottom: 1px solid #FFF;
  }
  .spnav ul li div {
    width: 50%;
    padding: 20px 0;
  }
  .spnav ul li:last-child {
    display: flex;
  }
  .spnav ul li .borderRight {
    border-right: 1px solid #FFF;
  }
  .popup-button img {
    width: 90%;
  }
  .popup-content ul li .inner-cart img {
    max-width: 100%;
  }
  .borderRight a {
    display: block;
  }
/*Pop-up
 * -----------------*/
  .popup-content {
    width: 300px;
  }
/*cartまわり
 * --------------------------------------------------------*/
  .stockPosition {
    position: absolute;
    top: 0;
    right: 0%;
    font-size: 14px;
  }
  .popup-content ul li .inner-flex .inner-txt p {
    font-size: 14px;
  }

/*interview
 * --------------------------------------------------------*/
  .interview-container {
    display: block;
  }
  .interview-img {
    width: 100%;
  }
  .interview-wrap {
    width: 100%;
    padding: 20px 0 40px;
  }

/*footer
 * --------------------------------------------------------*/
  .footer-container {
    padding: 50px 20px;
  }
  .footer-container li {
    font-size: 11px;
  }
  .footer-wrap {
    width: 100%;
    padding: 0;
    display: block;
  }
  .noteco {
    margin-bottom: 10px;
  }
  .other {
    display: block;
    position: relative;
  }
  .other2 {
    margin-top: 10px;
  }
  .other1 li,
  .other2 li {
    margin-right: 20px;
  }
  .other p {
    margin: 15px 0 0;
    position: static;
  }
}
@media screen and (max-width: 320px) {
  .linenupWrap .list-left .inner figure img {
    max-width: 100px;
  }
  .popup-content {
    width: 280px;
  }
}