@charset "utf-8";

/* ======================================================
 * parts_pc.css
 * ------------------------------------------------------
 * @media print, screen and (min-width: 768px)
 * - Common
 * - Elements >>> Text
 * - Elements >>> List
 * - Elements >>> Link
 * - Elements >>> Image
 * - Elements >>> Other
 * - Conditional Elements >>> Heading
 * - Conditional Elements >>> Navi
 * - Layout >>> Table
 * - Layout >>> Grid
 * - Layout >>> Column
 * - Layout >>> Box
 * - Layout >>> Other
 * - Components
 * - Clearfix
 * Media Queries
====================================================== */

@media print, screen and (min-width: 768px) {
  /* ------------------------------------------------------
   * Elements >>> Text
  ------------------------------------------------------ */
  /* ----- text-paragraph ----- */
  .text-paragraph {
    margin-top: 1em;
  }
  .f-bold {
    font-weight: bold;  
  }
  /* ----- text-lead ----- */
  .text-lead {
    margin-top: 1em;
    font-size: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: #996600;
  }
  
  /* ------------------------------------------------------
   * Elements >>> List
  ------------------------------------------------------ */
  [class*="list-note"],
  [class*="list-bullet"],
  [class*="list-order"] {
    margin-top: 2em;
  }
  [class*="list-note"].is-nest,
  [class*="list-bullet"].is-nest,
  [class*="list-order"].is-nest {
    margin-top: 1em;
  }
  [class*="list-note"] > li,
  [class*="list-bullet"] > li,
  [class*="list-order"] > li {
    margin-top: 1em;
  }
  [class*="list-note"] > li:first-child,
  [class*="list-bullet"] > li:first-child,
  [class*="list-order"] > li:first-child {
    margin-top: 0;
  }
  [class*="list-note"][data-row-pc],
  [class*="list-bullet"][data-row-pc],
  [class*="list-order"][data-row-pc] {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  
  /* ----- list-note ----- */
  [class*="list-note"] {
    font-size: 14px;
    font-size: 1.4rem;
  }
  [class*="list-note"].gp-al-right > li {
    display: inline-block;
  }
  .list-note > li {
    position: relative;
    padding-left: 1em;
  }
  .list-note > li > .list_mark {
    position: absolute;
    top: 0;
    left: 0;
  }
  .list-note-v2 > li {
    position: relative;
    padding-left: 1em;
    color: #cc0000;
  }
  .list-note-v2 > li > .list_mark {
    position: absolute;
    top: 0;
    left: 0;
  }
  
  /* ----- list-note-order ----- */
  .list-note-order > li {
    position: relative;
    padding-left: 3em;
  }
  .list-note-order > li > .list_mark {
    position: absolute;
    top: 0;
    left: 0;
  }
  
  /* ----- list-bullet ----- */
  [class*="list-bullet"].gp-al-right > li {
    display: inline-block;
  }
  .list-bullet > li {
    position: relative;
    padding-left: 1em;
  }
  .list-bullet > li:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;   
    background: #0e73d7; 
  }
  .list-bullet-v2 > li {
    position: relative;
    padding-left: 1em;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .list-bullet-v2 > li:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;   
    background: #999999; 
  }
  
  /* ----- list-order ----- */
  [class*="list-order"].gp-al-right > li {
    display: inline-block;
  }
  .list-order > li {
    position: relative;
    padding-left: 2em;
  }
  .list-order > li > .list_mark {
    position: absolute;
    top: 0;
    left: 0;
    font-weight: bold;
    color: #0e73d7;
  }
  .list-order-v2 > li {
    position: relative;
    padding-left: 3em;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .list-order-v2 > li > .list_mark {
    position: absolute;
    top: 0;
    left: 0;
  }
  
  /* ----- list-description ----- */
  .list-description {
    margin-top: 1em;
  }
  .list-description > dt {
    font-weight: bold;
  }
  .list-description > dd {
    margin-top: 1em;
    padding-left: 0.8em;
  }
  
  /* ------------------------------------------------------
   * Elements >>> Link
  ------------------------------------------------------ */
  .a-blank:after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 13px;
    background: url(/common/img/com_sprite.png) no-repeat -240px 0;
  }
  .a-pdf:after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url(/common/img/com_sprite.png) no-repeat -300px 0;
  }
  .a-print:after {
    content: "";
    display: inline-block;
    width: 17px;
    height: 14px;
    background: url(/common/img/com_sprite.png) no-repeat -280px 0;
  }
  
  /* ----- link-inline ----- */
  a.link-inline {
    position: relative;
    text-decoration: underline;
  }
  a.link-inline:hover {
    text-decoration: none;
  }
  .link-inline.a-blank:after,
  .link-inline.a-pdf:after,
  .link-inline.a-print:after {
    margin: 0 0.5em;
  }
  
  /* ----- link-text ----- */
  [class*="link-text"] .a-blank,
  [class*="link-text"] .a-pdf,
  [class*="link-text"] .a-print {
    position: relative;
    padding-right: 2em;
  }
  [class*="link-text"] .a-blank:after,
  [class*="link-text"] .a-pdf:after,
  [class*="link-text"] .a-print:after {
    position: absolute;
    top: 0.3em;
    right: 0.5em;
  }
  [class*="link-text"][data-row-pc] > li {
    float: left;
  }
  [class*="link-text"][data-row-pc="auto"] > li {
    width: auto;
  }
  [class*="link-text"][data-row-pc="auto"] {
    margin-top: 0;
  }
  [class*="link-text"][data-row-pc="auto"] > li:first-child {
    margin-top: 1em;
  }
  .link-text {
    margin-top: 1em;
  }
  .link-text > li {
    margin-top: 1em;
  }
  .link-text > li:first-child {
    margin-top: 0;
  }
  .link-text > li > a {
    position: relative;
    display: inline-block;
    padding-left: 1em;
  }
  .link-text > li > a:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 8px;
    height: 8px;
    border-right: #555555 1px solid;
    border-top: #555555 1px solid;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  /* ----- link-text-v2 ----- */
  .link-text-v2 {
    margin-top: 1em;
  }
  .link-text-v2 > li {
    margin-top: 1em;
  }
  .link-text-v2[data-row-pc] > li {
    float: left;
  }
  .link-text-v2 > li:first-child {
    margin-top: 0;
  }
  .link-text-v2 > li > a {
    position: relative;
    display: inline-block;
    padding-left: 1em;
    color: #333333;
  }
  .link-text-v2 > li > a:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-right: #555555 1px solid;
    border-top: #555555 1px solid;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .link-text-v2 > li > a.a-pdf:after {
    position: static;
    margin-left: 0.5em;
    margin-bottom: -0.2em;
    background-position: -320px 0;
  }
  .link-text-v2 > li .link_shoulder {
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    color: #996600;
  }
  
  /* ----- link-button ----- */
	[class*="link-button"] {
		margin-top: 2em;
	}
  [class*="link-button"] > li {
    margin-top: 1em;
    border-radius: 5px;
  }
  [class*="link-button"] > li > a {
    position: relative;
    display: inline-table;
    padding: 0.8em 20px 0.8em 25px;
    border-radius: 5px;
    text-align: center;
  }
  [class*="link-button"] > li > a.a-blank:after,
  [class*="link-button"] > li > a.a-pdf:after,
  [class*="link-button"] > li > a.a-print:after,
  [class*="link-button"] > li > a.a-modal:after,
  [class*="link-button"] > li > a.a-mail:after,
  [class*="link-button"] > li > a.a-back:after {
    display: none;
  }
  [class*="link-button"] > li > a.a-back > span {
    padding-left: 60px;
    padding-right: 60px;
  }
  [class*="link-button"] > li > a > span.link_label {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    padding-right: 25px;
  }
  [class*="link-button"] > li > a > span.link_label:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: right 0.3s;
    transition: right 0.3s;
  }
  [class*="link-button"] > li > a:not([class*="a-"]):hover > span.link_label:after {
    right: -5px;
  }
  [class*="link-button"] > li > a.a-blank > span.link_label:after {
    width: 15px;
    height: 13px;
    margin-top: -8px;
    border: none;
    background: url(/common/img/com_sprite.png) no-repeat -240px 0;
    transform: none;
  }
  [class*="link-button"] > li > a.a-pdf > span.link_label:after {
    width: 15px;
    height: 15px;
    margin-top: -8px;
    border: none;
    background: url(/common/img/com_sprite.png) no-repeat -300px 0;
    transform: none;
  }
  [class*="link-button"] > li > a.a-print > span.link_label:after {
    width: 17px;
    height: 15px;
    margin-top: -8px;
    border: none;
    background: url(/common/img/com_sprite.png) no-repeat -280px 0;
    transform: none;
  }
  [class*="link-button"] > li > a.a-modal > span.link_label:after {
    width: 17px;
    height: 17px;
    margin-top: -8px;
    border: none;
    background: url(/common/img/com_sprite.png) no-repeat -400px 0;
    transform: none;
  }
  [class*="link-button"] > li > a.a-mail > span.link_label:after {
    width: 16px;
    height: 13px;
    margin-top: -7px;
    border: none;
    background: url(/common/img/com_sprite.png) no-repeat -419px 0;
    transform: none;
  }
  [class*="link-button"] > li > a.a-back > span.link_label:after {
    left: 0;
    right: auto;
    width: 15px;
    height: 14px;
    margin-top: -8px;
    border: none;
    background: url(/common/img/com_sprite.png) no-repeat -360px 0;
    transform: none;
  }
  [class*="link-button"][data-row-pc] {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  [class*="link-button"][data-row-pc]:not([class*="gp-jc-"]) > li > a {
    width: 100%;
  }
  [class*="link-button"][data-row-pc][class*="gp-jc-"] > li {
    width: auto;
  }
  
  .link-button > li > a {
    background: #0e73d7;
    font-size: 17px;
    font-size: 1.7rem;
    color: #ffffff;
  }
  .link-button > li > a > span.link_label:after {
    border-right: #ffffff 1px solid;
    border-top: #ffffff 1px solid;
  }
  .link-button > li > a:hover {
    text-decoration: none;
  }
  .link-button > li > a.a-blank > span.link_label:after {
    background: url(/common/img/com_sprite.png) no-repeat -220px 0;
  }
  .link-button > li > a.a-pdf > span.link_label:after {
    background: url(/common/img/com_sprite.png) no-repeat -340px 0;
  }
  .link-button > li > a.a-blank:hover > span.link_label:after,
  .link-button > li > a.a-pdf:hover > span.link_label:after {
    right: 0;
  }
  
  /* ----- link-button-v2 ----- */
  .link-button-v2 > li > a {
    background: #ffffff;
    border: solid 1px #cccccc;
    color: #333333;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
  }
  .link-button-v2 > li > a:hover {
    background: #f2f8fd;
    text-decoration: none;
    opacity: 1;
  }
  .link-button-v2 > li > a > span.link_label:after {
    border-right: #555555 1px solid;
    border-top: #555555 1px solid;
  }
  .link-button-v2 > li > a[class*="gp-w-"] > span {
    display: block;
  }
  
  /* ----- link-column ----- */
  .link-column {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .link-column .link_item {
    position: relative;
    border: solid 1px #cccccc;
    border-radius: 5px;
    overflow: hidden;
  }
  .link-column .link_item > .block {
    display: block;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .link-column .link_item > a.block:hover {
    text-decoration: none;
  }
  .link-column .link_image {
    padding: 0.5em;
    text-align: center;
  }
  .link-column .link_image > .image-set {
    margin-top: 0;
  }
  .link-column .link_detail {
    width: 100%;
    padding: 0.6em 0.5em 0.5em;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    text-align: center;
  }
  .link-column a.block .link_detail .link_text > span:after {
    content: "";
		position: relative;
		right: 0;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 5px;
    margin-bottom: 1px;
    border-right: #ffffff 1px solid;
    border-top: #ffffff 1px solid;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: right 0.3s;
    transition: right 0.3s;
  }
	.link-column a.block:hover .link_detail .link_text > span:after {
		right: -5px;
	}
   
  [class*="link-column"] .link_image .image-set {
    margin-top: 0;
  }
  [class*="link-column"] .link_image .image-set > .image_inner {
    display: block;
  }
	
	/* ----- link-column-v2 ----- */
  .link-column-v2 {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
		margin-top: 60px;
  }
  .link-column-v2 .link_item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
  }
  .link-column-v2 .link_item > .block {
    display: block;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .link-column-v2 .link_item > a.block:hover {
    text-decoration: none;
  }
  .link-column-v2 .link_image {
    text-align: center;
  }
  .link-column-v2 .link_detail {
		position: absolute;
		bottom: 0;
		left: 0;
    width: 100%;
    padding: 0.6em 0.5em 0.5em;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    text-align: center;
  }
  .link-column-v2 a.block .link_detail .link_text > span:after {
    content: "";
    position: relative;
    display: inline-block;
    right: 0;
    width: 8px;
    height: 8px;
    margin-left: 5px;
    margin-bottom: 1px;
    border-right: #ffffff 1px solid;
    border-top: #ffffff 1px solid;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: right 0.3s;
    transition: right 0.3s;
  }
  .link-column-v2 a.block:hover .link_detail .link_text > span:after {
    right: -5px;
  }
	/* ----- link-column-v4 ----- */
  .link-column-v4 {
    max-width: 50%;
    border: solid 1px #aaaaaa;
    border-radius: 5px;
  }
  .link-column-v4 > a {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-align-items: center;
    align-items: center;
    padding: 15px 40px 15px 15px;
    color: #333333;
  }
  .link-column-v4 > a:hover {
    text-decoration: none;
  }
  .link-column-v4 > a:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 15px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-right: #555555 1px solid;
    border-top: #555555 1px solid;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: right 0.3s;
    transition: right 0.3s;
  }
  .link-column-v4 > a:hover:after {
    right: 10px;
  }
  .link-column-v4 > a .link_image {
    margin-right: 15px;
  }
  .link-column-v4 > a .link_image > img {
    max-width: inherit;
  }
	/* ----- link-column-v5 ----- */
  .link-column-v5 {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
		margin-top: 60px;
  }
  .link-column-v5 .link_item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
  }
  .link-column-v5 .link_item > .block {
    display: block;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .link-column-v5 .link_item > a.block:hover {
    text-decoration: none;
  }
  .link-column-v5 .link_image {
    text-align: center;
  }
  .link-column-v5 .link_detail {
		position: absolute;
		bottom: 0;
		left: 0;
    width: 100%;
    padding: 0.6em 0.5em 0.5em;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    text-align: center;
  }
  .link-column-v5 a.block .link_detail .link_text > span:after {
    content: "";
    position: relative;
    display: inline-block;
    right: 0;
    width: 8px;
    height: 8px;
    margin-left: 5px;
    margin-bottom: 1px;
    border-right: #ffffff 1px solid;
    border-top: #ffffff 1px solid;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: right 0.3s;
    transition: right 0.3s;
  }
  .link-column-v5 a.block:hover .link_detail .link_text > span:after {
    right: -5px;
  }
  
	/* ----- link-column-v6 ----- */
  .link-column-v6 {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
		margin-top: 60px;
  }
  .link-column-v6 .link_item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
  }
  .link-column-v6 .link_item > .block {
    display: block;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .link-column-v6 .link_item > a.block:hover {
    text-decoration: none;
  }
  .link-column-v6 .link_image {
    text-align: center;
  }
  .link-column-v6 .link_detail {
		position: absolute;
		bottom: 0;
		left: 0;
    width: 100%;
    padding: 0.6em 0.5em 0.5em;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    text-align: center;
  }
  .link-column-v6 a.block .link_detail .link_text > span:after {
    content: "";
    position: relative;
    display: inline-block;
    right: 0;
    width: 8px;
    height: 8px;
    margin-left: 5px;
    margin-bottom: 1px;
    border-right: #ffffff 1px solid;
    border-top: #ffffff 1px solid;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: right 0.3s;
    transition: right 0.3s;
  }
  .link-column-v6 a.block:hover .link_detail .link_text > span:after {
    right: -5px;
  }
  
	/* ----- product-column----- */
	.product-column {
		margin-top: 25px;
	}
	.product-column .product_item {
		overflow: hidden;
		position: relative;
		float: left;
		width: 212px !important;
		margin-top: 30px;
		margin-left: 35px;
	}
	.product-column.js-slider-product .product_item {
		margin-top: 0;
	}
	.product-column.newItem_column,
	.product-column.select-column {
		min-height: 272px;
	}
	.product-column.select-column .product_item {
		display: none;
	}
	.product-column.select-column .select-no-product {
		display: -webkit-flex;
    display: flex;
		-webkit-align-items: center;
		align-items: center;
		-webkit-justify-content: center;
		justify-content: center;
		height: 272px;
	}
	.product-column.js-slider-product .product_item {
		width: 240px !important;
		padding: 0 14px;
		margin-left: 0;
	}
	.product-column .product_item .block {
		display: block;
	}
	.product-column .product_item:nth-child(-n+5) {
		margin-top: 0;
	}
	.product-column .product_item:nth-child(5n+1) {
		margin-left: 0;
	}
	.product_item a.block:hover {
		text-decoration: none;
	}
	.product_item .product_image {
		overflow: hidden;
		border-radius: 5px;
		-webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
	}
	.product-column .product_limited {
		position: absolute;
		top: 0;
		right: 0;
		display: inline-block;
		padding: 7px 8px;
		background-color: #c40000;
		border-radius: 0 5px 0 5px;
		font-size: 13px;
		font-size: 1.3rem;
		font-weight: bold;
		color: #fff;
		line-height: 1.1;
	}
	.product-column.js-slider-product .product_limited {
		right: 14px;
	}
	.product_item .product_name {
		display: inline-block;
		margin-top: 15px;
		line-height: 1.4;
		color: #336699;
	}
	.product_item .product_name.product_icon01 {
		min-height: 40px;
		padding-left: 40px;
		background: url(/common/img/com_ic03.png) no-repeat 0 0.1em;
	}
	.product_item a.block:hover .product_image {
		opacity: 0.7;
	}
	.product_item a.block:hover .product_name {
		color: #0e73d7;
	}
	.product-column.js-slider-product .slick-prev,
	.product-column.js-slider-product .slick-next {
		top: 107px;
		display: block;
		width: 48px;
		height: 48px;
		background-color: rgba(255, 255, 255, .9);
		border-radius: 50%;
		z-index: 10;
		box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .22);
	}
	.product-column.js-slider-product .slick-prev {
		left: -18px;
	}
	.product-column.js-slider-product .slick-next {
		right: -18px;
	}
	.product-column.js-slider-product .slick-prev::before {
		content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    margin-top: -7px;
		margin-left: -4px;
    border-right: #094cc2 2px solid;
    border-top: #094cc2 2px solid;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
		opacity: 1;
	}
	.product-column.js-slider-product .slick-next::before {
		content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    margin-top: -7px;
		margin-left: -10px;
    border-right: #094cc2 2px solid;
    border-top: #094cc2 2px solid;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
		opacity: 1;
	}
  
  
  /* ------------------------------------------------------
   * Elements >>> Image
  ------------------------------------------------------ */
  /* ----- image- ----- */
  .image-set {
    margin-top: 36px;
  }
  .image-set > .image_inner {
    display: inline-block;
  }
  .image-set > .image_inner .image_object {
    display: block;
    border-radius: 5px;
    overflow: hidden;
  }
  .image-set > .image_inner .image_caption {
    margin-top: 0.5em;
    font-size: 14px;
    font-size: 1.4rem;
    text-align: left;
  }
  
  /* ------------------------------------------------------
   * Elements >>> Other
  ------------------------------------------------------ */
  /* ----- line-layout ----- */
  .line-layout {
    margin: 46px 0 1em;
  }
  .line-layout .line_hr {
    display:  block;
    height: 1px;
    margin: 0;
    border: none;
    background-image: -webkit-linear-gradient(left, #999, #999 1px, transparent 1px, transparent 2px);
    background-image: linear-gradient(to right, #999, #999 1px, transparent 1px, transparent 2px);
    background-size: 3px 1px;
    background-position: top;
    background-repeat: repeat-x;
  }
  
  /* ------------------------------------------------------
   * Conditional Elements >>> Heading
  ------------------------------------------------------ */
  /* ----- heading-lv1 ----- */
  [class*="heading-lv1"] {
    margin-top: 60px;
  }
  [class*="heading-lv1"] .heading_title {
    font-size: 36px;
    font-size: 3.6rem;
    line-height: 1.5;
  }
  [class*="heading-lv1"] + * {
    margin-top: 30px
  }
  /* categoryHead */
  [class*="categoryHead-"]:not([class*="categoryHead-brand-"]) .heading-lv1 .heading_title {
    text-indent: -9999px;
  }
  [class*="categoryHead-brand-"] .heading-lv1 .heading_title > img {
    width: auto;
  }
  .categoryHead-shop .heading-lv1 .heading_title {
    width: 153px;
    height: 34px;
    background: url(/shop/img/index_h01.png) no-repeat 0 0;
    background-size: contain;
  }
  .categoryHead-brand .heading-lv1 .heading_title {
    width: 198px;
    height: 34px;
    background: url(/brand/img/index_h01.png) no-repeat 0 0;
    background-size: contain;
  }
  .categoryHead-about .heading-lv1 .heading_title {
    width: 418px;
    height: 33px;
    background: url(/about/img/index_h01.png) no-repeat 0 0;
    background-size: contain;
  }
  .categoryHead-coupon .heading-lv1 .heading_title {
    width: 150px;
    height: 34px;
    background: url(/coupon/img/index_h01.png) no-repeat 0 0;
    background-size: contain;
  }
	.categoryHead-menu .heading-lv1 .heading_title {
    width: 189px;
    height: 33px;
		margin: 0 auto;
    background: url(/menu/img/index_h01.png) no-repeat 0 0;
    background-size: contain;
  }
	.categoryHead-takeout .heading-lv1 .heading_title {
		font-size: 40px;
		font-size: 4rem;
		color: #fff;
		text-indent: 0 !important;
  }
  /* ----- heading-lv1-v2 ----- */
  .heading-lv1-v2 .heading_subtitle {
    color: #979797;
  }
  .heading-lv1-v2 .heading_subtitle .heading_icon {
    display: inline-block;
    width: 118px;
    margin-left: 18px;
  }
  .heading-lv1-v2 .heading_subtitle +  .heading_title {
    margin-top: 0.2em;
  }
  
  /* ----- heading-lv1-v3 ----- */
  .heading-lv1-v3 {
    display: table;
  }
  .heading-lv1-v3 .heading_image {
    display: table-cell;
    vertical-align: middle;
    width: 140px;
    text-align: center;
  }
  .heading-lv1-v3 .heading_image + .heading_title {
    padding-left: 0.2em;
  }
  .heading-lv1-v3 .heading_title {
    display: table-cell;
    vertical-align: middle;
  }
  
  /* ----- heading-lv2 ----- */
  [class*="heading-lv2"] {
    margin-top: 51px;
  }
  [class*="heading-lv2"] .heading_title {
    font-size: 30px;
    font-size: 3rem;
    line-height: 1.5;
    color: #0e73d7;
  }
  [class*="heading-lv2"] + * {
    margin-top: 12px;
  }
  .heading-lv2 a.block {
    display: inline-block;
  }
  .heading-lv2 a.block .heading_title {
    display: inline-block;
    text-decoration: underline;
  }
  .heading-lv2 a.block:hover,
  .heading-lv2 a.block:hover .heading_title {
    text-decoration: none;
  }
  .heading-lv2 a.block:after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 0 0.5em 0;
    border-right: #555555 1px solid;
    border-top: #555555 1px solid;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .heading-lv2 a.block.a-blank:after {
    width: 15px;
    height: 13px;
    border: none;
    transform: rotate(0);
  }
  
  /* ----- heading-lv3 ----- */
  [class*="heading-lv3"] {
    margin-top: 50px;
    border-bottom: solid 1px #0e73d7;
  }
  [class*="heading-lv3"] .heading_title {
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 1.5;
  }
  [class*="heading-lv3"] + * {
    margin-top: 35px !important;
  }
  .heading-lv3 a.block:hover {
    text-decoration: none;
  }
  .heading-lv3 a.block:hover .heading_title {
    opacity: 0.7;
  }
  .heading-lv3 a.block:after {
    display: none;
  }
  .heading-lv3 a.block .heading_title:after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 0 0.2em 0;
    border-right: #555555 1px solid;
    border-top: #555555 1px solid;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .heading-lv3 a.block.a-blank .heading_title:after {
    width: 15px;
    height: 13px;
    border: none;
    background: url(/common/img/com_sprite.png) no-repeat -240px 0;
    transform: rotate(0);
  }
  .heading-lv3 a.block .heading_title {
    color:  #0e73d7;
  }
  
  /* ----- heading-lv4 ----- */
  [class*="heading-lv4"] {
    margin-top: 50px;
  }
  [class*="heading-lv4"]:after {
    content: "";
    display: block;
    height: 1px;
    margin: 0;
    border: none;
    background-image: -webkit-linear-gradient(left, #999, #999 1px, transparent 1px, transparent 2px);
    background-image: linear-gradient(to right, #999, #999 1px, transparent 1px, transparent 2px);
    background-size: 5px 1px;
    background-position: top;
    background-repeat: repeat-x;
  }
  [class*="heading-lv4"] + * {
    margin-top: 30px !important;
  }
  [class*="heading-lv4"] .heading_title {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.5;
  }
  .heading-lv4 a.block:hover {
    text-decoration: none;
  }
  .heading-lv4 a.block:hover .heading_title {
    opacity: 0.7;
  }
  .heading-lv4 a.block:after {
    display: none;
  }
  .heading-lv4 a.block .heading_title:after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 0 0.2em 0;
    border-right: #555555 1px solid;
    border-top: #555555 1px solid;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .heading-lv4 a.block.a-blank .heading_title:after {
    width: 15px;
    height: 13px;
    border: none;
    background: url(/common/img/com_sprite.png) no-repeat -240px 0;
    transform: rotate(0);
  }
  .heading-lv4 a.block .heading_title {
    color:  #0e73d7;
  }
  
  /* ----- heading-lv5 ----- */
  .heading-lv5 {
    position: relative;
    margin-top: 30px;
    padding-left: 1em;
  }
  .heading-lv5:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 4px;
    background: #0e73d7;
  }
  .heading-lv5 .heading_title {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.5;
    font-weight: bold;
  }
  .heading-lv5 + * {
    margin-top: 30px !important;
  }
  
  /* ------------------------------------------------------
   * Conditional Elements >>> Navi
  ------------------------------------------------------ */
  /* ----- navi-anchor ----- */
  .navi-anchor .navi-inner {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .navi-anchor .navi-inner > li {
    position: relative;
    margin: 1em 0 0;
    padding: 0 18px;
  }
  .navi-anchor .navi-inner > li:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    margin: 0;
    border: none;
    background-image: -webkit-linear-gradient(top, #999, #999 1px, transparent 1px, transparent 2px);
    background-image: linear-gradient(to bottom, #999, #999 1px, transparent 1px, transparent 2px);
    background-size: 1px 3px;
    background-position: left;
    background-repeat: repeat-y;
  }
  .navi-anchor .navi-inner[data-row-pc="2"] > li { width: 600px; }
  .navi-anchor .navi-inner[data-row-pc="3"] > li { width: 418px; }
  .navi-anchor .navi-inner[data-row-pc="4"] > li { width: 318px; }
  .navi-anchor .navi-inner[data-row-pc="5"] > li { width: 252px; }
  .navi-anchor .navi-inner[data-row-pc="3"] > li:nth-child(3n+1),
  .navi-anchor .navi-inner[data-row-pc="3"] > li:nth-child(3n) {
    width: 382px;
  }
  .navi-anchor .navi-inner[data-row-pc="4"] > li:nth-child(4n+1),
  .navi-anchor .navi-inner[data-row-pc="4"] > li:nth-child(4n) {
    width: 282px;
  }
  .navi-anchor .navi-inner[data-row-pc="5"] > li:nth-child(5n+1),
  .navi-anchor .navi-inner[data-row-pc="5"] > li:nth-child(5n) {
    width: 222px;
  }
  .navi-anchor .navi-inner[data-row-pc="2"] > li:nth-child(2n),
  .navi-anchor .navi-inner[data-row-pc="3"] > li:nth-child(3n),
  .navi-anchor .navi-inner[data-row-pc="4"] > li:nth-child(4n),
  .navi-anchor .navi-inner[data-row-pc="5"] > li:nth-child(5n) {
    padding-right: 0;
  }
  .navi-anchor .navi-inner.js-rowEdge > li:first-child,
  .navi-anchor .navi-inner.js-rowEdge > li.is-edge + li,
  .navi-anchor .navi-inner[data-row-pc="2"] > li:nth-child(2n+1),
  .navi-anchor .navi-inner[data-row-pc="3"] > li:nth-child(3n+1),
  .navi-anchor .navi-inner[data-row-pc="4"] > li:nth-child(4n+1),
  .navi-anchor .navi-inner[data-row-pc="5"] > li:nth-child(5n+1) {
    padding-left: 0;
  }
  .navi-anchor .navi-inner.js-rowEdge > li:first-child:after,
  .navi-anchor .navi-inner.js-rowEdge > li.is-edge + li:after,
  .navi-anchor .navi-inner[data-row-pc="2"] > li:nth-child(2n+1):after,
  .navi-anchor .navi-inner[data-row-pc="3"] > li:nth-child(3n+1):after,
  .navi-anchor .navi-inner[data-row-pc="4"] > li:nth-child(4n+1):after,
  .navi-anchor .navi-inner[data-row-pc="5"] > li:nth-child(5n+1):after {
    display: none;
  }
  .navi-anchor .navi-inner > li > a {
    display:  block;
    position: relative;
    padding-left: 1em;
  }
  .navi-anchor .navi-inner > li > a:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0.4em;
    left: 2px;
    width: 8px;
    height: 8px;
    border-right: #555555 1px solid;
    border-top: #555555 1px solid;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  
  /* ------------------------------------------------------
   * Layout >>> Table
  ------------------------------------------------------ */
  /* ----- table-layout ----- */
  .table-layout {
    margin-top: 1em;
  }
  .table-layout .table_inner {
    width: 100%;
    border-top: solid 1px #cccccc;
    border-left: solid 1px #cccccc;
  }
  .table-layout .table_inner > caption {
    text-align: left;
  }
  .table-layout .table_inner .table_title {
    padding-bottom: 1em;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
  }
  .table-layout .table_inner .table_caption {
    padding-bottom: 1.29em;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .table-layout .table_inner th,
  .table-layout .table_inner td {
    padding: 8px 20px 6px;
    border-right: solid 1px #cccccc;
    border-bottom: solid 1px #cccccc;
    text-align: left;
  }
  .table-layout .table_inner th > *:first-child,
  .table-layout .table_inner td > *:first-child {
    margin-top: 0 !important;
  }
  .table-layout .table_inner .cell-style1 {
    background: #f2f8fd;
    font-weight: normal;
  }
  .table-layout .table_inner .cell-style2 {
    background: #0e73d7;
    font-weight: bold;
    color: #ffffff;
  }
  .table-layout .table_inner .cell-style3 {
    background: #fff0f0;
    font-weight: bold;
  }
  
  /* ------------------------------------------------------
   * Layout >>> Grid
  ------------------------------------------------------ */
  [data-row-pc] > * {
    margin-top: 36px;
    margin-left: 36px;
  }
  [data-row-pc][data-row-pc="auto"] > * {
    margin-left: 0;
    margin-right: 36px;
  }
  [data-row-pc="1"] > * {
    width: 100%;
  }
  [data-row-pc="2"] > * {
    width: 582px;
  }
  [data-row-pc="3"] > * {
    width: 376px;
  }
  [data-row-pc="4"] > * {
    width: 273px;
  }
  [data-row-pc="5"] > * {
    width: 211px;
  }
  [data-row-pc="6"] > * {
    width: 170px;
  }
  [data-row-pc="1"] > *,
  [data-row-pc="2"] > *:nth-child(2n+1),
  [data-row-pc="3"] > *:nth-child(3n+1),
  [data-row-pc="4"] > *:nth-child(4n+1),
  [data-row-pc="5"] > *:nth-child(5n+1),
  [data-row-pc="6"] > *:nth-child(6n+1) {
    clear: left;
    margin-left: 0;
  }
  [data-row-pc="1"] > *:first-child,
  [data-row-pc="2"] > *:nth-child(-n+2),
  [data-row-pc="3"] > *:nth-child(-n+3),
  [data-row-pc="4"] > *:nth-child(-n+4),
  [data-row-pc="5"] > *:nth-child(-n+5),
  [data-row-pc="6"] > *:nth-child(-n+6) {
    margin-top: 0;
  }
  
  /* ------------------------------------------------------
   * Layout >>> Column
  ------------------------------------------------------ */
  /* ----- column-layout ----- */
  .column-layout {
    margin-top: 36px;
  }
  .column-layout[data-row-pc] > .column_item {
    float: left;
  }
  .column-layout[data-row-pc="1"] > .column_item > [class*="heading-"],
  .column-layout[data-row-pc="1"] > .column_item > section > [class*="heading-"],
  .column-layout[data-row-pc="2"] > .column_item > [class*="heading-"],
  .column-layout[data-row-pc="2"] > .column_item > section > [class*="heading-"],
  .column-layout[data-row-pc="3"] > .column_item > [class*="heading-"],
  .column-layout[data-row-pc="3"] > .column_item > section > [class*="heading-"],
  .column-layout[data-row-pc="4"] > .column_item > [class*="heading-"],
  .column-layout[data-row-pc="4"] > .column_item > section > [class*="heading-"],
  .column-media > .column_detail > section > [class*="heading-"],
  .column-media > .column_detail > [class*="heading-"] {
    margin-top: 24px;
  }
  .column-layout > .column_item > .column-media,
  .column-media > .column_detail > .column-layout {
    margin-top: 0;
  }
  .column_item > .image-set {
    margin-top: 0;
  }
  
  /* ----- column-media ----- */
  .column-media {
    margin-top: 36px;
  }
  .column-media .column_image[data-image="right"] {
    float: right;
    margin-left: 36px;
  }
  .column-media .column_image[data-image="left"] {
    float: left;
    margin-right: 36px;
  }
  .column-media > .column_image > .image-set {
    margin-top: 0;
  }
  .column-media[data-media-size="1/2"] > .column_image {
    width: 582px;
    text-align: center;
  }
  .column-media[data-media-size="1/3"] > .column_image {
    width: 376px;
    text-align: center;
  }
  .column-media[data-media-size="1/4"] > .column_image > .image-set {
    width: 273px;
    text-align: center;
  }
  .column-media .column_image[data-row-pc="2"] {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .column-media .column_image[data-row-pc="2"] > .image-set {
    width: calc((100% - 36px)/ 2);
  }
  .column-media .column_detail[data-wraparound="false"] {
    overflow: hidden;
  }
  
  /* ------------------------------------------------------
   * Layout >>> Box
  ------------------------------------------------------ */
  /* ----- box-layout ----- */
  .box-layout {
    border: solid 1px #dddddd;
    border-radius: 5px;
  }
  .box-layout .box_title {
    padding: 0.4em 1em 0.3em;
    background: #f2f8fd;
    font-size: 20px;
    font-size: 2rem;
    font-weight: bold;
  }
  .box-layout .box_detail {
    padding: 22px;
  }
  .box-layout .box_detail > *:first-child {
    margin-top: 0;
  }
  
  /* ------------------------------------------------------
   * Layout >>> Other
  ------------------------------------------------------ */
  .js-accordion_panel {
    display: none;
  }
  /* ----- accordion-layout ----- */
  .accordion-layout {
    margin-top: 30px;
    border: solid 1px #dddddd;
    border-radius: 5px;
  }
  .accordion-layout .accordion_trigger {
    position: relative;
    min-height: 76px;
    padding: 20px 1em;
    background: #f2f8fd;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
  }
  .accordion-layout .accordion_trigger:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: solid 1px #999999;
    border-radius: 5px;
    background: #ffffff; 
  }
  .accordion-layout .accordion_trigger:after {
    content: "＋";
    position: absolute;
    top:17px;
    right: 30px;
    width: 20px;
    height: 36px;
    font-size: 25px;
    font-weight: bold;
    color: #999999;
  }
  .accordion-layout .accordion_trigger.is-active:after {
    content: "－";
  }
  .accordion-layout .accordion_detail {
    padding: 22px;
    border-top: solid 1px #dddddd;
  }
  
  /* ----- qa-layout ----- */
  .qa-layout {
    margin-top: 30px;
    border: solid 1px #dddddd;
    border-radius: 5px;
  }
  .qa-layout .qa_trigger {
    position: relative;
    min-height: 76px;
    padding: 20px 1em 20px 70px;
    background: #f2f8fd;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
  }
  .qa-layout .qa_trigger:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: solid 1px #999999;
    border-radius: 5px;
    background: #ffffff; 
  }
  .qa-layout .qa_trigger:after {
    content: "＋";
    position: absolute;
    top:17px;
    right: 30px;
    width: 20px;
    height: 36px;
    font-size: 25px;
    font-weight: bold;
    color: #999999;
  }
  .qa-layout .qa_trigger.is-active:after {
    content: "－";
  }
  .qa-layout .qa_trigger > .qa_mark {
    display: inline-block;
    position: absolute;
    top: 25px;
    left: 1em;
    width: 26px;
    height: 26px;
    background: url(/common/img/com_sprite.png) no-repeat -169px -38px;
    background-size: 325px 182px;
    text-indent: -999px;
  }
  .qa-layout .qa_detail {
    position: relative;
    padding: 22px;
    padding: 22px 22px 22px 70px;
    border-top: solid 1px #dddddd;
  }
  .qa-layout .qa_detail > .qa_mark {
    display: inline-block;
    position: absolute;
    top: 25px;
    left: 1em;
    width: 26px;
    height: 26px;
    background: url(/common/img/com_sprite.png) no-repeat -195px -38px;
    background-size: 325px 182px;
    text-indent: -999px;
  }
  
  /* ----- qr-layout ----- */
  .qr-layout {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    padding: 30px;
    background: #eef6fc;
  }
  .qr-layout .qr-image {
    float: left;
    display: table;
    width: 120px;
    height: 120px;
    margin-right: 30px;
    background: #ffffff;
    text-align: center;
  }
  .qr-layout .qr-image > figure {
    display:  table-cell;
    vertical-align: middle;
  }
  .qr-layout .qr-text {
    width: calc(100% - 150px);
    overflow: hidden;
  }
  
  /* ----- tab-layout ----- */
  .tab-layout {
		margin-top: 35px;
  }
	.tab_navi.is-tab_top {
		border-bottom: 2px solid #0e73d7;
  }
	.tab_navi.is-tab_bottom {
		border-top: 2px solid #0e73d7;
  }
	.tab_list:not([data-row-pc]) > li {
		float: left;
		margin-right: 20px;
  }
  .tab_list[data-row-pc] {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .tab_list[data-row-pc] > li {
    margin-right: 0;
    margin-left: 20px;
  }
  .tab_list[data-row-pc="4"] > li { width: calc((100% - 60px) / 4); }
  .tab_list[data-row-pc="3"] > li { width: calc((100% - 40px) / 3); }
  .tab_list[data-row-pc="2"] > li { width: calc((100% - 20px) / 2); }
  .tab_list[data-row-pc] > li:first-child { margin-left: 0; }
	.tab_list > li > a {
		display: block;
		padding: 14px 20px 12px;
		background-color: #fff;
		border: 1px solid #ccc;
		font-size: 18px;
		font-size: 1.8rem;
		line-height: 1.4;
		color: #333;
    text-align: center;
  }
	.tab_list > li > a:hover {
		text-decoration: none;
	}
	.tab_navi.is-tab_top .tab_list > li > a {
		border-bottom: none;
		border-radius: 5px 5px 0 0;
	}
	.tab_navi.is-tab_bottom .tab_list > li > a {
		border-top: none;
		border-radius: 0 0 5px 5px;
	}
	.tab_navi .tab_list > .is-current > a {
		background-color: #0e73d7;
		border-color: #0e73d7;
		color: #fff;
	}
  .tab-layout .tab_detail  {
    padding: 30px 0;
  }
  
	/* ----- slider-layout----- */
  .slider-layout {
    width: 100%;
    overflow: hidden;
  }
  /* slick */
  .slider-layout .slick-list {
    position: relative;
    left: 50%;
    width: 1980px;
    margin-left: -990px;
  }
  .slider-layout .slick-slider {
    position: relative;
  }
  .slider-layout .slick-slider .slick-slide {
    position: relative;
    text-align: center;
  }
  .slider-layout .slick-slider .slick-slide:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .slider-layout .slick-slider .slick-slide.slick-active:after {
    display: none;
  }
  .slider-layout .slick-slider .slick-slide > a {
    display: inline-block;
  }
  .slider-layout .slick-slider .slick-slide span {
    position: relative;
    display: inline-block;
    border-radius: 5px;
    overflow: hidden;
  }
  .slider-layout .slick-slider .slick-slide span:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
  }
  .slider-layout .slick-slider .slick-slide.slick-active span:after {
    display: none;
  }
  .slider-layout .slick-track > * {
    float: left;
  }
  .slider-layout .slick-arrow {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 11px rgba(93, 93, 93, 0.36);
    text-indent: -9999px;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
  }
  .slider-layout .slick-arrow:hover {
    box-shadow: 0 0 11px rgba(93, 93, 93, 0.5);
    background: #ffffff;
  }
  .slider-layout .slick-arrow:before,
  .slider-layout .slick-arrow:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    width: 15px;
    height: 3px;
    border-radius: 4px;
    background: #0f6cca;
    opacity: 1;
    z-index: 10;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .slider-layout .slick-arrow:hover:before,
  .slider-layout .slick-arrow:hover:after {
    opacity: 0.7;
  }
  .slider-layout .slick-arrow:before {
    margin-top: -5px;
  }
  .slider-layout .slick-arrow:after {
    margin-top: 4px;
  }
  .slider-layout .slick-prev {
    left: 50%;
    margin-left: -504px;
  }
  .slider-layout .slick-prev:before,
  .slider-layout .slick-prev:after {
    left: 50%;
    margin-left: -10px;
  }
  .slider-layout .slick-prev:before {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .slider-layout .slick-prev:after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  .slider-layout .slick-next {
    right: 50%;
    margin-right: -504px;
  }
  .slider-layout .slick-next:before,
  .slider-layout .slick-next:after {
    right: 50%;
    margin-right: -8px;
  }
  .slider-layout .slick-next:before {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  .slider-layout .slick-next:after {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .slider-layout .slick-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 10;
  }
  .slider-layout .slick-dots > li {
    margin: 0 0 0 16px;
  }
  .slider-layout .slick-dots > li:first-child {
    margin-left: 0;
  }
  .slider-layout .slick-dots > li > button {
    width: 18px;
    height: 18px;
    margin: 0;
    border-radius: 50%;
    background: #ffffff;
    text-indent: -9999px;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .slider-layout .slick-dots > li > button:hover {
    opacity: 0.7;
  }
  .slider-layout .slick-dots > li > button:before {
    display: none;
  }
  .slider-layout .slick-dots > li.slick-active > button {
    background: #0e73d7;
  }
	
  /* ------------------------------------------------------
   * Components
  ------------------------------------------------------ */
  /* ----- colorbox ----- */
  #cboxTopCenter,
  #cboxBottomCenter {
    height: 5px;
    margin: 0 5px;
    background: #ffffff;
  }
  #cboxTopLeft,
  #cboxBottomLeft{
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
  }
  #cboxTopRight,
  #cboxBottomRight {
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
  }
  #cboxBottomLeft,
  #cboxBottomRight {
    top: inherit;
    bottom: 0;
  }
  #cboxMiddleLeft,
  #cboxMiddleRight {
    width: 5px;
    background: #ffffff;
  }
  
  /* ----- news-layout ----- */
  .news-layout {
  }
  .news-layout .news_article {
    position: relative;
  }
  .news-layout .news_article:before,
  .news-layout .news_article:first-child:after {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 1px;
    width: 100%;
    border: none;
    background-image: -webkit-linear-gradient(left, #999, #999 1px, transparent 1px, transparent 2px);
    background-image: linear-gradient(to right, #999, #999 1px, transparent 1px, transparent 2px);
    background-size: 3px 1px;
    background-position: top;
    background-repeat: repeat-x;
  }
  .news-layout .news_article:first-child:after {
    top: 0;
  }
  .news-layout .news_article .block {
    display: block;
    padding: 20px 0;
  }
  .news-layout .news_article a.block:after {
    display: none;
  }
  .news-layout .news_article a.block:hover {
    text-decoration: none;
  }
  .news-layout .news_article .news_date {
    display: inline-block;
    min-width: 6em;
    color: #979797;
  }
  .news-layout .news_article .news_icon {
    display: inline-block;
    width: 118px;
    margin-left: 20px;
  }
  .news-layout .news_article .news_title {
    margin-top: 0.7em;
  }
  .news-layout .news_article a.block:hover .news_title {
    text-decoration: underline;
  }
  .news-layout .news_article a.block.a-blank .news_title:after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 13px;
    margin: 0 0.5em;
    background: url(/common/img/com_sprite.png) no-repeat -240px 0;
  }
  .news-layout .news_article a.block.a-pdf .news_title:after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 0 0.5em;
    background: url(/common/img/com_sprite.png) no-repeat -300px 0;
  }
  
  /* ----- plugin-layout ----- */
  .plugin-layout {
    border: solid 1px #dddddd;
    border-radius: 5px;
  }
  .plugin-layout > a {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 25px;
    color: #333333;
  }
  .plugin-layout .plugin_banner {
    margin-right: 1em;
  }
  .plugin-layout .link-inline {
    text-decoration: none !important;
  }
  
  /* ----- mCSB ----- */
  .mCSB_inside > .mCSB_container {
    margin-right: 10px;
  }
  .mCSB_draggerContainer {
    margin: 10px 0;
  }
  .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
  .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
  .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
  .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #898989;
    width: 5px;
  }
  .mCSB_scrollTools .mCSB_draggerRail {
    background-color: transparent;
  }

	/* ----- banner-layout ----- */
	.banner-layout > div {
		overflow: hidden;
		float: right;
		width: 390px;
		border-radius: 5px;
  }
  .banner-layout > div:first-child {
		float: left;
		width: 800px;
  }
	.banner-layout > div:nth-child(3) {
		margin-top: 10px;
  }
	
	/* ----- newItem-layout----- */
	.newItem-layout {
		margin: 50px calc(((100vw - 100%) / 2) * -1) 0;
		padding: 30px calc((100vw - 100%) / 2) 35px;
		background: url(/common/img/com_bg03.png) repeat 0 0;
	}
	.newItem_inner {
		position: relative;
		width: 1200px;
		margin: 0 auto;
	}
	.newItem_inner > *:first-child,
	.newItem_heading > *:first-child,
	.newItem_link-button > *:first-child {
		margin-top: 0 !important;
	}
	.newItem_heading .newItem_heading-lv2 {
		padding-right: 260px;
		line-height: 50px;
	}
	.newItem_heading .newItem_heading-lv2 .newItem_heading_title {
		font-size: 28px;
		font-size: 2.8rem;
		font-weight: bold;
		color: #000;
	}
	.newItem_link-button {
		position: absolute;
		top: 0;
		right: 0;
    margin-top: 0;
	}
	
	/* ----- pickup-layout----- */
	.pickup-layout {
		margin-top: 50px;
	}
	.pickup_list li {
		overflow: hidden;
		float: left;
		border-radius: 5px;
	}
	
	/* ----- modal-layout ----- */
  .modal-layout {
    display: none;
    padding: 30px 30px 40px;
  }
  .modal-inline .modal-layout {
    display: block;
  }
	.modal-heading-lv1 {
		display: -webkit-flex;
		display: flex;
		-webkit-align-items: center;
		align-items: center;
	}
	.modal-heading-lv1 > .modal-heading_icon {
		padding-right: 30px;
	}
	.modal-heading-lv1 > .modal-heading_title {
		font-size: 26px;
		font-size: 2.6rem;
		font-weight: bold;
	}
	.modal-heading-lv2 {
		margin-top: 30px;
	}
	.modal-heading-lv2 + * {
		margin-top: 15px !important;
	}
	.modal-heading-lv2 .modal-heading_title {
		position: relative;
		padding-left: 20px;
		font-size: 22px;
		font-size: 2.2rem;
		font-weight: bold;
		line-height: 1.4;
	}
	.modal-heading-lv2 .modal-heading_title::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		display: inline-block;
		width: 6px;
		height: 100%;
		background-color: #0e73d7;
		border-radius: 3px;
	}
	.modal-column-media {
		margin-top: 30px !important;
	}
	.modal-column-media .modal-column_image {
		overflow: hidden;
		float: left;
		margin-right: 30px;
		border-radius: 5px;
	}
	.modal-column-media .modal-column_detail {
		overflow: hidden;
	}
	.modal-column-media .modal-column_detail > *:first-child {
		margin-top: 0;
	}
	.modal-info {
		margin-top: 10px;
		padding: 10px 15px;
		background-color: #f2f8fd;
		border-radius: 5px;
	}
	.modal-info_text {
		font-size: 24px;
		font-size: 2.4rem;
		font-weight: bold;
	}
	.modal-info_text .modal-info_head {
		float: left;
		font-weight: normal;
		color: #666;
	}
	.modal-info_text .modal-info_body {
		overflow: hidden;
	}
	.modal-info_text .modal-info_small {
		display: inline-block;
		font-weight: normal;
		font-size: 16px;
		font-size: 1.6rem;
	}
	.modal-column-layout {
		display: -webkit-flex;
		display: flex;
	}
	.modal-column-layout .modal-column_item {
		width: calc(100% - 435px);
	}
	.modal-column-layout .modal-column_item_table {
		width: 405px;
	}
	.modal-table-layout {
		margin-top: 20px;
	}
	.modal-table-layout .modal-table_inner {
		width: 100%;
	}
	.modal-table-layout th,
	.modal-table-layout td {
		padding: 6px 3px;
		border: 1px solid #ccc;
		text-align: center;
	}
	.modal-table-layout td {
		font-size: 20px;
		font-size: 2rem;
		color: #979797;
		line-height: 1;
	}
	.modal-table-layout .modal-cell-style0 {
		border-color: #fff;
		background-color: #fff;
	}
	.modal-table-layout .modal-cell-style1 {
		background-color: #eee;
		font-size: 13px;
		font-size: 1.3rem;
		color: #000;
	}
	.modal-list-description {
		margin-top: 10px;
	}
	.modal-list-description > dt {
		float: left;
	}
	.modal-list-description > dt::before {
		content: "●";
		color: #0e73d7;
	}
	.modal-list-description > dt::after {
		content: "／";
	}
	.modal-list-description > dd {
		overflow: hidden;
	}
	.modal-close-button {
		margin-top: 30px;
	}
	.modal-close-button > li {
		width: 300px;
		margin: 0 auto;
	}
	.modal-close-button > li a {
		display: block;
		padding: 15px;
		background-color: #979797;
		border-radius: 5px;
		color: #fff;
		text-align: center;
	}
	.modal-close-button > li a:hover {
		text-decoration: none;
	}
	.modal-close-button > li .modal-close_label::after {
		content: "×";
		display: inline-block;
		margin-left: 10px;
		font-size: 2rem;
		line-height: 18px;
		color: #fff;
	}
	
	/* ----- map-layout----- */
  .map-layout {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin: 0 auto;
  }
  .map-layout .map-textLink {
    display: none;
  }
  
  /* ----- shopinfo-layout ----- */
  .shopinfo-layout {
    border: 1px solid #ccc;
    display: flex;
  }
  .shopinfo-layout + .shopinfo-layout {
    margin-top: -1px;
  }
  .shopinfo-inner {
    width: 778px;
    padding: 13px;
    background-color: #f2f8fd;
    flex-grow: 1;
  }
  .shopinfo-inner > .image-set {
    float: left;
    margin-top: 0;
    margin-right: 30px;
    overflow: hidden;
  }
  .shopinfo-inner > .image-set > .image_inner {
    width: 150px;
    height: 120px;
    padding: 5px;
    background-color: #fff;
    display: flex;
    align-items: center;
  }
  .shopinfo-inner > .image-set > .image_inner > img {
    width: 140px;
    height: auto;
  }
  .shopinfo-inner > .shopinfo-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .shopinfo-inner > .shopinfo-detail {
    line-height: 1.6;
  }
  .shopinfo-inner > .shopinfo-detail > .shopinfo-zip {
  }
  .shopinfo-inner > .shopinfo-detail > .shopinfo-address {
  }
  .shopinfo-inner > .shopinfo-detail > .shopinfo-tel {
    font-weight: bold;
    font-size: 2.4rem;
		overflow: hidden;
  }
  .shopinfo-link {
    width: 420px;
    padding: 20px;
    display: flex;
    align-items: center;
  }
  .shopinfo-toggle {
    display: none;
  }
  
  [class*="shopinfo-link_button"] {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  [class*="shopinfo-link_button"] > li {
    border-radius: 5px;
    margin-left: 10px;
  }
  [class*="shopinfo-link_button"] > li:first-child {
    margin-left: 0;
  }
  [class*="shopinfo-link_button"] > li > a {
    position: relative;
    display: inline-block;
    padding: 0.8em 15px 0.8em 20px;
    border-radius: 5px;
    text-align: center;
    width: 185px;
  }
  [class*="shopinfo-link_button"] > li > a > span {
    position: relative;
    display: inline-block;
    padding-right: 20px;
  }
  [class*="shopinfo-link_button"] > li > a > span:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
  }
  .shopinfo-link_button > li > a.a-shopinfo_detail {
    border: 1px solid #0e73d7;
    background: #0e73d7;
    color: #ffffff;
  }
  .shopinfo-link_button > li > a.a-shopinfo_detail > span:after {
    width: 8px;
    height: 8px;
    margin-top: -4px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border-right: #ffffff 1px solid;
    border-top: #ffffff 1px solid;
    -webkit-transition: right 0.3s;
    transition: right 0.3s;
  }
  .shopinfo-link_button > li > a.a-shopinfo_job {
    border: 1px solid #ccc;
    color: #666;
  }
  .shopinfo-link_button > li > a.a-shopinfo_job.job_disabled {
    border: 1px solid #ccc;
    background: #ccc;
    color: #a3a3a3;
    cursor: default;
  }
  .shopinfo-link_button > li > a.a-shopinfo_job > span:after {
    width: 15px;
    height: 13px;
    margin-top: -7px;
    background: url(/common/img/com_sprite.png) no-repeat -240px 0;
  }
  .shopinfo-link_button > li > a.a-shopinfo_job.job_disabled > span:after {
    opacity: 0.4;
  }
  .shopinfo-link_button > li > a:hover {
    text-decoration: none;
  }
  .shopinfo-link_button > li > a.a-shopinfo_detail:hover > span:after {
    right: -5px;
  }
  .shopinfo-link_button > li > a.a-shopinfo_job.job_disabled:hover {
    opacity: 1;
  }
  .shopinfo-link_button > li > a.a-shopinfo_job.job_disabled:hover > span:after {
    right: 0;
  }
  
  /* ----- closing-layout ----- */
  .closing-layout {
    text-align: center;
    margin-top: 36px;
  }

	/* ------------------------------------------------------
   2.16tuika
  ------------------------------------------------------ */
  /* ----- link-button ----- */
		.link-button> li > a.a-print > span.link_label{
			padding-right: 35px;
		}
		.link-button> li > a.a-print > span.link_label:after {
					width: 18px;
					height: 20px;
					margin-top: -10px;
					border: none;
					background: url(/coupon/img/index_ic01.png) no-repeat 0 0;
					transform: none;
			}
		.shop-link-button .link-button > a,
		.brand-link-button-v2 .link-button > a{
				background: #0e73d7;
				color: #ffffff;
				border: none;
		}
		.shop-link-button .link-button > a:hover,
		.brand-link-button-v2 .link-button > a:hover{
				background: #579de3;
		}
		.shop-link-button .link-button > a.a-blank > span.link_label::after {
				background: url(/common/img/com_sprite.png) no-repeat -220px 0;
		}
		.brand-link-button-v2 .a-blank > span{
			padding: 0 60px 0 50px !important;
		}
		.brand-link-button-v2 .link-button > a.a-blank > span.link_label::after {
    width: 15px;
    height: 13px;
    margin-top: -8px;
    border: none;
    background: url(/common/img/com_sprite.png) no-repeat -240px 0;
    transform: none;
		}
		.brand-up-link-button{
				display: none;
		}
	/* ----- navi-anchor ----- */
  .shop-navi-anchor .navi-inner {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
				margin-left: -18px;
  }
  .shop-navi-anchor .navi-inner > li {
    position: relative;
    margin: 1em 0 0;
    padding: 0 12px 0 18px;
    width: 110px;
    font-size: 1.4rem;
  }
  .shop-navi-anchor .navi-inner > li:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    margin: 0;
    border: none;
    background-image: -webkit-linear-gradient(top, #999, #999 1px, transparent 1px, transparent 2px);
    background-image: linear-gradient(to bottom, #999, #999 1px, transparent 1px, transparent 2px);
    background-size: 1px 3px;
    background-position: right;
    background-repeat: repeat-y;
  }
  .shop-navi-anchor .navi-inner > li:nth-child(11) {
    padding-right: 0;
  }
  .shop-navi-anchor .navi-inner > li:nth-child(11):after {
    background: none;
  }
  .shop-navi-anchor .navi-inner > li > a {
    display:  block;
    position: relative;
    padding-left: 1.3em;
    color: #333;
  }
  .shop-navi-anchor .navi-inner > li > a:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0.2em;
    left: 2px;
    width: 8px;
    height: 8px;
    margin-top: 4px;
    border-right: #555555 1px solid;
    border-top: #555555 1px solid;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  /* ----- pulldown-layout ----- */
  .pulldown-layout,
  .pulldown-txt{
    display: none;
  }
  /* ----- shop-map-layout ----- */
  .shop-map-layout{
    background: url(/shop/img/com_bg01.png);
    margin: 60px calc(((100vw - 100%) / 2) * -1);
    padding: 60px calc(((100vw - 100%) / 2) * -1) 45px;
  }
	.shop-map-layout .layout_inner {
		max-width: 1200px;
		margin: 0 auto;
	}
  .shop-map-layout .map-textLink{
    margin-top: 14px;
    display: block;
    text-align: right;
  }
  .shop-map-layout .map-textLink a {
    color: #333;
  }
  /* ----- uniform-layout ----- */
  .uniform-layout > p{
    margin-top: 15px;
  }
  .uniform-layout .logo{
    display: inline-block;
    margin-bottom: -8px;
    vertical-align: middle;
  }
  /* ----- table_list ----- */
  .table_list01{
    padding: 10px 0;
  }
  .table_list01 > li{
    display: inline-block;
  }
  .table_list01 > li:first-child{
    margin-right: 15px;
  }
  .table_list02 > li{
    font-size: 16px;
    font-size: 1.6rem;
  }
  /* ----- shop_list ----- */
  .shop_list01[data-row-pc="2"] > *{
    width: 270px;
  }
  .shop_list01 > li{
    font-size: 16px;
    font-size: 1.6rem;
  }
	
	
	/* ------------------------------------------------------
   * Clearfix
  ------------------------------------------------------ */
  [data-row-pc]::after,
	.banner-layout::after,
	.product-column::after,
	.tab_list::after,
	.modal-heading-lv1::after,
	.modal-column-media::after,
	.modal-info_text::after,
	.modal-list-description::after,
  .column-media::after,
  .qr-layout::after {
    clear: both;
    content: "";
    display: block;
  }
}

@media screen and (min-width: 768px) and (max-width: 1260px) {
	
	.newItem-layout {
		margin: 50px -30px 0;
    padding: 30px 30px 35px;
	}
	
  /* ----- shop-map-layout ----- */
  .shop-map-layout{
    background: url(/shop/img/com_bg01.png);
    margin: 60px -30px;
    padding: 60px 30px 45px;
  }
	.shop-map-layout .layout_inner {
		min-width: 100%;
	}
	
}
