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

/* RESET
----------------------------------------------------------------------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, cite, img, strong, i, dl, dt, dd, ol, ul, li,
form, label, table, tbody, thead, tr, th, td, article, embed, figure, figcaption, footer, header, hgroup, nav, section, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}
article, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}

body {
  line-height: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

object {
  pointer-events: none;
}

img {
  pointer-events: none;
}

a {
  text-decoration: none;
  color: #000;
}

/* CONTENTS
----------------------------------------------------------------------------------------------------*/
*, *:before, *:after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 10px;
}

body {
  font-family: "Hiragino Kaku Gothic Pro", "游ゴシック Medium", "Yu Gothic Medium", "YuGothicM", "YuGothic", "Yu Gothic", "-apple-system", "BlinkMacSystemFont", "Helvetica Neue", "Arial", "Meiryo", "sans-serif";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  text-align: center;
  color: #000;
  
}

.bg_animation {
	background: url("../image/animation.jpg");
  animation: loop 23s linear infinite; /* 23sの部分背景画像の約数だとスムーズ */
  -webkit-animation: loop 23s linear infinite;
}
@keyframes loop {
	from { background-position: 0 0; }
    to { background-position: 0 -400px; } /* 400pxとは使用した背景画像の長さ */
}

_:-ms-input-placeholder, :root body {
  font-family: "Segoe UI", "-apple-system", "BlinkMacSystemFont", "Helvetica Neue", "Arial", "Meiryo", "sans-serif";
}

.contents {
  width: 95%;
  max-width: 1024px;
  margin: 0 auto;
}

/* MAIN
--------------------------------------------------------------------------------------*/
main {
  display: block;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 1.8;
}

.main_cont {
  position: relative;
  padding: 30px 0 0;
  color: #0c59bf;
  font-weight: bold;
  line-height: 1;
}

.main_cont .contents {
  max-width: 1200px;
}

.main_cont img {
  width: 100%;
}

.sp {
  display: none;
}

.back {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.item_box {
  display: flex;
  align-items: center;
}

.item {
  max-width: 130px;
}

.item_box:before, .item_box:after {
  content: "";
  flex-grow: 1;
  border-top: dotted 2px #0c59bf;
}

.item_box:before {
  margin-right: 15px;
}

.item_box:after {
  margin-left: 15px;
}

h2 {
  padding-top: 15px;
  font-size: 3.5rem;
}

h3 {
  padding: 15px 0;
  border-bottom: dotted 2px #0c59bf;
  font-size: 5.5rem;
}

h2 span, h3 span {
  display: inline-block;
  padding: 5px 0 0 15px;
}

/* SECTION TITLE
*************************************** */
section {
  padding: 45px 0;
}

/* INTRODUCTION
*************************************** */
#introduction h4 {
  padding-bottom: 20px;
  font-size: 3.5rem;
  font-weight: bold;
}

#introduction h4 span {
  display: inline-block;
}

.text {
  margin-bottom: 5px;
  font-size: 1.8rem;
}

.text span {
  display: inline-block;
}

/* TOKUTEN
*************************************** */
#tokuten {
  display: none;
  background-color: #68cfc3;
}

section#tokuten {
  padding-top: 0;
  background-color: #68cfc3;
}

.buy_tokuten {
  margin-bottom: 45px;
  color: #fff;
  font-size: 3.5rem;
  font-weight: bold;
}

.buy_tokuten span {
  display: inline-block;
}

.buy_tokuten p {
  font-size: 2rem;
  color: #fff6de;
}

.fast_tokuten_box {
  display: flex;
}

.target_detail {
  margin-right: 5%;
  padding: 15px;
  width: 100%; /*30%*/
  text-align: left;
  background-color: #fff;
}

.target_detail:last-child {
  margin-right: 0;
}

.target_title {
  margin-bottom: 15px;
  padding: 10px;
  background-color: #eaeaea;
  color: #000;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.18;
}

.target_title span {
  display: inline-block;
}

/* PCSC
*************************************** */
#pcsc {
  padding: 0;
}

.pcsc {
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 780px;
  margin: 0 auto;
  padding: 15px 10px;
}

.pcsc_logo {
  display: flex;
  align-items: center;
  width: 470px;
}

.pcsc img {
  width: 100%;
  max-width: 50px;
  max-height: 53px;
}

.pcsc span {
  margin-left: 5px;
  font-size: 2.2rem;
  font-weight: bold;
  color: #000;
}

.button {
  display: flex;
  align-items: center;
}

.button li {
  width: 140px;
  margin-left: 8px;
  font-weight: bold;
}

.button li a {
  display: block;
  padding: 12px 5px;
  color: #fff;
  border-radius: 30px;
  transition: all .2s ease-in-out;
}

