@charset "utf-8";

/*
 ** OTOTOY Base styles
 */

/*
 * スマホのときの最低画面幅375pxに
 * iPhone 6/7/8が375px．colの横が320で全体がpx指定であるため．試験的．
 */
@media screen and (max-width: 769px) {
  body {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

/*
 * ~ Default definitions **
 */

* {/* force style cascading */
  font-family: inherit;
  line-height: inherit;
  color: inherit;
}
html, body {
  background: #f9f9f9;
  color: #303030;
  line-height: 1.5;
  font-family:
    "Open Sans","Hiragino Kaku Gothic ProN",HiraKakuPro-W3,Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  font-feature-settings: "palt";
  font-size: 16px; /* now 1rem = 16px */
  min-height: 100%;
  width: 100%;
  text-align: center;/* for inline-block wrappers */
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  background: transparent;
}

p, div, th, td {
  color: #303030;
  font-family: "Open Sans", "Hiragino Kaku Gothic ProN", HiraKakuPro-W3, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-feature-settings: "palt";
}
ul {
  padding-left: 1.5em;
}

blockquote { quotes:none }
table { border-collapse:collapse;border-spacing:0 }
input, select { vertical-align:middle; }

hr {
  display: block;
  height: 1px;
  border: none; /* reset bootstrap */
  border-bottom: 1px solid rgba(0, 0, 0, .25);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 1);
  margin: 16px 0 16px;
}

.section-header {
  font-weight: normal;
  font-size: 30px;
  font-size: 1.875rem;
  font-family:
    Roboto, "Hiragino Kaku Gothic ProN", HiraKakuPro-W3, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}
.section-header>a:hover {
  color: inherit;
  text-decoration: underline;
}


a {
  vertical-align: baseline;
  background: transparent
}
/* FIXME makes no sense having the same color as default for all states */
a, a:link {
  color: #0277bd;
  text-decoration: none;
}
a:visited {
  color: #0277bd;
  text-decoration: none;
}
a:hover {
  color: #0277bd;
  text-decoration: underline;
}
a:active, a:focus {
  color: #0277bd;
  text-decoration: none;
  outline-offset: 0;
}

dt {
  margin-top: 15px;
  margin-bottom: 5px;
}
dd {
  margin-left: 1em;
}

img {
  border:0;
  object-fit: cover;
}

/*
 * ~~ Font sizes **
 */
h1 { font-size: 30px; font-size: 1.875rem; }
@media screen and (max-width: 641px) {
  h1 { font-size: 28px; font-size: 1.75rem; }
}
h2 { font-size: 24px; font-size: 1.5rem; }
h3, dt { font-size: 18px; font-size: 1.125rem; }
h4,h5,h6,
.btn { font-size: 16px; font-size: 1rem; }
h1,h2,h3,h4,h5,h6 {
  margin:0;
  padding:0;
  font-family:
    Roboto, "Hiragino Kaku Gothic ProN", HiraKakuPro-W3, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-feature-settings: "palt";
}
blockquote,
p.small,
small { font-size: 12px; font-size: 0.75rem; }

/*
 ** ~ Buttons **
 */

/* ~~ oty-btn base */
[class*="oty-btn"] {
  display: inline-block;
  padding: 6px 12px;
  margin-top: 10px;
  margin-bottom: 10px;
  /* margin: 10px; */
  border-radius: 4px;
  cursor: pointer;
}
.form-group.form-group [class*="oty-btn"], .cart_confirm_button [class*="oty-btn"] {
  /* heavier selector for interaction with bootstrap styles */
  width: 100%;
  /* display:block; */
 }

/* ~~~ btn-slim buttons for album page */
[class*="-slim"] {
  padding: 0px 12px;
  height: 28px;
  line-height: 27px;
  border-radius: 2px;
}

[class*="oty-btn"][strong],
.strong {/* can be used on any element */
  font-weight: bold;
}

[class*="oty-btn"],
[class*="oty-btn"]:hover,
[class*="oty-btn"]:active,
[class*="oty-btn"]:focus,
[class*="oty-btn"]:link {
  /* this class being mostly used on `a` elements,
  this is to ensure a button look */
  text-decoration: none;
  color:inherit;
}

[class*="oty-btn"].disabled:focus,
[class*="oty-btn"][disabled]:focus{
  pointer-events: auto;
  cursor: not-allowed; /* cursor with 🚫 */
}

/* ~~~ 買う .oty-btn-buy */
.oty-btn-buy{
  background: #0e9af1;
  border: 1px solid #0c8ad8;
  color: #fff !important;
}
.oty-btn-buy:hover,
.oty-btn-buy:active,
.oty-btn-buy:focus,
.oty-btn-buy.strong,
.oty-btn-buy[strong] {
  background: #0c8ad8;
  border: 1px solid #0b7bc0;
}
.oty-btn-buy.strong:hover,
.oty-btn-buy[strong]:hover,
.oty-btn-buy.strong:active,
.oty-btn-buy[strong]:active,
.oty-btn-buy.strong:focus,
.oty-btn-buy[strong]:focus {
  background: #0b7bc1;
}
.oty-btn-buy.disabled,
.oty-btn-buy[disabled]{
  background: #7dbfe8;
  border: 1px solid #55b9f7;
  color: #eee !important;
}

/* ~~~ すぐ買う .oty-btn-exbuy */
.oty-btn-exbuy{
  background: #00b4cc;
  border: 1px solid #46b8da;
  color: #fff !important;
}
.oty-btn-exbuy:hover,
.oty-btn-exbuy:active,
.oty-btn-exbuy:focus{
  background: #00a2b7;
  border: 1px solid #269abc;
}
.oty-btn-exbuy.strong,
.oty-btn-exbuy[strong]{
  background: #009eb3;
  border: 1px solid #2aadd5;
}
.oty-btn-exbuy.strong:hover,
.oty-btn-exbuy[strong]:hover,
.oty-btn-exbuy.strong:active,
.oty-btn-exbuy[strong]:active,
.oty-btn-exbuy.strong:focus,
.oty-btn-exbuy[strong]:focus{
  background: #008799;
  border: 1px solid #228aaa;
}
.oty-btn-exbuy.disabled,
.oty-btn-exbuy[disabled]{
  background: #79C8D2;
  border: 1px solid #77C3DA;
  color: #eee !important;
}

/* ~~~ あとで買う.oty-btn-wish */
.oty-btn-wish{
  background: #ef6da9;
  border: 1px solid #ec569b;
  color: #fff !important;
}
.oty-btn-wish:hover,
.oty-btn-wish:active,
.oty-btn-wish:focus{
  background: #ee5da0;
  border: 1px solid #ec4692;
}
.oty-btn-wish.strong,
.oty-btn-wish[strong]{
  background: #ec559c;
  border: 1px solid #ea3e8e;
}
.oty-btn-wish.strong:hover,
.oty-btn-wish[strong]:hover,
.oty-btn-wish.strong:active,
.oty-btn-wish[strong]:active,
.oty-btn-wish.strong:focus,
.oty-btn-wish[strong]:focus{
  background: #ea3e8e;
  border: 1px solid #e72781;
}
.oty-btn-wish.disabled,
.oty-btn-wish[disabled]{
  background: #eea0c4;
  border: 1px solid #ea95be;
  color: #eee !important;
}

/* ~~~ もっと見る .oty-btn-more */
.oty-btn-more{
  background: #f7f7f7;
  color: #666;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
  border: 1px solid #ccc;
}
.oty-btn-more.strong,
.oty-btn-more[strong]{
  background: #f7f7f7;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
}
.oty-btn-more:hover,
.oty-btn-more:active,
.oty-btn-more:focus,
.oty-btn-more.strong:hover,
.oty-btn-more[strong]:hover,
.oty-btn-more.strong:active,
.oty-btn-more[strong]:active,
.oty-btn-more.strong:focus,
.oty-btn-more[strong]:focus{
  background: #fff;
}
.oty-btn-more.disabled,
.oty-btn-more[disabled]{
  background: #f7f7f7;
  color: #aaa;
  box-shadow: none;
}

/* ~~~ もっと見る（白バックオプション）.oty-btn-more.btn-more-white */
.oty-btn-more.btn-more-white{
  background: #fff;
  color: #666;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
  border: 1px solid #ccc;
}
.oty-btn-more.btn-more-white:hover,
.oty-btn-more.btn-more-white:active,
.oty-btn-more.btn-more-white:focus{
  color: #303030;
}
.oty-btn-more.btn-more-white.strong,
.oty-btn-more.btn-more-white[strong]{
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
}
.oty-btn-more.btn-more-white.disabled,
.oty-btn-more.btn-more-white[disabled]{
  background: #fff;
  color: #aaa !important;
}

/* ~~~ 削除 .oty-btn-delete */
.oty-btn-delete{
  background: #d9534f;
  border: 1px solid #d43f3a;
  color: #fff !important;
}
.oty-btn-delete:hover,
.oty-btn-delete:active,
.oty-btn-delete:focus{
  background: #c93a36;
  border: 1px solid #c9312c;
}
.oty-btn-delete.strong,
.oty-btn-delete[strong]{
  background: #c9312c;
  border: 1px solid #b42c27;
}
.oty-btn-delete.strong:hover,
.oty-btn-delete[strong]:hover,
.oty-btn-delete.strong:active,
.oty-btn-delete[strong]:active,
.oty-btn-delete.strong:focus,
.oty-btn-delete[strong]:focus{
  background: #b42c27;
  border: 1px solid #9f2723;
}
.oty-btn-delete.disabled,
.oty-btn-delete[disabled]{
  background: #da8481;
  border: 1px solid #da8481;
  color: #eee !important;
}
.oty-btn-delete.disabled:focus,
.oty-btn-delete[disabled]:focus{
  outline: none;
}

/* ~~~ ログイン .oty-btn-login */
.oty-btn-login{
  background: #2ab002;
  border: 1px solid #259702;
  color: #fff !important;
}
.oty-btn-login:hover,
.oty-btn-login:active,
.oty-btn-login:focus,
.oty-btn-login.strong,
.oty-btn-login[strong] {
  background: #289604;
  border: 1px solid #247a04;
}
.oty-btn-login.strong:hover,
.oty-btn-login[strong]:hover,
.oty-btn-login.strong:active,
.oty-btn-login[strong]:active,
.oty-btn-login.strong:focus,
.oty-btn-login[strong]:focus{
  background: #247a04;
  border: 1px solid #1D6204;
}
.oty-btn-login.disabled,
.oty-btn-login[disabled]{
  background: #8fd279;
  border: 1px solid #7ecc66;
  color: #eee !important;
}
.oty-btn-login.disabled:focus,
.oty-btn-login[disabled]:focus{
  outline: none;
}

/* ~~~ Twitter連携 .oty-btn-twitter */
.oty-btn-twitter{
  background: #1da1f2;
  border: 1px solid #0d91e3;
  color: #fff !important;
}
.oty-btn-twitter:hover,
.oty-btn-twitter:active,
.oty-btn-twitter:focus{
  background: #0d91e3;
  border: 1px solid #0c84cf;
}
.oty-btn-twitter.strong,
.oty-btn-twitter[strong]{
  background: #0d91e3;
  border: 1px solid #0c84cf;
}
.oty-btn-twitter.strong:hover,
.oty-btn-twitter[strong]:hover,
.oty-btn-twitter.strong:active,
.oty-btn-twitter[strong]:active,
.oty-btn-twitter.strong:focus,
.oty-btn-twitter[strong]:focus{
  background: #0c84cf;
  border: 1px solid #0b75b7;
}
.oty-btn-twitter.disabled,
.oty-btn-twitter[disabled]{
  background: #84c7f0;
  border: 1px solid #68baed;
  color: #eee !important;
}
.oty-btn-twitter.disabled:focus,
.oty-btn-twitter[disabled]:focus{
  outline: none;
}

/* ~~~ プレーン .oty-btn-plain */
.oty-btn-plain{
  background: #fff;
  border: 1px solid #aaa;
  color: #303030 !important;
}
.oty-btn-plain.strong,
.oty-btn-plain[strong]{
  background: #f7f7f7;
  border: 1px solid #aaa;
}
.oty-btn-plain:hover,
.oty-btn-plain:active,
.oty-btn-plain:focus,
.oty-btn-plain.selected,
.oty-btn-plain[selected],
.oty-btn-plain.strong:hover,
.oty-btn-plain[strong]:hover,
.oty-btn-plain.strong:active,
.oty-btn-plain[strong]:active,
.oty-btn-plain.strong:focus,
.oty-btn-plain[strong]:focus{
  background: #e6e6e6;
  border: 1px solid #adadad;
}
.oty-btn-plain.disabled,
.oty-btn-plain[disabled]{
  background: #f2f2f2;
  border: 1px solid #ddd;
  color: #aaa !important;
}
.oty-btn-plain.disabled:focus,
.oty-btn-plain[disabled]:focus{
  outline: none;
}

/* ~~~ タグ .oty-btn-tag */
.tag {
  font-size: 13px;
  font-size: 0.8125rem;
}
.oty-btn-tag{
  padding: 4px 6px;
  margin: 0;
  background: #fff;
  line-height: 1em;
  border: 1px solid #aaa;
  border-radius: 4px;
  color: #303030;
}
.oty-btn-tag.strong,
.oty-btn-tag[strong]{
  background: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
}
.oty-btn-tag:visited {
  color: #303030;
}
.oty-btn-tag:hover,
.oty-btn-tag:active,
.oty-btn-tag:focus
.oty-btn-tag.selected,
.oty-btn-tag[selected],
.oty-btn-tag.strong:hover,
.oty-btn-tag[strong]:hover,
.oty-btn-tag.strong:active,
.oty-btn-tag[strong]:active,
.oty-btn-tag.strong:focus,
.oty-btn-tag[strong]:focus{
  background: #e6e6e6;
  border: 1px solid #adadad;
}
.oty-btn-tag.disabled,
.oty-btn-tag[disabled]{
  background: #f2f2f2;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #aaa !important;
}
.oty-btn-tag.disabled:focus,
.oty-btn-tag[disabled]:focus{
  outline: none;
}

/* ~~~ オイイネ .oty-btn-sns */
.oty-btn-sns{
  height: 20px;
  margin: 0;
  padding: 2px 8px;
  border-radius: 3px;
  vertical-align: top;
  font-size: 11px;
  font-feature-settings: normal;
  box-sizing: border-box;
}

/* `ologo` allows using the logo font */
.ologo-oty-btn-oiine {
  background: #2ab002;
  color: #fff;
  text-decoration: none;
}
.ologo-oty-btn-oiine::before{
  content: "\e904";/* オ */
  color: #fff;
  padding-right: 4px;
}
.ologo-oty-btn-oiine:hover,
.ologo-oty-btn-oiine:active,
.ologo-oty-btn-oiine:focus{
  background: #2ab002;
  color: #fff;
  text-decoration: none;
}
.must:after{
  content: '*';
  color: red;
}
.optional:after{
  content: '*';
  color: blue;
}

/* ~Inputs */
input, select, textarea {
  padding-top: 2px;
  padding-bottom: 2px;
  border-radius: 2px;
  border: 1px solid #aaa;
  background: #fff;
}
label {
  margin: .5rem auto;
  vertical-align: middle;
}

/* ~~Input */
input[type=text], input[type=password], input[type=email], input[type=number], input[type=tel], input[type=url] {
  min-width: 100px;
  padding-left: 1em;
  padding-right: 1em;
}
/* ~~Select */
select:not(:disabled), .add-options{
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2em;
  padding-left: 10px;
  background: url(/common/images/downmark_sound_format_dark.png) right center no-repeat #fff;
}

/* contact-confirm */
.confirm-text {
  display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    color: #777;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* tag icon */
i.oty.oty-tag-ol::before {
  content: url("https://imgs.ototoy.jp/common/images/tag-ol.svg");
  display: inline-block;
  width: 9px;
  height: 9px;
  vertical-align: baseline;
}

i.oty.oty-sub-plus {
  padding-right: 0px;
}
i.oty.oty-sub-plus::before {
  content: "+";
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
  font-style: normal;
  margin: -3px 0 0 -3px;
  color: #aaa;
}

/* smartphone visible/hidden */
.sp-visible {
  display: none;
}
@media screen and (max-width: 641px) {
  .sp-visible {
    display: inline-block;
    margin-top: 0;
  }
}
@media screen and (max-width: 641px) {
  .sp-hidden {
    display: none;
  }
}

/* 改行出し分け */
.sp-br, .tb-br {
  display: none;
}
@media screen and (max-width:541px) {
  .sp-br {
    display: inline-block;
  }
}
@media screen and (max-width:641px) {
  .tb-br {
    display: inline-block;
  }
}

/* display */
.flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

/* width */
.w-32 {
  width: 8rem;
}
.w-1\/4 {
  width: 25%;
}
.w-4\/5 {
  width: 80%;
}

.w-

/* margin */
.mb-3\.5 {
  margin-bottom: 0.875rem;
}
.mr-3\.5 {
  margin-right: 0.875rem;
}

/* text */
/* font-size */
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

/* font weight */
.font-bold {
  font-weight: 700;
}

/* text-align */
.text-left {
  text-align: left;
}
