@charset "UTF-8";
/*------------------------------------------------------------------
[ Reset ]
------------------------------------------------------------------*/
html, body, main, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

main, article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #f5f5f5;
  color: #504F4F;
  text-decoration: none;
}

mark {
  color: #504F4F;
  font-style: normal;
  font-weight: normal;
  background: linear-gradient(transparent 60%, #fbf67b 60%);
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #DEDEDF;
  margin: 1em 0;
  padding: 0;
}

img {
  font-size: 0;
  line-height: 0;
  vertical-align: bottom;
  max-width: 100%;
}

a img {
  vertical-align: bottom;
  border: 0;
}

input,
button,
textarea,
select {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
  background: #FFF;
  border: 1px solid #DEDEDF;
  border-radius: 4px;
  font-size: 1.3rem;
  padding: 0.4em 1em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select {
  font-size: inherit;
  text-indent: 0.01px;
  text-overflow: "";
  color: inherit;
}

select option {
  background-color: inherit;
}

select::-ms-expand {
  display: none;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #828c9a;
}

input,
select {
  vertical-align: middle;
}

input::-moz-placeholder {
  color: #B1B1B1;
}
input:-ms-input-placeholder {
  color: #B1B1B1;
}
input::-webkit-input-placeholder {
  color: #B1B1B1;
}
input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #FFF inset;
}

input:hover {
  border-color: #f6a481;
}

input:focus {
  background: #fffded;
}

input[type=submit],
input[type=button] {
  box-sizing: border-box;
  border: none;
  border-radius: 5px;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  background: #F06021;
  color: #FFF;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}
input[type=submit]:hover,
input[type=button]:hover {
  color: #FFF;
  background-color: #f6a481;
  border-color: #f6a481;
  text-decoration: none;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
  background: #F06021;
}

small,
.small {
  font-size: 75%;
}

/*------------------------------------------------------------------
[ Base ]
------------------------------------------------------------------*/
html {
  overflow-x: hidden;
  font-size: 62.5%;
  height: 100%;
  min-height: 100vh;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  position: relative;
  font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 1.625;
  color: #504F4F;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background: #FFF;
  display: flex;
  flex-flow: column;
  width: 100%;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media all and (-ms-high-contrast: none) { /* IE */
  _:-ms-input-placeholder, :root body {
    font-family: "BIZ UDPGothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 1.5rem;
  }
}
a {
  cursor: pointer;
  color: #504F4F;
  outline: 0;
  text-decoration: none;
}
a:focus, a:hover, a:active {
  outline: none;
}

@media (max-width: 959px) {
  a:active {
    color: #F06021;
  }
}
@media (min-width: 960px) {
  a:hover {
    color: #B1B1B1;
  }
}
strong,
h1,
h2,
h3,
h4 {
  font-weight: 700;
}

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

::-moz-selection {
  color: #FFF;
  background: #F06021;
  text-shadow: none;
}

::selection {
  color: #FFF;
  background: #F06021;
  text-shadow: none;
}

::-webkit-selection {
  color: #FFF;
  background: #F06021;
  text-shadow: none;
}

::-moz-selection {
  color: #FFF;
  background: #F06021;
  text-shadow: none;
}

.jp-en {
  font-family: "Nunito Sans", YuGothic, "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
}

.en {
  font-family: "Nunito", YuGothic, "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
}

/*------------------------------------------------------------------
[Footer]
------------------------------------------------------------------*/
#footer {
  padding-top: 20px;
  padding-bottom: 15px;
  color: #707070;
  flex-shrink: 0;
  transition: padding ease 0.5s;
}
#footer ul {
  font-size: 0;
}
#footer ul li {
  display: inline-block;
  font-size: 1.6rem;
}
#footer .copyright {
  font-size: 1.5rem;
}
#footer .copyright span {
  display: inline-block;
  position: relative;
  top: 2px;
}

@media (max-width: 959px) {
  #footer {
    text-align: center;
  }
  #footer.sc-open {
    padding-bottom: 125px;
  }
  #footer ul li {
    padding-left: 0.5em;
    padding-right: 0.5em;
    line-height: 2;
  }
  #footer .copyright {
    line-height: 1;
    padding-top: 15px;
  }
}
@media (min-width: 960px) {
  #footer {
    padding-top: 35px;
    padding-bottom: 30px;
  }
  #footer.sc-open {
    padding-bottom: 100px;
  }
  #footer ul {
    float: left;
    width: 70%;
  }
  #footer ul li {
    line-height: 1;
    padding-right: 1.5em;
  }
  #footer .copyright {
    float: right;
    width: 30%;
    line-height: 1.1;
    text-align: right;
  }
}
/*------------------------------------------------------------------
 [Header]
------------------------------------------------------------------*/
#header {
  height: 50px;
  background: #FFF;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
}
#header .container {
  height: 100%;
}
#header #logo {
  text-align: center;
}

#searchbox #search_category {
  display: none; /* 2022.9.22 追記 */
  float: left;
  height: 33px;
  overflow: hidden;
  text-align: center;
  position: relative;
  color: #707070;
  background: #EFEAE1;
  border-radius: 18px 0 0 18px;
}
#searchbox #search_category select {
  cursor: pointer;
  height: 33px;
  padding: 0 30px;
  text-align: center;
  border: none;
  border-radius: 0;
  background: none;
}
#searchbox #search_category::before, #searchbox #search_category::after {
  position: absolute;
  content: "";
  right: 13px;
  display: inline-block;
  border-style: solid;
  pointer-events: none;
}
#searchbox #search_category::before {
  top: 10px;
  border-width: 0 3px 5px 3px;
  border-color: transparent transparent #707070 transparent;
}
#searchbox #search_category::after {
  bottom: 10px;
  border-width: 5px 3px 0 3px;
  border-color: #707070 transparent transparent transparent;
}
#searchbox #search_wrap {
  float: left;
  background: #F5F4EF;
  height: 33px;
  border-radius: 18px;
  position: relative;
}
#searchbox #search_text {
  font-size: 1.4rem;
  line-height: 33px;
  padding-left: 15px;
  color: #707070;
  height: 33px;
  border-radius: 0;
  background: none;
  border: none;
}
#searchbox #search_text:-webkit-autofill {
  box-shadow: 0 0 0 1000px #F5F4EF inset;
}
#searchbox #search_text::-webkit-search-cancel-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#searchbox #search_btn {
  display: block;
  position: absolute;
  top: 0;
  right: 13px;
  margin-left: 10px;
}
#searchbox #search_btn i {
  line-height: 33px;
  font-size: 2rem;
}

#header-icons {
  list-style: none;
  display: flex;
  font-size: 0;
}
#header-icons li {
  position: relative;
}
#header-icons li i {
  font-size: 2rem;
  line-height: 1;
}
#header-icons li .cart-num {
  display: inline-block;
  position: absolute;
  top: -5px;
  left: 16px;
  background: #F06021;
  color: #FFF;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  padding: 2px 3px;
  border-radius: 7px;
}

@media (max-width: 959px) {
  #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
  #header .container {
    height: 50px;
    display: flex;
    align-items: center;
  }
  #header #logo {
    padding-left: 10px;
    width: 100px;
    flex: 1;
    text-align: left;
    font-size: 0;
  }
  #header #logo .logo-text {
    width: 100px;
  }
  #toggle-hum {
    width: 28px;
    padding: 10px 5px;
    cursor: pointer;
    font-size: 0;
  }
  #toggle-hum .hum {
    display: inline-block;
    width: 18px;
    height: 2px;
    background: #504F4F;
    position: relative;
  }
  #toggle-hum .hum::before, #toggle-hum .hum::after {
    display: inline-block;
    position: absolute;
    content: "";
    width: 18px;
    height: 2px;
    left: 0;
    background: #504F4F;
    transition: all 0.3s ease;
  }
  #toggle-hum .hum::before {
    top: -7px;
  }
  #toggle-hum .hum::after {
    bottom: -7px;
  }
  #toggle-hum.active .hum {
    height: 0;
  }
  #toggle-hum.active .hum::before {
    transform: translateY(6px) rotate(-45deg);
  }
  #toggle-hum.active .hum::after {
    transform: translateY(-6px) rotate(45deg);
  }
  #searchbox {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    top: 50px;
    left: 0;
    padding: 10px 0 10px 15px;
    width: 100%;
    background: #625739;
    transition: all ease 0.5s;
    font-size: 0;
    letter-spacing: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  #searchbox #btn_search_close {
    float: left;
    margin-right: 3px;
    font-size: 3rem;
    line-height: 30px;
    color: #F5F4EF;
    position: relative;
    top: 2px;
  }
  #searchbox #search_category {
    width: 100px;
  }
  #searchbox #search_category select {
    width: 100px;
    padding: 0 10px;
    font-size: 1.6rem;
    transform: scale(0.85);
  }
  #searchbox #search_wrap {
    width: calc(100% - 50px); /* 2022.9.22 修正 */
  }
  #searchbox #search_text {
    font-size: 1.6rem;
    width: 109%; /* 2022.9.22 修正 */
    transform: scale(0.85);
    transform-origin: center left;
    padding-left: 15px;
  }
  #searchbox.open {
    top: 50px;
    visibility: visible;
    opacity: 1;
  }
  #header-icons i {
    display: block;
    padding: 0 5px;
  }
  #header-icons #h-search a {
    transition: color 0.3s ease;
  }
  #header-icons #h-search a.active {
    color: #F06021;
  }
}
@media (min-width: 960px) {
  #header {
    height: 190px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.5s ease;
  }
  #header .container {
    padding-top: 18px;
    height: 100%;
  }
  #header #logo {
    width: 136px;
  }
  #header #logo img {
    display: block;
    margin: 0 auto;
    transition: margin-top 0.5s ease;
  }
  #header #logo .logo-mark {
    width: 75px;
  }
  #header #logo .logo-text {
    margin-top: 10px;
    width: 136px;
  }
  #searchbox {
    position: absolute;
    right: 0;
    top: 43px;
    width: 425px;
    transition: top 0.5s ease;
  }
  #searchbox #search_category {
    width: 130px;
    font-size: 1.5rem;
  }
  #searchbox #search_category select {
    width: 130px;
  }
  #searchbox #search_wrap {
    width: 385px; /* 2022.9.22 修正 */
  }
  #searchbox #search_text {
    font-size: 1.4rem;
    width: 350px; /* 2022.9.22 修正 */
  }
  #searchbox #h-help-pc {
    float: left;
    margin-left: 10px;
    font-size: 2.5rem;
    line-height: 33px;
  }
  #header-icons {
    position: absolute;
    right: 40px;
    bottom: 60px;
    transition: bottom 0.5s ease;
  }
  #header-icons li {
    padding-left: 20px;
  }
  #header-icons li i {
    vertical-align: middle;
  }
  #header-icons li span.hide-note_down {
    display: inline-block;
    font-size: calc(1.4rem + (1vw - 9.6px) * 0.5);
    letter-spacing: 0.02em;
    line-height: 1;
    padding-left: 7px;
    vertical-align: middle;
  }
  #header-icons li .cart-num {
    left: 30px;
  }
  .h-scroll #header {
    height: 95px;
    position: fixed;
    top: 0;
    left: 0;
  }
  .h-scroll #header #logo .logo-mark {
    margin-top: -105px;
  }
  .h-scroll #header #logo .logo-text {
    margin-top: 32px;
  }
  .h-scroll #header #searchbox {
    top: 15px;
  }
  .h-scroll #header #header-icons {
    bottom: 13px;
  }
  .h-scroll #header #header-icons li {
    padding-left: 15px;
  }
  .h-scroll #header #header-icons li span.hide-note_down {
    display: none;
  }
  .h-scroll #header #header-icons li .cart-num {
    left: 25px;
  }
}
@media (min-width: 1355px) {
  #header-icons li span.hide-note_down {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
}
/*------------------------------------------------------------------
[Global Navigation]
------------------------------------------------------------------*/
@media (max-width: 959px) {
  #gnav {
    position: fixed;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #625739;
    transition: all 0.5s ease;
  }
  #gnav #btn_gnav_close {
    color: #F5F4EF;
    font-size: 3rem;
    line-height: 1;
    padding: 10px 4vw;
  }
  #gnav .gnav-toggles {
    margin-top: 10vw;
    border-top: 1px solid #A39782;
  }
  #gnav .gnav-toggles > li {
    border-bottom: 1px solid #A39782;
    font-size: 0;
  }
  #gnav .gnav-toggles > li > a {
    display: inline-block;
    font-size: 1.6rem;
    line-height: 50px;
    color: #F5F4EF;
    width: calc(100% - 86px);
    border-right: 1px solid #A39782;
    padding: 0 9vw;
    vertical-align: middle;
  }
  #gnav .gnav-toggles > li .toggle {
    display: inline-block;
    font-size: 3rem;
    line-height: 50px;
    text-align: center;
    width: 85px;
    color: #F5F4EF;
    vertical-align: middle;
    transition: all 0.5s ease;
  }
  #gnav .gnav-toggles > li .toggle.active {
    transform: rotate(180deg);
  }
  #gnav .gnav-toggles > li ul {
    display: none;
    padding: 15px 9vw;
    border-top: 1px solid #A39782;
    background: #897E5F;
  }
  #gnav .gnav-toggles > li ul li {
    display: inline-block;
    font-size: 0;
    color: #F5F4EF;
  }
  #gnav .gnav-toggles > li ul li a {
    color: #F5F4EF;
    font-size: 1.4rem;
    line-height: 2;
    margin-right: 2em;
  }
  #gnav.open {
    opacity: 1;
    visibility: visible;
  }
  #gnav #gnav-sub {
    padding: 10vw 9vw 20px;
  }
  #gnav #gnav-sub li {
    display: inline-block;
    font-size: 0;
    color: #F5F4EF;
  }
  #gnav #gnav-sub li a {
    color: #F5F4EF;
    font-size: 1.4rem;
    line-height: 2;
    margin-right: 2em;
  }
}
@media (max-width: 374px) {
  #gnav .gnav-toggles {
    margin-top: 0;
  }
  #gnav #gnav-sub {
    padding-top: 5vw;
  }
}
@media (min-width: 960px) {
  #gnav {
    position: absolute;
    top: 158px;
    left: 40px;
    transition: top 0.5s ease;
  }
  #gnav ul.gnav-toggles {
    display: flex;
  }
  #gnav ul.gnav-toggles > li {
    font-size: calc(1.4rem + (1vw - 9.6px) * 0.5);
    line-height: 1;
    letter-spacing: 0.02em;
    padding-right: calc(15px + (1vw - 9.6px) * 1);
    position: relative;
    transition: all 0.5s ease;
    position: relative;
  }
  #gnav ul.gnav-toggles > li > a {
    display: inline-block;
    height: 32px;
  }
  #gnav ul.gnav-toggles > li > a i {
    position: relative;
    top: 5px;
    color: #F06021;
    transition: top ease 0.2s;
  }
  #gnav ul.gnav-toggles > li > a:hover i {
    top: 8px;
  }
  #gnav ul.gnav-toggles > li ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 22px;
    width: 100%;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(34, 30, 19, 0.5);
  }
  #gnav ul.gnav-toggles > li ul.subnav-used {
    width: calc(100% + 40px);
  }
  #gnav ul.gnav-toggles > li ul li {
    font-size: 0;
    line-height: 1;
  }
  #gnav ul.gnav-toggles > li ul li a {
    display: block;
    background: #625739;
    color: #F5F4EF;
    font-size: 1.3rem;
    line-height: 1.3;
    border-bottom: 1px solid #726542;
    padding: 8px 15px 7px;
    transition: background ease 0.3s;
  }
  #gnav ul.gnav-toggles > li ul li a.jp {
    font-size: 1.2rem;
  }
  #gnav ul.gnav-toggles > li ul li a:hover {
    background: #897E5F;
    color: #F5F4EF;
  }
  #gnav ul.gnav-toggles > li:hover ul {
    transition-delay:0.15s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.15s;
    visibility: visible;
    opacity: 1;
    top: 32px;
  }
  .h-scroll #header #gnav {
    top: 63px;
  }
}
@media (min-width: 1355px) {
  #gnav ul.gnav-toggles > li {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    padding-right: 30px;
  }
  #gnav ul.gnav-toggles > li ul.subnav-used {
    width: calc(100% + 30px);
  }
  #gnav ul.gnav-toggles > li ul li a {
    font-size: 1.4rem;
  }
  #gnav ul.gnav-toggles > li ul li a.jp {
    font-size: 1.3rem;
  }
}
/*------------------------------------------------------------------
[Page Layout]
------------------------------------------------------------------*/
#content {
  background: #F5F4EF;
  flex: 1 0 auto;
  min-height: 380px; /* IE11用 */
  position: relative;
}

#toppage {
  background: #E8E4DE;
}

#sub-genre {
  background: #EFEAE1;
}

.container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1355px;
  position: relative;
}

@media (max-width: 959px) {
  #content {
    padding-top: 50px;
  }
  .bgcolor {
    padding-bottom: 80px;
  }
  .bgcolor#new-recommended, .bgcolor#sub-genre {
    padding-bottom: 40px;
  }
  .container {
    padding-left: 15px;
    padding-left: 4vw;
    padding-right: 15px;
    padding-right: 4vw;
  }
  .fullwidth {
    margin-left: -15px;
    margin-left: -4vw;
    margin-right: -15px;
    margin-right: -4vw;
  }
}
@media (min-width: 960px) {
  #content {
    padding-top: 190px;
    transition: padding-top 0.5s ease;
  }
  .bgcolor {
    padding-bottom: 80px;
  }
  .bgcolor#new-recommended, .bgcolor#sub-genre {
    padding-bottom: 40px;
  }
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .h-scroll #content {
    padding-top: 95px;
  }
}
/*------------------------------------------------------------------
[Information][Bread]
------------------------------------------------------------------*/
#topinfo, #bread {
  background: #F5F4EF;
}

/* Information */
#topinfo article {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  line-height: 1;
  color: #897E5F;
}
#topinfo article h2 {
  padding-right: 10px;
  padding-top: 2px;
}
#topinfo article h3 {
  margin-top: 2px;
  padding-right: 10px;
}
#topinfo article h3 a {
  color: #F06021;
  white-space: nowrap;
}
#topinfo article p {
  padding: 2px 15px 0 17px;
}
#topinfo article #btn-topinfo {
  white-space: nowrap;
  cursor: pointer;
}
#topinfo article #btn-topinfo i {
  position: relative;
  top: 3px;
}

