@charset "utf-8";
/* CSS Document */


/*--------------------------------------
  基本設定
---------------------------------------*/
*{
  margin: 0;
  padding: 0;
}
body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-text-size-adjust:100%;
  line-height: 1.4;
  font-size: 18px;
  margin: 0 auto;
  min-width: 1200px;
}
img {
  vertical-align: bottom;
  border: 0;
}
li {
  color: #444;
}
p {
  color: #444;
}
a {
  color: #444;
}
a:hover {
  text-decoration: none;
}
dl dt, dl dd {
  color: #444;
}
article,aside,canvas,details,figcaption,figure,
footer,header,hgroup,menu,nav,section,summary
{
  display: block;
}
table {
  word-break: break-all;
}
.pc_none {
  display: none;
}

@media only screen and (max-width: 767px) {
  body {
    min-width: 100%;
    font-size: 14px;
  }
  .pc_none {
    display: block;
  }
  .sp_none {
    display: none;
  }
}



/*--------------------------------------
  header
---------------------------------------*/
header .inner {
  overflow: hidden;
  zoom: 1;
  padding: 15px 0 5px 0;
  position: relative;
  width: 1000px;
  margin: 0 auto;
}
header h1 {
  float: left;
  margin: 0 0 10px 0;
  font-size: 10px;
}
header p.catch {
  float: left;
  margin: 5px 10px 0 10px;
  font-size: 14px;
}
header #topic_path {
  overflow: hidden;
  zoom: 1;
  clear: both;
}
header #topic_path li {
  float: left;
  margin: 0 5px 0 0;
  list-style: none;
  font-size: 14px;
}
header #topic_path li a {
  color: #000099;
}
header #topic_path li a:hover {
  text-decoration: none;
}
header #sns_button {
  position: absolute;
  right: 0;
  bottom: 5px;
  overflow: hidden;
  zoom: 1;
}
header #sns_button li {
  float: left;
  margin: 0 0 0 10px;
  list-style: none;
}
header #sns_button li#tw {
  padding: 7px 0 0 0;
}

@media only screen and (max-width: 767px) {
  header .inner {
    width: 96%;
  }
  header h1 {
    margin: 10px 0 10px 0;
  }
  header p.catch {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    font-size: 11px !important;
  }
  header p#btn_top {
    text-align: right;
    margin: 10px 0 0 0;
  }
  header #topic_path li {
    margin: 35px 5px 0 0;
    font-size: 11px !important;
  }
  header #sns_button {
    position: absolute;
    right: 0;
    bottom: 25px;
  }
  header #sns_button li#tw {
    padding: 0;
  }
}



/*--------------------------------------
  main
---------------------------------------*/
/* mv_area */
.mv_area {
  margin: 0 auto;
}
.mv_area .mv {
  text-align: center;
}

@media only screen and (max-width: 767px) {
  
  .mv_area .mv {
    width: 100%;
  }
  .mv_area .mv img {
    width: 100%;
    height: auto;
  }
}

/* gnav_area */
.gnav_area {
  z-index: 10;
  border-bottom: solid 1px #fff;
}
.gnav_area ul {
  display: flex;
  justify-content: center;
  align-items:center;
  background: #1a2a50;
}
.gnav_area ul li {
  list-style: none;
  width: 167px;
  
  border-left: solid 1px #fff;
  box-sizing: border-box;
}
.gnav_area ul li:last-child {
  border-right: solid 1px #fff;
}
.gnav_area ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 3em;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  box-sizing: border-box;
  color: #fff;
  box-sizing: border-box;
  transition: opacity 0.3s ease-out;
}
.gnav_area ul li a:hover {
  opacity: 0.7;
}
.gnav_area.fixed {
  width: 100%;
  position: fixed;
  top: 0;
}
.gnav_next.fixed {
  margin-top: 58px;
}