@media all and (-ms-high-contrast:none) {
  .button li a {
    padding-top: 16px;
  }
}

.use {
  background-color: #808080;
  border: solid 2px #808080;
}

.use:hover {
  color: #808080;
  background-color: #fff;
  border-radius: 30px;
}

.cart {
  background-color: #c6000b;
  border: solid 2px #c6000b;
}

.cart:hover {
  color: #c6000b;
  background-color: #fff;
  border-radius: 30px;
}

/* CART
*************************************** */
#cart {
  padding: 15px 0 45px;
}

.sale_box {
  text-align: left;
  margin-bottom: 90px;
}

.sale_box:last-child {
  margin-bottom: 0;
}

.sale_title {
  margin-bottom: 20px;
  padding: 10px 15px;
  background-color: #073d84;
  color: #fff;
  font-size: 2.7rem;
  font-weight: bold;
  line-height: 1.4;
}

.sale_title span {
  display: inline-block;
}

.sale_info {
  display: flex;
  padding: 5px 0;
}

.picture {
  margin-right: 50px;
  text-align: center;
}

.package_box {
  width: 242px;
}

.jacket_box {
  width: 240px;
  height: 240px;
  margin: 0 auto;
  background-color: #fff;
  border: solid 1px #d0d0d0;
}

.jacket {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 240px;
  max-height: 240px;
}

.jacket_box img,
.jacket_box span {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  max-width: 238px;
  max-height: 238px;
  margin: auto;
}

.fast_jacket {
  max-width: 100%;
}

.fast_box img,
.fast_box span {
  width: 100%;
}

.select_box {
  width: 100%;
}

.select_jacket {
  max-width: 100%;
}

.select_box img,
.select_box span {
  max-width: 900px;
}

.jacket_box span {
  height: 2.5rem;
  color: #d0d0d0;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
}

a.popup {
  display: block;
  width: 100%;
  height: 100%;
}

.column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.column li {
  margin-top: 5px;
  border: solid 1px #d0d0d0;
}

.column .li_border {
  border: none;
}

.column a {
  position: relative;
  display: block;
  width: 75px;
  height: 75px;
}

.column img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  max-width: 75px;
  max-height: 75px;
  margin: auto;
  opacity: .4;
}

.price_box {
  margin-top: 10px;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
}

.price span {
  font-size: 1.8rem;
}

.buy_info a {
  display: block;
  cursor: pointer;
  margin: 0 auto;
  width: 140px;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 30px;
  border: solid 2px #c6000b;
  background-color: #c6000b;
  transition: all .2s ease-in-out;
}

.buy_info a:hover {
  color: #c6000b;
  background-color: #fff;
  border-radius: 30px;
}

.detail_box {
  width: 100%;
}

.detail, .tokuten {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.tokuten_title {
  padding-left: 15px;
  color: #073d84;
  font-size: 2.3rem;
  font-weight: bold;
}

.tokuten_title p {
  display: inline-block;
  font-size: 1.6rem;
}

.tokuten {
  margin-bottom: 30px;
  padding: 15px 15px 0;
  border-top: solid 1px #073d84;
  border-bottom: solid 1px #073d84;
  background-color: #eff8ff;
  line-height: 1.4;
}

.color {
  color: #073d84;
  font-size: 1.8rem;
  font-weight: bold;
}

.bg {
  background: none;
}

.tokuten dt {
  display: table;
  width: 28%;
  padding: 4px 0;
  border-radius: 15px;
  background-color: #073d84;
  color: #fff;
  text-align: center;
}

.tokuten dd {
  width: 68%;
  padding: 4px 0 15px;
  font-weight: bold;
}

.add {
  width: 100%;
  padding: 10px;
  border-top: dotted 1px #808080;
}

.add:first-child {
  padding: 0 10px 10px;
  border: none;
}

.add_title {
  margin-bottom: 5px;
  color: #073d84;
  font-size: 1.8rem;
  font-weight: bold;
}

.add_title:before {
  content: "";
  margin: 0 10px 0 2px;
  border-left: solid 5px #073d84;
}

.add p {
  position:relative;
}

.detail {
  margin-top: 30px;
  word-break: break-all;
}

.detail dt {
  width: 42%;
  position:relative;
  border-bottom: dotted 1px #d0d0d0;
}

.detail dt:before, .add p:before {
  content: "■";
  position: absolute;
  top: 5px;
  left: 0;
  font-size: 1rem;
  vertical-align: middle;
}

.detail dt:after {
  content: ":";
  position: absolute;
  top: -2px;
  right: 0;
}

.detail span, .add span {
  display: block;
  margin-left: 15px;
}

.detail dd {
  width: 58%;
  padding-left: 10px;
  border-bottom: dotted 1px #d0d0d0;
}

.cart_attention {
  padding-top: 20px;
  text-align: center;
}

/* ATTENTION
--------------------------------------------------*/
#attention {
  background-color: #ebebeb;
}