@media (max-width: 767px) {
  #topinfo article h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 959px) {
  #topinfo article {
    height: 35px;
    letter-spacing: 0;
    justify-content: center;
  }
}
@media (min-width: 960px) {
  #topinfo article {
    height: 55px;
    font-size: calc(1.4rem + (1vw - 9.6px) * 0.5);
  }
  #topinfo article h2 {
    font-size: calc(1.6rem + (1vw - 9.6px) * 0.5);
    padding-right: 17px;
  }
  #topinfo article h3 {
    padding-right: 17px;
    border-right: 1px solid #707070;
  }
  #topinfo article h3 a:hover {
    color: #f59369;
  }
  #topinfo article #btn-topinfo {
    color: #F06021;
  }
  #topinfo article #btn-topinfo:hover {
    color: #f59369;
  }
}
@media (min-width: 1355px) {
  #topinfo article {
    font-size: 1.6rem;
  }
  #topinfo article h2 {
    font-size: 1.8rem;
  }
}
/* Bread Lists */
#bread ul {
  font-size: 0;
  padding: 9px 0;
}
#bread ul li {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0;
}
#bread ul li i {
  vertical-align: middle;
  padding: 0 0.5em;
}
#bread ul li.current {
  color: #F06021;
}

@media (min-width: 960px) {
  #bread ul {
    float: left;
    padding: 16px 0;
  }
  #bread ul li {
    font-size: 1.4rem;
  }
  #bread .back-list {
    float: right;
    width: 140px;
  }
}
/*------------------------------------------------------------------
[Page Title]
------------------------------------------------------------------*/
#pagetitle {
  background: #EFEAE1;
}
#pagetitle h1 {
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 17px/23px;
  padding-top: 0.4em;
  padding-bottom: 0.24em;
}

@media (min-width: 960px) {
  #pagetitle h1 {
    font-size: 2rem;
  }
}
@media (min-width: 1355px) {
  #pagetitle h1 {
    font-size: 2.4rem;
  }
}
/*------------------------------------------------------------------
[Information -Modal-]
------------------------------------------------------------------*/
#modal-info .modal-scroll {
  padding: 0 5vw;
}
#modal-info article h2 {
  color: #F06021;
  font-size: 1.6rem;
}
#modal-info article .info-body {
  font-size: 1.4rem;
  margin-top: 5px;
}
#modal-info article .info-img img {
  width: 100%;
  height: auto;
}
#modal-info article .info-txt.float_right.max50 {
  max-width: calc(50% - 20px) !important;
}
#modal-info article + article {
  padding-top: calc(15px + (1vw - 3.2px) * 1.1);
  margin-top: calc(15px + (1vw - 3.2px) * 1.1);
  border-top: 1px solid #DEDEDF;
}

@media (max-width: 479px) {
  #modal-info article .info-img.float_left.w100-sp {
    float: none;
    margin-right: 0;
    margin-bottom: 10px;
  }
  #modal-info article .info-img.float_right.w100-sp {
    float: none;
    margin-left: 0;
  }
  #modal-info article .info-txt.float_right.max50 {
    float: none;
    max-width: 100% !important;
  }
}
@media (min-width: 860px) {
  #modal-info .modal-scroll {
    padding: 20px 40px;
  }
  #modal-info article h2 {
    font-size: 1.9rem;
  }
  #modal-info article .info-body {
    font-size: 1.6rem;
  }
  #modal-info article + article {
    padding-top: 30px;
    margin-top: 30px;
  }
}
/*------------------------------------------------------------------
[Pagetop]
------------------------------------------------------------------*/
#pagetop {
  position: absolute;
  cursor: pointer;
  color: #fff;
  text-align: center;
  background: #A39782;
  border-radius: 100%;
}

@media (max-width: 959px) {
  #pagetop {
    right: 15px;
    right: 4vw;
    bottom: 20px;
    width: 40px;
    height: 40px;
  }
  #pagetop .ri-arrow-up-line {
    font-size: 2.4rem;
    line-height: 40px;
  }
  .morelist + #pagetop {
    bottom: 80px;
  }
}
@media (min-width: 960px) {
  #pagetop {
    right: 40px;
    bottom: 50px;
    width: 70px;
    height: 70px;
    transition: background 0.3s ease;
  }
  #pagetop:hover {
    background: #F06021;
  }
  #pagetop .ri-arrow-up-line {
    font-size: 4rem;
    line-height: 70px;
  }
}
@media (min-width: 1355px) {
  #pagetop {
    right: calc(50% - 640px);
  }
}
/*------------------------------------------------------------------
[Modal]
------------------------------------------------------------------*/
body.modal-open {
  position: fixed;
  overflow-y: hidden;
}