@media only screen and (max-width: 767px) {
  .gnav_area ul {
    flex-wrap: wrap;
  }
  .gnav_area ul li {
    width: 33%;
    border-left: none;
  }
  .gnav_area ul li:last-child {
    border-right: none;
  }
  .gnav_area ul li:nth-child(-n+3) {
    border-bottom: solid 1px #fff;
  }
  .gnav_area ul li:nth-child(3n+2) {
    width: 34%;
    border-left: solid 1px #fff;
    border-right: solid 1px #fff;
  }
  .gnav_area ul li a:hover {
    opacity: 1;
  }
  .gnav_next.fixed {
    margin-top: 95px;
  }
}

/* info_area */
.info_area_wrap {
  background: #1a2a50;
}
.info_area {
  width: 1000px;
  margin: 0 auto;
  padding: 5px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.info_area .info_txt {
  font-weight: bold;
}
.info_area .info_txt a {
  color: #fafca1;
}
.info_area .info_period {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  color: #8b1111;
  background: #feffee;
  border-radius: 4px;
  padding: 0.2em 1em;
  margin: 0 0.5em 0 0;
}

@media only screen and (max-width: 767px) {
  .info_area {
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    display: flex;
  }
  .info_area p {
    font-size: 12px;
  }
  .info_area .info_period {
    line-height: 1.3;
    padding: 0.4em 0.5em;
    margin: 0;
    font-size: 11px;
  }
}

/* delivery_info_area */
.delivery_info_area {
  width: 1000px;
  margin: 3px auto 5px;
  padding: 10px;
  box-sizing: border-box;
  background: #feffdc;
  border: solid 2px #1a2a50;
  box-sizing: border-box;
  text-align: center;
}
.delivery_info_area p {
  font-weight: bold;
  color: #1a2a50;
}
.delivery_info_area .delivery_info_about {
  margin: 0.5em auto;
  display: inline-block;
}
.delivery_info_area .delivery_info_about li {
  font-weight: bold;
  text-align: left;
  list-style: none;
  text-indent: -1em;
  padding: 0 0 0 1em;
}
.delivery_info_area .delivery_info_notice {
  margin: 1.5em auto 0;
  text-decoration: underline;
}
.delivery_info_area .delivery_info_notes {
  display: inline-block;
  margin: 0.5em auto 0;
}
.delivery_info_area .delivery_info_notes li {
  text-align: left;
  list-style: none;
  text-indent: -1em;
  padding: 0 0 0 1em;
}

@media only screen and (max-width: 767px) {
  .delivery_info_area {
    width: 96%;
    margin: 10px auto;
    padding: 5px 10px;
  }
  .delivery_info_area .delivery_info_notice {
    text-align: left;
  }
}

/* catch_area */
.catch_area {
  width: 1000px;
  margin: 0 auto 50px;
}

@media only screen and (max-width: 767px) {
  .catch_area {
    width: 100%;
    margin: 0 auto;
  }
  .catch_area img {
    width: 100%;
    height: auto;
  }
}

/* category_area */
.category_area {
  margin: 0 auto 20px;
}
.category_area .inner {
  border-bottom: solid 2px #dee6fa;
  width: 1000px;
  margin: 0 auto;
}
.category_area .category_list {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0 20px;
}
.category_area .category_list li {
  list-style: none;
  margin: 0 0.5em;
}
.category_area .category_list li a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  font-size: 15px;
  font-weight: bold;
  width: 12em;
  min-height:3em;
  text-align: center;
  border-radius: 10px;
  color: #fff;
  background: #1a2a50;
  transition: opacity 0.3s ease-out;
}
.category_area .category_list li a:hover {
  opacity: 0.6;
}

@media only screen and (max-width: 767px) {
  .category_area {
    margin: 0 auto 5vw;
  }
  .category_area .inner {
    width: calc(100% - 20px);
  }
  .category_area .category_list {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 10vw 0 0;
  }
  .category_area .category_list li {
    margin: 0;
    width: calc(50% - 10px);
    margin: 0 5px 10px 5px;
  }
  .category_area .category_list li a {
    font-size: 13px;
    width: 100%;
  }
}

