@charset "utf-8";

/* ======================================================
 * layout_sp.css
 * ------------------------------------------------------
 * @media only screen and (max-width: 767px)
 * - Common
 * - Header
 * - Gnav
 * - Main
 * - Assist
 * - Footer
 * - Other
 * - Clearfix
 * Media Queries
====================================================== */

@media only screen and (max-width: 767px) {
  /* ------------------------------------------------------
   * Common
  ------------------------------------------------------ */
	#cboxOverlay {
		background: rgba(0, 0, 0, .5) !important;
	}
	#cboxContent {
		margin-top: 0 !important;
		background-color: #fff !important;
	}
	#cboxLoadedContent {
		border: none !important;
	}
	#colorbox,
	#cboxOverlay,
	#cboxWrapper {
		overflow: visible !important;
	}
	#cboxClose {
		top: -40px !important;
		right: 0 !important;
		width: 40px !important;
    height: 40px !important;
		background: none !important;
	}
	#cboxClose::after {
		content: "×";
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		width: 40px;
		height: 40px;
		font-weight: bold;
		font-size: 30px;
		font-size: 3rem;
		color: #fff;
		text-indent: 0 !important;
		text-align: center;
		line-height: 40px;
	}
  
  /* ------------------------------------------------------
   * Header
  ------------------------------------------------------ */
  .Header {
    position: relative;
    width: 100%;
    height: 48px;
    padding-right: 51px;
    border-top: solid 3px #0e73d7;
    border-bottom: solid 1px #e2e2e2;
    background: #ffffff;
    z-index: 100;
  }
  
  /* ----- HeaderBody ----- */
  .HeaderBody {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    height: 48px;
    padding: 0 15px;
  }
  
  /* header-identity */
  .header-identity {
    width: 186px;
  }
  .header-identity .identity_logo > a {
    display: block;
  }
  
  /* ------------------------------------------------------
   * Gnav
  ------------------------------------------------------ */
  .Gnav {
    position: absolute;
    top: 3px;
    left: 0;
    width: 100%;
  }
  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.5;
    z-index: 10;
  }
  
  /* ----- gnavMenu ----- */
  .gnavMenu {
    position: absolute;
    top: 0;
    right: 0;
    width: 51px;
    height: 44px;
    border-left: solid 1px #e2e2e2;
    background: #ffffff;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    z-index: 100;
  }
  .gnavMenu.js-open {
    background: #0e73d7;
    border-left: solid 1px #0e73d7;
  }
  .gnavMenu > a {
    display: block;
    width: 50px;
    height: 45px;
    text-indent: -9999px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .gnavMenu > a > span {
    display: block;
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    margin-left: -10px;
    background: #0e73d7;
    border-radius: 10px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .gnavMenu.js-open > a > span {
    background: #ffffff;
  }
  .gnavMenu > a > span:nth-of-type(1) {
    top: 50%;
    margin-top: -8px;
  }
  .gnavMenu > a > span:nth-of-type(2) {
    top: 50%;
    margin-top: -1px;
  }
  .gnavMenu > a > span:nth-of-type(3) {
    top: 50%;
    margin-top: 6px;
  }
  .gnavMenu.js-open > a > span:nth-of-type(1) {
    -moz-transform: translateY(20px) rotate(-45deg);
    -webkit-transform: translateY(20px) rotate(-45deg);
    -ms-transform: translateY(20px) rotate(-45deg);
    transform: translateY(20px) rotate(-45deg);
    margin-top: -20px;
  }
  .gnavMenu.js-open > a > span:nth-of-type(2) {
    opacity: 0;
  }
  .gnavMenu.js-open > a > span:nth-of-type(3) {
    -moz-transform: translateY(-20px) rotate(45deg);
    -webkit-transform: translateY(-20px) rotate(45deg);
    -ms-transform: translateY(-20px) rotate(45deg);
    transform: translateY(-20px) rotate(45deg);
    margin-top: 20px;
  }
  
  /* ----- GnavBody ----- */
  .GnavBody {
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    background: url(/common/img/com_bg01.gif) repeat 0 0;
    z-index: 100;
  }
  
  /* gnavList */
  .gnavList > li a {
    position: relative;
    display: block;
    padding: 1em 25px 0.8em 0.8em;
    border-bottom: solid 1px #e2e2e2;
    color: #333333;
  }
  .gnavList > li > a {
    background: #0e73d7;
    font-size: 15px;
    font-size: 1.5rem;
    color: #ffffff;
  }
  .gnavList > li > a:not(.a-blank):before,
  .gnavList > li > a:not(.a-blank):after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 1em;
    width: 10px;
    height: 2px;
    border-radius: 4px;
    background: #ffffff;
  }
  .gnavList > li.js-open > a:not(.a-blank):before {
    display: none;
  }
  .gnavList > li > a:not(.a-blank):before {
    margin-top: -4px;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  .gnavList > li > a:not(.a-blank):after {
    margin-top: 2px;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .gnavList > li.js-gnav_hasChild > a:not(.a-blank):before,
  .gnavList > li.js-gnav_hasChild > a:not(.a-blank):after {
    width: 13px;
    margin-top: -2px;
  }
  .gnavList > li.js-gnav_hasChild > a:not(.a-blank):before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .gnavList > li.js-gnav_hasChild > a:not(.a-blank):after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  
  /* gnavList-child */
  .gnavList_child {
    display: none;
  }
  .gnavList_child .child_block {
    background: #ffffff;
  }
  .gnavList_child .child_title > a {
    background: url(/common/img/com_bg01.gif) repeat 0 0;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .gnavList > li > .gnavList_child .child_title a:not(.a-blank):before,
  .gnavList > li > .gnavList_child .child_title a:not(.a-blank):after,
  .gnavList > li > .gnavList_child .child_navButton a:not(.a-blank):before,
  .gnavList > li > .gnavList_child .child_navButton a:not(.a-blank):after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 1em;
    width: 8px;
    height: 2px;
    border-radius: 4px;
    background: #0e73d7;
  }
  .gnavList > li > .gnavList_child .child_title a:not(.a-blank):before,
  .gnavList > li > .gnavList_child .child_navButton a:not(.a-blank):before {
    margin-top: -4px;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  .gnavList > li > .gnavList_child .child_title a:not(.a-blank):after,
  .gnavList > li > .gnavList_child .child_navButton a:not(.a-blank):after {
    margin-top: 1px;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .gnavList .gnavList_info {
    float: left;
    width: 50%;
    margin-left: 0;
    border-right: solid 1px #e2e2e2;
  }
  .gnavList .gnavList_info:nth-child(2n) {
    border-right: 0;
  }
  .gnavList .gnavList_info a {
    position: relative;
    display: block;
    padding: 1em 25px 0.8em 15px;
    border-bottom: solid 1px #e2e2e2;
    background: #ffffff;
    color: #333333;
  }
  .gnavList .gnavList_info a:not(.a-blank):before,
  .gnavList .gnavList_info a:not(.a-blank):after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 1em;
    width: 8px;
    height: 2px;
    border-radius: 4px;
    background: #0e73d7;
  }
  .gnavList .gnavList_info a:not(.a-blank):before {
    margin-top: -4px;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  .gnavList .gnavList_info a:not(.a-blank):after {
    margin-top: 1px;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .gnavList .gnavList_info a.a-blank:after {
    background-position: -130px -10px;
    position: absolute;
    top: 50%;
    right: 1em;
    margin-top: -6px;
  }
  .gnavList_child .child_navButton {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .gnavList_child .child_navButton > li {
    margin-left: 0;
    border-right: solid 1px #e2e2e2;
  }
  .gnavList_child .child_navButton[data-row-sp="1"] > li,
  .gnavList_child .child_navButton[data-row-sp="2"] > li:nth-child(2n),
  .gnavList_child .child_navButton[data-row-sp="3"] > li:nth-child(3n) {
    margin-top: 0;
    border-right: 0;
  }
  .gnavList_child .child_navButton[data-row-sp="2"] > li {
    width: 50%;
    margin-top: 0;
  }
  .gnavList_child .child_navButton-brand > li > a,
  .gnavList_child .child_navButton-menu > li > a {
    display: -webkit-flex;
    display: flex;
    -weblit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left;
  }
  .gnavList_child .child_navButton-brand > li > a > span {
    display: block;
    width: calc(100% - 140px);
    padding-right: 2em;
  }
  .gnavList_child .child_navButton-brand > li > a > span.button_logo {
    width: auto;
    height: 54px;
    padding-right: 15px;
  }
  .gnavList_child .child_navButton-menu > li > a > figure {
    width: auto;
    height: 40px;
    padding-right: 15px;
  }
  .gnavList_child .child_navButton-brand > li > a > span.button_logo > img,
  .gnavList_child .child_navButton-menu > li > a > figure > img {
    height: 100%;
  }
  .gnavList_child .child_navBanner {
    display: -webkit-flex;
    display: flex;
    -weblit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 15px;
  }
  .gnavList_child .child_navBanner > li {
    width: 48%;
  }
  .gnavList_child .child_navBanner a {
    padding: 0;
  }
  .gnavList_child .child_navBanner a:after {
    display: none;
  }
  
  /* gnavInfo */
  .gnavInfo {
    padding-bottom: 20px;
  }
  .gnavInfo_banner {
    margin-top: 20px;
  }
  .gnavInfo_banner li {
    width: 83%;
    margin: 1em auto 0;
    text-align: center;
  }
  .gnavInfo_banner li:first-child {
    margin-top: 0;
  }
  
  /* ------------------------------------------------------
   * CategoryNav
  ------------------------------------------------------ */
  .CategoryNav {
    display: none;
  }
  
  /* ------------------------------------------------------
   * Main
  ------------------------------------------------------ */
  .Main {
  }
  
  /* ----- MainBody ----- */
  .MainBody {
  }
  
  /* ----- pageGuide ----- */
  .pageGuide {
  }
  
  /* breadcrumbs */
  .breadcrumbs {
  }
  
  /* ----- pageHead ----- */
  .pageHead > *:first-child {
    margin-top: 0 !important;
  }
  /* ----- categoryHead ----- */
  .pageHead [class*="categoryHead-"] {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: column wrap;
    flex-flow: column wrap;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    height: 125px;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: auto 125px;
  }
  .pageHead [class*="categoryHead-"] > .categoryHead_body {
    width: 100%;
    padding: 15px;
  }
  .pageHead [class*="categoryHead-"] > *:first-child,
  .pageHead [class*="categoryHead-"] > .categoryHead_body > *:first-child {
    margin-top: 0 !important;
  }
  
  /* shop */
  .pageHead .categoryHead-shop {
    background-image: url(/shop/img/index_bg01.jpg);
    background-color: #ebdccc;
  }
  
  /* brand */
 /* .pageHead .categoryHead-brand {
    background-image: url(/brand/img/index_bg01.jpg);
    background-color: #f3edda;
  }　*/
  /* > bakery */
  .pageHead .categoryHead-brand-bakery {
    background-image: url(/brand/img/brand_bg02.jpg);
    background-color: #f4e2ca;
  }
  /* > kitchen */
  .pageHead .categoryHead-brand-kitchen {
    background-image: url(/brand/img/brand_bg03.jpg);
    background-color: #efecea;
  }
  /* > stazzo */
/*  .pageHead .categoryHead-brand-stazzo {
    background-image: url(/brand/img/brand_bg04.jpg);
    background-color: #fbf6dd;
  }*/
  /* > breads */
  .pageHead .categoryHead-brand-breads {
    background-image: url(/brand/img/brand_bg05.jpg);
    background-color: #f0ece9;
  }
  /* > lesanges */
  .pageHead .categoryHead-brand-lesanges {
    background-image: url(/brand/img/brand_bg06.jpg);
    background-color: #f5efd0;
  }
  /* > sylphide */
  .pageHead .categoryHead-brand-sylphide {
    background-image: url(/brand/img/brand_bg07.jpg);
    background-color: #ddd3b5;
  }
  /* > dining */
  .pageHead .categoryHead-brand-dining {
    background-image: url(/brand/img/brand_bg08.jpg);
    background-color: #e8e1d6;
  }
  /* > breadlab */
  .pageHead .categoryHead-brand-breadlab {
    background-image: url(/brand/img/brand_bg09.jpg);
    background-color: #f3edda;
  }
  
  /* about */
  .pageHead .categoryHead-about {
    background-image: url(/about/img/index_bg01.jpg);
    background-color: #07090c;
  }
  
  /* coupon */
  .pageHead .categoryHead-coupon {
    background-image: url(/coupon/img/index_bg01.jpg);
    background-color: #fcfcea;
  }
  
  /* menu */
  .pageHead .categoryHead-menu {
		height: auto !important;
		margin-top: 30px !important;
  }
	.pageHead .categoryHead-menu > .categoryHead_body {
		padding: 0 15px;
  }
	.pageHead .categoryHead-takeout {
		height: auto !important;
	}
	.pageHead .categoryHead-takeout > .categoryHead_body {
		padding: 25px 15px;
		background: url(/menu/takeout/img/index_h01.png) no-repeat 50% 50%;
    background-size: cover;
  }
  
  /* ----- container ----- */
  .container {
    padding: 30px 15px 0;
  }
  .container > *:first-child {
    margin-top: 0;
  }
	body#modal .container {
		padding: 15px 15px 20px;
	}
  
  /* contents */
  .contents {
  }
	.contents > *:first-child,
  .contents > section:first-child > *:first-child,
  .contents > .column-layout:first-child > *:first-child,
  .contents > .column-media:first-child > *:first-child {
    margin-top: 0 !important;
  }
  
  /* sidebar */
  .sidebar {
  }
  
  /* ------------------------------------------------------
   * Assist
  ------------------------------------------------------ */
  .Assist_brand {
		margin: 30px 0 0;
    background: url(/common/img/com_bg04.jpg) no-repeat 50% 50%;
		background-size: 960px;
    background-size: cover;
  }
	.Assist_brand_inner {
		padding: 15px 15px 50px;
		background-color: rgba(255, 255, 255, 0.4);
  }
	.Assist_heading {
    font-size: 1.8rem;
		font-weight: bold;
		text-align: center;
	}
	.Assist_brand_area {
		margin: 8px auto 0;
		padding: 0 20px;
	}
	.Assist_brand_list li {
		overflow: hidden;
		float: left;
		height: 70px;
		padding: 0 6px;
	}
	.Assist_brand_list li a {
		display: block;
		text-align: center;
	}
	.Assist_brand_list li .brand_logo {
		display: block;
		padding: 4px 15px;
		background-color: #fff;
		border-radius: 5px;
		text-align: center;
	}
	.Assist_brand_list li .brand_logo img {
		display: inline-block;
		max-height: 62px;
	}
	.Assist_brand_list.js-slider-brand .slick-prev,
	.Assist_brand_list.js-slider-brand .slick-next {
		top: 50%;
		display: block;
		width: 22px;
		height: 22px;
		margin-top: -2px;
		background-color: #094cc2;
		border-radius: 50%;
		z-index: 10;
	}
	.Assist_brand_list.js-slider-brand .slick-prev {
		left: -20px;
	}
	.Assist_brand_list.js-slider-brand .slick-next {
		right: -20px;
	}
	.Assist_brand_list.js-slider-brand .slick-prev::before {
		content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin-top: -4px;
		margin-left: -2px;
    border-right: #fff 1px solid;
    border-top: #fff 1px solid;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
		opacity: 1;
	}
	.Assist_brand_list.js-slider-brand .slick-next::before {
		content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin-top: -4px;
		margin-left: -6px;
    border-right: #fff 1px solid;
    border-top: #fff 1px solid;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
		opacity: 1;
	}
  
  /* ------------------------------------------------------
   * Footer
  ------------------------------------------------------ */
  .Footer {
    position: relative;
    width: 100%;
    margin-top: 48px;
  }
	.Assist + .Footer {
		margin-top: 0;
	}
  
  /* ----- FooterUtility ----- */
  .FooterUtility {
    background: url(/common/img/com_bg01.gif) repeat 0 0;
  }
  .FooterUtility_inner {
    display: table;
    width: 100%;
    margin: 0 auto;
    padding: 15px;
  }
  
  /* footer-groupCompanies */
  .footer-groupCompanies {
    display: table-cell;
    vertical-align: bottom;
    width: calc(100% - 100px);
    font-size: 11px;
    font-size: 1.1rem;
  }
  .footer-groupCompanies .groupCompanies_title {
    position: relative;
  }
  .footer-groupCompanies .groupCompanies_title:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    height: 1px;
    width: calc(100% - 7em);
    border: none;
    background-image: -webkit-linear-gradient(left, rgba(14, 115, 215, 0.5), rgba(14, 115, 215, 0.5) 1px, transparent 1px, transparent 2px);
    background-image: linear-gradient(to right, rgba(14, 115, 215, 0.5), rgba(14, 115, 215, 0.5) 1px, transparent 1px, transparent 2px);
    background-size: 3px 1px;
    background-position: top;
    background-repeat: repeat-x;
  }
  .footer-groupCompanies .groupCompanies_list {
    display: -weblit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding-top: 10px;
    padding-right: 1em;
  }
  .footer-groupCompanies .groupCompanies_list > li {
    display: table-cell;
    height: 30px;
    vertical-align: middle;
  }
  
  /* footer-social */
  .footer_social {
    display: table-cell;
    vertical-align: bottom;
    width: 100px;
  }
  .footer_social .social_list > li {
    float: right;
    margin-right: 15px;
    height: 26px;
  }
  .footer_social .social_list > li:first-child {
    margin-right: 0;
  }
  .footer-groupCompanies .groupCompanies_list > li img,
  .footer_social .social_list > li img {
    height: 100%;
  }
  
  .Footer.is-contact .footer-groupCompanies .groupCompanies_list {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    padding-right: 0;
  }
  .Footer.is-contact .footer-groupCompanies .groupCompanies_list > li {
    margin-left: 4em;
  }
  .Footer.is-contact .footer-groupCompanies .groupCompanies_list > li:first-child {
    margin-left: 0;
  }
  .Footer.is-contact .footer-groupCompanies .groupCompanies_title {
    width: calc(100% - 115px);
  }
  
  
  /* ----- FooterBody ----- */
  .FooterBody {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row-reverse wrap;
    flex-flow: row-reverse wrap;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: 0 auto;
    padding: 15px;
    background: #0e73d7;
  }
  /* footer-banner */
  .footer-banner {
    width: 22%;
  }
  .footer-banner .banner_list > li + li {
    margin-top: 10px;
  }
  
  /* footer-siteLink */
  .FooterBody_inner {
    width: 78%;
  }
  .FooterBody_inner .FooterBody_siteLink {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .FooterBody_inner .FooterBody_siteLink > li {
    width: 50%;
    margin-top: 5px;
  }
  .FooterBody_inner .FooterBody_siteLink > li:nth-child(-n+2) {
    margin-top: 0;
  }
  .FooterBody_inner .FooterBody_siteLink > li > a {
    display: inline-block;
    padding-right: 1em;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.2;
    color: #ffffff;
  }
  .FooterBody_inner .FooterBody_siteLink > li > a:not(.a-blank):after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: #ffffff 1px solid;
    border-top: #ffffff 1px solid;
    margin: -3px 0 0 5px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .FooterBody_inner .FooterBody_siteLink > li > a.a-blank:after {
    margin-left: 0.5em;
    background-position: -110px -10px;
  }
  
  /* FooterBody_identity */
  .FooterBody_identity {
    margin-top: 1em;
  }
  .FooterBody_identity .identity_logo {
    height: 20px;
  }
  .FooterBody_identity .identity_logo img {
    height: 100%;
  }
  
  /* footer-copyright */
  .footer-copyright {
    font-family:  Verdana;
    font-size: 7px;
    color: #ffffff;
  }
  
  /* ----- Pagetop ----- */
  .Pagetop {
    position: absolute;
    bottom: inherit;
    top: -40px;
    right: 0;
    text-indent: -9999px;
    width: 115px;
    height: 86px;
    background: url(/common/img/com_bg02.png) no-repeat 0 100%;
    background-size: contain;
		z-index: 99;
  }
  .Pagetop.is-fix {
    position: fixed;
    top: inherit;
    bottom: 15px;
  }
  .Pagetop > a {
    position: relative;
    display: block;
    width: 115px;
    height: 68px;
    background: url(/common/img/com_im01.png) no-repeat 50% 0;
    background-size: contain;
  }
  .Pagetop > a:before,
  .Pagetop > a:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    width: 12px;
    height: 2px;
    border-radius: 4px;
    background: #0e73d7;
    -webkit-transition: margin 0.3s;
    transition: margin 0.3s;
  }
  .Pagetop > a:after {
    left: 50%;
    margin: -2px 0 0 -3px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .Pagetop > a:before {
    right: 50%;
    margin: -2px -1px 0 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .Pagetop > a:hover:before,
  .Pagetop > a:hover:after {
    margin-top: -5px;
  }
  
  /* ------------------------------------------------------
   * Clearfix
  ------------------------------------------------------ */
  .gnavList:after,
  .FooterUtility .social_list:after,
  .FooterBody_inner .FooterBody_siteLink:after,
  .FooterBody_identity:after {
    clear: both;
    content: "";
    display: block;
  }
}