.modal-wrapper {
  z-index: 1500;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  padding: 20px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal-wrapper.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s, visibility 0.4s;
}
.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  vertical-align: middle;
  content: "";
}
.modal-wrapper .modal-body {
  display: inline-block;
  z-index: 20;
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 960px;
  padding: 35px 5px 10px 0;
  border-radius: 4px;
  background: #fff;
  vertical-align: middle;
  box-shadow: 0 0 15px rgba(66, 58, 38, 0.15);
}
.modal-wrapper .modal-content {
  width: 100%;
  height: 100%;
  max-height: 100%;
  text-align: left;
}
.modal-wrapper .modal-content iframe {
  width: 100%;
  height: 100%;
}
.modal-wrapper .modal-content .modal-scroll {
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
.modal-wrapper .modal-content .modal-scroll::-webkit-scrollbar {
  width: 4px;
}
.modal-wrapper .modal-content .modal-scroll::-webkit-scrollbar-track {
  border-radius: 2px;
  box-shadow: inset 0 0 6px rgba(98, 87, 57, 0.3);
}
.modal-wrapper .modal-content .modal-scroll::-webkit-scrollbar-thumb {
  background: rgba(98, 87, 57, 0.3);
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}
.modal-wrapper .modal-content .modal-scroll::-webkit-scrollbar-thumb:hover, .modal-wrapper .modal-content .modal-scroll::-webkit-scrollbar-thumb:active {
  background: rgba(98, 87, 57, 0.8);
}
.modal-wrapper .modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(98, 87, 57, 0.9);
  transition: 0.5s background ease;
}
.modal-wrapper .modal-overlay.overlay-thanks {
  background: rgba(240, 96, 33, 0.9);
}
.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 3px;
  right: 10px;
  color: #897E5F;
  font-size: 1.2rem;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0;
  text-transform: uppercase;
}
.modal-wrapper .modal-close i {
  font-size: 1.6rem;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.modal-wrapper .modal-close:hover {
  color: #F06021;
}

@media (min-width: 960px) {
  .modal-wrapper .modal-body {
    padding: 50px 10px 20px;
  }
  .modal-wrapper .modal-scroll::-webkit-scrollbar {
    width: 5px;
  }
  .modal-wrapper .modal-close {
    font-size: 1.3rem;
    top: 10px;
    right: 20px;
  }
  .modal-wrapper .modal-close i {
    font-size: 1.9rem;
  }
}
.iframe-content {
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
.iframe-content::-webkit-scrollbar {
  width: 4px;
}
.iframe-content::-webkit-scrollbar-track {
  border-radius: 2px;
  box-shadow: inset 0 0 6px rgba(98, 87, 57, 0.3);
}
.iframe-content::-webkit-scrollbar-thumb {
  background: rgba(98, 87, 57, 0.3);
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}
.iframe-content::-webkit-scrollbar-thumb:hover, .iframe-content::-webkit-scrollbar-thumb:active {
  background: rgba(98, 87, 57, 0.8);
}

@media (min-width: 960px) {
  .iframe-content::-webkit-scrollbar {
    width: 5px;
  }
}
/* checkout thanks page */
.modal-wrapper .modal-body.body-thanks {
  border-radius: 50%;
  width: calc(100vw - 60px);
  height: calc(100vw - 60px);
  max-width: 600px;
  max-height: 600px;
  padding: 0;
  transition: 0.5s border-radius ease;
}
.modal-wrapper .modal-body.body-thanks .modal-content {
  border-radius: 50%;
  padding: 0;
  text-align: center;
  overflow-y: hidden;
  transition: 0.5s border-radius ease;
}
.modal-wrapper .modal-body.body-thanks .modal-content iframe {
  height: 100% !important;
  max-height: 100% !important;
}
.modal-wrapper .modal-overlay.overlay-thanks {
  transition: 0.8s background ease;
  background: rgba(240, 96, 33, 0.9);
}

/*------------------------------------------------------------------
[Sub page]
------------------------------------------------------------------*/
.about-map {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 80%;
}
.about-map:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: #625739;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.about-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(1);
}

/*------------------------------------------------------------------
[Option (sort)]
------------------------------------------------------------------*/
.option {
  margin: 17px 0 12px;
}
.option .option-grid {
  display: flex;
  justify-content: center;
}
.option .option-grid li {
  margin-right: 20px;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  color: #B1B1B1;
}
.option .option-grid li:last-child {
  margin-right: 0;
}
.option .option-grid li.active {
  color: #504F4F;
}
.option .option-grid li i {
  font-size: 2.3rem;
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

@media (min-width: 960px) {
  .option {
    margin: 40px 0;
  }
  .option .option-grid li {
    margin-right: 40px;
    font-size: 1.2rem;
    letter-spacing: 0;
    text-align: center;
    transition: color 0.3s ease;
  }
  .option .option-grid li:hover {
    color: #F06021;
  }
  .option .option-grid li i {
    display: block;
    font-size: 3rem;
    margin-bottom: 3px;
    margin-right: 0;
  }
}
/*------------------------------------------------------------------
[View More]
------------------------------------------------------------------*/
.morelist {
  background: #E8E4DE;
  text-align: center;
  padding: 30px 0;
}
.morelist .btn-more {
  border: none;
  background: #F5F4EF;
  color: #897E5F;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1;
  width: auto;
  height: auto;
  border-radius: 1.1em;
  padding: 0.7em 5em 0.4em;
}
.morelist .btn-more i {
  vertical-align: middle;
  position: relative;
  top: 1px;
  font-size: 2rem;
  margin-left: 2px;
}

@media (min-width: 960px) {
  .morelist {
    padding: 35px 0;
  }
  .morelist .btn-more {
    font-size: 1.8rem;
  }
}
/*------------------------------------------------------------------
[Single Lists]
------------------------------------------------------------------*/
.list-single .tab-list {
  border-bottom: 1px solid #897E5F;
  display: flex;
}
.list-single .tab-list li {
  width: 100%;
  max-width: 35%;
  color: #707070;
  border: 1px solid #B1B1B1;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  background: #E8E4DE;
  text-align: center;
  position: relative;
  letter-spacing: 0;
}
.list-single .tab-list li:not(.on) {
  cursor: pointer;
}
.list-single .tab-list li:last-child {
  margin-right: 0;
}
.list-single .tab-list li.on {
  background: #F5F4EF;
  color: #F06021;
  font-weight: 600;
  border: 1px solid #897E5F;
  border-bottom: none;
}
.list-single .tab-list li.on::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 1px;
  width: 100%;
  background: #F5F4EF;
}
.list-single .tab-content {
  padding-top: 18px;
}
.list-single .tab-content h1 {
  padding-top: 12px;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0;
}
.list-single .tab-content .btn-label {
  margin-top: 11px;
}
.list-single .tab-content .note {
  margin-top: 11px;
}
.list-single .tab-content .note li {
  font-size: 1.2rem;
  display: block;
}
.list-single .tab-content .btnset {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}
.list-single .tab-content .btnset li:first-child {
  width: 38%;
}
.list-single .tab-content .btnset li:last-child {
  width: calc(62% - 6px);
}
.list-single .tab-content .btnset .btn-buy {
  display: flex;
  justify-content: space-between;
  border: none;
  font-size: 1.3rem;
}
.list-single .tab-content .btnset .btn-buy span {
  display: inline-block;
  width: 35%;
  padding-right: 0;
}
.list-single .tab-content .btnset .btn-buy span + span {
  width: 65%;
  border-left: 1px solid #E8E4DE;
  font-size: 1.6rem;
}
.list-single .tab-content .btnset .btn-buy.nostock {
  background: #B1B1B1;
  pointer-events: none;
  font-size: 1.6rem;
  text-align: center;
  display: block;
}
.list-single .tab-content .list_sample {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}
.list-single .tab-content .list_sample li {
  width: 100%;
  margin-right: 5px;
}
.list-single .tab-content .list_sample li:last-child {
  margin-right: 0;
}
.list-single .tab-content .list_sample li a {
  display: block;
}
.list-single .tab-content .detail {
  margin-top: 10px;
  font-size: 1.5rem;
  /* text-align: justify; */
}
.list-single .tab-content .detail .d-title {
  color: #F06021;
}
.list-single .tab-content .detail .d-comment {
  margin-top: 1em;
}
.list-single .tab-content .d-gallery {
  margin-top: 25px;
}
.list-single .tab-content .d-gallery ul {
  display: flex;
  flex-wrap: wrap;
}
.list-single .tab-content .d-gallery ul li {
  width: 23.8%;
  margin-right: 1.6%;
  margin-bottom: 1.6%;
}
.list-single .tab-content .d-gallery ul li:nth-child(4n) {
  margin-right: 0;
}
.list-single .tab-content .d-gallery ul li a {
  display: block;
  background: #DEDEDF;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.list-single .tab-content .d-gallery ul li a:hover {
  opacity: 0.7;
}
.list-single .tab-content .d-gallery ul li a img {
  width: 100%;
  height: auto;
}
.list-single .tab-content .media_wrap {
  margin-top: 25px;
  display: flex;
}
.list-single .tab-content .media_wrap .media {
  margin-bottom: 10px;
  width: 47.6%;
  padding-bottom: 26.775%;
}
.list-single .tab-content .media_wrap .media:nth-child(even) {
  margin-left: 4.8%;
}
.list-single .tab-content .quote-comment,
.list-single .tab-content .quote-comment-en {
  margin-top: 30px;
  font-size: 1.4rem;
  text-align: justify;
}
.list-single .price {
  margin-top: 15px;
  border-bottom: 1px solid #897E5F;
  padding-bottom: 5px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
}
.list-single .price span {
  font-size: 1.3rem;
}
.list-single .format-data {
  margin-top: 8px;
  font-size: 1.2rem;
  line-height: 1.5;
}
.list-single .format-data li {
  display: inline-block;
  position: relative;
}
.list-single .format-data li::after {
  content: "/";
  padding: 0 2px;
}
.list-single .format-data li:last-child::after {
  content: "";
  padding: 0;
}
.list-single .list_track {
  margin-top: 20px;
}
.list-single .list_track p.en {
  font-size: 1.5rem;
}
.list-single .list_track p.en.track-toggle {
  color: #F06021;
  cursor: pointer;
}
.list-single .list_track p.en.track-toggle i::before {
  vertical-align: middle;
  margin-left: 7px;
}
.list-single .list_track ul {
  margin: 5px -4vw 0;
  border-top: 1px solid #A39782;
}
.list-single .list_track ul li {
  border-bottom: 1px solid #A39782;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
  padding: 0.7em 4vw 0.5em;
}
.list-single .list_track ul li p {
  padding-left: 30px;
}
.list-single .list_track ul li a.track-link {
  display: flex;
  align-items: center;
  width: 100%;
}
.list-single .list_track ul li a.track-link i {
  color: #A39782;
  font-size: 2.4rem;
  line-height: 1;
  margin-right: 5px;
  position: relative;
  top: -1px;
}
.list-single .list_track ul li a.track-link p {
  padding-left: 0;
}
.list-single .list_track ul li .time {
  margin-left: auto;
  text-align: right;
  line-height: 26px;
  height: 26px;
}
.list-single .list_track ul li a.btn-buy {
  width: 3.5em;
  min-width: 3.5em;
  max-width: 3.5em;
  font-size: 1.3rem;
  line-height: 26px;
  height: 26px;
  margin-left: 5px;
  position: relative;
  top: -1px;
}
.list-single .list_track ul li.active {
  background: #f3efe1;
}
.list-single .list_track ul li.active i {
  color: #F06021;
}
.list-single .list_track ul.track-hide {
  display: none;
}
.list-single .list-tags:before, .list-single .list-tags:after {
  content: " ";
  display: table;
}
.list-single .list-tags:after {
  clear: both;
}
.list-single .list-tags li {
  float: left;
  margin-right: 12px;
  margin-bottom: 10px;
}
.list-single.single .tab-content .d-gallery ul li {
  width: 49%;
  margin-right: 2%;
  margin-bottom: 2%;
}
.list-single.single .tab-content .d-gallery ul li:nth-child(even) {
  margin-right: 0;
}
.list-single.single .tab-content .media_wrap {
  flex-wrap: wrap;
}
.list-single.single .tab-content .media_wrap .media {
  width: 100%;
  padding-bottom: 56.25%;
}
.list-single.single .tab-content .media_wrap .media:nth-child(even) {
  margin-left: 0;
}
.list-single.single .single-img {
  display: block;
}
.list-single.single .signle-img-list {
  width: 100%;
}
.list-single.single .signle-img-thum {
  display: flex;
  width: 100%;
}
.list-single.single .signle-img-thum .item {
  margin-bottom: 0;
  margin-right: 0;
}

@media all and (-ms-high-contrast: none) { /* IE */
  _:-ms-input-placeholder, :root .list-single .tab-content .list_sample {
    flex-wrap: wrap;
  }
  _:-ms-input-placeholder li, :root .list-single .tab-content .list_sample li {
    width: calc((100% - 6px) / 2);
    margin-bottom: 8px;
  }
  _:-ms-input-placeholder li:nth-child(even), :root .list-single .tab-content .list_sample li:nth-child(even) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .list-single .single-img {
    margin: 0 -4vw;
    padding: 25px 38px 20px;
    background: #E8E4DE;
    display: flex;
    justify-content: center;
  }
  .list-single .signle-img-list {
    width: calc((100% - 8px) / 2);
    margin-bottom: 5px;
  }
  .list-single .signle-img-thum {
    width: calc((100% - 8px) / 2);
    margin-left: 8px;
  }
  .list-single .signle-img-thum .slick-list {
    width: calc(100% + 3px);
    height: 100%;
  }
  .list-single .signle-img-thum .slick-track {
    width: 100% !important;
  }
  .list-single .signle-img-thum .item {
    margin-right: 5px;
    margin-bottom: 5px;
    /* ↓ slick-trackの幅が約2px広いので、100％から-2px余分に引く */
    width: calc((100% - 7px) / 2) !important;
  }
  .list-single .signle-img-thum .item:nth-child(even) {
    margin-right: 0;
  }
  .list-single .tab-list {
    margin: 0 -4vw;
    padding: 0 4vw;
    background: #f3efe1;
    height: 35px;
  }
  .list-single .tab-list li {
    margin-right: 3px;
    font-size: 11px;
    line-height: 35px;
  }
  .list-single .tab-content .detail {
    -moz-text-align-last: left;
         text-align-last: left;
  }
  .list-single .tab-content .detail .detail-toggle {
    display: inline-block;
    cursor: pointer;
    color: #F06021;
  }
  .list-single .tab-content .detail .detail-toggle i::before {
    vertical-align: middle;
    position: relative;
    top: 1px;
  }
  .list-single.single .single-img {
    padding: 20px;
    padding: 5.33vw;
  }
  .list-single.single .signle-img-thum {
    margin-top: 7px;
    margin-left: 0;
    margin-right: -5px;
  }
  .list-single.single .signle-img-thum .item {
    width: calc((100% - 15px) / 4) !important;
    margin-right: 5px;
  }
  .list-hr {
    margin-top: 20px;
  }
}
@media (min-width: 768px) {
  .list-single {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .list-single .single-img {
    width: 29.8%;
    max-width: 280px;
  }
  .list-single .single-img .signle-img-list a {
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  .list-single .single-img .signle-img-list a:hover {
    opacity: 0.7;
  }
  .list-single .signle-img-thum {
    margin-top: 10px;
    justify-content: space-between;
  }
  .list-single .signle-img-thum .slick-list {
    width: 100%;
    height: 100%;
  }
  .list-single .signle-img-thum .slick-track {
    width: 100% !important;
  }
  .list-single .signle-img-thum .item {
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s ease;
    margin-bottom: 10px;
    width: calc((100% - 10px) / 2) !important;
  }
  .list-single .signle-img-thum .item:hover {
    opacity: 0.7;
  }
  .list-single .signle-img-thum .item:nth-child(odd) {
    margin-right: 10px;
  }
  .list-single .tab-list {
    padding: 0 7px;
    height: 35px;
  }
  .list-single .tab-list li {
    margin-right: 5px;
    font-size: 12px;
    line-height: 35px;
    transition: all 0.3s ease;
  }
  .list-single .tab-list li:not(.on):hover {
    background: #F5F4EF;
    color: #897E5F;
    border: 1px solid #897E5F;
    border-bottom: none;
  }
  .list-single .single-txt {
    width: 64.9%;
    max-width: 610px;
  }
  .list-single .tab-content {
    padding-top: 22px;
  }
  .list-single .list_track ul {
    margin: 5px 0 0;
  }
  .list-single .list_track ul li {
    padding: 0.7em 0 0.5em;
  }
  .list-single .list_track ul li a.track-link {
    transition: color 0.3s ease;
  }
  .list-single .list_track ul li a.track-link i {
    transition: color 0.3s ease;
  }
  .list-single .list_track ul li a.track-link:hover {
    color: #F06021;
  }
  .list-single .list_track ul li a.track-link:hover i {
    color: #F06021;
  }
  .list-single .list_track ul li a.btn-buy:hover {
    background-color: #F5F4EF;
    color: #F06021;
  }
  .list-single.single {
    padding-top: 25px;
  }
  .list-single.single .single-img {
    width: 41.5%;
    max-width: 390px;
  }
  .list-single.single .signle-img-thum {
    margin-top: 15px;
    flex-wrap: wrap;
  }
  .list-single.single .signle-img-thum .item {
    margin-bottom: 15px;
    width: calc((100% - 14px) / 2) !important;
  }
  .list-single.single .signle-img-thum .item:nth-child(odd) {
    margin-right: 14px;
  }
  .list-single.single .single-txt {
    width: 53.2%;
    max-width: 500px;
  }
  .list-hr {
    margin-top: 30px;
    padding-top: 40px;
    border-top: 1px solid #B1B1B1;
  }
}
@media (min-width: 960px) {
  .list-single {
    width: 73.7%;
    max-width: 940px;
  }
  .list-single .tab-content .btnset {
    display: block;
  }
  .list-single .tab-content .btnset li {
    width: 100% !important;
  }
  .list-single .tab-content .btnset li + li {
    margin-top: 12px;
  }
  .list-single .tab-content .btnset .btn-wishlist:hover {
    background-color: #897E5F;
    border-color: #897E5F;
  }
  .list-single .tab-content .btnset .btn-buy {
    font-size: 1.6rem;
  }
  .list-single .tab-content .btnset .btn-buy:hover {
    background-color: #897E5F;
    color: #FFF;
  }
  .list-single .tab-content .btnset .btn-buy span + span {
    font-size: 1.8rem;
  }
  .list-single .tab-content .btnset .btn-buy.nostock {
    font-size: 1.8rem;
  }
  .list-single .format {
    position: absolute;
    top: 0;
    right: 40px;
    width: 21%;
    max-width: 285px;
  }
  .list-single .format-title {
    font-size: 1.3rem;
    line-height: 1;
  }
  .list-single .format-data {
    margin-top: 13px;
  }
  .list-single .format-data li {
    display: block;
  }
  .list-single .format-data li::after {
    display: none;
  }
  .list-single .list_track p.en.track-toggle:hover {
    color: #f6a481;
  }
  .list-single .list_track ul {
    margin: 10px 0 0;
  }
  .list-single.single {
    padding-top: 40px;
  }
  .list-single.single .format {
    top: 118px;
  }
  .list-hr {
    margin-top: 40px;
    padding-top: 50px;
  }
  .list-hr .format {
    top: 50px;
  }
}
@media (min-width: 960px) and (max-width: 1354px) {
  .list-single .tab-content .list_sample {
    flex-wrap: wrap;
  }
  .list-single .tab-content .list_sample li {
    width: calc((100% - 5px) / 2);
    margin-bottom: 8px;
  }
  .list-single .tab-content .list_sample li:nth-child(even) {
    margin-right: 0;
  }
}
@media (min-width: 1355px) {
  .list-single .tab-content .note {
    font-size: 0;
  }
  .list-single .tab-content .note li {
    display: inline-block;
    position: relative;
  }
  .list-single .tab-content .note li::after {
    content: "｜";
    padding: 0 5px;
  }
  .list-single .tab-content .note li:last-child::after {
    content: "";
    padding: 0;
  }
}
#sub-genre .list-single .tab-list li.on {
  background: #EFEAE1;
}
#sub-genre .list-single .tab-list li.on::after {
  background: #EFEAE1;
}

/*------------------------------------------------------------------
[Grid Lists]
------------------------------------------------------------------*/
.toplist li > a.pjax,
.toplist .imgset a.pjax {
  position: relative;
  display: block;
}
.toplist .txtset .pick-genre,
.toplist .txtset .pick-label,
.toplist .double-txt .pick-genre,
.toplist .double-txt .pick-label {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.toplist .txtset .pick-genre,
.toplist .double-txt .pick-genre {
  font-size: 1rem;
  color: #897E5F;
}
.toplist .txtset .pick-genre a,
.toplist .double-txt .pick-genre a {
  color: #897E5F;
  transition: color 0.3s ease;
}
.toplist .txtset .pick-genre a:hover,
.toplist .double-txt .pick-genre a:hover {
  color: #F06021;
}
.toplist .txtset .pick-label,
.toplist .double-txt .pick-label {
  font-size: 1.1rem;
  margin: 0.2em 0 0;
  color: #707070;
}
.toplist .txtset .pick-comment {
  font-size: 1.3rem;
  /* text-align: justifyだと、
  safariで三点リーダーがずれるので、
  text-align-last: left　を追加 */
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  width: 100%;
  height: 6.5em;
  word-break: break-all;
}
.toplist .txtset .pick-comment p {
  font-size: 1.3rem;
}
.toplist.list-grid {
  margin-bottom: 10px;
}
.toplist.list-grid > li {
  background: #fffefc;
}
.toplist.list-grid > li.list-double .imgset {
  display: flex;
  justify-content: center;
  background: #E8E4DE;
}
.toplist.list-grid > li.list-double .imgset a.pjax {
  flex-basis: calc((100% - 15px) / 2);
  width: calc((100% - 15px) / 2);
}
.toplist.list-grid > li.list-double .imgset .double-txt {
  flex-basis: calc((100% - 15px) / 2 + 15px);
  width: calc((100% - 15px) / 2 + 15px);
  padding: 25px 25px 20px;
  display: flex;
  flex-direction: column;
}
.toplist.list-grid > li.list-double .imgset .double-txt .pick-genre {
  margin-top: auto;
}
.toplist.list-grid > li.list-double .txtset {
  padding: 15px 15px 0;
}
.toplist.list-grid > li.list-double .txtset .pick-comment {
  display: block !important;
}
.toplist.list-grid > li.list-double .txtset .pick-format {
  margin: -15px -15px 15px;
  padding: 4px 15px;
}

@media (min-width: 768px) {
  .toplist .txtset .pick-genre,
.toplist .double-txt .pick-genre {
    margin: 1em 0 0;
    font-size: 1.1rem;
  }
  .toplist .txtset .pick-label,
.toplist .double-txt .pick-label {
    font-size: 1.2rem;
  }
  .toplist.list-grid {
    margin-bottom: 15px;
  }
  .toplist.list-grid > li {
    margin-bottom: 16px;
  }
  .toplist.list-grid > li.list-double {
    flex-basis: calc((100% - 30px) / 3 * 2 + 15px);
  }
  .toplist.list-grid > li.list-double .txtset {
    padding: 25px 25px 10px;
  }
  .toplist.list-grid > li.list-double .txtset .pick-comment {
    display: -webkit-box !important;
    font-size: 1.4rem;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    width: 100%;
    height: 12.5em;
    margin-bottom: 25px;
  }
  .toplist.list-grid > li.list-double .txtset .pick-format {
    margin: -25px -25px 15px;
    padding: 4px 20px;
  }
}
@media (min-width: 960px) {
  .toplist .txtset .pick-comment {
    font-size: 1.4rem;
  }
  .toplist .txtset .pick-comment p {
    font-size: 1.4rem;
  }
  .toplist.list-grid {
    margin-bottom: 35px;
  }
  .toplist.list-grid > li.list-double {
    flex-basis: calc((100% - 72px) / 6 * 2 + 15px);
  }
  .toplist.list-grid > li.list-double .txtset .pick-comment {
    margin-bottom: 30px;
  }
}
/*------------------------------------------------------------------
[Pickup / New Stock / Just Comming / Related products]
------------------------------------------------------------------*/
.pickup {
  background: #625739;
  padding: 4vw 0 1.5vw;
}
.pickup.related {
  padding: 8vw 0 60px;
  margin-bottom: -80px;
}
.pickup.related .toplist {
  margin-bottom: 15px;
}
.pickup.related .toplist li > a.pjax {
  position: relative;
  display: block;
}
.pickup .toplist {
  margin-top: 12px;
}

@media (min-width: 480px) {
  .pickup.related .toplist {
    margin-top: 20px;
  }
  .pickup .toplist > li {
    flex-basis: calc((100% - 20px) / 2);
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .pickup.related .toplist {
    margin-bottom: 30px;
  }
  .pickup .toplist .txtset {
    padding: 15px 20px;
  }
  .pickup .toplist .txtset .pick-format {
    font-size: 1.2rem;
    margin: -15px -20px 15px;
    padding: 4px 20px;
  }
  .pickup .toplist .txtset h3, .pickup .toplist .txtset p {
    font-size: 1.8rem;
  }
  .pickup .toplist .txtset .pick-genre {
    font-size: 1.2rem;
    margin: 0;
  }
  .pickup .toplist .txtset .pick-label {
    font-size: 1.3rem;
  }
  .pickup .toplist .txtset .pick-comment {
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    height: 6.5em;
    margin-bottom: 15px;
  }
  .pickup .toplist .txtset .pick-comment p {
    font-size: 1.3rem;
  }
  .pickup .toplist .imgset {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EFEAE1;
  }
  .pickup .toplist .imgset a.pjax {
    flex-basis: 50%;
  }
  .pickup .toplist .imgset .btnset {
    flex-basis: 50%;
  }
  .pickup .toplist .imgset .btnset > li {
    display: block;
    padding: 3px 0;
    margin-left: calc((100% - 66px) / 2);
  }
  .pickup .toplist .imgset .btnset > li a {
    display: inline-block !important;
  }
}
@media (min-width: 960px) {
  .pickup {
    padding: 30px 0;
  }
  .pickup.related {
    padding: 60px 0 60px;
    margin-bottom: -170px;
  }
  .pickup.related .toplist {
    margin-bottom: 50px;
  }
  .pickup .toplist {
    justify-content: flex-start;
  }
  .pickup .toplist > li {
    flex-basis: calc((100% - 45px) / 4);
    margin-right: 15px;
  }
  .pickup .toplist > li:nth-child(4n) {
    margin-right: 0;
  }
  .pickup .toplist .txtset {
    padding: 10px 20px;
  }
  .pickup .toplist .txtset .pick-format {
    margin: -10px -20px 15px;
    padding: 4px 20px;
  }
  .pickup .toplist .txtset .pick-comment {
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    height: 9.7em;
  }
  .pickup .grid_01 {
    margin-bottom: 20px;
    display: -ms-grid;
    display: grid;
    grid-gap: 25px;
    gap: 25px;
    -ms-grid-rows: 1fr 25px 1fr;
    -ms-grid-columns: 1fr 25px 1fr 25px 1fr 25px 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .pickup .grid_01 > li {
    margin: 0 !important;
  }
  .pickup .grid_01 > li:first-child {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-row-span: 3;
    grid-row: 1/3;
    grid-column: 1;
  }
  .pickup .grid_01 > li:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    -ms-grid-row-span: 3;
    grid-row: 1/3;
    grid-column: 2;
  }
  .pickup .grid_01 > li:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  .pickup .grid_01 > li:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 7;
  }
  .pickup .grid_01 > li:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
  }
  .pickup .grid_01 > li:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 7;
  }
}
@media (min-width: 1355px) {
  .pickup .toplist > li {
    flex-basis: calc((100% - 75px) / 4);
    margin-right: 25px;
  }
  .pickup .toplist > li:nth-child(4n) {
    margin-right: 0;
  }
  .pickup .toplist .txtset {
    padding: 20px 30px 12px;
  }
  .pickup .toplist .txtset .pick-format {
    margin: -20px -30px 15px;
    padding: 4px 30px;
  }
  .pickup .grid_01 .txtset {
    padding: 15px 30px 10px;
  }
  .pickup .grid_01 .txtset .pick-format {
    margin: -15px -30px 15px;
  }
}
/*------------------------------------------------------------------
[Back in (pickup)]
------------------------------------------------------------------*/
.pickup-grid {
  background: #625739;
  padding: 3vw 0;
  padding-left: 15px;
  padding-left: 4vw;
}
.pickup-grid .gridflex {
  overflow-x: scroll;
  overflow-y: hidden;
}
.pickup-grid .gridflex::-webkit-scrollbar {
  height: 5px;
}
.pickup-grid .gridflex::-webkit-scrollbar-track {
  background: #897E5F;
  border-radius: 2px;
}
.pickup-grid .gridflex::-webkit-scrollbar-thumb {
  background: rgba(240, 96, 33, 0.7);
  border-radius: 2px;
}
.pickup-grid .gridflex::-webkit-scrollbar-thumb:hover, .pickup-grid .gridflex::-webkit-scrollbar-thumb:active {
  background: #F06021;
}
.pickup-grid .gridflex .toplist {
  flex-wrap: nowrap;
  justify-content: flex-start;
  max-width: 100%;
  margin-bottom: 10px;
}
.pickup-grid .gridflex .toplist > li {
  min-width: calc((100vw - 11px) / 2);
  margin-right: 11px;
}

.pickup-grid + .list-hr {
  border-top: none;
}

@media (max-width: 767px) {
  .pickup-grid .gridflex .toplist > li .pick-comment {
    display: none;
  }
  .list-hr + .pickup-grid {
    margin-top: 15px;
  }
  .pickup-grid + .list-hr {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .pickup-grid {
    padding: 20px 0 30px 4vw;
  }
  .pickup-grid .gridflex .toplist > li {
    min-width: 200px;
    max-width: 200px;
    margin-right: 18px;
  }
  .list-hr + .pickup-grid {
    margin-top: 30px;
  }
}
@media (min-width: 960px) {
  .pickup-grid {
    padding: 20px 0 30px 40px;
  }
  .list-hr + .pickup-grid {
    margin-top: 40px;
  }
}
/*------------------------------------------------------------------
[Top Banner Links]
------------------------------------------------------------------*/
#topbnr {
  padding-top: 4vw;
}
#topbnr h2 {
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 0.3em;
}
#topbnr p {
  font-size: 1.4rem;
  line-height: 1.3;
}
#topbnr .topbnr-li {
  width: 100%;
}
#topbnr .topbnr-li a {
  display: block;
  background: #B6BCB7;
  color: #FFF;
  padding: 5px 0 5px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#topbnr .topbnr-li:first-child {
  padding-bottom: 10px;
}
#topbnr .topbnr-li:first-child a {
  background: #625739;
}
#topbnr .topbnr-img {
  width: 27vw;
  height: 80px;
  display: flex;
}
#topbnr .topbnr-img.img-wide {
  width: 37vw;
}
#topbnr .topbnr-img li {
  height: 80px;
  box-shadow: -2px 0 1px rgba(0, 0, 0, 0.2);
}
#topbnr .topbnr-img source, #topbnr .topbnr-img img {
  width: 100%;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

@media (min-width: 768px) {
  #topbnr {
    padding-top: 30px;
  }
  #topbnr h2 {
    font-size: 2.4rem;
  }
  #topbnr p {
    font-size: 1.6rem;
  }
  #topbnr > ul {
    display: flex;
    justify-content: space-between;
  }
  #topbnr .topbnr-li {
    width: calc(50% - 8px);
  }
  #topbnr .topbnr-li a {
    padding: 12px 0 12px 7.6%;
    width: 100%;
  }
  #topbnr .topbnr-li:first-child {
    padding-bottom: 0;
    padding-right: 16px;
    width: calc(50% - 8px + 16px);
  }
  #topbnr .topbnr-img {
    width: 40%;
    height: 137px;
  }
  #topbnr .topbnr-img.img-wide {
    width: 66%;
  }
  #topbnr .topbnr-img li {
    height: 137px;
  }
  #topbnr .topbnr-img li img {
    width: 100%;
    height: 137px;
  }
}
/*------------------------------------------------------------------
[Top page]
------------------------------------------------------------------*/
/* Section */
.topsec {
  margin-top: 20px;
}
.topsec header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
}
.topsec header h2 {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: normal;
  letter-spacing: 0;
  flex: 1;
}