/* cts_area */
.cts_area {
  padding: 30px 0;
  box-sizing: border-box;
}
.cts_area.bk_ranking {
  background: url(../img/cts_bk1.jpg) no-repeat left bottom;
  background-size: cover;
}
.cts_area.bk_category,
.cts_area.bk_wrapping,
.cts_area.bk_bnr {
  background: #e7fefd;
}
.cts_area.bk_nipponham {
  background: url(../img/cts_bk2.jpg) no-repeat left top;
  background-size: cover;
}
.cts_area.bk_online {
  background-image: url(../img/cts_bk3.jpg), url(../img/cts_bk3.jpg);
  background-repeat: no-repeat, no-repeat;
  background-position: left 10% top 40%, right 10% top 10%;
  background-size: 60% auto, 40% auto;
}
.cts_area.bk_card {
  background: url(../img/cts_bk3.jpg) no-repeat left 5% bottom 10%;
  background-size: 50% auto;
}
.cts_area.bk_movie {
  background: url(../img/cts_bk4.jpg) no-repeat left top;
  background-size: cover;
}
.cts_area.bk_trivia {
  background: url(../img/cts_bk5.jpg) repeat-y left top;
  background-size: 100% auto;
}
.cts_area.partition {
  border-bottom: solid 2px #eee;
}
.cts_area .inner {
  width: 1000px;
  margin: 0 auto;
}
.subttl {
  font-weight: bold;
  padding: 0.3em;
  margin-bottom: 2.5em;
  position: relative;
  text-align: center;
}
.subttl::after {
  content: "";
  background-size: 10px 10px;
  background-color: #f5e1e1;
  background-image: repeating-linear-gradient(-45deg, #1a2a50 0, #1a2a50 3px, #fff 0, #fff 50%);
  width: 100%;
  height: 7px;
  position: absolute;
  bottom: -5px;
  left: 0;
}
.txt_r {
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .cts_area {
    padding: 20px 0;
  }
  .cts_area.bk_ranking {
    background: url(../img/cts_bk1.jpg) no-repeat left bottom;
    background-size: 120% auto;
  }
  .cts_area.bk_nipponham {
    background: url(../img/cts_bk2.jpg) no-repeat right top;
    background-size: 120% auto;
  }
  .cts_area.bk_online {
    background-image: url(../img/cts_bk3.jpg), url(../img/cts_bk3.jpg);
    background-repeat: no-repeat, no-repeat;
    background-position: left 10% top 40%, right 10% top 10%;
    background-size: 80% auto, 60% auto;
  }
  .cts_area.bk_card {
    background: url(../img/cts_bk3.jpg) no-repeat left 5% top 60%;
    background-size: 80% auto;
  }
  .cts_area.bk_movie {
    background: url(../img/cts_bk4.jpg) no-repeat right top;
    background-size: 130% auto;
  }
  .cts_area .inner {
    width: calc(100% - 20px);
  }
}

/* category_column */
.cts_area .category_column {
  text-align: center;
}
.cts_area .category_column:not(:last-child) {
  margin: 0 auto 40px;
  padding: 0 0 40px;
  border-bottom: dashed 2px #eaeaea;
}
.cts_area .category_ttl {
  text-align: center;
  color: #1a2a50;
  font-weight: bold;
  border-top: solid 2px #1a2a50;
  border-bottom: solid 2px #1a2a50;
  display: inline-block;
  padding: 0.5em 3em;
  line-height: 1;
  margin: 0 auto 1em;
}
.cts_area .category_txt {
  text-align: left;
  margin: 0 0 1em 1em;
}
.cts_area .list_item {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 0 4px;
  text-align: left;
}
.cts_area .list_item li {
  width: 300px;
  margin: 0 12px 24px;
  list-style: none;
  border: solid 1px #ddd;
  box-sizing: border-box;
  position: relative;
  background: #fff;
}
.cts_area .list_item li .icon_rank {
  width: 50px;
  height: 50px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  top: -20px;
  left: -10px;
  z-index: 1;
}
.cts_area .list_item li .icon_rank.rank1 {
  background: url(../img/icon_rank1.png) no-repeat center center;
  background-size: 50px 50px;
}
.cts_area  .list_item li .icon_rank.rank2 {
  background: url(../img/icon_rank2.png) no-repeat center center;
  background-size: 50px 50px;
}
.cts_area  .list_item li .icon_rank.rank3 {
  background: url(../img/icon_rank3.png) no-repeat center center;
  background-size: 50px 50px;
}
.cts_area .list_item li a {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s ease-out;
  padding: 10px;
  box-sizing: border-box;
}
.cts_area .list_item li a:hover {
  text-decoration: none;
  opacity: 0.6;
}
.cts_area .list_item li .list_item_img img {
  width: 280px;
  height: 280px;
  object-fit: contain;
  background: #f9f9f9;
}
.cts_area .list_item li .list_item_txt {
  padding: 10px 0 0;
}
.cts_area .list_item li .list_item_ttl {
  font-size: 16px;
  font-weight: bold;
  color: #1a2a50;
}
.cts_area .list_item li .list_item_price {
  font-size: 14px;
  text-align: left;
}
.cts_area .link_more {
  text-align: right;
  margin: 1em 2em 0 0;
}
.cts_area .link_more a {
  display: inline-block;
  text-decoration: none;
  line-height: 1;
  transition: opacity 0.3s ease-out;
  color: #1a2a50;
  font-weight: bold;
}
.cts_area .link_more a::after {
  content: "";
  display: block;
  width: calc(100% + 2em);
  height: 15px;
  border-bottom: 1px solid #1a2a50;
  border-right: 1px solid #1a2a50;
  transform: skew(45deg);
  margin: -0.5em 0 0 -1em;
  transition: opacity 0.3s ease-out;
}
.cts_area .link_more a:hover,
.cts_area .link_more a:hover::after {
  opacity: 0.6;
}

@media only screen and (max-width: 767px) {
  .cts_area .category_column:not(:last-child) {
    margin: 0 auto 6vw;
    padding: 0 0 6vw;
  }
  .cts_area .category_txt {
    margin: 0 auto 1em;
  }
  .cts_area .list_item {
    margin: 0 auto;
  }
  .cts_area .list_item li {
    width: 48%;
    margin: 0 0 20px 0;
  }
  .cts_area .list_item li:nth-child(odd) {
    margin: 0 4% 20px 0;
  }
  .cts_area .list_item li .icon_rank {
    width: 40px;
    height: 40px;
    position: absolute;
    top: -20px;
    left: -8px;
  }
  .cts_area .list_item li .icon_rank.rank1 {
    background: url(../img/icon_rank1.png) no-repeat center center;
    background-size: 40px 40px;
  }
  .cts_area .list_item li .icon_rank.rank2 {
    background: url(../img/icon_rank2.png) no-repeat center center;
    background-size: 40px 40px;
  }
  .cts_area .list_item li .icon_rank.rank3 {
    background: url(../img/icon_rank3.png) no-repeat center center;
    background-size: 40px 40px;
  }
  .cts_area .list_item li a:hover {
    opacity: 1;
  }
  .cts_area .list_item li .list_item_img img {
    width: 140px;
    height: 140px;
  }
  .cts_area .list_item li .list_item_ttl {
    font-size: 14px;
  }
  .cts_area .list_item li .list_item_price {
    font-size: 13px;
  }
  .cts_area .link_more {
    margin: 0 2em 0 0;
  }
  .cts_area .link_more a:hover,
  .cts_area .link_more a:hover::after {
    opacity: 1;
  }

}

/* nipponham_area */
.cts_area .nipponham_area {
  text-align: center;
}
.cts_area .nipponham_area .nipponham_bnr {
  width: 1000px;
  transition: opacity 0.3s ease-out;
}
.cts_area .nipponham_area .nipponham_bnr img {
  width: 100%;
  height: auto;
}
.cts_area .nipponham_area .nipponham_bnr:hover {
  opacity: 0.6;
}
.cts_area .nipponham_area .nipponham_notes {
  text-align: left;
  margin: 0.5em 0 0;
}
.cts_area .nipponham_area .nipponham_notes li {
  list-style: none;
  text-indent: -1em;
  padding: 0 0 0 1em;
}

@media only screen and (max-width: 767px) {
  .cts_area .nipponham_area .nipponham_bnr {
    width: 100%;
  }
  .cts_area .nipponham_area .nipponham_bnr:hover {
    opacity: 1;
  }
}

/* wrapping_area */
.cts_area .wrapping_area {
}
.cts_area .wrapping_area .wrapping_txt {
  margin: 0 auto 1em;
}
.cts_area .wrapping_area .wrapping_notice {
  margin: 0 auto 1em;
  text-indent: -1em;
  padding: 0 0 0 1em;
}
.cts_area .wrapping_area .wrapping_column:not(:last-child) {
  margin: 0 auto 40px;
  padding: 0 0 40px;
  border-bottom: dashed 2px #eaeaea;
}
.cts_area .wrapping_area .subttl_balloon {
  display: inline-block;
  font-weight: bold;
  padding: 0.2em 0.5em;
  border: 3px solid #ffb03c;
  box-shadow: 3px 3px 0 0 #ffb03c;
  position: relative;
  margin: 0 auto 30px;
  background: #fdffdd;
}
.cts_area .wrapping_area .subttl_balloon::before,
.cts_area .wrapping_area .subttl_balloon::after {
  content: '';
  height: 0;
  width: 0;
  border: solid transparent;
  position: absolute;
  left: 30px;
}
.cts_area .wrapping_area .subttl_balloon::before {
  border-color: transparent;
  border-top-color: #ffb03c;
  border-right-color: #ffb03c;
  border-width: 10px;
  top: 100%;
  left: 26px;
}
.cts_area .wrapping_area .subttl_balloon::after {
  border-color: transparent;
  border-top-color: #fdffdd;
  border-right-color: #fdffdd;
  border-width: 6.5px;
  top: 99%;
}
.cts_area .wrapping_area .wrapping_ttl {
  background: #b6e6eb;
  font-weight: bold;
  margin: 0 auto 10px;
  padding: 5px 0.5em;
}
.cts_area .wrapping_area .wrapping_img_area {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 30px;
}
.cts_area .wrapping_area .wrapping_img_area .wrapping_img_area_sample {
  width: 200px;
}
.cts_area .wrapping_area .wrapping_img_area .wrapping_img_area_example {
  width: calc(100% - 220px);
  margin-left: 20px;
}
.cts_area .wrapping_area .wrapping_img_area_sample {
}
.cts_area .wrapping_area .wrapping_img_area_sample ul li {
  list-style: none;
}
.cts_area .wrapping_area .wrapping_img_area_sample ul li:not(:last-child) {
  margin: 0 0 15px;
}
.cts_area .wrapping_area .wrapping_img_area_example {
}
.cts_area .wrapping_area .wrapping_img_area_example ul {
  display: flex;
  flex-wrap: wrap;
}
.cts_area .wrapping_area .wrapping_img_area_example ul li {
  list-style: none;
  width: 300px;
  margin: 0 20px 20px 0;
}
.cts_area .wrapping_area .wrapping_img_area ul li .caption {
  display: block;
  font-size: 14px;
  font-weight: bold;
  margin: 3px 0 0;
}
.cts_area .wrapping_area .wrapping_img_area_example .example_txt {
  font-size: 14px;
  display: inline-block;
  margin: 0.5em auto 0;
}
.cts_area .wrapping_area .wrapping_img_area_example .example_txt span {
  font-weight: bold;
}
.cts_area .wrapping_area img {
  width: 100%;
  height: auto;
}
.cts_area .wrapping_ribbon {
  display: inline-block;
  position: relative;
  height: 40px;
  line-height: 40px;
  text-align: center;
  padding: 0 30px;
  font-size: 18px;
  background: #0c7985;
  color: #FFF;
  box-sizing: border-box;
  margin: 0 auto 10px;
}
.cts_area .wrapping_ribbon::before,
.cts_area .wrapping_ribbon::after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}
.cts_area .wrapping_ribbon::before {
  top: 0;
  left: 0;
  border-width: 20px 0px 20px 15px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}
