@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font: clamp(16px, 2vw, 30px), "Osaka", "Yu Gothic UI", "ヒラギノ角ゴシック", "Hiragino Sans", "Arial Black", serif;
}

ul {
  list-style: none;
}

a {
  color: inherit;
}

.hidden {
  display: none;
}

button a {
  text-decoration: none;
}

.red {
  color: #ff0000;
}

/*header*/
header {
  width: 100%;
  margin-bottom: clamp(50px, 3vw, 100px);
  color: #ffffff;
}

header a {
  text-decoration: none;
}

@media screen and (min-width: 640px) {
  header ul.pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    text-align: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: clamp(50px, 10vw, 100px);
  }
  header ul.pc > li {
    text-align: center;
    height: clamp(50px, 10vw, 100px);
    font-size: clamp(10px, 1vw, 20px);
  }
  header ul.pc > li:hover {
    background-color: #fff;
    opacity: 0.8;
  }
  header ul.pc > li:first-child, header ul.pc > li:nth-child(2) {
    background: url(../image/kaitorileft_left.png), url(../image/kaitorileft_right.png), url(../image/kaitorileft_center.png);
    background-repeat: no-repeat,no-repeat,repeat-x;
    background-size: contain;
    background-position: left,right,center;
    width: 14%;
  }
  header ul.pc > li img {
    height: clamp(30px, 50%, 70px);
    display: block;
    margin: .5rem auto;
  }
  header ul.pc > li:nth-child(3) {
    background: url(../image/kaitoriheader_left.png), url(../image/kaitoriheader_right.png), url(../image/kaitoriheader_center.png);
    background-repeat: no-repeat,no-repeat,repeat-x;
    background-size: contain;
    background-position: left,right,center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    color: #B08829;
    width: 43%;
    height: clamp(50px, 10vw, 100px);
    font-size: 1.5rem;
    border: none;
    font-size: 1.5rem;
    padding: 0 0 .5rem;
    line-height: 1.5rem;
  }
  header ul.pc > li:nth-child(3) img {
    width: clamp(50px, 32vw, 318px);
    height: auto;
    margin-bottom: 0;
    margin-top: 0;
    line-height: clamp(50px, 10vw, 100px);
  }
  header ul.pc > li:nth-child(4), header ul.pc > li:nth-child(5), header ul.pc > li:nth-child(6), header ul.pc > li:last-child {
    background: url(../image/kaitoriright_left.png), url(../image/kaitoriright_right.png), url(../image/kaitoriright_center.png);
    background-repeat: no-repeat,no-repeat,repeat-x;
    background-size: contain;
    background-position: left,right,center;
    width: 15%;
  }
  header ul.pc > li:nth-child(2) img {
    width: clamp(20px, 5vw, 60px);
  }
  header ul.pc > li:first-child {
    text-align: center;
  }
  header ul.pc > li.hanbai img {
    height: clamp(30px, 50%, 70px);
    width: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  header ul.pc > li.kaitori img {
    height: clamp(30px, 50%, 70px);
    width: auto;
  }
  header ul.pc > li.mypage img {
    width: clamp(16px, 20%, 33px);
  }
  header ul.pc > li:last-child img {
    height: clamp(30px, 50%, 70px);
    width: auto;
  }
  header ul.pc li.cart {
    background: url(../image/kaitoriright_left.png), url(../image/kaitoriright_right.png), url(../image/kaitoriright_center.png);
    background-repeat: no-repeat,no-repeat,repeat-x;
    background-size: contain;
    background-position: left,right,center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 90%;
    height: clamp(50px, 10vw, 100px);
    width: calc( calc(100% - 43%) / 4);
    margin: 0 auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header ul.pc li.cart img {
    margin: 0;
    width: clamp(18px, 5vw, 50px);
    height: clamp(18px, 5vw, 50px);
  }
  header ul.pc li.cart .cart-content {
    width: 50%;
    margin-bottom: .2rem;
  }
  header ul.pc li.cart .cart-content span {
    display: block;
  }
  header ul.pc li.cart .cart-content span:first-of-type {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
  }
  header ul.pc li.cart .cart-content span:last-of-type {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
  }
  header ul.sp {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  header {
    margin-bottom: 1rem;
  }
  header ul.pc {
    display: none;
    -webkit-transition: .5s;
    transition: .5s;
  }
  header ul.pc li:nth-child(3), header ul.pc li:nth-child(4) {
    display: none;
  }
  header ul.pc {
  }
  header ul.pc li {
    width: calc(100% / 3);
    text-align: center;
    height: 100px;
    font-size: 12px;
    padding: 0.9rem 0;
  }
  header ul.pc li img {
    height: clamp(33px, 20%, 44px);
    display: block;
    margin: 2px auto .5rem;
  }
  header ul.pc li:nth-child(2) {
    border: solid 1px #ffffff;
    border-width: 0 2px;
  }
  header ul.sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    background: #dc2727;
    padding: 0.5rem 2rem;
    /*.hamburger{
                text-align: center;
                width: 35px;
                span{
                    width: 100%;
                    margin: 0 auto 5px;
                    height: 5px;
                    background: $white;
                    display: block;
                    transition: .5s;
                }
                &.open span{
                    &:nth-of-type(1) {
                    transition: .5s;
                        transform: translateY(10px) rotate(-45deg);
                      }
                      &:nth-of-type(2) {
                        transition: .5s;
                        opacity: 0;
                      }
                      &:nth-of-type(3) {
                        transition: .5s;
                        transform: translateY(-10px) rotate(45deg);
                      }
                }   
            }*/
  }
  header ul.sp img {
    height: 50px;
    vertical-align: bottom;
  }
  header ul.sp li:nth-child(1), header ul.sp li:nth-child(3), header ul.sp li:nth-child(4) {
    display: none;
  }
  header ul.sp li:nth-child(2) {
    width: calc(100% - calc(35px + 35px));
    text-align: center;
  }
  header ul.sp li:nth-child(2) img {
    height: auto;
    width: 80%;
    vertical-align: middle;
  }
}

/*main*/
.container {
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 640px) {
  .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    max-width: 1280px;
    width: clamp(640px, 100%, 1280px);
  }
}