.toplist {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
}
.toplist > li {
  flex-basis: calc((100% - 11px) / 2);
  overflow: hidden;
  background: #F5F4EF;
  margin-bottom: 11px;
}
.toplist .txtset,
.toplist .double-txt {
  padding: 10px 12px;
  letter-spacing: 0;
}
.toplist .txtset .pick-format,
.toplist .double-txt .pick-format {
  margin: -10px -12px 15px;
  padding: 4px 10px;
  display: block;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-top: 1px solid #DEDEDF;
  border-bottom: 1px solid #DEDEDF;
}
.toplist .txtset .pick-format span,
.toplist .double-txt .pick-format span {
  display: inline-block;
  font-size: 80%;
  padding: 0 0.8em;
  position: relative;
  top: -1px;
  opacity: 0.5;
}
.toplist .txtset h3, .toplist .txtset p,
.toplist .double-txt h3,
.toplist .double-txt p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.4;
  width: 100%;
  height: 1.4em;
}
.toplist .txtset h3,
.toplist .double-txt h3 {
  font-weight: 800;
}
.toplist .btnset {
  list-style: none;
  font-size: 0;
  margin-top: 7px;
  margin-left: -2px;
}
.toplist .btnset > li {
  display: inline-block;
  letter-spacing: 0;
  font-size: 1.2rem;
  line-height: 1;
}
.toplist .btnset > li:first-child {
  padding-right: 8px;
}
.toplist .btnset > li i {
  vertical-align: middle;
  font-size: 1.5rem;
  line-height: 1.3;
  margin-right: 3px;
  position: relative;
  top: -1px;
}
.toplist .btnset > li a {
  color: #897E5F;
  display: block;
}

@media (max-width: 767px) {
  .toplist .txtset,
.toplist .double-txt {
    padding: 10px 12px 0;
  }
  .toplist .txtset h3,
.toplist .double-txt h3 {
    font-size: 1.3rem;
  }
  .toplist .txtset p,
.toplist .double-txt p {
    font-size: 1.2rem;
  }
  .toplist .btnset {
    margin: 0 -12px;
  }
  .toplist .btnset > li {
    width: 50%;
    max-width: 90px;
  }
  .toplist .btnset > li a.soundlink, .toplist .btnset > li a.nosoundlink {
    padding: 7px 8px 10px 12px;
  }
  .toplist .btnset > li a.btn-wishlist-s {
    padding: 7px 12px 10px 0;
  }
}
@media (max-width: 374px) {
  .toplist .btnset > li {
    width: 100%;
    max-width: 100%;
  }
  .toplist .btnset > li a.soundlink, .toplist .btnset > li a.nosoundlink {
    padding: 7px 12px 1px;
  }
  .toplist .btnset > li a.btn-wishlist-s {
    padding: 0 12px 10px;
  }
}
@media (min-width: 768px) {
  .toplist > li {
    flex-basis: calc((100% - 30px) / 3);
  }
  .toplist .btnset > li {
    line-height: 1.5;
  }
  .toplist .btnset > li:first-child {
    padding-right: 12px;
  }
  .toplist .btnset > li i {
    font-size: 1.9rem;
  }
  .toplist .btnset > li a:hover {
    color: #F06021;
  }
}
@media (min-width: 960px) {
  .topsec header h2 {
    font-size: calc(2rem + (1vw - 9.6px) * 1);
  }
  .toplist > li {
    flex-basis: calc((100% - 75px) / 6);
  }
  .toplist .txtset h3,
.toplist .double-txt h3 {
    font-size: calc(1.3rem + (1vw - 9.6px) * 0.8);
  }
  .toplist .txtset p,
.toplist .double-txt p {
    font-size: calc(1.2rem + (1vw - 9.6px) * 0.8);
  }
}
@media (min-width: 1355px) {
  .topsec header h2 {
    font-size: 2.5rem;
  }
  .toplist .txtset h3,
.toplist .double-txt h3 {
    font-size: 1.6rem;
  }
  .toplist .txtset p,
.toplist .double-txt p {
    font-size: 1.5rem;
  }
}
/*------------------------------------------------------------------
[Slider : slick 1.8.1]
------------------------------------------------------------------*/
/* dot */
.slide-dots {
  font-size: 0;
}

.slick-dots {
  list-style: none;
  font-size: 0;
  text-align: center;
  display: inline-block;
}
.slick-dots li {
  display: inline-block;
  padding: 0;
  font-size: 0;
  margin: 0 5px;
}
.slick-dots li button {
  position: relative;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  width: 10px;
  height: 10px;
  padding: 5px;
  border: none;
  border-radius: 0;
  background: none;
}
.slick-dots li button::before {
  transition: opacity 0.3s ease;
  position: absolute;
  display: block;
  content: "";
  top: 3px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #A39782;
}
.slick-dots li button:hover::before {
  opacity: 0.5;
}
.slick-dots li.slick-active button::before {
  background: #F06021;
}

@media (min-width: 960px) {
  .slick-dots li {
    margin: 0 4px;
  }
  .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 4px;
  }
  .slick-dots li button::before {
    transition: opacity 0.3s ease;
    width: 12px;
    height: 12px;
  }
  .slick-dots li button:hover::before {
    opacity: 0.5;
  }
}
/*------------------------------------------------------------------
[Label]
------------------------------------------------------------------*/
.label {
  font-size: 0;
  float: right;
  display: inline-block;
}
.label li {
  display: inline-block;
}
.label li a {
  font-size: 1.2rem;
  line-height: 1.5;
  padding: 0.1em 1.2em;
  background: #FFF;
  border-radius: 1.7em;
  color: #897E5F;
  letter-spacing: 0;
  border: 1px solid #FFF;
  transition: all 0.3s ease;
}
.label li a:hover {
  color: #FFF;
  background-color: #A39782;
  border-color: #A39782;
  text-decoration: none;
}
.label li a.orange {
  background: #F06021;
  color: #FFF;
  border: 1px solid #F06021;
  transition: all 0.3s ease;
}
.label li a.orange:hover {
  color: #F06021;
  background-color: #FFF;
  border-color: #F06021;
  text-decoration: none;
}
.label li + li {
  margin-left: 8px;
}

.label_pick {
  color: #F06021;
  background: none;
  border: 1px solid #F06021;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  line-height: 1;
  padding: 0.8em 2em;
  border-radius: 4px;
  padding: 0 1em;
  background: #FFF;
  color: #897E5F;
  font-size: 1.4rem;
  line-height: 28px;
  border-radius: 14px;
  border: none;
  height: 27px;
}

.label_nostock {
  background: #707070;
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 1.2rem;
  line-height: 20px;
  color: #FFF;
  text-align: center;
}

@media (min-width: 960px) {
  .label_pick {
    font-size: 1.5rem;
    line-height: 37px;
    border-radius: 18px;
    height: 35px;
    padding: 0 2.5em;
    transition: all 0.3s ease;
  }
  .label_pick:hover {
    color: #FFF;
    background-color: #F06021;
    border-color: #F06021;
    text-decoration: none;
  }
  .label_nostock {
    font-size: 1.4rem;
    line-height: 25px;
  }
}

/*------------------------------------------------------------------
[subtag]
------------------------------------------------------------------*/
.subtag {
  font-size: 0;
  float: right;
  display: block;
}
.subtag li {
  display: inline-block;
  margin-left:0.5em;
  font-size: 1.2rem;
  line-height: 1.5;
  padding: 0.1em 1.2em;
  background: #FFF;
  border-radius: 1.7em;
  color: #897E5F;
  letter-spacing: 0;
  border: 1px solid #FFF;
  transition: all 0.3s ease;
}

/*------------------------------------------------------------------
[Button]
------------------------------------------------------------------*/
.btn,
.btn-outline,
.btn-wishlist,
.btn-more,
.btn-buy,
.btn-sample,
.btn-label,
.btn-tag {
  color: #F06021;
  background: none;
  border: 1px solid #F06021;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  line-height: 1;
  padding: 0.8em 2em;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}
.btn:hover,
.btn-outline:hover,
.btn-wishlist:hover,
.btn-more:hover,
.btn-buy:hover,
.btn-sample:hover,
.btn-label:hover,
.btn-tag:hover {
  color: #FFF;
  background-color: #F06021;
  border-color: #F06021;
  text-decoration: none;
}
.btn i,
.btn-outline i,
.btn-wishlist i,
.btn-more i,
.btn-buy i,
.btn-sample i,
.btn-label i,
.btn-tag i {
  vertical-align: middle;
  position: relative;
}

.btn {
  font-weight: normal;
  background: #F06021;
  color: #FFF;
  transition: all 0.3s ease;
}
.btn:hover {
  color: #FFF;
  background-color: #f6a481;
  border-color: #f6a481;
  text-decoration: none;
}

.btn-outline {
  color: #F06021;
  font-weight: normal;
}

.btn-wishlist {
  font-size: 1.3rem;
  line-height: 35px;
  padding: 0;
  width: 100%;
  height: 35px;
}
.btn-wishlist i {
  padding-right: 8px;
  font-size: 1.8rem;
  font-weight: 400;
  top: -1px;
}

.btn-more {
  background: #F5F4EF;
  font-size: 1.1rem;
  line-height: 22px;
  padding: 0;
  width: 84px;
  height: 23px;
  padding-left: 0.5em;
}
.btn-more i {
  position: relative;
  padding-left: 3px;
}

.btn-buy {
  background: #F06021;
  color: #FFF;
  font-size: 1.6rem;
  line-height: 35px;
  padding: 0;
  width: 100%;
  height: 35px;
}

.btn-sample {
  background: #625739;
  color: #FFF;
  font-size: 1.2rem;
  line-height: 30px;
  border-radius: 15px;
  padding: 0 9px 0 7px;
  border: none;
  height: 30px;
}
.btn-sample i {
  font-size: 2rem;
  padding-right: 3px;
  font-weight: 400;
  top: -2px;
}

.btn-autoadd {
  padding: 0.66em 1.5em;
  margin-left: 5px;
  font-size: 1.5rem;
}

.btn-label,
.btn-tag {
  font-weight: 400;
  color: #897E5F;
  border-color: #897E5F;
  font-size: 1.2rem;
  padding: 0.5em 1.25em;
}

.pickup .btn-label {
  color: #FFF;
  border-color: #FFF;
  font-size: 1.3rem;
}

.back-list {
  font-size: 1.6rem;
  line-height: 1;
  text-align: right;
  padding: 18px 0;
}
.back-list a, .back-list span {
  cursor: pointer;
  color: #F06021;
}
.back-list a i, .back-list span i {
  position: relative;
  top: 3px;
  padding-right: 10px;
  transition: padding-right 0.3s ease;
}
.back-list a:hover, .back-list span:hover {
  color: #f6a481;
}
.back-list a:hover i, .back-list span:hover i {
  padding-right: 14px;
}

@media (min-width: 960px) {
  .btn-wishlist {
    font-size: 1.6rem;
    line-height: 45px;
    height: 42px;
  }
  .btn-wishlist i {
    padding-right: 10px;
    font-size: 2rem;
  }
  .btn-more {
    font-size: 1.3rem;
    line-height: 29px;
    width: 110px;
    height: 30px;
  }
  .btn-more i {
    top: -1px;
  }
  .btn-buy {
    line-height: 45px;
    height: 45px;
  }
  .pickup .btn-label {
    font-size: 1.5rem;
  }
}
/*------------------------------------------------------------------
[Sound Player -jPlayer-]
------------------------------------------------------------------*/
#sound_player {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -115px;
  width: 100%;
  background: #625739;
  z-index: 1300;
  height: 110px;
  color: #FFF;
  transition: bottom 0.5s ease;
}
#sound_player.open {
  bottom: 0;
}
#sound_player.active-fold {
  bottom: -60px;
}
#sound_player .jp-audio {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  position: relative;
}
#sound_player .jp-controls {
  display: flex;
  align-items: center;
}
#sound_player .jp-controls li {
  font-size: 0;
}
#sound_player .jp-controls li a {
  color: #FFF;
  font-size: 2.5rem;
  line-height: 1;
  vertical-align: middle;
}
#sound_player .jp-controls li .jp-play,
#sound_player .jp-controls li .jp-pause {
  font-size: 3.5rem;
  padding: 0 5px;
}
#sound_player .jp-controls li .jp-pause {
  color: #F06021;
  display: none;
}
#sound_player .jp-progress {
  position: absolute;
  height: 5px;
  z-index: 10;
}
#sound_player .jp-seek-bar {
  width: 0;
  height: 100%;
  cursor: pointer;
  background: #FFF;
  border-radius: 2.5px;
}
#sound_player .jp-seek-bar .jp-play-bar {
  background: #F06021;
  position: relative;
  width: 0;
  height: 100%;
  border-radius: 2.5px;
}
#sound_player .jp-seeking-bg {
  background: url("../../image/jplayer.blue.monday.seeking.gif");
}
#sound_player .jp-time-holder {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
}
#sound_player .jp-details {
  position: absolute;
}
#sound_player .jp-details h2 {
  font-weight: 600;
  width: 100%;
  letter-spacing: 0;
}
#sound_player .jp-details h2 a {
  display: inline-block;
  color: #FFF;
  font-size: 1.4rem;
  line-height: 1;
}
#sound_player .jp-num {
  display: none;
}
#sound_player .jp-num a {
  cursor: hand;
}
#sound_player .jp-actions {
  position: absolute;
  right: 5.3333vw;
  max-width: 290px;
}
#sound_player .jp-actions > ul {
  display: flex;
  align-items: center;
}
#sound_player .jp-actions > ul li {
  color: #FFF;
}
#sound_player .jp-actions > ul li a {
  color: #FFF;
}
#sound_player .jp-actions > ul li.jp-wish a {
  display: inline-block;
  border: 1px solid #FFF;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  text-align: center;
}
#sound_player .jp-actions > ul li.jp-wish a i {
  line-height: 30px;
}
#sound_player .jp-actions > ul li.jp-buy {
  padding: 0 12px 0 10px;
  flex: 1;
  position: relative;
}
#sound_player .jp-actions > ul li.jp-buy .btn-buy {
  display: block;
  line-height: 29px;
  height: 30px;
  max-width: 200px;
}
#sound_player .jp-actions > ul li.jp-thum {
  width: 30px;
  height: 30px;
}
#sound_player .jp-actions > ul li.jp-thum img {
  border: 1px solid #f2f2f2;
}
#sound_player #jp-format {
  position: absolute;
  top: -75px;
  left: 5px;
  width: calc(100vw - 10px);
  height: 135px;
  background: #A39782;
  z-index: 15;
}
#sound_player #jp-close {
  position: absolute;
  color: #FFF;
}

@media (max-width: 959px) {
  #sound_player #jp-main {
    height: 50px;
  }
  #sound_player #jp-sub {
    height: 60px;
    border-top: 1px solid #A39782;
  }
  #sound_player #jp-fold {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border-right: 1px solid #A39782;
    text-align: center;
  }
  #sound_player #jp-fold i {
    font-size: 30px;
    line-height: 50px;
  }
  #sound_player .jp-controls {
    width: 30vw;
    padding-top: 8px;
    padding-left: 60px;
  }
  #sound_player .jp-progress {
    bottom: 39px;
    left: calc(5.333vw + 50px);
    width: calc(89.334vw - 100px);
  }
  #sound_player .jp-time-holder {
    bottom: 36px;
    left: 5.333vw;
    width: 89.334vw;
  }
  #sound_player .jp-details {
    bottom: 8px;
    padding: 10px 20vw 0 5.333vw;
    width: 100vw;
    left: 0;
  }
  #sound_player .jp-actions {
    top: 11px;
  }
  #sound_player .jp-actions > ul {
    width: 48vw;
  }
  #sound_player .jp-actions > ul li.jp-buy {
    max-width: 222px;
  }
  #sound_player .jp-actions > ul li.jp-buy .btn-buy {
    font-size: 1.4rem;
  }
  #sound_player #jp-close {
    bottom: -5px;
    right: 5.333vw;
    padding: 5px;
  }
  #sound_player #jp-close i {
    font-size: 2.5rem;
    line-height: 1;
  }
}
@media (max-width: 374px) {
  #sound_player .jp-actions ul {
    width: 42vw;
  }
}
@media (min-width: 960px) {
  #sound_player {
    height: 70px;
    bottom: -75px;
  }
  #sound_player #jp-fold {
    display: none;
  }
  #sound_player .jp-audio {
    padding: 10px 15px;
  }
  #sound_player .jp-controls li a {
    font-size: 3rem;
    transition: color 0.3s ease;
    line-height: 52px;
  }
  #sound_player .jp-controls li a:hover {
    color: #f6a481;
  }
  #sound_player .jp-controls li .jp-play,
#sound_player .jp-controls li .jp-pause {
    font-size: 4.5rem;
    padding: 0 15px;
  }
  #sound_player .jp-progress {
    top: 22px;
    left: 238px;
    width: calc(100% - 860px);
    min-width: 274px;
  }
  #sound_player .jp-time-holder {
    left: 190px;
    top: 18px;
    width: calc(100% - 760px);
    min-width: 370px;
  }
  #sound_player .jp-details {
    left: 190px;
    top: 37px;
    width: calc(100% - 650px);
    min-width: 370px;
  }
  #sound_player .jp-details h2 a {
    transition: color 0.3s ease;
  }
  #sound_player .jp-details h2 a:hover {
    color: #f6a481;
  }
  #sound_player .jp-actions {
    top: 13px;
    right: 70px;
    width: 30%;
  }
  #sound_player .jp-actions > ul li.jp-wish a {
    width: 40px;
    height: 40px;
  }
  #sound_player .jp-actions > ul li.jp-wish a i {
    line-height: 40px;
  }
  #sound_player .jp-actions > ul li.jp-wish a:hover {
    color: #F06021;
    border-color: #F06021;
  }
  #sound_player .jp-actions > ul li.jp-buy {
    padding: 0 15px 0 12px;
  }
  #sound_player .jp-actions > ul li.jp-buy .btn-buy {
    width: 100%;
    line-height: 45px;
    height: 45px;
    max-width: 280px;
  }
  #sound_player .jp-actions > ul li.jp-buy .btn-buy:hover {
    background-color: #625739;
    color: #F06021;
  }
  #sound_player .jp-actions > ul li.jp-thum {
    width: 45px;
    height: 45px;
  }
  #sound_player .jp-actions > ul li.jp-thum img {
    transition: border-color 0.3s ease;
  }
  #sound_player .jp-actions > ul li.jp-thum a:hover img {
    border-color: #F06021;
  }
  #sound_player #jp-close {
    top: 20px;
    right: 15px;
  }
  #sound_player #jp-close i {
    font-size: 3.5rem;
    line-height: 1;
  }
}
/* ====================================================
フォーム関連
==================================================== */
form label {
  display: block;
  font-weight: normal;
  font-size: 1.5rem;
  margin-bottom: 4px;
  margin-left: 2px;
}
form label.en {
  color: #897E5F;
}
form input + label,
form .select + label {
  margin-top: 12px;
}
form input + input[type=submit],
form input + input[type=button] {
  margin-top: 20px;
}
form input[type=submit],
form input[type=button] {
  border-radius: 5px;
  padding: 0.9em 2em;
  line-height: 1;
}
form input:not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]) {
  font-size: 1.6rem;
}