.cts_area .wrapping_ribbon::after {
  top: 0;
  right: 0;
  border-width: 20px 15px 20px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}
.cts_area .wrapping_area .wrapping_card_area {
  display: flex;
}
.cts_area .wrapping_area .wrapping_card_area > div {
  width: calc(50% - 10px);
}
.cts_area .wrapping_area .wrapping_card_area > div:first-child {
  margin-right: 20px;
}

@media only screen and (max-width: 767px) {
  .cts_area .wrapping_area .wrapping_column:not(:last-child) {
    margin: 0 auto 6vw;
    padding: 0 0 6vw;
  }
  .cts_area .wrapping_area .wrapping_img_area {
    display: block;
    margin: 0 auto;
  }
  .cts_area .wrapping_area .wrapping_img_area .wrapping_img_area_sample {
    width: 100%;
    margin: 0 0 20px;
  }
  .cts_area .wrapping_area .wrapping_img_area .wrapping_img_area_example {
    width: 100%;
    margin: 0 auto;
  }
  .cts_area .wrapping_area .wrapping_img_area_sample ul {
    display: flex;
  }
  .cts_area .wrapping_area .wrapping_img_area_sample ul li {
    width: 120px;
    height: auto;
  }
  .cts_area .wrapping_area .wrapping_img_area_sample ul li:not(:last-child) {
    margin: 0 20px 0 0;
  }
  .cts_area .wrapping_area .wrapping_img_area_example ul li {
    width: 48%;
    margin: 0 0 40px 0;
  }
  .cts_area .wrapping_area .wrapping_img_area_example ul li:nth-child(odd) {
    margin: 0 4% 30px 0;
  }
  .cts_area .wrapping_area .wrapping_img_area ul li .caption {
    font-size: 11px;
  }
  .cts_area .wrapping_area .wrapping_img_area_example .example_txt {
    font-size: 12px;
  }
  .cts_area .wrapping_ribbon {
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }
  .cts_area .wrapping_ribbon::before {
    border-width: 15px 0px 15px 15px;
  }
  .cts_area .wrapping_ribbon::after {
    border-width: 15px 15px 15px 0px;
  }
  .cts_area .wrapping_area .wrapping_card_area {
    display: block;
  }
  .cts_area .wrapping_area .wrapping_card_area > div {
    width: 100%;
    margin: 0 auto 20px;
  }
  .cts_area .wrapping_area .wrapping_card_area > div:first-child {
    margin: 0 auto 20px;
  }
}

