/*配色の設定*/
:root {
  /* ベースカラー：ブラック */
  --bc: #222222;
  /* メインカラー：ディープブラック */
  --mc: #000000;
  /* アクセントカラー1：マゼンタ */
  --ac1: #cc0099;
  /* アクセントカラー2：イエロー */
  --ac2: #ffff00;
  /* フォントカラー1：ホワイト */
  --fc1: #ffffff;
  /* フォントカラー2：シアン */
  --fc2: #0099ff;
  
  
  /* 背景色1：グレイ */
  --bg1: rgb(255, 255, 255, 0.9);
  /* 背景色2：ライトレッド */
  --bg2: rgb(204,0,153,0.3);
  /* 背景色1：グレイ */
  --bg3: rgb(0, 0, 0, 0.9);
  
  
  }
  
  
  
  
  
  /* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  ■■■■■■■■■■■■モバイル向け：画面幅（～767px)■■■■■■■■■■■■
  ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
  
  /* ◆◆◆◆◆↓↓↓ 基本レイアウト ↓↓↓◆◆◆◆◆ */
  body {
    background-color: var(--bc);
    margin: 0;
    font-size: 1.0em;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    letter-spacing: 0.08em;
    color: var(--fc1);
    height: 100%;
  }
  
  .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: 100vh;
    margin: 0 auto;
  }
  
  header, nav, .top-picture, .contents, footer {
      width: 100%;
  }
  
  .accent {
    color: var(--ac1);
  }
  .accent2 {
    color: var(--fc2);
  }
  
  
  
  header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--mc);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 2;
  }
  
  header .logo {
    width: 70%;
  }
  header h1{
    margin: 0;
    /* display: flex; */
    display: -ms-grid;
    display: grid;
  }
  
  header h1 img{
    width: 50%;
    margin: 0 auto;
    
    padding: 20px;
  }
  
  header .sp-menu, header .sp-login ,header .sp-cart {
    margin-left: auto;
    width: 10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  header .sp-menu #open, header .sp-login #openlogin, header .sp-cart #opencart {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: auto;
    font-size: 1.5em;
    background-color: var(--mc);
    color: var(--fc1);
    cursor: pointer;
    -webkit-box-align: top;
        -ms-flex-align: top;
            align-items: top;
    border: none;
  }
  header .sp-menu #open.hide {
    display: none;
  }
  
  .overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg3);
    padding: 64px;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity .6s;
    -o-transition: opacity .6s;
    transition: opacity .6s;
  }
  
  .overlay.show {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
  }
  
  .overlay #close  {
    width: 10%;
    height: calc( 2.25 * 10vw );
    font-size: 1.5em;
    background-color: transparent;
    color: var(--fc1);
    cursor: pointer;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
  }
  
  
  
  
  .overlay nav {
    margin: 0;
  }
  .overlay  ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    z-index: 1;
  }
  
  .overlay  li {
    font-weight: bold;
    line-height: 3;
    text-align: center;
    padding-bottom: 20px;
    opacity: 0;
    -webkit-transform: translateY(100px);
        -ms-transform: translateY(100px);
            transform: translateY(100px);
    -webkit-transition: opacity .3s, -webkit-transform .3s;
    transition: opacity .3s, -webkit-transform .3s;
    -o-transition: opacity .3s, transform .3s;
    transition: opacity .3s, transform .3s;
    transition: opacity .3s, transform .3s, -webkit-transform .3s;
  }
  .overlay.show li {
    opacity: 1;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .overlay.show li:nth-child(1) {
    -webkit-transition-delay: .1s;
         -o-transition-delay: .1s;
            transition-delay: .1s;
  }
  .overlay.show li:nth-child(2) {
    -webkit-transition-delay: .2s;
         -o-transition-delay: .2s;
            transition-delay: .2s;
  }
  .overlay.show li:nth-child(3) {
    -webkit-transition-delay: .3s;
         -o-transition-delay: .3s;
            transition-delay: .3s;
  }
  .overlay.show li:nth-child(4) {
    -webkit-transition-delay: .4s;
         -o-transition-delay: .4s;
            transition-delay: .4s;
  }
  .overlay.show li:nth-child(5) {
    -webkit-transition-delay: .5s;
         -o-transition-delay: .5s;
            transition-delay: .5s;
  }
  .overlay.show li:nth-child(6) {
    -webkit-transition-delay: .6s;
         -o-transition-delay: .6s;
            transition-delay: .6s;
  }
  
  .overlay li a {
    font-size: 1.3em;
    text-decoration: none;
    color: var(--fc1);
  }
  
  nav ul li a:hover {
    opacity: 0.5;  
  }
  .pc-menu ,.pc-login-cart{
    display: none;
  }
  
  
  .contents {
    padding:20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .contents h1 {
    text-align: center;
    color: var(--mc);
    margin-bottom: 0;
  }
  
  
  
  footer {
    background-color: var(--mc);
    color: var(--fc1);
    margin-top: auto;
    padding: 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
  }
  footer .terms p {
    padding-bottom: 10px;
  }
  footer .terms p a {
    text-decoration: none;
    color: var(--fc1);
  }
  footer .SNS {
    font-size: 2.5em;
  }
  footer a {
    text-decoration: none;
  }
  footer .T-btn {
    background-color: var(--mc);
    color: var(--fc2);
  }
  footer .I-btn {
    background-color: var(--mc);
    color: var(--ac1);
  }
  
  
  .push-btn {
    /* background-image: linear-gradient(180deg, var(--fc2), var(--ac1) 45%,var(--ac1) 100%);
    color: var(--fc2);
    border: 2px solid var(--ac1); */
    background-image: url(../img/bg1.jpg);
    color: var(--mc);
    border: white 3px solid;
    border-bottom: none;
    border-radius: 5px;
    padding: 8px;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
  }
  .push-btn:hover {
    opacity: 0.5;
    }
  
    .punctuateBar { 
      width: 100%;
      height: 30px;
      background-image: -webkit-gradient(linear, left top, left bottom, from(#777777) ,color-stop(5%, #777777), color-stop(25%, var(--fc1)), color-stop(75%, var(--fc1)), color-stop(95%, #777777), to(#777777));
      background-image: -o-linear-gradient(top, #777777 ,#777777 5%, var(--fc1) 25%, var(--fc1) 75%, #777777 95%, #777777  100%);
      background-image: linear-gradient(180deg, #777777 ,#777777 5%, var(--fc1) 25%, var(--fc1) 75%, #777777 95%, #777777  100%);
     }
  
     /* パンくずリスト */
  #breadcrumb {
    font-size: smaller;
  }
  
  #breadcrumb ol {
    list-style: none;
    margin: 0 0 10px 0;
    padding: 0;
  }
  
  #breadcrumb ol li {
    display: inline;
  }
  
  #breadcrumb ol li:not(:last-child)::after {
    content: ">";
    padding-left: 7px;
  }
  /*◆◆◆◆◆↑↑↑ 基本レイアウト ↑↑↑◆◆◆◆◆*/
  
  
  
  
  
  /* ◆◆◆◆◆↓↓↓ index ↓↓↓◆◆◆◆◆ */
  /* ローディング画面 */
  #loading {
    width: 100vw;
    height: 100vh;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    background-color: var(--mc);
    
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
  }
  .spinner {
    width: 100px;
    height: 100px;
    margin: 200px auto;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
            animation: sk-scaleout 1.0s infinite ease-in-out;
  }
  /* ローディングアニメーション */
  @-webkit-keyframes sk-scaleout {
    0% {
      -webkit-transform: scale(0);
              transform: scale(0);
    } 100% {
      -webkit-transform: scale(1.0);
              transform: scale(1.0);
      opacity: 0;
    }
  }
  @keyframes sk-scaleout {
    0% {
      -webkit-transform: scale(0);
              transform: scale(0);
    } 100% {
      -webkit-transform: scale(1.0);
              transform: scale(1.0);
      opacity: 0;
    }
  }
  
  .loaded {
    opacity: 0;
    visibility: hidden;
  }
  
  
  #index .contents {
    padding: 0;
  }
  #index .top-pic {
    margin-bottom: calc( -100vw * 10 / 18);
  }
  #index .top-pic img {
    width: 100%;
    vertical-align:top;
  }
  /* #index .top-pic .top-message {
    width: 100%;
    height: calc(100vw * 10 / 18);
    position: relative;
    top: calc(-100vw * 10 / 18);
  } */
  
  #index .top-pic .text-content{
    width: 100%;
    height: calc(100vw * 10 / 18);
    position: relative;
    top: calc(-100vw * 10 / 18);
    background-color: black;
    opacity: 0.5;
    text-align: center;
    
   }
   #index .top-pic .text-content .type-text{
    color: #fff;
    font-size: 1.5em;
    line-height: calc(100vw * 10 / 18);
   }
  
  
  
  #index .top-banner img {
    width: 100%;
  }
  
  #index .toShopping, #index .toAbout, #index .toNews {
    margin-bottom: -100px;
  }
  #index .toAnotherPage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #index .toAnotherPage img {
    width: 100%;
    height: 100px;
    -o-object-fit: cover;
       object-fit: cover;
    vertical-align:top;
  }
  #index .toAnotherPage a {
    text-decoration: none;
  }
  #index .toAnotherPage .clickBoad {
    width: 100%;
    height: 100px;
    position: relative;
    top: -100px;
    z-index: 2;
    background-image: url(../img/bg1.jpg);
    background-repeat: repeat;
    border: solid 2px var(--bc);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: var(--bc);
    font-size: 1.2em;
    font-family:   Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-align: center;
    text-justify: center;
  }
  #index .toAnotherPage .clickBoad:hover {
    opacity: 0.7;
  }
  
  /*◆◆◆◆◆↑↑↑ index ↑↑↑◆◆◆◆◆*/
  
  
  
  
  /* ◆◆◆◆◆↓↓↓ shopping ↓↓↓◆◆◆◆◆ */
  
  /* タブの設定 */
  /* #shopping .tab-wrap {
    display: flex;
    flex-wrap: wrap;
    margin:20px 0;
  }
  #shopping .tab-wrap:after {
    content: '';
    width: 100%;
    height: 3px;
    background: var(--ac1);
    display: block;
    order: -1;
  }
  #shopping .tab-label {
    color:var(--fc1);
    background-image: url(../img/bg1.jpg);
    font-weight: bold;
    text-shadow: 0 -1px 0 rgba(0,0,0,.2);
    white-space: nowrap;
    text-align: center;
    padding: 10px .5em;
    order: -1;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
    flex: 1;
  }
  #shopping .tab-label:not(:last-of-type) {
    margin-right: 5px;
  }
  #shopping .tab-content {
    width: 100%;
    height: 0;
    overflow: hidden;
    opacity: 0;
  } */
  /* アクティブなタブ */
  /* #shopping .tab-switch:checked+.tab-label {
    background: var(--ac1);
  }
  #shopping .tab-switch:checked+.tab-label+.tab-content {
    height: auto;
    overflow: auto;
    padding: 15px;
    opacity: 1;
    transition: .5s opacity;
    box-shadow: 0 0 3px rgba(0,0,0,.2);
  } */
  /* ラジオボタン非表示 */
  /* #shopping .tab-switch {
    display: none;
  } */
  
  
  
  /* タブ1 T-shirts */
  
  #shopping .contents h1 {
    color: var(--fc1);
    font-weight: bold;
    font-size: 1.5em;
    margin-bottom: 30px;
  }
  
  #shopping #goodstshirts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  
  #shopping #goodstshirts figure {
    width: 45%;
    margin: 0 0 20px;
    padding: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    border-radius: 20px;
    border: solid 2px var(--fc1);
    font-size: 0.9em;
  }
  
  
  #shopping #goodstshirts figure dl{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  
  #shopping #goodstshirts figure dt{
    -webkit-box-flex :0;
        -ms-flex :0 0 5em;
            flex :0 0 5em;
  }
  
  #shopping #goodstshirts figure dd{
    -webkit-box-flex :0;
        -ms-flex :0 0 calc(100% - 5em);
            flex :0 0 calc(100% - 5em);
    margin: 0;
  }
  #shopping figure form{
    display: inline;
  }
  #shopping #goodstshirts figure p{
    font-size: 1.2em;
    margin: 0;
  }
  #shopping #goodstshirts figure img {
    border-radius: 10px;
    width: 80%;
  }
  
  #shopping #goodstshirts input[type="number"] {
    width: 3em;
    text-align: right;
  }
  
  /* cart */
  #shopping #cart {
    background-color: var(--bg1);
    /* height: 500px; */
    padding: 20px;
    position: fixed;
    bottom: 0;
    right: 0;
    border: solid 2px var(--ac1);
  }
  #shopping #cart table{
    /* background-color: #fff;
    opacity:0.5; */
    color: var(--mc);
    table-layout: auto;
    border-collapse: collapse;
    empty-cells: hide;
    border: solid 1px var(--mc);
    margin-bottom: 30px;
  }
  #shopping #cart th,
  #shopping #cart td {
    padding: 5px;
    border: solid 1px var(--mc);
  }
  #shopping #cart th {
    background-color: var(--bg2);
    text-align: center;
  }
  #shopping #cart td {
    text-align: right;
  }
  #shopping #cart td:first-child {
    text-align: left;
  }
  #shopping #cart .submit-btn {
    color: var(--ac1);
  }
  
  
  /* ◆◆◆◆◆↑↑↑ shopping ↑↑↑◆◆◆◆◆*/
  
  /* ◆◆◆◆◆↓↓↓ confirm ↓↓↓◆◆◆◆◆ */
  #confirm .contents h1 {
    color: var(--fc1);
    font-weight: bold;
    font-size: 1.5em;
    margin-bottom: 30px;
  }
  #confirm #goodstshirts figure {
    width: 100%;
    margin: 0 0 20px;
    padding: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    border-radius: 20px;
    border: solid 2px var(--fc1);
    font-size: 0.9em;
  }
  #confirm #goodstshirts figure img {
    border-radius: 10px;
    width: 80%;
  }
  #confirm #cart #view {
    margin-bottom: 30px;
  }
  #confirm #cart .submit-btn {
    color: var(--ac1);
  }
  
  /* ◆◆◆◆◆↑↑↑ confirm ↑↑↑◆◆◆◆◆*/
  
  /* ◆◆◆◆◆↓↓↓ customer ↓↓↓◆◆◆◆◆ */
  #customer .contents h1 {
    color: var(--fc1);
    font-weight: bold;
    font-size: 1.5em;
    margin-bottom: 30px;
  }
  #customer .agree_btn {
    margin-bottom: 30px;
  }
  #customer .next .submit-btn {
    color: var(--ac1);
  }
  /* ◆◆◆◆◆↑↑↑ customer ↑↑↑◆◆◆◆◆*/
  
  /* ◆◆◆◆◆↓↓↓ customer_confirm ↓↓↓◆◆◆◆◆ */
  #customer_confirm .contents h1 {
    color: var(--fc1);
    font-weight: bold;
    font-size: 1.5em;
    margin-bottom: 30px;
  }
  #customer_confirm #goodstshirts figure {
    width: 100%;
    margin: 0 0 20px;
    padding: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    border-radius: 20px;
    border: solid 2px var(--fc1);
    font-size: 0.9em;
  }
  #customer_confirm #goodstshirts figure img {
    border-radius: 10px;
    width: 80%;
  }
  #customer_confirm #cart {
    width: 100%;
    text-align: center;
  }
  #customer_confirm #cart input[type="text"],
  #customer_confirm #cart input[type="email"],
  #customer_confirm #cart input[type="tel"],
  #customer_confirm #cart input[type="postal"],
  #customer_confirm #cart textarea {
    width: 75%;
  }
  #customer_confirm #cart table {
    width: 40%;
    margin-left: auto;
    margin-right: auto;
    border: solid 1px var(--fc1);
    margin-bottom: 50px;
  }
  #customer_confirm #cart th,
  #customer_confirm #cart td {
    padding: 5px;
    border: solid 1px var(--fc1);
  }
  #customer_confirm #cart #view {
    margin-bottom: 30px;
  }
  #customer_confirm #cart .submit-btn {
    color: var(--ac1);
  }
  
  /* ◆◆◆◆◆↑↑↑ customer_confirm ↑↑↑◆◆◆◆◆*/
  
  /* ◆◆◆◆◆↓↓↓ done ↓↓↓◆◆◆◆◆ */
  #done .contents h1 {
    color: var(--fc1);
    font-weight: bold;
    font-size: 1.5em;
    margin-bottom: 30px;
  }
  #done .top-btn {
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    width: 6em;
  }
  #done .top-btn a {
    text-decoration: none;
    color: var(--mc);
  }
  /* ◆◆◆◆◆↑↑↑ done ↑↑↑◆◆◆◆◆*/
  
  /* ◆◆◆◆◆↓↓↓ about ↓↓↓◆◆◆◆◆ */
  #about .about-contents {
    margin-bottom: 30px;
  }
  
  #about .about-contents h1 {
    color: var(--fc1);
    font-weight: bold;
    font-size: 1.5em;
  }
  
  #about .about-contents img {
    width: 25%;
    float: right;
    border-radius: 30px;
  }
  
  /* ◆◆◆◆◆↑↑↑ about ↑↑↑◆◆◆◆◆*/
  
  /* ◆◆◆◆◆↓↓↓ privacy ↓↓↓◆◆◆◆◆ */
  #privacy .sitepolicy-contents {
    margin-bottom: 30px;
  }
  #privacy .contents .treaty {
    margin-bottom: 30px;
  }
  #privacy .contents h1 {
    color: var(--fc1);
    font-weight: bold;
    font-size: 1.5em;
  }
  #privacy .contents h2 {
    color: var(--fc1);
    font-weight: bold;
    font-size: 1.2em;
  }
  /* ◆◆◆◆◆↑↑↑ privacy ↑↑↑◆◆◆◆◆*/
  
  /* ◆◆◆◆◆↓↓↓ news ↓↓↓◆◆◆◆◆ */
  #news .sitepolicy-contents {
    margin-bottom: 30px;
  }
  #news .contents h1 {
    color: var(--fc1);
    font-weight: bold;
    font-size: 1.5em;
    margin-bottom: 30px;
  }
  #news table {
    margin-bottom: 30px;
    table-layout: auto;
    border-collapse: collapse;
    empty-cells: hide;
  }
  #news table th {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    text-align: center;
  }
  #news table td {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
  }
  #news table td:first-child {
    width: 35%;
  }
  #news table td:nth-child(2) {
    width: 65%;
  }
  /* ◆◆◆◆◆↑↑↑ news ↑↑↑◆◆◆◆◆*/
  
  /* ◆◆◆◆◆↓↓↓ help ↓↓↓◆◆◆◆◆ */
  #help .help-contents {
    margin-bottom: 30px;
  }
  #help .contents .treaty {
    margin-bottom: 50px;
  }
  #help .contents h1 {
    color: var(--fc1);
    font-weight: bold;
    font-size: 1.5em;
  }
  #help .contents h2 {
    color: var(--fc1);
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 15px;
  }
  /* ◆◆◆◆◆↑↑↑ help ↑↑↑◆◆◆◆◆*/
  
  /* ◆◆◆◆◆↓↓↓ sitepolicy ↓↓↓◆◆◆◆◆ */
  #sitepolicy .sitepolicy-contents {
    margin-bottom: 30px;
  }
  #sitepolicy .contents .treaty {
    margin-bottom: 30px;
  }
  #sitepolicy .contents h1 {
    color: var(--fc1);
    font-weight: bold;
    font-size: 1.5em;
  }
  #sitepolicy .contents h2 {
    color: var(--fc1);
    font-weight: bold;
    font-size: 1.2em;
  }
  /* ◆◆◆◆◆↑↑↑ sitepolicy ↑↑↑◆◆◆◆◆*/
  
  /* ◆◆◆◆◆↓↓↓ membership ↓↓↓◆◆◆◆◆ */
  #membership .membership-contents {
    margin-bottom: 30px;
  }
  #membership .contents .treaty {
    margin-bottom: 30px;
  }
  #membership .contents h1 {
    color: var(--fc1);
    font-weight: bold;
    font-size: 1.5em;
  }
  #membership .contents h2 {
    color: var(--fc1);
    font-weight: bold;
    font-size: 1.2em;
  }
  /* ◆◆◆◆◆↑↑↑ membership ↑↑↑◆◆◆◆◆*/
  
  /* ◆◆◆◆◆↓↓↓ privacy ↓↓↓◆◆◆◆◆ */
  #privacy .sitepolicy-contents {
    margin-bottom: 30px;
  }
  #privacy .contents .treaty {
    margin-bottom: 30px;
  }
  #privacy .contents h1 {
    color: var(--fc1);
    font-weight: bold;
    font-size: 1.5em;
  }
  #privacy .contents h2 {
    color: var(--fc1);
    font-weight: bold;
    font-size: 1.2em;
  }
  /* ◆◆◆◆◆↑↑↑ privacy ↑↑↑◆◆◆◆◆*/
  
  /* ◆◆◆◆◆↓↓↓ SCTlaw ↓↓↓◆◆◆◆◆ */
  #SCTlaw .sitepolicy-contents {
    margin-bottom: 30px;
  }
  #SCTlaw .contents h1 {
    color: var(--fc1);
    font-weight: bold;
    font-size: 1.5em;
    margin-bottom: 30px;
  }
  #SCTlaw table {
    margin-bottom: 30px;
    table-layout: auto;
    border-collapse: collapse;
    empty-cells: hide;
  }
  #SCTlaw table td {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
  }
  #SCTlaw table td:first-child {
    width: 25%;
  }
  #SCTlaw table td:nth-child(2) {
    width: 75%;
  }
  /* ◆◆◆◆◆↑↑↑ SCTlaw ↑↑↑◆◆◆◆◆*/
  
  
  
  /* ◆◆◆◆◆↓↓↓ contact ↓↓↓◆◆◆◆◆ */
  /* contact = 入力画面 */
  #contact input[type="text"] {
    height: 2em;
    font-size: 1em;
    width: 60%;
  }
  #contact input[type="email"] {
    height: 2em;
    font-size: 1em;
    width: 70%;
  }
  
  #contact textarea {
    font-size: 1.3em;
    width: 80%;
    height: calc( 2em * 5 );
    line-height: 2;
    white-space: pre-wrap;
  }
  
  
  /* confirm = 確認画面 */
  
  #confirm article{
    text-align: center;
  }
  
  
  
  /* done = 完了画面 */
  
  
  #done article{
    text-align: center;
  }
  
  
  /*◆◆◆◆◆↑↑↑ contact ↑↑↑◆◆◆◆◆*/
  
  
  
  
  
  
  
  
  /* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  ■■■■■■■幅広レイアウト＝タブレット、PC向け：画面幅（768px～)■■■■■■
  ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
  @media screen and (min-width:768px) {
  
  /* ◆◆◆◆◆↓↓↓ 基本レイアウト ↓↓↓◆◆◆◆◆ */
    body {
      font-size: 1.2em;
    }
    .wrapper {
      width: 100%;
    }
    header {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: auto 1fr;
      grid-template-columns: auto 1fr;
      -ms-grid-rows: auto auto;
      grid-template-rows: auto auto;
    }
    header > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
    }
    header > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
    }
    header > *:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
    }
    header > *:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
    }
    header .logo {
      -ms-grid-column: 1;
      grid-column: 1;
      -ms-grid-row: 1;
      -ms-grid-row-span: 2;
      grid-row: 1/3;
      width: 200px;
      display: -ms-grid;
      display: grid;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
    }
  
    header h1 img{
      -ms-grid-column-align: center;
          justify-self: center;  
      width: 90%;
      padding: 0;
      margin-right: 5px;
      margin-left: 5px;
      
    }
    
    header .sp-menu, header .sp-login ,header .sp-cart  {
      display: none;
    }
  
    .pc-menu , .pc-login-cart{
      display: block;
    }
    .pc-menu {
      -ms-grid-column: 2;
      grid-column: 2;
      -ms-grid-row: 2;
      grid-row: 2;
    }
    .pc-login-cart {
      -ms-grid-column: 2;
      grid-column: 2;
      -ms-grid-row: 1;
      grid-row: 1;
      text-align: right;
    }
  
  
  
  
  
    .pc-menu ul{
      width: 100%;
      margin-top: auto;
      margin-bottom: 0;
      padding: 0;
      list-style-type: none;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }
  
    .pc-menu li {
      width: 25%;
      /* align-items: end; */
    }
  
    .pc-menu li a {
      display: block;
      margin: auto;
      font-weight: bold;
      text-align: center;
      background-color: var(--mc);
      color: var(--fc1);
      line-height: 2em;
      text-decoration: none;
      border-left: 2px solid var(--bc);
    }
  
    .pc-menu li a:hover {
      opacity: 0.5;
    }
    .pc-login-cart a{
      text-decoration: none;
      margin-right: 20px;
     }
     .pc-login-cart a:hover {
       opacity: 0.5;
     }
     .pc-login-cart button{
       background-color: var(--mc); 
       color: var(--fc1);
       border: none;
       font-size: 1.0em; 
       cursor: pointer;
     }
     .pc-login-cart button svg {
       padding-right: 10px;
     }
    .contents {
      padding: 30px;
    }
  
  /* ◆◆◆◆◆↑↑↑ 基本レイアウト ↑↑↑◆◆◆◆◆ */
  
  /* ◆◆◆◆◆↓↓↓ index ↓↓↓◆◆◆◆◆ */
  
  
  
  
  
  /* ◆◆◆◆◆↑↑↑ index ↑↑↑◆◆◆◆◆ */
  
  
  
  
  
  /* ◆◆◆◆◆↓↓↓ shopping ↓↓↓◆◆◆◆◆ */
  #shopping .pc-menu li:nth-child(1) a{
    background-color: var(--bg2);
  }
  
  #shopping #goodstshirts figure {
    width: 30%;
  }
  /* ◆◆◆◆◆↑↑↑ shopping ↑↑↑◆◆◆◆◆ */
  
  /* ◆◆◆◆◆↓↓↓ confirm ↓↓↓◆◆◆◆◆ */
  #confirm .pc-menu li:nth-child(1) a{
    background-color: var(--bg2);
  }
  /* ◆◆◆◆◆↑↑↑ confirm ↑↑↑◆◆◆◆◆ */
  
  /* ◆◆◆◆◆↓↓↓ customer ↓↓↓◆◆◆◆◆ */
  #customer .pc-menu li:nth-child(1) a{
    background-color: var(--bg2);
  }
  /* ◆◆◆◆◆↑↑↑ customer ↑↑↑◆◆◆◆◆ */
  
  /* ◆◆◆◆◆↓↓↓ customer_confirm ↓↓↓◆◆◆◆◆ */
  #customer_confirm .pc-menu li:nth-child(1) a{
    background-color: var(--bg2);
  }
  /* ◆◆◆◆◆↑↑↑ customer_confirm ↑↑↑◆◆◆◆◆ */
  
  /* ◆◆◆◆◆↓↓↓ done ↓↓↓◆◆◆◆◆ */
  #done .pc-menu li:nth-child(1) a{
    background-color: var(--bg2);
  }
  /* ◆◆◆◆◆↑↑↑ done ↑↑↑◆◆◆◆◆ */
  
  
  
  /* ◆◆◆◆◆↓↓↓ about ↓↓↓◆◆◆◆◆ */
  #about .pc-menu li:nth-child(2) a{
    background-color: var(--bg2);
  }
  /* ◆◆◆◆◆↑↑↑ about ↑↑↑◆◆◆◆◆ */
  
  /* ◆◆◆◆◆↓↓↓ news ↓↓↓◆◆◆◆◆ */
  #news .pc-menu li:nth-child(3) a{
    background-color: var(--bg2);
  }
  /* ◆◆◆◆◆↑↑↑ news ↑↑↑◆◆◆◆◆ */
  #help .pc-menu li:nth-child(4) a{
    background-color: var(--bg2);
  }
  /* ◆◆◆◆◆↓↓↓ help ↓↓↓◆◆◆◆◆ */
  
  /* ◆◆◆◆◆↑↑↑ help ↑↑↑◆◆◆◆◆ */
  
  
  
  
  /* ◆◆◆◆◆↓↓↓ contact ↓↓↓◆◆◆◆◆ */
  
  
  
  
  
  /* ◆◆◆◆◆↑↑↑ contact ↑↑↑◆◆◆◆◆ */
  }
  
  /* ↑画面幅（768px～) */
  
  /* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  ■■■■■■■幅広レイアウト＝タブレット、PC向け：画面幅（960px～)■■■■■■
  ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
  @media screen and (min-width:960px) {
  
    /* ◆◆◆◆◆↓↓↓ 基本レイアウト ↓↓↓◆◆◆◆◆ */
      body {
        font-size: 1.3em;
      }
      .contents {
        padding: 40px;
      }
  
  
  
  
   
      
    }
  
    /* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  ■■■■■■■幅広レイアウト＝タブレット、PC向け：画面幅（1200px～)■■■■■■
  ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
  @media screen and (min-width:1200px) {
  
    /* ◆◆◆◆◆↓↓↓ 基本レイアウト ↓↓↓◆◆◆◆◆ */
      body {
        font-size: 1.4em;
      }
  
      .contents {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
      }
  
  /* ◆◆◆◆◆↓↓↓ index ↓↓↓◆◆◆◆◆ */
  #index .top-pic {
    margin-bottom:  -666.6667px;
  }
  
  #index .top-pic .text-content{
    height: 666.6667px;
    top: -666.6667px;
  
   }
  
  #index .top-pic .text-content .type-text{
    line-height: 666.6667px;
   }    
  
  
    }
  
      /* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  ■■■■■■■幅広レイアウト＝タブレット、PC向け：画面幅（1500px～)■■■■■■
  ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
  ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓*/
  @media screen and (min-width:1500px) {
  
    /* ◆◆◆◆◆↓↓↓ 基本レイアウト ↓↓↓◆◆◆◆◆ */
      body {
        font-size: 1.5em;
      }
  
    }