@media (min-width: 768px) {
  form input,
form button,
form textarea,
form select {
    font-size: 1.5rem;
  }
  form input + input[type=submit],
form input + input[type=button] {
    margin-top: 25px;
  }
}
/* ラジオボタン */
form .input-radio input[type=radio] {
  display: none;
}
form .input-radio label {
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: 1.5em;
}
form .input-radio label::before, form .input-radio label::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50%;
  transition: 0.3s ease all;
}
form .input-radio label::before {
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  background: #FFF;
  border: 1px solid #F06021;
}
form .input-radio label::after {
  top: 8px;
  left: 4px;
  width: 8px;
  height: 8px;
  opacity: 0;
  background: #F06021;
}
form .input-radio input[type=radio]:hover + label::after,
form .input-radio input[type=radio]:checked + label::after {
  opacity: 1;
}

/* チェックボックス */
form .input-checkbox input[type=checkbox] {
  display: none;
}
form .input-checkbox label {
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: 20px;
  font-size: 1.3rem;
}
form .input-checkbox label::before, form .input-checkbox label::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 2px;
  transition: 0.3s ease all;
}
form .input-checkbox label::before {
  top: 4px;
  left: 0;
  width: 14px;
  height: 14px;
  background: #FFF;
  border: 1px solid #DEDEDF;
}
form .input-checkbox label::after {
  border-right: 2px solid #DEDEDF;
  border-bottom: 2px solid #DEDEDF;
  top: 50%;
  left: 4px;
  width: 5px;
  height: 9px;
  margin-top: -5px;
  transform: rotate(45deg);
  opacity: 0;
}
form .input-checkbox input[type=checkbox]:checked + label::after {
  border-right-color: #F06021;
  border-bottom-color: #F06021;
  opacity: 1;
}
form .input-checkbox input[type=checkbox]:checked + label::before {
  border-color: #F06021;
}

@media (min-width: 768px) {
  form .input-checkbox input[type=checkbox]:hover + label::after {
    border-right-color: #F06021;
    border-bottom-color: #F06021;
    opacity: 1;
  }
}
/* セレクトボタン */
.select {
  display: inline-block;
  overflow: hidden;
  text-align: center;
  position: relative;
  background: #FFF;
  border: 1px solid #DEDEDF;
  border-radius: 2px;
}
.select select {
  width: 100%;
  cursor: pointer;
  padding: 0.45em 1em;
  border: none;
  border-radius: 0;
  background: none;
}
.select select.wide {
  padding: 0.8em 1em;
}
.select::before, .select::after {
  position: absolute;
  content: "";
  right: 13px;
  display: inline-block;
  border-style: solid;
  pointer-events: none;
}
.select::before {
  top: calc(50% - 6px);
  border-width: 0 3px 5px 3px;
  border-color: transparent transparent #707070 transparent;
}
.select::after {
  bottom: calc(50% - 6px);
  border-width: 5px 3px 0 3px;
  border-color: #707070 transparent transparent transparent;
}

@media (min-width: 768px) {
  .select:hover {
    border-color: #F06021;
  }
}
/* ====================================================
Login & Cart & Mypage共通
==================================================== */
.iframe-content {
  background: #F5F4EF;
  font-size: 1.4rem;
  padding: 0 5vw;
}
.iframe-content a:not([class^=btn]) {
  color: #F06021;
}
.iframe-content a:not([class^=btn]):hover {
  color: #f6a481;
  text-decoration: underline;
}
.iframe-content .modal-title {
  color: #F06021;
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.5;
}
.iframe-content .modal-title span {
  display: block;
  font-size: 1.3rem;
}
.iframe-content .font-m {
  font-size: 1.3rem;
}
.iframe-content .sendfix {
  font-size: 2.5rem;
}
.iframe-content .text {
  text-align: justify;
}

@media (min-width: 768px) {
  .iframe-content {
    font-size: 1.5rem;
    padding: 20px 40px;
  }
  .iframe-content .modal-title {
    font-size: 2.5rem;
  }
  .iframe-content .modal-title span {
    font-size: 1.5rem;
  }
  .iframe-content .font-m {
    font-size: 1.4rem;
  }
  .iframe-content .text {
    line-height: 1.8;
  }
}
/* ====================================================
Login
==================================================== */
.login-body {
  padding: 30px 0 40px;
  margin: 0 auto;
  width: 100%;
  max-width: 350px;
}
.login-body h1 {
  padding-bottom: 25px;
}
.login-body form input {
  width: 100%;
  max-width: 350px;
}
.login-body form input[type=checkbox],
.login-body form input[type=radio] {
  width: auto;
}
.login-body form input:not([type=submit]):not([type=button]) {
  padding: 0.8em 1em;
  border-radius: 2px;
}
.login-body .login-footer .btn-outline {
  width: 100%;
}
.login-body .form-narrow input:not([type=submit]):not([type=button]) {
  padding: 0.4em 1em;
}

@media (min-width: 768px) {
  .login-body h1 {
    padding-bottom: 30px;
  }
  .login-body .login-footer {
    font-size: 1.5rem;
  }
}
/* ====================================================
Cart & Mypage
==================================================== */
.cart-body {
  padding: 0 0 40px;
  margin: 0 auto;
  width: 100%;
  font-size: 1.4rem;
}
.cart-body header {
  position: relative;
}
.cart-body header p i {
  font-size: 120%;
  position: relative;
  top: 4px;
  margin-right: 4px;
  color: #F06021;
}
.cart-body header .nocart {
  padding-right: 0px;
}
.cart-body header .header-account {
  padding-right: 60px;
}
.cart-body header .header-account p {
  font-size: 1.6rem;
  margin-top: 5px;
}
.cart-body header .header-account .ri-arrow-right-s-fill {
  font-size: 2.3rem;
  vertical-align: middle;
  position: relative;
  top: -1px;
  left: -3px;
  margin-right: -5px;
}
.cart-body header .header-account a:not([class^=btn]):hover {
  text-decoration: none;
}
.nocart {
  padding-right: 0px;
}


.cart-body header .header-cart {
  position: absolute;
  right: 5px;
  top: 0;
}
.cart-body header .header-cart a {
  color: #504F4F;
  font-size: 1.5rem;
  letter-spacing: 0;
  text-align: center;
  position: relative;
}
.cart-body header .header-cart a:hover {
  text-decoration: none;
}
.cart-body header .header-cart i {
  position: relative;
  font-size: 3.5rem;
  line-height: 1;
  left: 2px;
}
.cart-body header .header-cart .cart-num {
  display: inline-block;
  position: absolute;
  top: -22px;
  left: 20px;
  background: #F06021;
  color: #FFF;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  padding: 2px 3px;
  border-radius: 7px;
}
.cart-body .basket {
  margin-top: 20px;
}
.cart-body .basket .cart-total {
  background: #FFF;
  border-radius: 4px;
  border-top: 10px solid #625739;
  padding: 13px 10px;
}
.cart-body .cart-total .msg {
  font-size: 1.2rem;
  margin-top: 8px;
  text-align: center;
}
.cart-body .cart-total .cart-btn {
  padding-top: 5px;
}
.cart-body .cart-total .cart-btn li {
  margin-top: 10px;
}
.cart-body .cart-total .cart-btn li .btn-buy {
  border-radius: 4px;
  padding: 0.9em 2em 1.7em;
}
.cart-body .cart-total .cart-btn li a {
  display: block;
  line-height: 1.5;
  padding: 0.6em;
}
.cart-body .total-price {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 5px;
  border-bottom: 1px solid #707070;
}
.cart-body .total-price .num {
  display: inline-block;
}
.cart-body .total-price .num strong {
  font-weight: normal;
  font-size: 1.7rem;
}
.cart-body .total-price .price {
  line-height: 1.1;
}
.cart-body .total-price .price strong {
  font-size: 2.5rem;
  margin-right: 7px;
}
.cart-body .cart-list table {
  font-size: 1.2rem;
  width: 100%;
  border-top: 1px solid #DEDEDF;
}
.cart-body .cart-list table tr {
  border-bottom: 1px solid #DEDEDF;
}
.cart-body .cart-list table td {
  padding: 10px 5px;
  vertical-align: middle;
  letter-spacing: 0;
}
.cart-body .cart-list table td a {
  color: #504F4F;
  text-decoration: none;
}
.cart-body .cart-list table td a:hover {
  color: #F06021;
}
.cart-body .cart-list table .thum {
  width: 50px;
  vertical-align: top;
}
.cart-body .cart-list table .thum a.img_rect {
  width: 50px;
  height: 50px;
}
.cart-body .cart-list table .txtset .title h3 {
  font-weight: normal;
}
.cart-body .cart-list table .txtset .format, .cart-body .cart-list table .txtset .price {
  color: #707070;
}
.cart-body .cart-list table .txtset .format i {
  position: relative;
  top: 2px;
  padding-right: 2px;
}
.cart-body .cart-list table .delete {
  padding: 10px;
}
.cart-body .cart-list table .delete a {
  color: #B1B1B1;
  text-decoration: none;
}
.cart-body .cart-list table .delete a i {
  font-size: 1.8rem;
}
.cart-body .checkout {
  margin-top: 25px;
}
.cart-body .checkout .checkout-detail {
  background: #FFF;
}
.cart-body .checkout .checkout-detail .detail-body {
  padding: 6.4vw 3.3vw;
}
.cart-body .checkout .checkout-detail h2 {
  background: #625739;
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 2.6vw 5.3vw;
}
.cart-body .checkout .checkout-detail h2 span {
  display: block;
  font-weight: normal;
  font-size: 1.3rem;
}
.cart-body .checkout .checkout-detail .cart-address .user-address,
.cart-body .checkout .checkout-detail .cart-address .user-tel,
.cart-body .checkout .checkout-detail .cart-address .user-change {
  margin-top: 0.5em;
}
.cart-body .checkout .checkout-detail .cart-address .user-address a,
.cart-body .checkout .checkout-detail .cart-address .user-tel a,
.cart-body .checkout .checkout-detail .cart-address .user-change a {
  margin-left: -5px;
}
.cart-body .checkout .checkout-detail .cart-address .user-address a i,
.cart-body .checkout .checkout-detail .cart-address .user-tel a i,
.cart-body .checkout .checkout-detail .cart-address .user-change a i {
  font-size: 1.7em;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.cart-body .checkout .checkout-detail .cart-payment .input-radio {
  margin-top: -5px;
}
.cart-body .checkout .checkout-detail .cart-payment .input-radio input + label {
  margin-top: 10px;
}
.cart-body .checkout .checkout-detail .cart-total .total-price {
  border-bottom: none;
}
.cart-body .checkout .checkout-detail .cart-total .payment-submit {
  margin-top: 10px;
}
.cart-body .checkout .checkout-detail .cart-total .payment-submit .how-payment {
  display: none;
}
.cart-body .checkout .checkout-detail .cart-total .payment-submit .how-payment.active {
  display: block;
}
.cart-body .checkout .checkout-detail .cart-total .payment-submit #payment-mycredit {
  font-size: 1.3rem;
  margin-top: -5px;
}
.cart-body .checkout .checkout-detail .cart-total .payment-submit #payment-mycredit .ul-nolist {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.4rem;
  letter-spacing: 0;
  padding-bottom: 5px;
}
.cart-body .checkout .checkout-detail .cart-total .payment-submit #payment-mycredit .ul-nolist .c-logo {
  width: 36px;
}
.cart-body .checkout .checkout-detail .cart-total .payment-submit iframe {
  width: 100%;
  height: 90px;
  overflow: hidden;
}
.cart-body .checkout .checkout-detail .cart-total .payment-submit .input-checkbox {
  margin-top: -3px;
}
.cart-body .checkout .checkout-detail .cart-total .remarks {
  margin-top: 13px;
}
.cart-body .checkout .checkout-detail .cart-total .remarks textarea {
  font-size: 1.6rem;
  width: 100%;
  height: 85px;
  border-radius: 0;
}
.cart-body .checkout .checkout-detail .cart-total .remarks textarea::-moz-placeholder {
  color: #B1B1B1;
}
.cart-body .checkout .checkout-detail .cart-total .remarks textarea:-ms-input-placeholder {
  color: #B1B1B1;
}
.cart-body .checkout .checkout-detail .cart-total .remarks textarea::placeholder {
  color: #B1B1B1;
}
.cart-body .checkout .mypage {
  margin-top: 30px;
}
.cart-body .checkout .mypage .mypage-tab {
  display: flex;
}
.cart-body .checkout .mypage .mypage-tab li {
  flex-grow: 1;
  width: 25%;
  text-align: center;
}
.cart-body .checkout .mypage .mypage-tab li a {
  display: block;
  height: 100%;
  position: relative;
  z-index: 1;
  left: -2px;
  width: calc(100% + 2px);
  color: #B1B1B1;
  background: #E8E4DE;
  border: 1px solid #B1B1B1;
  padding: 0.7em 0.3em;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0;
  transition: 0.3s ease all;
}
.cart-body .checkout .mypage .mypage-tab li a.active {
  background: #FFF;
  color: #F06021;
  border-color: #F06021;
  z-index: 5;
}
.cart-body .checkout .mypage .mypage-tab li a.active .num {
  background: #F06021;
}
.cart-body .checkout .mypage .mypage-tab li a:not(.active):hover {
  background: #FFF;
}
.cart-body .checkout .mypage .mypage-tab li a span {
  display: inline-block;
}
.cart-body .checkout .mypage .mypage-tab li a .num {
  margin-left: 5px;
  color: #FFF;
  background: #B1B1B1;
  border-radius: 15px;
  padding: 2px 5px;
  min-width: 25px;
  line-height: 1;
  transition: 0.3s ease background;
}
.cart-body .checkout .mypage .mypage-tab li:first-child a {
  border-radius: 4px 0 0 4px;
  left: 0;
  width: 100%;
}
.cart-body .checkout .mypage .mypage-tab li:last-child a {
  border-radius: 0 4px 4px 0;
}
.cart-body .checkout .cart-list {
  margin-top: 30px;
  display: none;
  position: relative;
  top: 50px;
  z-index: 1;
}
.cart-body .checkout .cart-list.active {
  display: block;
  top: 0;
  z-index: 5;
}
.cart-body .checkout .cart-list#list-wishlist table td.delete {
  vertical-align: top;
}
.cart-body .checkout .cart-list#list-wishlist table td.delete .with-buy {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.cart-body .checkout .cart-list#list-wishlist table td.delete .with-buy a.btn-buy {
  display: block;
  color: #FFF;
  font-size: 1.3rem;
  line-height: 20px;
  height: 20px;
  padding: 0;
  width: 50px;
  margin-top: 10px;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.cart-body .checkout .cart-list#list-wishlist table td.delete .with-buy a.btn-buy:hover {
  opacity: 0.7;
}
.cart-body .checkout .cart-list .list-header {
  display: flex;
  justify-content: space-between;
  color: #F06021;
  font-size: 1.4rem;
  letter-spacing: 0;
  align-items: baseline;
}
.cart-body .checkout .cart-list .list-header h2 {
  font-weight: normal;
}
.cart-body .checkout .cart-list .list-header .total-price {
  border-bottom: none;
}
.cart-body .checkout .cart-list .list-header .total-price .num {
  margin: 0 10px 0 2px;
}
.cart-body .checkout .cart-list .list-header .total-price .price strong {
  line-height: 1.3;
}
.cart-body .checkout .cart-list .list-btn {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 250px;
}
.cart-body .checkout .cart-list .list-btn a {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.cart-body .checkout .cart-list .list-btn a:hover {
  opacity: 0.7;
}
.cart-body .checkout .cart-list .list-nodate {
  text-align: center;
  padding: 50px 0;
  font-size: 1.4rem;
}
.cart-body .edit {
  margin-top: 25px;
  padding: 0 3px;
}
.cart-body .edit h2 {
  color: #707070;
  font-size: 1.8rem;
  font-weight: normal;
  padding-bottom: 20px;
}
.cart-body .edit h2 span {
  display: block;
  font-size: 1.3rem;
}
.cart-body .edit .edit-select .list-select {
  margin-bottom: 15px;
}
.cart-body .edit .edit-select .list-select li {
  transition: 0.3s ease all;
  border: 1px solid #B1B1B1;
  border-radius: 4px;
  padding: 25px 25px 20px;
  font-size: 1.5rem;
  font-weight: 400;
  cursor: pointer;
  margin-bottom: 10px;
  letter-spacing: 0;
}
.cart-body .edit .edit-select .list-select li:hover {
  background: #FFF;
}
.cart-body .edit .edit-select .list-select li.selected {
  border-color: #F06021;
  background: #FFF;
}
.cart-body .edit .edit-select .list-select li .select-name {
  margin-top: 15px;
  font-size: 1.6rem;
}
.cart-body .edit .edit-select .list-select li .select-address {
  font-size: 1.4rem;
  margin-top: 3px;
}
.cart-body .edit .edit-select .list-select li .select-tel {
  margin-top: 8px;
}
.cart-body .edit .edit-select .list-select li .select-btn {
  margin-top: 25px;
  font-size: 1.4rem;
}
.cart-body .edit .edit-select .list-select li .card-num,
.cart-body .edit .edit-select .list-select li .card-expiration {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
.cart-body .edit .edit-select .list-select li .card-num {
  margin-top: -10px;
}
.cart-body .edit .edit-select .list-select li .card-num .c-logo {
  width: 48px;
  margin-right: 12px;
  position: relative;
  top: -1px;
  left: -2px;
}
.cart-body .edit .edit-select .list-select li .card-expiration {
  justify-content: space-between;
}
.cart-body .edit .edit-new .form-expiration {
  float: left;
  width: 55%;
  margin-top: 12px;
}
.cart-body .edit .edit-new .form-cvc {
  float: right;
  width: 38%;
  margin-top: 12px;
}
.cart-body .mypage .edit .edit-new {
  margin-top: -10px;
}
.cart-body .mypage .edit .form-address span {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.cart-body .mypage .edit .form-address input#postcode {
  width: 150px !important;
}
.cart-body .mypage .edit h3,
.cart-body .checkout .edit-password h3 {
  font-weight: bold;
  font-size: 1.7rem;
  padding: 5px 0 20px;
  color: #707070;
}

@media (max-width: 894px) {
  .cart-body .cart-total .total-price .total {
    margin-right: 5px;
  }
  .cart-body .cart-total .cart-btn .li-reserve, .cart-body .cart-total .cart-btn .li-wish {
    display: block;
    width: calc(50% - 3px);
  }
  .cart-body .cart-total .cart-btn .li-reserve a, .cart-body .cart-total .cart-btn .li-wish a {
    width: 100%;
    font-size: 1.3rem;
  }
  .cart-body .cart-total .cart-btn .li-reserve {
    float: left;
  }
  .cart-body .cart-total .cart-btn .li-wish {
    float: right;
  }
  .cart-body .cart-list table {
    margin-top: 20px;
  }
  .cart-body .cart-list table .txtset .format, .cart-body .cart-list table .txtset .price {
    display: inline-block;
    margin-right: 8px;
  }
  .cart-body .cart-list table .txtset .format {
    margin-top: 5px;
  }
  .cart-body .cart-list .list-header + table {
    margin-top: 5px;
  }
  .cart-body .checkout .checkout-detail {
    margin: 0 -5vw;
  }
  .cart-body .checkout .checkout-detail h2 span {
    float: right;
    padding-top: 4px;
  }
  .cart-body .checkout .mypage .mypage-tab li .sp-hide, .cart-body .checkout .mypage .mypage-tab li .price {
    display: none;
  }
  .cart-body .edit .edit-new {
    margin-top: 40px;
  }
  .mypage{
    clear: both;
  }
}
@media (max-width: 718px) {
  .cart-body .checkout .mypage.mypage-2line {
    margin-top: -10px;
  }
  .cart-body .checkout .mypage.mypage-2line ul {
    flex-wrap: wrap;
  }
  .cart-body .checkout .mypage.mypage-2line ul li {
    width: 50%;
  }
  .cart-body .checkout .mypage.mypage-2line ul li:first-child a {
    border-radius: 4px 0 0 0;
    left: 0;
    width: calc(100% - 1px);
  }
  .cart-body .checkout .mypage.mypage-2line ul li:nth-child(2) a {
    border-radius: 0 4px 0 0;
  }
  .cart-body .checkout .mypage.mypage-2line ul li:nth-child(3) a {
    border-radius: 0 0 0 4px;
    left: 0;
    top: -2px;
    width: calc(100% - 1px);
  }
  .cart-body .checkout .mypage.mypage-2line ul li:last-child a {
    border-radius: 0 0 4px 0;
    top: -2px;
  }
  .cart-body .cart-item .input-radio label {
    font-size: 1.3rem;
  }
  .cart-body .cart-item .input-radio label::before {
    top: 3px;
    width: 14px;
    height: 14px;
  }
  .cart-body .cart-item .input-radio label::after {
    top: 6px;
    left: 3px;
  }
}
@media (max-width: 325px) {
  .cart-body .li-reserve .inblock,
.cart-body .li-wish .inblock {
    display: block !important;
  }
  .cart-body .checkout .checkout-detail h2 span {
    float: none;
    font-size: 1.2rem;
    padding-top: 0;
  }
  .cart-body .checkout .mypage .mypage-tab li a {
    padding: 0.7em;
  }
  .cart-body .checkout .mypage .mypage-tab li a span {
    display: inline-block;
  }
  .cart-body .checkout .mypage .mypage-tab li a .num {
    display: block;
    margin: 0 auto;
  }
  .cart-body .edit .edit-select .list-select li {
    padding: 20px 20px 15px;
  }
  .cart-body .edit .edit-select .list-select li .card-num,
.cart-body .edit .edit-select .list-select li .card-expiration {
    font-size: 1.3rem;
  }
  .cart-body .edit .edit-select .list-select li .card-num .c-logo {
    width: 36px;
    margin-right: 10px;
  }
  .cart-body .edit .edit-select .list-select li .card-expiration .select-btn {
    font-size: 1.3rem;
  }
  .cart-body .edit .edit-new .font18.mt5 {
    font-size: 1.6rem !important;
    letter-spacing: 0;
  }
  .cart-body .cart-item .input-radio label span.hide-sp-s {
    display: none;
  }
}
@media (min-width: 895px) {
  .cart-body {
    width: 94%;
    max-width: 800px;
  }
  .cart-body header {
    display: flex;
    justify-content: space-between;
  }
  .cart-body header .header-account {
    text-align: right;
  }
  .cart-body header .header-cart {
    top: 8px;
  }
  .cart-body header .header-cart a:hover {
    color: #B1B1B1;
  }
  .cart-body .basket {
    margin-top: 30px;
  }
  .cart-body .basket .cart-total {
    float: right;
    width: 230px;
    padding: 15px;
  }
  .cart-body .cart-total .total-price .total {
    display: block;
  }
  .cart-body .cart-list {
    float: left;
    width: calc(100% - 250px);
  }
  .cart-body .cart-list table {
    font-size: 1.4rem;
  }
  .cart-body .cart-list table td {
    padding: 10px;
  }
  .cart-body .cart-list table .thum {
    padding: 10px 10px 10px 5px;
  }
  .cart-body .cart-list table .txtset {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
  }
  .cart-body .cart-list table .txtset .title {
    width: 100%;
  }
  .cart-body .cart-list table .txtset .title p {
    margin-top: 2px;
  }
  .cart-body .cart-list table .txtset .format {
    font-size: 1.3rem;
    position: relative;
    top: 1px;
    width: 14em;
  }
  .cart-body .cart-list table .txtset .price {
    font-size: 1.5rem;
    width: 10em;
    text-align: right;
  }
  .cart-body .cart-list table .delete {
    padding: 10px 15px;
    position: relative;
    top: 1px;
  }
  .cart-body .checkout .checkout-detail {
    display: flex;
    border-radius: 4px;
  }
  .cart-body .checkout .checkout-detail .detail-body {
    padding: 4vw 2.8vw;
    min-height: 340px;
  }
  .cart-body .checkout .checkout-detail h2 {
    font-size: 1.8rem;
    padding: 2vw 2.8vw;
  }
  .cart-body .checkout .checkout-detail h2 span {
    display: block;
    font-size: 1.4rem;
    margin-top: 3px;
  }
  .cart-body .checkout .checkout-detail .cart-address {
    width: 30%;
    border-right: 1px solid #DEDEDF;
  }
  .cart-body .checkout .checkout-detail .cart-address h2 {
    border-top-left-radius: 4px;
  }
  .cart-body .checkout .checkout-detail .cart-address .user-address,
.cart-body .checkout .checkout-detail .cart-address .user-tel {
    margin-top: 1em;
  }
  .cart-body .checkout .checkout-detail .cart-address .user-change {
    margin-top: 2em;
  }
  .cart-body .checkout .checkout-detail .cart-address .user-change a i {
    top: -2px;
  }
  .cart-body .checkout .checkout-detail .cart-payment {
    width: 30%;
    border-right: 1px solid #DEDEDF;
  }
  .cart-body .checkout .checkout-detail .cart-payment .input-radio {
    margin-top: -10px;
  }
  .cart-body .checkout .checkout-detail .cart-total {
    width: 40%;
    float: none;
  }
  .cart-body .checkout .checkout-detail .cart-total h2 {
    border-top-right-radius: 4px;
  }
  .cart-body .checkout .checkout-detail .cart-total .total-price {
    margin-top: -4px;
  }
  .cart-body .checkout .checkout-detail .cart-total .total-price .total {
    display: inline-block;
    margin-right: 5px;
  }
  .cart-body .checkout .checkout-detail .cart-total .payment-submit {
    margin-top: 12px;
  }
  .cart-body .checkout .mypage {
    margin-top: 20px;
  }
  .cart-body .checkout .mypage .mypage-tab li {
    font-size: 1.4rem;
  }
  .cart-body .checkout .mypage .mypage-tab li a {
    padding: 0.7em;
  }
  .cart-body .checkout .mypage .mypage-tab li a .num {
    margin-left: 5px;
    padding: 3px 5px 1px;
  }
  .cart-body .checkout .mypage .mypage-tab li a .price {
    margin-left: 5px;
  }
  .cart-body .checkout .mypage .mypage-tab li a .price span {
    position: relative;
    top: 1px;
  }
  .cart-body .checkout .cart-list {
    float: none;
    width: 100%;
    margin-top: 20px;
  }
  .cart-body .checkout .cart-list .list-header {
    font-size: 1.5rem;
    padding: 35px 0 10px;
  }
  .cart-body .checkout .cart-list .list-header h2 {
    font-size: 2rem;
  }
  .cart-body .checkout .cart-list .list-header .total-price {
    border-bottom: none;
  }
  .cart-body .checkout .cart-list .list-header .total-price .num {
    margin: 0 20px 0 30px;
  }
  .cart-body .checkout .cart-list .list-header .total-price .price strong {
    font-size: 2.5rem;
    line-height: 1.1;
  }
  .cart-body .checkout .cart-list .list-btn {
    float: right;
    width: 185px;
  }
  .cart-body .checkout .cart-list .list-nodate {
    padding: 150px 0;
    font-size: 1.5rem;
  }
  .cart-body .checkout .cart-list#list-wishlist table td.delete {
    vertical-align: middle;
  }
  .cart-body .checkout .cart-list#list-wishlist table td.delete .with-buy {
    display: block;
    position: relative;
    padding-left: 100px;
  }
  .cart-body .checkout .cart-list#list-wishlist table td.delete .with-buy a.btn-buy {
    position: absolute;
    top: -3px;
    left: 0;
    font-size: 1.5rem;
    line-height: 25px;
    height: 25px;
    width: 80px;
    margin-top: 0;
  }
  .cart-body .edit {
    margin: 55px auto 0;
    padding: 0;
    width: 320px;
  }
  .cart-body .edit.edit-password {
    width: 350px;
  }
  .cart-body .edit.edit-password .text {
    font-size: 1.5rem;
  }
  .cart-body .edit.edit_2clm {
    width: 700px;
  }
  .cart-body .edit.edit_2clm .edit-select {
    float: left;
    width: 320px;
  }
  .cart-body .edit.edit_2clm .edit-select .list-select li {
    padding: 25px 35px 20px;
  }
  .cart-body .edit.edit_2clm .edit-new {
    float: right;
    width: 320px;
  }
  .cart-body .edit h2 {
    font-size: 2rem;
    padding-bottom: 30px;
  }
  .cart-body .edit h2 span {
    font-size: 1.5rem;
  }
  .cart-body .mypage .edit {
    width: 100%;
    max-width: 480px;
  }
  .cart-body .mypage .edit h2 span {
    display: block;
    float: right;
    position: relative;
    top: 2px;
  }
  .cart-body .mypage .edit .form-address {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .cart-body .mypage .edit .form-address label, .cart-body .mypage .edit .form-address p {
    width: calc(100% - 340px);
    margin-bottom: 15px;
  }
  .cart-body .mypage .edit .form-address input:not([type=submit]),
.cart-body .mypage .edit .form-address input:not([type=hidden]),
.cart-body .mypage .edit .form-address span {
    width: 320px !important;
    margin-bottom: 15px;
  }
  .cart-body .mypage .edit .form-address input#postcode {
    margin-right: 170px;
  }
  .cart-body .mypage .edit .form-address input[type=submit] {
    margin-right: auto;
    margin-left: auto;
    width: 320px;
  }
  .cart-body .mypage .edit .form-address input + label {
    margin-top: 0;
  }
  .cart-body .mypage .edit .form-address p, .cart-body .mypage .edit .form-address span {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .cart-body .mypage .edit .btn-outline {
    width: 320px !important;
  }
  .cart-body .mypage .edit h3,
.cart-body .checkout .edit-password h3 {
    text-align: center;
    font-size: 2.5rem;
    padding: 5px 0 40px;
  }
}
/* ====================================================
thanks page
==================================================== */
#thanks {
  text-align: center;
  padding: 45px 0 0;
  letter-spacing: 0;
  position: relative;
  height: 100vw;
}
#thanks .thanks-logo img {
  display: block;
  margin: 0 auto;
}
#thanks .thanks-logo .logo-mark {
  width: 43px;
}
#thanks .thanks-logo .logo-text {
  margin-top: 10px;
  width: 78px;
}
#thanks h2 {
  margin: 1em 0 0.5em;
  font-weight: normal;
  font-size: 2.2rem;
}
#thanks .thanks-txt {
  font-size: 1.3rem;
}
#thanks .hide-sp {
  display: none;
}
#thanks footer {
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 100%;
  text-align: center;
}
#thanks footer .thanks-close {
  color: #897E5F;
  font-size: 1.2rem;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0;
  text-transform: uppercase;
}
#thanks footer .thanks-close i {
  font-size: 1.6rem;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