/* movie_area */
.cts_area .movie_area {
  margin: 2em auto 0;
  text-align: center;
}
.cts_area .movie_area video {
  width: 600px;
  height: auto;
}

@media only screen and (max-width: 767px) {
  .cts_area .movie_area video {
    width: 100%;
  }
}

/* bring_area */
.cts_area .bring_area {
  text-align: left;
}
.cts_area .bring_area p {
  color: #1a2a50;
  margin: 0 auto 1em;
}
.cts_area .bring_area p a {
  color: #1a2a50;
}
.cts_area .bring_area .bring_notice {
  text-indent: -1em;
  padding: 0 0 0 1em;
}
.cts_area .bring_area .link_more {
  margin: 0 2em 1em 0;
}
.cts_area .bring_area .bring_flow {
  display: flex;
  justify-content: space-between;
  margin: 20px auto;
  padding: 10px;
  background: #eee;
}
.cts_area .bring_area .bring_flow li {
  list-style: none;
  height: 100px;
}
.cts_area .bring_area .bring_flow li img {
  width: auto;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .cts_area .bring_area .bring_flow {
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    padding: 5px;
    background: #eee;
  }
  .cts_area .bring_area .bring_flow li {
    list-style: none;
    height: 60px;
    padding: 3px;
  }
}

