/** Shopify CDN: Minification failed

Line 188:0 Unexpected "{"
Line 188:1 Expected identifier but found "%"
Line 188:110 Expected identifier but found "%"

**/


/* メニューリンク先ページ */
.main {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 100px;
}

.menu {
  width: 90%;
  padding-bottom: 50px;
  margin: 0 auto;
  text-align: center;
}
.menu li{
  width: 30%;
  display:inline-block;
  text-decoration: none;
  position:relative;
  padding: 0 0 5px 0px;
  margin: 10px 0px;
  line-height: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
   border-left: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  max-width: 250px;
}

.menu a {
   text-decoration: none;
    list-style-type:none;
    font-family: "Nunito Sans",sans-serif;
    font-style: bold;
    color: #1d1d1d;
    font-weight: 700;
}

.menu a:hover{
  color:  #046E82;
}

.toggle {
        display: none;
}
.Label {
        padding: 1em;
        display: block;
        color: #1D1D1D;
        background:#D0EEFF;
}
.Label::before{
        content:"";
        width: 10px;
        height: 10px;
        border-top: 3px solid #fff;
        border-right: 3px solid #fff;
        -webkit-transform: rotate(45deg);
        position: absolute;
        top:calc( 50% - 6px );
        right: 20px;
        transform: rotate(135deg);
}

.btn a {
  color: #fff;
  text-decoration:none;
  background: #1E50A2;
  padding: 10px 30px;
  display: inline-block;
  border-radius : 5px;
}

.Label,
.content {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transform: translateZ(0);
        transition: all 0.3s;
}
.content {
        height: 0;
        margin-bottom:10px;
        padding:0 20px;
        overflow: hidden;
}
.toggle:checked + .Label + .content {
        height: auto;
        padding:20px ;
        transition: all .3s;
}
.toggle:checked + .Label::before {
        transform: rotate(-45deg) !important;
}
.border_rounded{ padding: 30px; border:1px solid #DDD; display:inline-block; border-radius:5px; overflow:hidden; }

/* ポリシーページ　*/
.shopify-policy__container {
    max-width: 1200px  !important;
    margin: 0 auto;
    padding-bottom: 100px;
}

.shopify-policy__title h1 {
    font-family: Oswald;
    font-size: 36px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.25;
    color: #1D1D1D;
    display: inline-block;
    position: relative;
    padding-top: 50px;
}

.shopify-policy__title h1:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  display: inline-block;
  width: 50px;
  height: 2px;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(-50%);
  background-color: #1D1D1D;
}

.shopify-policy__body {
    padding-top: 50px;
}


/* マルチカラムメニュー */
.navmenu-meganav-wrapper {
    max-width: 1200px  !important;
    margin: 0 auto;
}

/* 文字列強調　*/
.str {
  display       : inline-block;
  color         : #ffffff;
  background    : #ff0000;
  padding       : 5px 3px;
  margin        : 0 2px;
}

/*
 * メッセージがヘッダーの背後に隠れるため、`position: fixed` 指定を解除する。
 * https://github.com/144lab/shopify-theme-switchscience/issues/276
 */
.message-banner--container {
  position: static;
}

/*
 * 「チェックアウト」の文字列を改行しない
 * https://github.com/144lab/shopify-theme-switchscience/issues/275
 * */
.atc-button--checkout {
  text-wrap: nowrap;
}

/*
 * 商品詳細ページの関連商品表示の表示幅が狭くなる問題の対応
 * https://github.com/144lab/shopify-theme-switchscience/issues/267
 */
.productgrid--item {
  flex-shrink: 0;
}

{% comment %}関連商品のレイアウトがデスクトップやタブレットで崩れる問題の対策{% endcomment %}
@media print, screen and (min-width: 1024px) {
    .product-row-wrapper {
        height: 487px;
        overflow-x: overlay;
    }
}