#thanks footer .thanks-close:hover {
  color: #F06021;
}

@media (max-width: 314px) {
  #thanks {
    padding: 30px 0 0;
  }
  #thanks h2 {
    margin: 0.8em 0 0.5em;
    font-size: 1.8rem;
  }
  #thanks .thanks-txt {
    font-size: 1.2rem;
  }
  #thanks footer {
    bottom: 5px;
  }
}
@media (min-width: 600px) {
  #thanks {
    padding: 95px 40px;
    letter-spacing: 0.05em;
  }
  #thanks .thanks-logo .logo-mark {
    width: 84px;
  }
  #thanks .thanks-logo .logo-text {
    margin-top: 20px;
    width: 150px;
  }
  #thanks h2 {
    margin: 1.28em 0 1em;
    font-size: 3.5rem;
  }
  #thanks .thanks-txt {
    font-size: 1.5rem;
    line-height: 1.87;
  }
  #thanks .hide-sp {
    display: block;
  }
  #thanks .hide-pc {
    display: none;
  }
  #thanks footer {
    bottom: 80px;
  }
  #thanks footer .thanks-close {
    font-size: 1.3rem;
    top: 10px;
    right: 20px;
  }
  #thanks footer .thanks-close i {
    font-size: 1.9rem;
  }
}
/* ====================================================
digital select page 
==================================================== */
.digital-type .digital-type-detail h2 {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 600;
}
.digital-type .digital-type-detail .price {
  border-bottom: 1px solid #897E5F;
  padding-bottom: 5px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.4;
}
.digital-type .digital-type-detail .price strong {
  font-size: 150%;
}
.digital-type .digital-type-detail .btn {
  width: 100%;
  color: #FFF;
  font-weight: 600;
}

@media (min-width: 719px) {
  #select-format {
    max-width: 710px;
  }
  .digital-type {
    display: flex;
    justify-content: space-between;
  }
  .digital-type .item {
    width: 46%;
    height: 46%;
    max-width: 320px;
    max-height: 320px;
  }
  .digital-type .digital-type-detail {
    width: 50%;
    max-width: 350px;
  }
  .digital-type .digital-type-detail .btn {
    max-width: 350px;
  }
  .digital-type .digital-type-detail .btn:hover {
    text-decoration: none;
    color: #FFF;
  }
}
/* ====================================================
my page -download-
==================================================== */
.downloadList {
  flex-wrap: wrap;
  width: 100%;
  text-align: center;
}
.downloadList li {
  display: flex;
  flex-direction: column;
}
.downloadList .download-title {
  line-height: 1.5;
  margin-top: 8px;
  margin-bottom: auto;
  font-size: 90%;
}
.downloadList .file_type,
.downloadList .download {
  font-size: 90%;
}
.downloadList .download {
  position: relative;
}
.downloadList .download:disabled {
  opacity: 0.5;
}

.fspinner {
  width: 16px;
  height: 16px;
  position: absolute;
  left: calc(50% - 3.8em);
  top: calc(50% - 9px);
  opacity: 0.6;
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #333;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@media (min-width: 895px) {
  .downloadList > li {
    flex-basis: calc((100% - 75px) / 4);
    margin-bottom: 30px;
    padding: 0 5px;
  }
}
@media (min-width: 719px) {
  .downloadList > li {
    flex-basis: calc((100% - 30px) / 4);
    margin-bottom: 30px;
  }
}
@media (max-width: 718px) {
  .downloadList > li {
    flex-basis: calc((100% - 5px) / 2);
    padding: 0 5px;
    margin-bottom: 30px;
  }
  .downloadList > li .file_type,
.downloadList > li .download {
    font-size: 80%;
  }
}
@media (max-width: 325px) {
  .downloadList > li .select .file_type {
    font-size: 70%;
    padding: 0.8em 1em 0.8em 0.5em;
  }
  .downloadList > li .select::before, .downloadList > li .select::after {
    right: 5px;
  }
  .downloadList > li .download {
    padding: 0.8em 1em;
  }
}
/*------------------------------------------------------------------
[Text Colors]
------------------------------------------------------------------*/
.color-base {
  color: #504F4F !important;
}

.color-white {
  color: #FFF !important;
}

.color-orange {
  color: #F06021 !important;
}

.color-grey {
  color: #707070 !important;
}

.color-lightbrown {
  color: #897E5F !important;
}

/*------------------------------------------------------------------
[Background Colors]
------------------------------------------------------------------*/
.bg-white {
  background: #FFF !important;
}

.bg-beige {
  background: #EFEAE1 !important;
}

.bg-lightbeige {
  background: #F5F4EF !important;
}

.bg-orange {
  background: #F06021 !important;
}

.bg-grey {
  background: #707070 !important;
}

.bg-lightbeige2 {
  background: #E8E4DE !important;
}