/* insta_area */
.cts_area .insta_txt {
  text-align: left;
}
.cts_area .insta_area {
  margin: 20px auto;
}
.cts_area .insta_area .instafeed {
  display: flex;
  justify-content: center;
}
.cts_area .insta_area .instafeed li {
  list-style: none;
  width: 150px;
  margin: 0 10px;
}
.cts_area .insta_area .instafeed li img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

@media only screen and (max-width: 767px) {
  .cts_area .insta_area {
    margin: 20px auto 0;
  }
  .cts_area .insta_area .instafeed {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .cts_area .insta_area .instafeed li {
    width: 30vw;
    margin: 0 10px;
    margin: 0 0 2vw;
  }
  .cts_area .insta_area .instafeed li img {
    width: 30vw;
    height: 30vw;
    object-fit: cover;
  }
}

/* trivia_area */
.cts_area .trivia_area {
  padding: 10px;
  background: rgba(255, 255, 255, 0.7);
}
.cts_area .trivia_area > dt {
  color: #1a2a50;
  font-weight: bold;
  display: inline-block;
  background: linear-gradient(transparent 60%, #f8ff9f 60%);
  margin: 0 auto 0.5em;
}
.cts_area .trivia_area > dd {
  color: #1a2a50;
}
.cts_area .trivia_area > dd:not(:last-of-type) {
  margin: 0 auto 2em;
}
.cts_area .trivia_area .trivia_btn {
  margin: 1em auto 0;
}
.cts_area .trivia_area .trivia_btn_area {
  margin: 1em auto;
  display: flex;
}
.cts_area .trivia_area .trivia_btn_area li {
  list-style: none;
}
.cts_area .trivia_area .trivia_btn_area li:not(:last-child) {
  margin-right: 20px;
}
.cts_area .trivia_area .trivia_btn a,
.cts_area .trivia_area .trivia_btn_area li a {
  display: inline-block;
  background: #314a84;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  line-height: 1;
  padding: 0.7em 1em 0.6em;
  font-weight: bold;
  border-bottom: solid 5px #0c2765;
  transition: opacity 0.3s ease-out;
}
.cts_area .trivia_area trivia_btn a::after,
.cts_area .trivia_area .trivia_btn_area li a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  margin-left: 0.5em;
}
.cts_area .trivia_area .trivia_btn a:hover,
.cts_area .trivia_area .trivia_btn_area li a:hover {
  opacity: 0.6;
}


.cts_area .gift_notice_area {
  margin: 1em auto 0;
}
.cts_area .gift_notice_area .gift_notice_ttl {
  font-weight: bold;
  margin: 0 auto 0.3em;
}
.cts_area .gift_notice_area .gift_notice_list {
  border: double 3px #444;
  padding: 0.2em 0.5em;
}
.cts_area .gift_notice_area .gift_notice_list dt {
  font-weight: bold;
  margin: 0 auto 0.2em;
}
.cts_area .gift_notice_area .gift_notice_list dd:not(:last-child) {
  margin: 0 auto 1em;
}
.cts_area .gift_notice_area .gift_notice_list .occupation {
  display: flex;
  flex-wrap: wrap;
}
.cts_area .gift_notice_area .gift_notice_list .occupation li {
  list-style: none;
}
.cts_area .gift_notice_area .gift_notice_list .occupation li:not(:last-child)::after {
  content: "/";
  display: inline-block;
  margin: 0 0.5em;
}

@media only screen and (max-width: 767px) {
  .cts_area .trivia_area .trivia_btn_area {
    flex-wrap: wrap;
  }
  .cts_area .trivia_area .trivia_btn_area li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/* qanda_area */
.cts_area .qanda_area {
}
.cts_area .qanda_area dt {
  margin: 0 auto 10px;
}
.cts_area .qanda_area dt > span,
.cts_area .qanda_area dd > span {
  float: left;
}
.cts_area .qanda_area dt > div,
.cts_area .qanda_area dd > div {
  margin: 0 0 0 35px;
}
.cts_area .qanda_area dt p {
  color: #1a2a50;
  font-weight: bold;
}
.cts_area .qanda_area dt .qanda_q {
  border: solid 1px #1a2a50;
  border-radius: 5px;
  line-height: 1;
  display: inline-block;
  padding: 4px 0 2px;
  background: #1a2a50;
  color: #fff;
  font-weight: bold;
  width: 24px;
  text-align: center;
}
.cts_area .qanda_area dd {
  margin: 0 auto 30px;
}
.cts_area .qanda_area dd .qanda_a {
  border: solid 1px #1a2a50;
  border-radius: 5px;
  line-height: 1;
  display: inline-block;
  padding: 4px 0 2px;
  color: #1a2a50;
  font-weight: bold;
  width: 24px;
  text-align: center;
}
.cts_area .qanda_area dd > div p span {
  font-weight: bold;
}
.cts_area .qanda_area dd > div p:not(:last-child) {
  margin: 0 auto 1em;
}
.cts_area .qanda_area dd .btn a {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 0.3em 1em 0.2em;
  background:#006294;
  background: linear-gradient(180deg, rgba(121, 207, 233, 1), rgba(73, 147, 184, 1) 50%, rgba(25, 118, 164, 1) 50%, rgba(26, 144, 183, 1) 99%, rgba(74, 169, 201, 1));
  border-radius: 8px;
  border: 2px solid #219bc0;
  box-shadow:
    0px 5px 0px rgba(000,000,000,0.1),
    inset 0px 0px 10px rgba(087,087,087,0);
  text-shadow:
    0px -1px 0px rgba(000,000,000,0.4),
    0px 1px 0px rgba(255,255,255,0.3);
  text-decoration: none;
  text-align: center;
}
.cts_area .qanda_area dd .qanda_notice {
  text-indent: -1em;
  padding: 0 0 0 1em;
}
.cts_area .qanda_area .img_chat {
  width: 50px;
  height: 50px;
  vertical-align: middle;
}

@media only screen and (max-width: 767px) {
  .cts_area .qanda_area dt > div,
  .cts_area .qanda_area dd > div {
    margin: 0 0 0 30px;
    padding: 2px 0 0 0;
  }
  .cts_area .qanda_area dt .qanda_q {
    width: 20px;
  }
  .cts_area .qanda_area dd .qanda_a {
    width: 20px;
  }
}

/* bnr_area */
.cts_area .bnr_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 40px;
}
.cts_area .bnr_area li {
  list-style: none;
  width: 440px;
  transition: opacity 0.3s ease-out;
}
.cts_area .bnr_area li:nth-child(n+3) {
  margin: 40px 0 0;
}
.cts_area .bnr_area li:hover {
  opacity: 0.6;
}
.cts_area .bnr_area li img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 767px) {
  .cts_area .bnr_area {
    display: block;
    margin: 0 auto;
  }
  .cts_area .bnr_area li {
    width: 100%;
    margin: 0 auto 4vw;
  }
  .cts_area .bnr_area li:nth-child(n+3) {
    margin: 0 auto 4vw;
  }
  .cts_area .bnr_area li:last-child {
    margin: 0 auto;
  }
  .cts_area .bnr_area li:hover {
    opacity: 1;
  }
}



/*--------------------------------------
  footer
---------------------------------------*/
footer {
  background: #1a2a50;
  padding: 20px 0;
}
footer .copy {
  font-size: 16px;
  line-height: 1;
  color: #fff;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  footer {
    padding: 10px 0;
  }
  footer .copy {
    font-size: 10px;
  }
}

/* btn_cart */
.btn_cart {
  position: fixed;
  right: 170px;
  bottom: 100px;
}
.btn_cart a {
  display: block;
  width: 60px;
  height: 60px;
  background: url(../img/icon_cart.png) no-repeat center center #fff8f8;
  background-size: 40px 40px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border: solid 1px #1a2a50;
  border-radius: 50%;
  transition: opacity 0.3s ease-out;
}
.btn_cart a:hover {
  opacity: 0.6;
}

@media only screen and (max-width: 767px) {
  .btn_cart {
    right: 0;
    bottom: 50px;
  }
  .btn_cart a {
    width: 50px;
    height: 50px;
  }
  .btn_cart a:hover {
    opacity: 1;
  }
}

