@charset "UTF-8";
/*　変数　*/
:root{
/*色*/
--font: #555555;
--blue: #58A9EF;
--gray: #00000029;
--white: #ffffff;
/*左右の余白*/
--side: 183px;
}
/*サイズの基準：1rem = 100px*/
:root {
    font-size: 100px;
}
body {
    color: var( --font);
    font-size: 0.16rem;
    font-family: sans-serif;
    line-height: 1.5;
    background-color: var( --white);
}
body, h1, h2, h3, h4, h5, h6, p, ul, figure {
    margin: 0;
    padding: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
a {
    text-decoration: none;
}
a:hover {
    opacity: 0.6;
    transition-duration: 0.3s;
    color: #0000ee;
}

li {
    list-style: none;
}

@media (max-width: 640px){
  body {
    font-size: 0.12rem;
  }
}

/*ここからスタート*/
/*ヘッダー*/
.header {
    text-align: center;
    margin-top: 100px;
}

  
/*余白*/
.wrapper {
    width: 74%;
    margin: 0 auto;
    max-width: 1062px;
}

@media (max-width: 640px){
.wrapper {
    width: 84%;
  }
}

.hr-title {
    font-size: 0.24rem;
}

.nav-link {
    margin-top: 24px;
}

.sub-title {
    margin-top: 24px;
}

.pb {
    margin-top: 18px;
} 


ul.footer-nav {
    overflow: hidden;
    list-style: none;
    font-size: 10px;
    width: 500px;
    margin: auto;
}

@media (max-width: 640px){
ul.footer-nav {
    width: 100%;
}
}

ul.footer-nav li {
    box-sizing: border-box;
    border-right: 1px solid #333;
    width: 33%;
    float: left;
    text-align: center;
}

.copy {
    text-align: center;
    font-size: 11px;
    font-family: 'Century Gothic',sans-serif;
    font-weight: 700;
    margin: 32px auto 0;
}

.footer {
    margin:80px 0;
}

.red {
   color: #f62e36;
}

/*payment*/
/*クレジットカード*/
table.border {
    border-top: 1px solid #CCCCCC;
    border-left: 1px solid #CCCCCC;
    margin: auto;
}

table {
    width: 100%;  
table-layout: fixed;
word-break: break-all;
word-wrap: break-all;
}

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

.payment_Table_Group1 {
    width: 30%;
}

.payment_Table_Group2 {
    width: 25%;
}

.payment_Table_Group3 {
    width: 15%;
}

tbody {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}

tr {
    display: table-row;
    vertical-align: inherit;
    border-color: inherit;
}

.td-title {
    width: 25%;
    background-color: #F0F0F0;
    text-align: center;
}

@media (max-width: 640px){
   .td-title {
    width: 10%;
   }
}

.payment_CardTable_Group1, .payment_CardTable_Group2 {
    width: 15%;
}

.payment_CardTable_Group1, .payment_CardTable_Group2 {
    width: 15%;
}

.payment_CardTable_Group1, .payment_CardTable_Group2 {
    width: 30%;
}

.border th {
    padding: 8px 10px 8px 10px;
    border-right: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
    text-align: center;
    background-color: #EEE;
    font-weight: bold;
}

.delivery_map {
    display: flex;
    margin: 80px 0;
}

.delivery_place {
    margin-left: 80px;
}

.delivery_time {
    margin-top: 40px;
}

.footer-link {
    font-size: 0.16rem;
}

@media (max-width: 1024px){
    .delivery_map {
    flex-wrap: wrap;
   }
}

@media (max-width: 414px){
   .footer-link {
    font-size: inherit;
   }
}



/*ラベル*/
#nav-open {
    display: inline-block;
    vertical-align: middle;
    background-color: #333333;
    color: #ffffff;
    text-align: left;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 99;
    padding: 12px 0 12px 0;
    height: 36px;
}

#nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    /* border-radius: 3px; */
    background: #333333;
    display: block;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 0.20rem;
    font-weight: bold;
}

/*メニュー*/
/*メニュー表示非表示切替用チェックボックス*/
.nav-unshown {display:none;}
 
 
/*メニューを閉じるカバーエリア*/
#nav-close {
    display: none;/*はじめは隠しておく*/
    position: fixed;
    z-index: 9998;/*最前面のすぐ下に表示*/
    top: 0;/*全体に広がるように*/
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
}
 