/*------------------------------------------------------------------
[Images] [Float]
------------------------------------------------------------------*/
.fitimg {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.img100 {
  width: 100%;
  height: auto;
}

.img_rect, .img_contain {
  position: relative;
  display: block;
}
.img_rect::before, .img_contain::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.img_rect source, .img_rect img, .img_contain source, .img_contain img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.img_rect source, .img_rect img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.img_contain {
  background: #E8E4DE;
}
.img_contain source, .img_contain img {
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}

/*------------------------------------------------------------------
[Float]
------------------------------------------------------------------*/
.float_right {
  float: right !important;
}

.float_left {
  float: left !important;
}

.clear_right {
  clear: right !important;
}

.clear_left {
  clear: left !important;
}

.clear {
  clear: both !important;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}

/* min widthでのFloat */
@media (min-width: 480px) {
  .f_right-sp_up {
    float: right !important;
  }
  .f_left-sp_up {
    float: left !important;
  }
}
@media (min-width: 768px) {
  .f_right-tb_up {
    float: right !important;
  }
  .f_left-tb_up {
    float: left !important;
  }
}
@media (min-width: 960px) {
  .f_right-note_up {
    float: right !important;
  }
  .f_left-note_up {
    float: left !important;
  }
}
@media (min-width: 1355px) {
  .f_right-pc_up {
    float: right !important;
  }
  .f_left-pc_up {
    float: left !important;
  }
}
/*------------------------------------------------------------------
[Flex]
------------------------------------------------------------------*/
.flex {
  display: flex !important;
}

.flex-bw {
  justify-content: space-between !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-center {
  justify-content: center !important;
  align-items: center !important;
}

.flex-justify-center {
  justify-content: center !important;
}

.flex-align-center {
  align-items: center !important;
}

/* min widthでのFlex */
@media (min-width: 480px) {
  .flex-sp_up {
    display: flex !important;
  }
  .flex-bw-sp_up {
    justify-content: space-between !important;
  }
}
@media (min-width: 768px) {
  .flex-tb_up {
    display: flex !important;
  }
  .flex-bw-tb_up {
    justify-content: space-between !important;
  }
}
@media (min-width: 960px) {
  .flex-note_up {
    display: flex !important;
  }
  .flex-bw-note_up {
    justify-content: space-between !important;
  }
}
@media (min-width: 1355px) {
  .flex-pc_up {
    display: flex !important;
  }
  .flex-bw-pc_up {
    justify-content: space-between !important;
  }
}
/*------------------------------------------------------------------
[Text Align][Vertical Align]
------------------------------------------------------------------*/
.txt-left {
  text-align: left !important;
}

.txt-right {
  text-align: right !important;
}

.txt-center {
  text-align: center !important;
}

.txt-justify {
  text-align: justify !important;
  text-justify: inter-ideograph !important;
  -ms-text-justify: inter-ideograph !important;
}

.txt-middle {
  vertical-align: middle !important;
}

/*--------------------------------------------------
[Font Size]
----------------------------------------------------*/
.small {
  font-size: 75% !important;
}

.large {
  font-size: 120% !important;
}

.font10 {
  font-size: 1rem !important;
}

.font11 {
  font-size: 1.1rem !important;
}

.font12 {
  font-size: 1.2rem !important;
}

.font13 {
  font-size: 1.3rem !important;
}

.font14 {
  font-size: 1.4rem !important;
}

.font15 {
  font-size: 1.5rem !important;
}

.font16 {
  font-size: 1.6rem !important;
}

.font17 {
  font-size: 1.7rem !important;
}

.font18 {
  font-size: 1.8rem !important;
}

.font19 {
  font-size: 1.9rem !important;
}

.font20 {
  font-size: 2rem !important;
}

/* Responsive font size */
.font13-15 {
  font-size: 1.5rem !important;
  font-size: clamp(1.3rem, 3vw, 1.5rem) !important;
}

.font14-16 {
  font-size: 1.6rem !important;
  font-size: clamp(1.4rem, 3vw, 1.6rem) !important;
}

.font15-18 {
  font-size: 1.8rem !important;
  font-size: clamp(1.5rem, 3vw, 1.8rem) !important;
}

.font16-19 {
  font-size: 1.9rem !important;
  font-size: clamp(1.6rem, 3vw, 1.9rem) !important;
}

.font16-22 {
  font-size: 2.2rem !important;
  font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
}

.font20-24 {
  font-size: 2.4rem !important;
  font-size: clamp(2rem, 5vw, 2.4rem) !important;
}

/*--------------------------------------------------
[Line Height]
----------------------------------------------------*/
.lh10 {
  line-height: 1 !important;
}

.lh14 {
  line-height: 1.4 !important;
}

.lh15 {
  line-height: 1.5 !important;
}

.lh18 {
  line-height: 1.8 !important;
}

.lh20 {
  line-height: 2 !important;
}

/*--------------------------------------------------
[Font Weight]
----------------------------------------------------*/
.fweight-300 {
  font-weight: 300 !important;
}

.fweight-400 {
  font-weight: 400 !important;
}

.fweight-500 {
  font-weight: 500 !important;
}

.fweight-600 {
  font-weight: 600 !important;
}

.fweight-700 {
  font-weight: 700 !important;
}

.fw-normal {
  font-weight: normal !important;
}

.fw-bold {
  font-weight: bold !important;
}

/*--------------------------------------------------
[Font Style]
----------------------------------------------------*/
.fs-normal {
  font-style: normal !important;
}

.fs-italic {
  font-style: italic !important;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

/*--------------------------------------------------
[Letter Spacing]
----------------------------------------------------*/
.ls-0 {
  letter-spacing: 0 !important;
}

.ls-wide-m {
  letter-spacing: 0.1em !important;
}

.ls-wide-s {
  letter-spacing: 0.05em !important;
}

/*------------------------------------------------------------------
[Link]追加
------------------------------------------------------------------*/
a.link-line, .link-line a {
  text-decoration: underline;
}

a.hover-orange:hover, .hover-orange a:hover {
  color: #F06021;
}

a.link-orange, .link-orange a {
  color: #F06021;
}
a.link-orange:hover, .link-orange a:hover {
  color: #f6a481;
}

/*------------------------------------------------------------------
[Hover]追加
------------------------------------------------------------------*/
/* Overlay */
@media (min-width: 1355px) {
  .overlay-wrap {
    display: block;
  }
  .overlay-wrap .overlay {
    position: relative;
    cursor: pointer;
    display: block;
  }
  .overlay-wrap .overlay::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    content: "";
    transition-duration: 300ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  }
  .overlay-wrap .overlay:hover:before {
    background: rgba(0, 0, 0, 0.5);
    transition-duration: 300ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  }
}
.txtover {
  transition: color 0.3s ease;
  color: #F06021;
}
.txtover:hover {
  color: #f6a481;
}

.imgover {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.imgover:hover {
  opacity: 0.7;
}

.btnover a,
a.btnover,
button.btnover {
  transition: all 0.3s ease;
}
.btnover a:hover,
a.btnover:hover,
button.btnover:hover {
  color: #FFF;
  background-color: #F06021;
  border-color: #F06021;
  text-decoration: none;
}

/*------------------------------------------------------------------
[Tel]
------------------------------------------------------------------*/
@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/*------------------------------------------------------------------
[Border]
------------------------------------------------------------------*/
.box-grey {
  border: 1px solid #707070;
}

.box-lightgrey {
  border: 1px solid #DEDEDF;
}

.hr-grey {
  border-top: 1px solid #707070;
}

.hr-lightgrey {
  border-top: 1px solid #DEDEDF;
}

/*------------------------------------------------------------------
[Table]
------------------------------------------------------------------*/
.table {
  border: 1px solid #DEDEDF;
}
.table td {
  padding: 15px 20px;
  border: 1px solid #DEDEDF;
}

/* max widthでの非表示 */
@media (max-width: 479px) {
  .td_narrow-sp {
    padding: 10px;
  }
}
/*------------------------------------------------------------------
[DL & List style]
------------------------------------------------------------------*/
.ul-nolist {
  list-style: none;
}

.ul-decimal {
  list-style: decimal;
}

.ul-square {
  list-style: square;
}

/*--------------------------------------------------
[Block]
----------------------------------------------------*/
.block {
  display: block !important;
}

.inblock {
  display: inline-block !important;
}

.inline {
  display: inline !important;
}

/*--------------------------------------------------
[Hide]
----------------------------------------------------*/
.hide {
  display: none !important;
}

/* max widthでの非表示 */
@media (max-width: 479px) {
  .hide-sp_down {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hide-tb_down {
    display: none !important;
  }
}
@media (max-width: 959px) {
  .hide-note_down {
    display: none !important;
  }
}
@media (max-width: 1354px) {
  .hide-pc_down {
    display: none !important;
  }
}
/* min widthでの非表示 */
@media (min-width: 480px) {
  .hide-sp_up {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .hide-tb_up {
    display: none !important;
  }
}
@media (min-width: 960px) {
  .hide-note_up {
    display: none !important;
  }
}
@media (min-width: 1355px) {
  .hide-pc_up {
    display: none !important;
  }
}
/* max width & min width */
@media (min-width: 480px) and (max-width: 767px) {
  .hide-tb_only {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 959px) {
  .hide-tb2_only {
    display: none !important;
  }
}
@media (min-width: 960px) and (max-width: 1355px) {
  .hide-note_only {
    display: none !important;
  }
}
/* テキスト非表示: スクリーンリーダー専用 */
.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  padding: 0;
  white-space: nowrap;
  border: 0;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
  white-space: normal;
  -webkit-clip-path: none;
  clip-path: none;
}

/* テキスト省略記号 */
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*--------------------------------------------------
[Media(Google map, You tube etc)]
----------------------------------------------------*/
.media {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.media iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*--------------------------------------------------
[Position]
----------------------------------------------------*/
.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.fixed {
  position: fixed !important;
}

.iconfont {
  position: relative;
  top: 2px;
  margin-right: 4px;
}

/*------------------------------------------------------------------
[Margin]
------------------------------------------------------------------*/
.m-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

@media (max-width: 959px) {
  .m-auto-note {
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
@media (max-width: 767px) {
  .m-auto-tb {
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
@media (max-width: 479px) {
  .m-auto-sp {
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
/* Left margin */
.ml0 {
  margin-left: 0 !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml50 {
  margin-left: 50px !important;
}

@media (max-width: 959px) {
  .ml0-note {
    margin-left: 0 !important;
  }
  .ml5-note {
    margin-left: 5px !important;
  }
  .ml10-note {
    margin-left: 10px !important;
  }
  .ml20-note {
    margin-left: 20px !important;
  }
  .ml30-note {
    margin-left: 30px !important;
  }
  .ml40-note {
    margin-left: 40px !important;
  }
  .ml50-note {
    margin-left: 50px !important;
  }
}
@media (max-width: 767px) {
  .ml0-tb {
    margin-left: 0 !important;
  }
  .ml5-tb {
    margin-left: 5px !important;
  }
  .ml10-tb {
    margin-left: 10px !important;
  }
  .ml20-tb {
    margin-left: 20px !important;
  }
  .ml30-tb {
    margin-left: 30px !important;
  }
  .ml40-tb {
    margin-left: 40px !important;
  }
  .ml50-tb {
    margin-left: 50px !important;
  }
}
@media (max-width: 479px) {
  .ml0-sp {
    margin-left: 0 !important;
  }
  .ml5-sp {
    margin-left: 5px !important;
  }
  .ml10-sp {
    margin-left: 10px !important;
  }
  .ml20-sp {
    margin-left: 20px !important;
  }
  .ml30-sp {
    margin-left: 30px !important;
  }
  .ml40-sp {
    margin-left: 40px !important;
  }
  .ml50-sp {
    margin-left: 50px !important;
  }
}
/* Right margin */
.mr0 {
  margin-right: 0 !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr50 {
  margin-right: 50px !important;
}

@media (max-width: 959px) {
  .mr0-note {
    margin-right: 0 !important;
  }
  .mr5-note {
    margin-right: 5px !important;
  }
  .mr10-note {
    margin-right: 10px !important;
  }
  .mr20-note {
    margin-right: 20px !important;
  }
  .mr30-note {
    margin-right: 30px !important;
  }
  .mr40-note {
    margin-right: 40px !important;
  }
  .mr50-note {
    margin-right: 50px !important;
  }
}
@media (max-width: 767px) {
  .mr0-tb {
    margin-right: 0 !important;
  }
  .mr5-tb {
    margin-right: 5px !important;
  }
  .mr10-tb {
    margin-right: 10px !important;
  }
  .mr20-tb {
    margin-right: 20px !important;
  }
  .mr30-tb {
    margin-right: 30px !important;
  }
  .mr40-tb {
    margin-right: 40px !important;
  }
  .mr50-tb {
    margin-right: 50px !important;
  }
}
@media (max-width: 479px) {
  .mr0-sp {
    margin-right: 0 !important;
  }
  .mr5-sp {
    margin-right: 5px !important;
  }
  .mr10-sp {
    margin-right: 10px !important;
  }
  .mr20-sp {
    margin-right: 20px !important;
  }
  .mr30-sp {
    margin-right: 30px !important;
  }
  .mr40-sp {
    margin-right: 40px !important;
  }
  .mr50-sp {
    margin-right: 50px !important;
  }
}
/* Top margin */
.mt0 {
  margin-top: 0 !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt100 {
  margin-top: 100px !important;
}

@media (max-width: 959px) {
  .mt0-note {
    margin-top: 0 !important;
  }
  .mt5-note {
    margin-top: 5px !important;
  }
  .mt10-note {
    margin-top: 10px !important;
  }
  .mt20-note {
    margin-top: 20px !important;
  }
  .mt30-note {
    margin-top: 30px !important;
  }
  .mt40-note {
    margin-top: 40px !important;
  }
  .mt50-note {
    margin-top: 50px !important;
  }
  .mt60-note {
    margin-top: 60px !important;
  }
  .mt70-note {
    margin-top: 70px !important;
  }
  .mt80-note {
    margin-top: 80px !important;
  }
  .mt90-note {
    margin-top: 90px !important;
  }
  .mt100-note {
    margin-top: 100px !important;
  }
}
@media (max-width: 767px) {
  .mt0-tb {
    margin-top: 0 !important;
  }
  .mt5-tb {
    margin-top: 5px !important;
  }
  .mt10-tb {
    margin-top: 10px !important;
  }
  .mt20-tb {
    margin-top: 20px !important;
  }
  .mt30-tb {
    margin-top: 30px !important;
  }
  .mt40-tb {
    margin-top: 40px !important;
  }
  .mt50-tb {
    margin-top: 50px !important;
  }
  .mt60-tb {
    margin-top: 60px !important;
  }
  .mt70-tb {
    margin-top: 70px !important;
  }
  .mt80-tb {
    margin-top: 80px !important;
  }
  .mt90-tb {
    margin-top: 90px !important;
  }
  .mt100-tb {
    margin-top: 100px !important;
  }
}
@media (max-width: 479px) {
  .mt0-sp {
    margin-top: 0 !important;
  }
  .mt5-sp {
    margin-top: 5px !important;
  }
  .mt10-sp {
    margin-top: 10px !important;
  }
  .mt20-sp {
    margin-top: 20px !important;
  }
  .mt30-sp {
    margin-top: 30px !important;
  }
  .mt40-sp {
    margin-top: 40px !important;
  }
  .mt50-sp {
    margin-top: 50px !important;
  }
  .mt60-sp {
    margin-top: 60px !important;
  }
  .mt70-sp {
    margin-top: 70px !important;
  }
  .mt80-sp {
    margin-top: 80px !important;
  }
  .mt90-sp {
    margin-top: 90px !important;
  }
  .mt100-sp {
    margin-top: 100px !important;
  }
}
/* Bottom margin */
.mb0 {
  margin-bottom: 0 !important;
}

.mb2 {
  margin-bottom: 2px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

@media (max-width: 959px) {
  .mb0-note {
    margin-bottom: 0 !important;
  }
  .mb2-note {
    margin-bottom: 2px !important;
  }
  .mb5-note {
    margin-bottom: 5px !important;
  }
  .mb10-note {
    margin-bottom: 10px !important;
  }
  .mb20-note {
    margin-bottom: 20px !important;
  }
  .mb30-note {
    margin-bottom: 30px !important;
  }
  .mb40-note {
    margin-bottom: 40px !important;
  }
  .mb50-note {
    margin-bottom: 50px !important;
  }
  .mb60-note {
    margin-bottom: 60px !important;
  }
  .mb70-note {
    margin-bottom: 70px !important;
  }
  .mb80-note {
    margin-bottom: 80px !important;
  }
  .mb90-note {
    margin-bottom: 90px !important;
  }
  .mb100-note {
    margin-bottom: 100px !important;
  }
}
@media (max-width: 767px) {
  .mt0-tb {
    margin-top: 0 !important;
  }
  .mb0-tb {
    margin-bottom: 0 !important;
  }
  .mb2-tb {
    margin-bottom: 2px !important;
  }
  .mb5-tb {
    margin-bottom: 5px !important;
  }
  .mb10-tb {
    margin-bottom: 10px !important;
  }
  .mb20-tb {
    margin-bottom: 20px !important;
  }
  .mb30-tb {
    margin-bottom: 30px !important;
  }
  .mb40-tb {
    margin-bottom: 40px !important;
  }
  .mb50-tb {
    margin-bottom: 50px !important;
  }
  .mb60-tb {
    margin-bottom: 60px !important;
  }
  .mb70-tb {
    margin-bottom: 70px !important;
  }
  .mb80-tb {
    margin-bottom: 80px !important;
  }
  .mb90-tb {
    margin-bottom: 90px !important;
  }
  .mb100-tb {
    margin-bottom: 100px !important;
  }
}
@media (max-width: 479px) {
  .mb0-sp {
    margin-bottom: 0 !important;
  }
  .mb2-sp {
    margin-bottom: 2px !important;
  }
  .mb5-sp {
    margin-bottom: 5px !important;
  }
  .mb10-sp {
    margin-bottom: 10px !important;
  }
  .mb20-sp {
    margin-bottom: 20px !important;
  }
  .mb30-sp {
    margin-bottom: 30px !important;
  }
  .mb40-sp {
    margin-bottom: 40px !important;
  }
  .mb50-sp {
    margin-bottom: 50px !important;
  }
  .mb60-sp {
    margin-bottom: 60px !important;
  }
  .mb70-sp {
    margin-bottom: 70px !important;
  }
  .mb80-sp {
    margin-bottom: 80px !important;
  }
  .mb90-sp {
    margin-bottom: 90px !important;
  }
  .mb100-sp {
    margin-bottom: 100px !important;
  }
}
/*------------------------------------------------------------------
[Padding]
------------------------------------------------------------------*/
/* padding */
.p0 {
  padding: 0 !important;
}

.p5 {
  padding: 5px !important;
}

.p10 {
  padding: 10px !important;
}

.p20 {
  padding: 20px !important;
}

.p30 {
  padding: 30px !important;
}

.p40 {
  padding: 40px !important;
}

.p50 {
  padding: 50px !important;
}

.p60 {
  padding: 60px !important;
}

.p70 {
  padding: 70px !important;
}

.p80 {
  padding: 80px !important;
}

.p90 {
  padding: 90px !important;
}

.p100 {
  padding: 100px !important;
}

@media (max-width: 959px) {
  .p0-note {
    padding: 0 !important;
  }
  .p5-note {
    padding: 5px !important;
  }
  .p10-note {
    padding: 10px !important;
  }
  .p20-note {
    padding: 20px !important;
  }
  .p30-note {
    padding: 30px !important;
  }
  .p40-note {
    padding: 40px !important;
  }
  .p50-note {
    padding: 50px !important;
  }
  .p60-note {
    padding: 60px !important;
  }
  .p70-note {
    padding: 70px !important;
  }
  .p80-note {
    padding: 80px !important;
  }
  .p90-note {
    padding: 90px !important;
  }
  .p100-note {
    padding: 100px !important;
  }
}
@media (max-width: 767px) {
  .p0-tb {
    padding: 0 !important;
  }
  .p5-tb {
    padding: 5px !important;
  }
  .p10-tb {
    padding: 10px !important;
  }
  .p20-tb {
    padding: 20px !important;
  }
  .p30-tb {
    padding: 30px !important;
  }
  .p40-tb {
    padding: 40px !important;
  }
  .p50-tb {
    padding: 50px !important;
  }
  .p60-tb {
    padding: 60px !important;
  }
  .p70-tb {
    padding: 70px !important;
  }
  .p80-tb {
    padding: 80px !important;
  }
  .p90-tb {
    padding: 90px !important;
  }
  .p100-tb {
    padding: 100px !important;
  }
}
@media (max-width: 479px) {
  .p0-sp {
    padding: 0 !important;
  }
  .p5-sp {
    padding: 5px !important;
  }
  .p10-sp {
    padding: 10px !important;
  }
  .p20-sp {
    padding: 20px !important;
  }
  .p30-sp {
    padding: 30px !important;
  }
  .p40-sp {
    padding: 40px !important;
  }
  .p50-sp {
    padding: 50px !important;
  }
  .p60-sp {
    padding: 60px !important;
  }
  .p70-sp {
    padding: 70px !important;
  }
  .p80-sp {
    padding: 80px !important;
  }
  .p90-sp {
    padding: 90px !important;
  }
  .p100-sp {
    padding: 100px !important;
  }
}
/* Left padding */
.pl0 {
  padding-left: 0 !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.pl100 {
  padding-left: 100px !important;
}

@media (max-width: 959px) {
  .pl0-note {
    padding-left: 0 !important;
  }
  .pl5-note {
    padding-left: 5px !important;
  }
  .pl10-note {
    padding-left: 10px !important;
  }
  .pl20-note {
    padding-left: 20px !important;
  }
  .pl30-note {
    padding-left: 30px !important;
  }
  .pl40-note {
    padding-left: 40px !important;
  }
  .pl50-note {
    padding-left: 50px !important;
  }
  .pt60-note {
    padding-left: 60px !important;
  }
  .pt70-note {
    padding-left: 70px !important;
  }
  .pt80-note {
    padding-left: 80px !important;
  }
  .pt90-note {
    padding-left: 90px !important;
  }
  .pt100-note {
    padding-left: 100px !important;
  }
}
@media (max-width: 767px) {
  .pl0-tb {
    padding-left: 0 !important;
  }
  .pl5-tb {
    padding-left: 5px !important;
  }
  .pl10-tb {
    padding-left: 10px !important;
  }
  .pl20-tb {
    padding-left: 20px !important;
  }
  .pl30-tb {
    padding-left: 30px !important;
  }
  .pl40-tb {
    padding-left: 40px !important;
  }
  .pl50-tb {
    padding-left: 50px !important;
  }
  .pt60-tb {
    padding-left: 60px !important;
  }
  .pt70-tb {
    padding-left: 70px !important;
  }
  .pt80-tb {
    padding-left: 80px !important;
  }
  .pt90-tb {
    padding-left: 90px !important;
  }
  .pt100-tb {
    padding-left: 100px !important;
  }
}
@media (max-width: 479px) {
  .pl0-sp {
    padding-left: 0 !important;
  }
  .pl5-sp {
    padding-left: 5px !important;
  }
  .pl10-sp {
    padding-left: 10px !important;
  }
  .pl20-sp {
    padding-left: 20px !important;
  }
  .pl30-sp {
    padding-left: 30px !important;
  }
  .pl40-sp {
    padding-left: 40px !important;
  }
  .pl50-sp {
    padding-left: 50px !important;
  }
  .pt60-sp {
    padding-left: 60px !important;
  }
  .pt70-sp {
    padding-left: 70px !important;
  }
  .pt80-sp {
    padding-left: 80px !important;
  }
  .pt90-sp {
    padding-left: 90px !important;
  }
  .pt100-sp {
    padding-left: 100px !important;
  }
}
/* Right padding */
.pr0 {
  padding-right: 0 !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.pr100 {
  padding-right: 100px !important;
}

@media (max-width: 959px) {
  .pr0-note {
    padding-right: 0 !important;
  }
  .pr5-note {
    padding-right: 5px !important;
  }
  .pr10-note {
    padding-right: 10px !important;
  }
  .pr20-note {
    padding-right: 20px !important;
  }
  .pr30-note {
    padding-right: 30px !important;
  }
  .pr40-note {
    padding-right: 40px !important;
  }
  .pr50-note {
    padding-right: 50px !important;
  }
  .pr60-note {
    padding-right: 60px !important;
  }
  .pr70-note {
    padding-right: 70px !important;
  }
  .pr80-note {
    padding-right: 80px !important;
  }
  .pr90-note {
    padding-right: 90px !important;
  }
  .pr100-note {
    padding-right: 100px !important;
  }
}
@media (max-width: 767px) {
  .pr0-tb {
    padding-right: 0 !important;
  }
  .pr5-tb {
    padding-right: 5px !important;
  }
  .pr10-tb {
    padding-right: 10px !important;
  }
  .pr20-tb {
    padding-right: 20px !important;
  }
  .pr30-tb {
    padding-right: 30px !important;
  }
  .pr40-tb {
    padding-right: 40px !important;
  }
  .pr50-tb {
    padding-right: 50px !important;
  }
  .pr60-tb {
    padding-right: 60px !important;
  }
  .pr70-tb {
    padding-right: 70px !important;
  }
  .pr80-tb {
    padding-right: 80px !important;
  }
  .pr90-tb {
    padding-right: 90px !important;
  }
  .pr100-tb {
    padding-right: 100px !important;
  }
}
@media (max-width: 479px) {
  .pr0-sp {
    padding-right: 0 !important;
  }
  .pr5-sp {
    padding-right: 5px !important;
  }
  .pr10-sp {
    padding-right: 10px !important;
  }
  .pr20-sp {
    padding-right: 20px !important;
  }
  .pr30-sp {
    padding-right: 30px !important;
  }
  .pr40-sp {
    padding-right: 40px !important;
  }
  .pr50-sp {
    padding-right: 50px !important;
  }
  .pr60-sp {
    padding-right: 60px !important;
  }
  .pr70-sp {
    padding-right: 70px !important;
  }
  .pr80-sp {
    padding-right: 80px !important;
  }
  .pr90-sp {
    padding-right: 90px !important;
  }
  .pr100-sp {
    padding-right: 100px !important;
  }
}
/* Top padding */
.pt0 {
  padding-top: 0 !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pt100 {
  padding-top: 100px !important;
}

@media (max-width: 959px) {
  .pt0-note {
    padding-top: 0 !important;
  }
  .pt5-note {
    padding-top: 5px !important;
  }
  .pt10-note {
    padding-top: 10px !important;
  }
  .pt15-note {
    padding-top: 15px !important;
  }
  .pt20-note {
    padding-top: 20px !important;
  }
  .pt25-note {
    padding-top: 25px !important;
  }
  .pt30-note {
    padding-top: 30px !important;
  }
  .pt35-note {
    padding-top: 35px !important;
  }
  .pt40-note {
    padding-top: 40px !important;
  }
  .pt45-note {
    padding-top: 45px !important;
  }
  .pt50-note {
    padding-top: 50px !important;
  }
  .pt60-note {
    padding-top: 60px !important;
  }
  .pt70-note {
    padding-top: 70px !important;
  }
  .pt75-note {
    padding-top: 75px !important;
  }
  .pt80-note {
    padding-top: 80px !important;
  }
  .pt90-note {
    padding-top: 90px !important;
  }
  .pt100-note {
    padding-top: 100px !important;
  }
}
@media (max-width: 767px) {
  .pt0-tb {
    padding-top: 0 !important;
  }
  .pt5-tb {
    padding-top: 5px !important;
  }
  .pt10-tb {
    padding-top: 10px !important;
  }
  .pt15-tb {
    padding-top: 15px !important;
  }
  .pt20-tb {
    padding-top: 20px !important;
  }
  .pt25-tb {
    padding-top: 25px !important;
  }
  .pt30-tb {
    padding-top: 30px !important;
  }
  .pt35-tb {
    padding-top: 35px !important;
  }
  .pt40-tb {
    padding-top: 40px !important;
  }
  .pt45-tb {
    padding-top: 45px !important;
  }
  .pt50-tb {
    padding-top: 50px !important;
  }
  .pt60-tb {
    padding-top: 60px !important;
  }
  .pt70-tb {
    padding-top: 70px !important;
  }
  .pt75-tb {
    padding-top: 75px !important;
  }
  .pt80-tb {
    padding-top: 80px !important;
  }
  .pt90-tb {
    padding-top: 90px !important;
  }
  .pt100-tb {
    padding-top: 100px !important;
  }
}
@media (max-width: 479px) {
  .pt0-sp {
    padding-top: 0 !important;
  }
  .pt5-sp {
    padding-top: 5px !important;
  }
  .pt10-sp {
    padding-top: 10px !important;
  }
  .pt15-sp {
    padding-top: 15px !important;
  }
  .pt20-sp {
    padding-top: 20px !important;
  }
  .pt25-sp {
    padding-top: 25px !important;
  }
  .pt30-sp {
    padding-top: 30px !important;
  }
  .pt35-sp {
    padding-top: 35px !important;
  }
  .pt40-sp {
    padding-top: 40px !important;
  }
  .pt45-sp {
    padding-top: 45px !important;
  }
  .pt50-sp {
    padding-top: 50px !important;
  }
  .pt60-sp {
    padding-top: 60px !important;
  }
  .pt70-sp {
    padding-top: 70px !important;
  }
  .pt75-sp {
    padding-top: 75px !important;
  }
  .pt80-sp {
    padding-top: 80px !important;
  }
  .pt90-sp {
    padding-top: 90px !important;
  }
  .pt100-sp {
    padding-top: 100px !important;
  }
}
/* Bottom padding */
.pb0 {
  padding-bottom: 0 !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

@media (max-width: 959px) {
  .pb0-note {
    padding-bottom: 0 !important;
  }
  .pb5-note {
    padding-bottom: 5px !important;
  }
  .pb10-note {
    padding-bottom: 10px !important;
  }
  .pb15-note {
    padding-bottom: 15px !important;
  }
  .pb20-note {
    padding-bottom: 20px !important;
  }
  .pb25-note {
    padding-bottom: 25px !important;
  }
  .pb30-note {
    padding-bottom: 30px !important;
  }
  .pb35-note {
    padding-bottom: 35px !important;
  }
  .pb40-note {
    padding-bottom: 40px !important;
  }
  .pb45-note {
    padding-bottom: 45px !important;
  }
  .pb50-note {
    padding-bottom: 50px !important;
  }
  .pb60-note {
    padding-bottom: 60px !important;
  }
  .pb70-note {
    padding-bottom: 70px !important;
  }
  .pb75-note {
    padding-bottom: 75px !important;
  }
  .pb80-note {
    padding-bottom: 80px !important;
  }
  .pb90-note {
    padding-bottom: 90px !important;
  }
  .pb100-note {
    padding-bottom: 100px !important;
  }
}
@media (max-width: 767px) {
  .pb0-tb {
    padding-bottom: 0 !important;
  }
  .pb5-tb {
    padding-bottom: 5px !important;
  }
  .pb10-tb {
    padding-bottom: 10px !important;
  }
  .pb15-tb {
    padding-bottom: 15px !important;
  }
  .pb20-tb {
    padding-bottom: 20px !important;
  }
  .pb25-tb {
    padding-bottom: 25px !important;
  }
  .pb30-tb {
    padding-bottom: 30px !important;
  }
  .pb35-tb {
    padding-bottom: 35px !important;
  }
  .pb40-tb {
    padding-bottom: 40px !important;
  }
  .pb45-tb {
    padding-bottom: 45px !important;
  }
  .pb50-tb {
    padding-bottom: 50px !important;
  }
  .pb60-tb {
    padding-bottom: 60px !important;
  }
  .pb70-tb {
    padding-bottom: 70px !important;
  }
  .pb75-tb {
    padding-bottom: 75px !important;
  }
  .pb80-tb {
    padding-bottom: 80px !important;
  }
  .pb90-tb {
    padding-bottom: 90px !important;
  }
  .pb100-tb {
    padding-bottom: 100px !important;
  }
}
@media (max-width: 479px) {
  .pb0-sp {
    padding-bottom: 0 !important;
  }
  .pb5-sp {
    padding-bottom: 5px !important;
  }
  .pb10-sp {
    padding-bottom: 10px !important;
  }
  .pb15-sp {
    padding-bottom: 15px !important;
  }
  .pb20-sp {
    padding-bottom: 20px !important;
  }
  .pb25-sp {
    padding-bottom: 25px !important;
  }
  .pb30-sp {
    padding-bottom: 30px !important;
  }
  .pb35-sp {
    padding-bottom: 35px !important;
  }
  .pb40-sp {
    padding-bottom: 40px !important;
  }
  .pb45-sp {
    padding-bottom: 45px !important;
  }
  .pb50-sp {
    padding-bottom: 50px !important;
  }
  .pb60-sp {
    padding-bottom: 60px !important;
  }
  .pb70-sp {
    padding-bottom: 70px !important;
  }
  .pb75-sp {
    padding-bottom: 75px !important;
  }
  .pb80-sp {
    padding-bottom: 80px !important;
  }
  .pb90-sp {
    padding-bottom: 90px !important;
  }
  .pb100-sp {
    padding-bottom: 100px !important;
  }
}
/*--------------------------------------------------
[Width]
----------------------------------------------------*/
.w10 {
  width: 10% !important;
}

.w20 {
  width: 20% !important;
}

.w25 {
  width: 25% !important;
}

.w30 {
  width: 30% !important;
}

.w40 {
  width: 40% !important;
}

.w50 {
  width: 50% !important;
}

.w60 {
  width: 60% !important;
}

.w70 {
  width: 70% !important;
}

.w75 {
  width: 75% !important;
}

.w80 {
  width: 80% !important;
}

.w90 {
  width: 90% !important;
}

.w100 {
  width: 100% !important;
}

@media (max-width: 959px) {
  .w10-note {
    width: 10% !important;
  }
  .w20-note {
    width: 20% !important;
  }
  .w25-note {
    width: 25% !important;
  }
  .w30-note {
    width: 30% !important;
  }
  .w40-note {
    width: 40% !important;
  }
  .w50-note {
    width: 50% !important;
  }
  .w60-note {
    width: 60% !important;
  }
  .w70-note {
    width: 70% !important;
  }
  .w75-note {
    width: 75% !important;
  }
  .w80-note {
    width: 80% !important;
  }
  .w90-note {
    width: 90% !important;
  }
  .w100-note {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .w10-tb {
    width: 10% !important;
  }
  .w20-tb {
    width: 20% !important;
  }
  .w25-tb {
    width: 25% !important;
  }
  .w30-tb {
    width: 30% !important;
  }
  .w40-tb {
    width: 40% !important;
  }
  .w50-tb {
    width: 50% !important;
  }
  .w60-tb {
    width: 60% !important;
  }
  .w70-tb {
    width: 70% !important;
  }
  .w75-tb {
    width: 75% !important;
  }
  .w80-tb {
    width: 80% !important;
  }
  .w90-tb {
    width: 90% !important;
  }
  .w100-tb {
    width: 100% !important;
  }
}
@media (max-width: 479px) {
  .w10-sp {
    width: 10% !important;
  }
  .w20-sp {
    width: 20% !important;
  }
  .w25-sp {
    width: 25% !important;
  }
  .w30-sp {
    width: 30% !important;
  }
  .w40-sp {
    width: 40% !important;
  }
  .w50-sp {
    width: 50% !important;
  }
  .w60-sp {
    width: 60% !important;
  }
  .w70-sp {
    width: 70% !important;
  }
  .w75-sp {
    width: 75% !important;
  }
  .w80-sp {
    width: 80% !important;
  }
  .w90-sp {
    width: 90% !important;
  }
  .w100-sp {
    width: 100% !important;
  }
}
/* Max width */
.max10 {
  max-width: 10% !important;
}

.max20 {
  max-width: 20% !important;
}

.max25 {
  max-width: 25% !important;
}

.max30 {
  max-width: 30% !important;
}

.max40 {
  max-width: 40% !important;
}

.max50 {
  max-width: 50% !important;
}

.max60 {
  max-width: 60% !important;
}

.max70 {
  max-width: 70% !important;
}

.max75 {
  max-width: 75% !important;
}

.max80 {
  max-width: 80% !important;
}

.max90 {
  max-width: 90% !important;
}

.max100 {
  max-width: 100% !important;
}

@media (max-width: 959px) {
  .max10-note {
    max-width: 10% !important;
  }
  .max20-note {
    max-width: 20% !important;
  }
  .max25-note {
    max-width: 25% !important;
  }
  .max30-note {
    max-width: 30% !important;
  }
  .max40-note {
    max-width: 40% !important;
  }
  .max50-note {
    max-width: 50% !important;
  }
  .max60-note {
    max-width: 60% !important;
  }
  .max70-note {
    max-width: 70% !important;
  }
  .max75-note {
    max-width: 75% !important;
  }
  .max80-note {
    max-width: 80% !important;
  }
  .max90-note {
    max-width: 90% !important;
  }
  .max100-note {
    max-width: 100% !important;
  }
}
@media (max-width: 767px) {
  .max10-tb {
    max-width: 10% !important;
  }
  .max20-tb {
    max-width: 20% !important;
  }
  .max25-tb {
    max-width: 25% !important;
  }
  .max30-tb {
    max-width: 30% !important;
  }
  .max40-tb {
    max-width: 40% !important;
  }
  .max50-tb {
    max-width: 50% !important;
  }
  .max60-tb {
    max-width: 60% !important;
  }
  .max70-tb {
    max-width: 70% !important;
  }
  .max75-tb {
    max-width: 75% !important;
  }
  .max80-tb {
    max-width: 80% !important;
  }
  .max90-tb {
    max-width: 90% !important;
  }
  .max100-tb {
    max-width: 100% !important;
  }
}
@media (max-width: 479px) {
  .max10-sp {
    max-width: 10% !important;
  }
  .max20-sp {
    max-width: 20% !important;
  }
  .max25-sp {
    max-width: 25% !important;
  }
  .max30-sp {
    max-width: 30% !important;
  }
  .max40-sp {
    max-width: 40% !important;
  }
  .max50-sp {
    max-width: 50% !important;
  }
  .max60-sp {
    max-width: 60% !important;
  }
  .max70-sp {
    max-width: 70% !important;
  }
  .max75-sp {
    max-width: 75% !important;
  }
  .max80-sp {
    max-width: 80% !important;
  }
  .max90-sp {
    max-width: 90% !important;
  }
  .max100-sp {
    max-width: 100% !important;
  }
}
/*--------------------------------------------------
    [Height]
----------------------------------------------------*/
@media print {
  /* ====================================================
  印刷用レイアウト調整
  ==================================================== */
  body {
    zoom: 0.75;
  }
}