.attention p, .attention .li_style, .attention a {
  color: #c6000b;
  font-weight: bold;
}

.attention .attention_title {
  color: #fff;
}

.attention_title span {
  display: inline-block;
  width: 250px;
  margin: 0 auto;
  background-color: #c6000b;
}

.attention {
  padding: 30px;
  background-color: #fff;
  color: #000;
  text-align: left;
}

.attention li {
  margin-left: 20px;
  list-style-type: disc;
}

.attention p {
  margin: 22px 0 3px;
}

.attention .li_style {
  margin: 22px 0 3px;
  list-style-type: none;
}

.attention .attention_title {
  margin: 0;
  font-size: 3rem;
  text-align: center;
}

.en {
  display: block;
}

/* SNS
--------------------------------------------------*/
#sns {
  display: block;
  padding: 20px 0;
  background-color: #ebebeb;
}

.sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.sns li {
  padding-left: 10px;
}

.sns li:first-child {
  padding-left: 0;
}

/* FOOTER
----------------------------------------------------------------------------------------------------*/
footer {
  width: 100%;
  padding: 30px 5px 85px;
  background-color: #073d84;
  color: #FFF;
  font-size: 1.6rem;
  line-height: 1.8;
}

/* PAGE TOP
----------------------------------------------------------------------------------------------------*/
.page-top {
  display: none;
  position: fixed;
  overflow: hidden;
  width: 50px;
  height: 50px;
  right: calc(50% - 500px);
  bottom: 0;
  margin-bottom: 30px;
  padding: 7px 13px;
  border-radius: 50%;
  background-color: #073d84;
  border: solid 2px #fff;
  z-index: 80;
  transition: all .2s ease-in-out;
}

.page-top .top {
  transition:all 0.5s;
}

.top{
  position: relative;
  top: 7px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 13px solid #fff;
}

.page-top:hover {
  background-color: #fff;
  border: solid 2px #073d84;
}

.page-top:hover .top {
  border-bottom: 13px solid #073d84;
}

/* -------------------- for SP (480px) ---480px以下
----------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 480px) {
  /* MAIN
  --------------------------------------------------------------------------------------*/
  main {
    margin: 0 auto;
  }

  .main_cont {
    padding: 0;
  }

  .back {
    width: 180%;
  }

  .main_cont .contents {
    width: 100%;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .text p {
    margin-bottom: 15px;
  }

  h2 {
    font-size: 8.5vw;
  }

  h3 {
    margin-top: 15px;
    border: none;
    background-color: #0c59bf;
    color: #fff;
    font-size: 15vw;
  }

  /* SECTION TITLE
  *************************************** */
  section {
    padding: 30px 0;
  }

  /* INTRODUCTION
  *************************************** */
  #introduction h4 {
    padding-bottom: 30px;
    font-size: 3rem;
    line-height: 1.4;
  }

  .text {
    margin-bottom: 10px;
    font-size: 1.6rem;
    text-align: left;
  }

  /* TOKUTEN
  *************************************** */
  .buy_tokuten {
    margin-bottom: 20px;
    font-size: 2rem;
  }

  .buy_tokuten p {
    font-size: 1.8rem;
    text-align: left;
  }

  .fast_tokuten_box {
    flex-direction: column;
  }

  .target_detail {
    margin: 0;
    padding: 10px;
    width: 100%;
  }

  .fast_tokuten_detail_box {
    display: block;
  }

  .target_detail {
    border-right: none;
    border-bottom: dotted 1px #000;
  }

  .target_detail:last-child {
    border: none;
  }

  .target_precautions {
    margin-top: 15px;
  }

  /* PCSC
  *************************************** */
  .pcsc {
    display: block;
    padding: 15px 0;
    width: 100%;
  }

  .pcsc_logo {
    justify-content: center;
    width: auto;
  }

  .pcsc img {
    max-width: 40px;
    max-height: 42px;
  }

  .pcsc span {
    font-size: 4vw;
  }

  .button {
    display: block;
    justify-content: center;
    padding-top: 0;
  }

  .button li {
    width: 90%;
    margin: 20px auto 0;
  }

  /* CART
  *************************************** */
  .sale_box {
    margin-bottom: 50px;
  }

  .sale_title {
    padding: 10px;
    font-size: 2rem;
  }

  .disk_c {
    justify-content: center;
  }

  .sale_info {
    display: block;
  }

  .picture {
    display: block;
    margin-right: 0;
  }

  .package_box {
    width: 70vw;
    max-width: 242px;
    margin: auto;
  }

  .column {
    width: 55vw;
    max-width: 240px;
    margin: auto;
  }

  .column li {
    width: 15vw;
    height: 15vw;
  }

  .column a {
    width: 100%;
    height: 100%;
  }

  .jacket_box {
    width: 68vw;
    height: 68vw;
    max-width: 240px;
    max-height: 240px;
    margin: auto;
  }  

  .jacket_box img, .column img {
    max-width: 98%;
    max-height: 98%;
  }

  .jacket_box span {
    height: 5vw;
    font-size: 5vw;
  }

  .noimage {
    font-size: 9vw;
  }

  .price_box {
    width: 100%;
    padding-left: 0;
  }

  .price {
    font-size: 9vw;
  }

  .price span {
    font-size: 1.6rem;
  }

  .buy_info a {
    width: 90%;
  }

  .detail_box {
    margin-top: 20px;
  }

  .tokuten_title {
    text-align: center;
    line-height: 1.4;
  }

  .tokuten_title p {
    display: block;
  }

  .tokuten {
    padding: 10px 10px 0;
  }

  .tokuten dt {
    width: 100%;
  }

  .tokuten dd {
    width: 100%;
    padding: 10px 0;
  }

  .detail {
    line-height: 1.5;
  }

  .detail dt {
    width: 100%;
    border-bottom: none;
  }

  .detail dt:before {
    position: absolute;
    top: 0.5rem;
  }

  .detail dt:after {
    display: none;
  }

  .detail span {
    margin-left: 15px;
    display: inline-block;
  }

  .detail dd {
    width: 100%;
    margin-bottom: 9px;
    padding: 0 0 7px 20px;
  }

  .cart_attention {
    text-align: left;
  }

  /* ATTENTION
  --------------------------------------------------*/
  .attention {
    padding: 30px 15px;
  }

  .attention_title span {
    width: 90%;
  }

  /* SNS
  --------------------------------------------------*/
  .sns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px 0 10px;
    line-height: 2rem;
  }

  .sns li {
    padding-bottom: 25px;
  }

  /* PAGE TOP
  *************************************** */
  .page-top {
    right: 2vw;
  }
}
/* (max-width: 480px) end */