@media screen and (min-width: 640px) {
  .container aside.left {
  }
  .container aside.left .sp {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .container aside.left .leftMenu .sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 2rem;
  }
  .container aside.left .leftMenu .sp div {
    width: calc(80% / 2);
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: ()[50%];
        grid-template-rows: repeat(50%);
    font-size: 1rem;
    font-weight: bold;
    border: solid 2px #dc2727;
    border-radius: 2rem;
    padding: 0.5rem;
    text-align: right;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .container aside.left .leftMenu .sp div img {
    width: 100%;
    vertical-align: middle;
  }
  .container aside.left .leftMenu .sp div.series {
    -ms-grid-columns: 70% 30%;
        grid-template-columns: 70% 30%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .container aside.left .leftMenu .sp div.series span {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
  }
  .container aside.left .leftMenu .sp div.series img {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
  }
  .container aside.left .leftMenu .sp div.series.open {
    background: #D8DFE2;
    color: #009FE6;
    border-radius: 2rem 2rem 0 0;
  }
  .container aside.left .leftMenu .sp div.cart {
    display: block;
    border: none;
  }
  .container aside.left .leftMenu .sp div.cart a {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: ()[50%];
        grid-template-rows: repeat(50%);
    font-size: 1rem;
    font-weight: bold;
    border: solid 2px #dc2727;
    border-radius: 2rem;
    padding: 0.5rem;
    text-align: right;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-grid-columns: 30% 70%;
        grid-template-columns: 30% 70%;
  }
  .container aside.left .leftMenu .sp div.cart img {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
  }
  .container aside.left .leftMenu .sp div.cart span {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
  }
  .container aside.left .leftMenu .sp.open {
    margin-bottom: 0;
  }
}

.container aside.left .leftMenu .sidebar li {
  margin: 0 auto .5rem;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}

.container aside.left .leftMenu .sidebar li > span {
  display: block;
  width: 100%;
  color: #dc2727;
  border: 15px solid #009FE6;
  border-image-source: url(../image/kaitorimenuimg.png);
  border-image-slice: 30;
  border-image-width: 30px;
  border-image-repeat: stretch;
  text-align: center;
  position: relative;
  z-index: 10;
  background: #ffffff;
  -webkit-transition: .5s;
  transition: .5s;
}

.container aside.left .leftMenu .sidebar li > span:hover {
  opacity: 0.5;
  -webkit-transition: .5s;
  transition: .5s;
}

.container aside.left .leftMenu .sidebar li .sidebar-contents {
  display: none;
}

.container aside.left .leftMenu .sidebar li .sidebar-contents li {
  font-size: 0.7rem;
}

.container aside.left .leftMenu .sidebar li.select .sidebar-contents {
  display: block;
  margin-left: 1rem;
}

.container aside.left .leftMenu .sidebar li.select .sidebar-contents li {
  font-size: 0.9rem;
  margin: 0 auto .5rem;
  border: 15px solid;
  border-image-source: url(../image/kaitorimenu3img.png);
  border-image-slice: 30%;
  border-image-repeat: stretch;
  border-image-width: 30px;
  display: block;
  width: 100%;
  margin-left: 0;
}

.container aside.left .leftMenu .sidebar li.select .sidebar-contents li:hover {
  -webkit-filter: drop-shadow(5px 5px 5px rgba(53, 52, 52, 0.6));
          filter: drop-shadow(5px 5px 5px rgba(53, 52, 52, 0.6));
}

.container aside.left .leftMenu .sidebar li.select .sidebar-contents li span {
  display: block;
  background: #7d4545;
  color: #ffffff;
}

.container aside.left .leftMenu .sidebar li.select .sidebar-contents li span a {
  text-decoration: none;
}

@media screen and (max-width: 640px) {
  .container aside.left .leftMenu .sidebar {
    display: none;
  }
  .container aside.left .leftMenu .sidebar li {
    font-size: .9rem;
  }
  .container aside.left .leftMenu .sidebar li span {
    background: url(../image/kaitorisp_menu1_left.png), url(../image/kaitorisp_menu1_right.png), url(../image/kaitorisp_menu1_center.png);
    background-repeat: no-repeat,no-repeat,repeat-x;
    background-size: contain;
    background-position: left,right,center;
    border: none;
    padding: 0.5rem;
  }
  .container aside.left .leftMenu .sidebar li .sidebar-contents li {
    font-size: .8rem;
    padding: 0.5rem;
    width: 50%;
  }
  .container aside.left .leftMenu .sidebar .sidebar-button.select .sidebar-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .container aside.left .leftMenu .sidebar .sidebar-button.select .sidebar-contents li {
    margin: .5rem auto;
    border: solid 5px #dc2727;
    background: #7d4545;
    width: 45%;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .container aside.left .leftMenu .sidebar .sidebar-button.select .sidebar-contents li span {
    padding: 0.5rem;
    display: inline-block;
  }
  .container aside.left .leftMenu .sidebar.select {
    padding: 1rem 0.2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #D8DFE2;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}

@media screen and (min-width: 640px) {
  .container main {
    width: 68%;
    margin-left: 1rem;
    max-width: calc( 1280px - 384px);
    width: clamp(384px, 68%, 768px);
  }
}

.container main #pankuzu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #B08829;
  margin-bottom: 1rem;
}

.container main #pankuzu ul li + li::before {
  content: "＞";
  margin: 0 5px;
  color: #333333;
}

@media screen and (max-width: 640px) {
  .container main #pankuzu ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    white-space: nowrap;
  }
}

/*footer*/
footer {
  width: 100%;
  text-align: center;
}

footer.fixed {
  position: fixed;
  bottom: 0;
}

footer .top {
  padding: 15px 12px;
  margin: 0 auto .5rem;
  border: 30px solid #dc2727;
  border: solid 3px #B08829;
  border-image-slice: 30;
  border-image-width: 30px;
  border-image-repeat: stretch;
  border-image-source: url(../image/pagetop.png);
  display: inline-block;
}

footer .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  height: 90px;
  font-size: 0.8rem;
  color: #ffffff;
}

footer .flex li {
  text-align: center;
}

footer .flex li div {
  padding: 1rem;
  width: 100%;
  /*@include breakpoint_sp{
    height: clamp(20px, 10vw, 50px);
} */
}

@media screen and (min-width: 640px) {
  footer .flex li div {
    height: clamp(50px, 10vw, 100px);
  }
}

footer .flex li:first-child, footer .flex li:nth-child(2) {
  background: url(../image/kaitoriright_left.png), url(../image/kaitoriright_right.png), url(../image/kaitoriright_center.png);
  background-repeat: no-repeat,no-repeat,repeat-x;
  background-size: contain;
  background-position: left,right,center;
  width: 14%;
}

footer .flex li a {
  display: block;
  margin: .5rem 0;
}

footer .flex li img {
  width: 35%;
  display: block;
  margin: .5rem auto;
}

footer .flex li:nth-child(3) {
  background: url(../image/kaitorifooter_left.png), url(../image/kaitorifooter_right.png), url(../image/kaitorifooter_center.png);
  background-repeat: no-repeat,no-repeat,repeat-x;
  background-size: contain;
  background-position: left,right,center;
  color: #B08829;
  width: 42%;
  /*@include breakpoint_sp{
                    height: clamp(20px, 10vw, 50px);
                    display: block;
                    position: relative;
                } */
  font-size: 1.5rem;
  border: none;
}

@media screen and (min-width: 640px) {
  footer .flex li:nth-child(3) {
    height: clamp(50px, 10vw, 100px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

footer .flex li:nth-child(4), footer .flex li:last-child {
  background: url(../image/kaitorileft_left.png), url(../image/kaitorileft_right.png), url(../image/kaitorileft_center.png);
  background-repeat: no-repeat,no-repeat,repeat-x;
  background-size: contain;
  background-position: left,right,center;
  width: 14%;
}

@media screen and (max-width: 640px) {
  footer .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    margin: 1rem 0;
  }
  footer .flex li {
    position: relative;
  }
  footer .flex li:first-child, footer .flex li:nth-child(2), footer .flex li:nth-child(4), footer .flex li:last-child {
    width: 100%;
    background-image: none;
    background: #dc2727;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  footer .flex li:nth-child(3) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    background: #ffffff;
  }
}

footer .copyright {
  font-size: 13px;
}

@media screen and (max-width: 640px) {
  footer .copyright {
    font-size: 14px;
  }
}

.container main .sarch {
  width: 90%;
  margin: 0 auto 2rem;
}

.container main .sarch dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: solid 1px #f05323;
  border-radius: 2rem;
}

.container main .sarch dl dt {
  background: #f05323;
  border-radius: 2rem 0 0 2rem;
  padding: .5rem;
  color: #ffffff;
  width: 20%;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
}

.container main .sarch dl dd {
  position: relative;
  width: 80%;
}

.container main .sarch dl dd input {
  width: 80%;
  padding: 0.5rem;
  border: none;
  height: 100%;
  font-size: 1rem;
  color: #111;
}

.container main .sarch dl dd input::-webkit-input-placeholder {
  color: #333;
}

.container main .sarch dl dd input:-ms-input-placeholder {
  color: #333;
}

.container main .sarch dl dd input::-ms-input-placeholder {
  color: #333;
}

.container main .sarch dl dd input::placeholder {
  color: #333;
}

.container main .sarch dl dd button {
  width: 20%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  padding: 0.3rem;
  background: none;
  border: none;
  border-radius: 0 2rem 2rem 0;
}

.container main .sarch dl dd button img {
  width: clamp(16px, 4vw, 30px);
  height: auto;
  vertical-align: bottom;
}

@media screen and (min-width: 640px) {
  .container main .sptopMenu {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .container main .sptopMenu {
    display: none;
  }
}

.container main .topMenu {
  width: 90%;
  margin: 0 auto 5rem;
  font-size: 2rem;
}

.container main .topMenu div {
  margin: 0 auto 1rem;
  border: 12px solid #f05323;
  border-image-slice: 30;
  border-image-width: 30px;
  border-image-repeat: stretch;
  border-image-source: url(../image/kaitoriyokowaku.png);
  text-align: center;
  color: #ffffff;
  height: 150px;
  width: 495px;
  overflow: hidden;
  text-align: center;
}

.container main .topMenu div span {
  width: 100%;
  height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #f05323;
  padding: 1rem 1rem;
  background-color: rgba(220, 39, 39, 0.5);
  background-blend-mode: darken;
  font-weight: bold;
}

@media screen and (max-width: 640px) {
  .container main .topMenu div span {
    height: 100px;
  }
}

.container main .topMenu div img {
  height: 100%;
  width: 471px;
  vertical-align: bottom;
}

@media screen and (max-width: 640px) {
  .container main .topMenu div img {
    width: 100%;
    height: auto;
  }
}

.container main .topMenu div.firstgest span {
  background: #fff;
}

.container main .topMenu div:last-of-type span {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.container main .topMenu div:last-of-type.hanbai span {
  background-image: url(../image/hanbaibtn.png);
}

.container main .topMenu div:last-of-type.kaitori span {
  background-image: url(../image/kaitoribtn.png);
}

@media screen and (max-width: 640px) {
  .container main .topMenu div {
    width: 100%;
    height: auto;
  }
}

.container main .news {
  position: relative;
  border: 17px solid #f05323;
  border-image-slice: 30;
  border-image-width: 30px;
  border-image-repeat: stretch;
  border-image-source: url(../image/news.png);
  margin-bottom: 3rem;
}

.container main .news div {
  background: #bae1f2;
  width: 100%;
  padding: .3rem;
}

.container main .news .title {
  border: 5px solid #f05323;
  border-image-slice: 30;
  border-image-width: 25px;
  border-image-repeat: stretch;
  border-image-source: url(../image/news.png);
  position: absolute;
  line-height: 2;
  top: -3rem;
  left: 0;
  padding: 0 .5rem;
}

.container main .news .title span {
  background: #bae1f2;
  display: block;
}

.container main .news dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  display: inline-block;
  border-bottom: dotted 1px #333333;
}

.container main .news dl dt {
  margin-right: 1rem;
}

@media screen and (min-width: 640px) {
  .container main .pc-bannerarea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .container main .pc-bannerarea .pc-sns {
    margin-left: 2rem;
  }
  .container main .sp-sns {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .container main .pc-sns {
    display: none;
  }
}

.container main .youtube {
  text-align: center;
}

.container main .twitter {
  width: 100%;
  margin: 0 auto;
}

.container main .osusume {
  border: solid 1px #333;
  padding: 1rem;
  margin-bottom: 3rem;
}

.container main .osusume > p {
  font-size: 1.5rem;
  text-align: center;
  font-weight: bold;
  color: #B08829;
  margin-bottom: 1rem;
}

.container main .osusume .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.container main .osusume .card li {
  display: block;
  width: 30%;
  min-width: 150px;
  border: solid 1px #333333;
  margin-bottom: 2rem;
}

.container main .osusume .card li div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: .5rem 1rem;
}

.container main .osusume .card li div p {
  margin-bottom: 0.5rem;
}

.container main .osusume .card li div p:first-of-type, .container main .osusume .card li div p:nth-of-type(2) {
  text-align: center;
  font-size: 1.2rem;
  width: 100%;
}

.container main .osusume .card li div p:nth-of-type(3) {
  color: #B08829;
  font-weight: bold;
}

.container main .osusume .card li div img {
  width: 80%;
  margin: 0 auto;
}

@media screen and (max-width: 640px) {
  .container main .osusume .card {
    margin: 0 auto;
    padding: 0;
  }
  .container main .osusume .card li {
    list-style: none;
    margin-left: 0;
    margin-left: 1rem;
    width: 43%;
    min-width: 43%;
  }
}
/*# sourceMappingURL=kaitori-style.css.map */