/*メニューの内容*/
#nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;/*最前面に表示*/
    width: 80%;/*右側に隙間を作る（閉じるカバーを表示）*/
    max-width: 330px;/*最大幅（調整してください）*/
    height: 100%;
    background: #fff;/*背景色*/
    transition: .3s ease-in-out;/*滑らかに表示*/
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);/*左に隠しておく*/
    padding: 8px;
}
#nav-input:checked ~ #nav-close {
    display: block;/*メニューを閉じるカバーを表示*/
    opacity: .5;
}
#nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);/*中身を表示（右へスライド）*/
    box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
/*
.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
}
*/
 .list-title {
    font-weight: bold;
    margin-top: 24px;
 }

/*お買い物ガイド*/
.step-menu {
    border: 1px solid #CCCCCC;
    margin-bottom: 10px;
    padding: 10px;
}

.step-menu h5 {
    background-color: #E5E5E5;
    border-bottom: 1px solid #CCCCCC;
    font-weight: bold;
    position: relative;
    left: -10px;
    padding: 10px;
    top: -10px;
    width: 100%;
    margin: 0px;
}

.nav-category {
    margin-bottom: 7px;
    padding: 10px 0px 0px 0;
}

.nav-category ul {
    margin-left: 5px;
}

.nav-category li {
    padding: 0 4px 8px 12px;
    width: 90%;
    list-style: none;
    text-rendering: : left;
}

/*アパレル用語辞典*/

.icon-list {
    margin-top: 8px; 
}

.btn-flat-simple {
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 0.25em 0.5em;
  text-decoration: none;
  color: #00BCD4;
  background: #ECECEC;
  transition: .4s;
}

.sozai:hover {
  background: #ECECEC;
  color: #ea5550;
}

.sozai {
    color: white;
    background-color: #ea5550;
    padding: 0 7px;
}

.eri:hover {
  background: #ECECEC;
  color: #4496d3;
}

.eri {
    color: white;
    background-color: #4496d3;
    padding: 0 7px;
}

.design:hover {
  background: #ECECEC;
  color: orange;
}

.design {
    color: white;
    background-color: orange;
    padding: 0 7px;
}

.parts:hover {
  background: #ECECEC;
  color: #79c06e;
}

.parts {
    color: white;
    background-color: #79c06e;
    padding: 0 7px;
}

.tops:hover {
  background: #ECECEC;
  color: #6b3f31;
}

.tops {
    color: white;
    background-color: #6b3f31;
    padding: 0 7px;
}

.botoms:hover {
  background: #ECECEC;
  color: #915da3;
}

.botoms {
    color: white;
    background-color: #915da3;
    padding: 0 7px;
}

.denim:hover {
  background: #ECECEC;
  color: #043c78;
}

.denim {
    color: white;
    background-color: #043c78;
    padding: 0 7px;
}

.race:hover {
  background: #ECECEC;
  color: #e95388;
}

.race {
    color: white;
    background-color: #e95388;
    padding: 0 7px;
}

@media (min-width: 1025px){
    .ap-icon {
        display: flex;
        margin-top: 32px;
}

    .icon-list {
        margin-left: 18px;
    }
}

/*word.html*/

th {
    width: 25%;
    border-bottom:1px dotted #CCCCCC;
    padding: 20px 5px;
    text-align: left;
    color: #333333;
    background-color: #FFFFFF;
    vertical-align: top;
    font-weight: normal;
}

td {
    padding: 20px 0px 20px 15px;
    text-align: left;
    color: #333333;
    background-color: #FFFFFF;
    border-bottom:1px dotted #CCCCCC;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 1024px){
    td {
        flex-wrap: wrap;
    }
}

h2 {
    margin-top: 40px;
}

.sakuin-icon {
    display: flex;
    flex-wrap: wrap;
}

.sakuin {
    color: #ffffff;
    background-color: #d70035;
    padding: 4px 8px;
    font-weight: bold;
}

.sakuin:hover {
  background: #ECECEC;
  color: #d70035;
  cursor: pointer;
}

.topbtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
}

.btn-circle-flat {
  display: inline-block;
  text-decoration: none;
  background: #d70035;
  color: #FFF;
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 50%;
  text-align: center;
  overflow: hidden;
  transition: .4s;
  font-weight: bold;
}

.btn-circle-flat:hover {
  background: #E5E5E5;
  color: #d70035;
}

@media (max-width: 1024px){
    .btn-circle-flat {
        height: 70px;
        width: 70px;
        line-height: 70px;
}
}

.under {
    text-align: center;
    margin: 20px 0;
}