/* -------------------- for Tablet (481px) and (1023px) ---481から1023px以内
----------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 481px) and (max-width: 1023px) {
  /* MAIN
  --------------------------------------------------------------------------------------*/
  main {
    margin: 0 auto;
  }

  .main_cont {
    padding: 2vw 0 0;
  }

  /* SECTION TITLE
  *************************************** */
  section {
    padding: 30px 0;
  }

  /* INTRODUCTION
  *************************************** */
  #introduction h4 {
    font-size: 2.5rem;
  }

  .text {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }

  .text span {
    display: inline-block;
  }

  /* TOKUTEN
  *************************************** */
  .buy_tokuten {
    margin-bottom: 15px;
    font-size: 2.5rem;
  }

  .buy_tokuten p {
    font-size: 1.8rem;
  }

  .fast_box {
    max-width: 100%;
    /*height: 25vw;*/
  }

  .target_detail {
    margin-right: 2%;
    padding: 10px;
    /*width: 32%;*/
  }

  .target_precautions {
    margin-top: 10px;
  }

  /* PCSC
  *************************************** */
  .pcsc {
    display: block;
    padding: 15px 0;
    width: 100%;
  }

  .pcsc_logo {
    justify-content: center;
    width: auto;
  }

  .pcsc img {
    max-width: 40px;
    max-height: 42px;
  }

  .button {
    justify-content: center;
    padding-top: 15px;
  }

  /* CART
  *************************************** */
  .sale_title {
    font-size: 2.5rem;
  }

  .sale_info {
    display: block;
  }

  .picture {
    display: block;
    margin-right: 0;
  }

  .package_box {
    width: 70vw;
    max-width: 242px;
    margin: auto;
  }

  /*.jacket_box img {
    max-width: 98%;
    max-height: 98%;
  }*/

  .jacket_box span {
    height: 5vw;
    font-size: 5vw;
  }

  .noimage {
    font-size: 9vw;
  }

  .price_box {
    width: 100%;
  }

  .detail_box {
    margin-top: 30px;
  }

  .tokuten {
    padding: 10px 10px 0;
  }

  /* LINK
  *************************************** */
  .link {
    font-size: 2rem;
  }

  /* PAGE TOP
  *************************************** */
  .page-top {
    right: 25px;
  }
}
/* (min-width: 481px) and (max-width: 1023px) end */
