@charset "UTF-8";
/*
 * 幅定義
 *
 */
/*
 * 色定義
 *
 */
/**
 * header レイアウト
 * - 全体
 * - グローバルナビ
 * - サブメニュー
 */
/*** 全体 ***/
.b-header {
  overflow: hidden;
  margin: 15px 0 0;
  padding: 0 10px 25px;
  border-bottom: 5px solid #E50012;
}
.b-header--left {
  display: inline-block;
  float: left;
}
.b-header--left p {
  margin-bottom: 7px;
  font-size: 14px;
}
.b-header--left a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.b-header--left span {
  display: block;
  color: #000;
  margin-left: 10px;
  font-size: 20px;
  font-weight: bold;
}
.b-header--left.b-directly-shops a img {
  width: 130px;
}
.b-header--right {
  float: right;
  display: flex;
  align-items: center;
  margin: 25px 0 0 0;
}

.b-header_sp {
  display: none;
}

/*** グローバルナビ ***/
.b-globalNavi {
  margin: 0 30px 0 0;
  float: left;
}
.b-globalNavi li {
  display: block;
  float: left;
  margin-right: 30px;
}
.b-globalNavi li:last-child {
  margin-right: 0;
}
.b-globalNavi li a {
  display: block;
  font-size: 14px;
  padding: 10px 0 0;
  color: #000;
}

/*** サブメニュー ***/
.b-sumMenu {
  float: right;
  display: flex;
  align-items: center;
}
.b-sumMenu a:nth-child(1), .b-sumMenu a:nth-child(2) {
  display: inline-block;
  margin-right: 10px;
  width: 138px;
  height: 45px;
  position: relative;
  background-color: #E50012;
  padding: 12px 0 0 15px;
  color: #FFF;
  font-size: 13px;
  border-radius: 5px;
}
.b-sumMenu a:nth-child(1) img, .b-sumMenu a:nth-child(2) img {
  margin-right: 10px;
}
.b-sumMenu a:nth-child(1) {
  padding: 12px 0 0 22px;
}
.b-sumMenu a:nth-child(2) img {
  position: relative;
  top: -4px;
}
.b-sumMenu a:nth-child(3) {
  margin-left: 10px;
  font-size: 23px;
  color: #000;
  font-weight: bold;
}
.b-sumMenu a:nth-child(3) img {
  margin-right: 5px;
  vertical-align: middle;
}

/**
 * スマホレスポンシブ対応
 */
@media screen and (max-width: 750px) {
  /**
   * header レイアウト
   * - 全体
   * - グローバルナビ
   */
  /*** 全体 ***/
  .b-header {
    display: none;
  }
  .b-header_sp {
    display: block;
    margin: 10px 0 0;
    overflow: hidden;
  }
  .b-header_sp--contents {
    display: flex;
    align-items: flex-end;
    padding: 0 1% 0 3%;
    margin-bottom: 10px;
  }
  .b-header_sp--contents .b-logo {
    width: 84%;
    margin-right: 5%;
  }
  .b-header_sp--contents .b-logo h1 {
    margin-top: 5px;
  }
  .b-header_sp--contents .b-logo h1 a {
    display: flex;
    width: 100%;
    align-items: center;
  }
  .b-header_sp--contents .b-logo h1 img {
    width: 40%;
    margin-right: 3%;
  }
  .b-header_sp--contents .b-logo h1 span {
    color: #000;
    font-weight: bold;
    font-size: 13px;
  }
  .b-header_sp--contents .b-logo p {
    font-size: 12px;
  }
  .b-header_sp--contents .b-hamburger {
    width: 12%;
    margin-right: 0;
  }
  .b-header_sp--contents img {
    width: 100%;
  }

  .b-h-menuList {
    width: 100%;
    overflow: hidden;
    display: flex;
  }
  .b-h-menuList li {
    width: 49.5%;
    margin-right: 1%;
  }
  .b-h-menuList li:last-child {
    margin-right: 0;
  }
  .b-h-menuList li a {
    display: block;
  }
  .b-h-menuList li a img {
    width: 100%;
  }
}
.b-header_sp .b-hamburger {
  cursor: pointer;
  z-index: 20;
}
.b-header_sp .b-hamburger div {
  display: flex;
  flex-wrap: wrap;
  align-content: space-around;
  width: 100%;
  height: 58px;
  padding: 10px 5px;
  box-sizing: border-box;
  background-color: #F2F2F2;
}
.b-header_sp .b-hamburger div span {
  width: 52%;
  height: 2px;
  margin: 0 auto;
  background-color: #CCCCCC;
  transition: opacity 0.1s ease, transform 0.3s ease-in-out;
}
.b-header_sp .b-hamburger .clicked {
  background-color: #FFF;
  padding: 14px;
}
.b-header_sp .b-hamburger .clicked span {
  width: 90%;
}
.b-header_sp .b-hamburger .clicked span:nth-child(1) {
  transform: translateY(10px) rotate(135deg);
}
.b-header_sp .b-hamburger .clicked span:nth-child(2) {
  opacity: 0;
}
.b-header_sp .b-hamburger .clicked span:nth-child(3) {
  transform: translateY(-10px) rotate(-135deg);
}

/* ナビゲーションのメニュー */
.b-header_sp #nav_menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 10;
  background-color: #FFF;
}
.b-header_sp #nav_menu.opened {
  visibility: visible;
  opacity: 1;
  overflow: scroll;
}
.b-header_sp #nav_menu .b-menuList {
  width: 60%;
  margin: 60px auto;
}
.b-header_sp #nav_menu .b-menuList--item {
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 16px;
  color: #000;
}
.b-header_sp #nav_menu .b-menuList--item > a {
  display: inline-block;
  color: #000;
  font-weight: bold;
  font-size: 16px;
}
.b-header_sp #nav_menu .b-menuList--item:last-child {
  margin-bottom: 0;
}
.b-header_sp #nav_menu .b-childList {
  margin: 2px 0 0 3px;
}
.b-header_sp #nav_menu .b-childList--item {
  margin-bottom: 5px;
}
.b-header_sp #nav_menu .b-childList--item a {
  display: inline-block;
  color: #9e9e9e;
  font-size: 14px;
}
.b-header_sp #nav_menu .b-childList--item:last-child {
  margin-bottom: 0;
}
.b-header_sp #nav_menu .b-childList--item:before {
  content: "ー";
  display: inline-block;
  margin-right: 10px;
  color: #C2C1BE;
}

@media screen and (max-width: 600px) {
  .b-header_sp .b-hamburger div {
    height: 45px;
  }

  .b-header_sp .b-hamburger .clicked {
    padding: 8px;
  }
}
@media screen and (max-width: 440px) {
  .b-header_sp .b-hamburger div {
    height: 40px;
  }

  .b-header_sp .b-hamburger .clicked {
    padding: 5px;
  }
}
@media screen and (max-width: 400px) {
  .b-header_sp .b-hamburger div {
    height: 35px;
  }

  .b-header_sp .b-hamburger .clicked {
    padding: 3px;
  }
}
/*
 * 幅定義
 *
 */
/*
 * 色定義
 *
 */
/*
 * 幅定義
 *
 */
/*
 * 色定義
 *
 */
/*---------------------------------------------
	Browser Default Initialization
  ---------------------------------------------*/
html {
  height: 100%;
  overflow-y: scroll;
}

body, div, dl, dt, dd, ul, ul li, h1, h2, h3, h4, h5, h6,
pre, form, fieldset, input, textarea, p, blockquote, th, td,
section, nav, article, aside, hgroup, header, address,
figure, figcaption {
  margin: 0;
  padding: 0;
  font-weight: 400;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

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

caption, th {
  text-align: left;
}

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

object, embed {
  vertical-align: top;
}

hr, legend {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

img, abbr, acronym, fieldset {
  border: 0;
}

img {
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

ul li {
  list-style-type: none;
}

/*---------------------------------------------
	body
  ---------------------------------------------*/
body {
  font-size: 15px;
  line-height: 1.7;
  text-align: left;
  -webkit-text-size-adjust: none;
}

/*---------------------------------------------
	Anchor
  ---------------------------------------------*/
a {
  outline: none;
  text-decoration: none;
}
a img {
  border: none;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: underline;
}

/*---------------------------------------------
	list
  ---------------------------------------------*/
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*---------------------------------------------
	clearfix
  ---------------------------------------------*/
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*¥*/
  /*/
  height:auto;
  overflow:hidden;
  /**/
}

/*---------------------------------------------
	input
  ---------------------------------------------*/
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  box-sizing: content-box;
  text-indent: 0.01px;
  text-overflow: "";
}
select::-ms-expand {
  display: none;
}

body {
  font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", sans-serif, "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana;
  color: #000;
}

input {
  font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", sans-serif, "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana;
}

.clr {
  clear: both;
}

img.logo {
  width: 186px;
  height: auto;
}

input, select, textarea {
  font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", sans-serif, "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana;
}
input:hover, select:hover, textarea:hover {
  cursor: pointer;
}

a:hover {
  text-decoration: none;
  opacity: 0.8;
}

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

.l-left {
  float: left;
}

.l-right {
  float: right;
}

/*** 共通スタイル ***/
.font-14 {
  font-size: 14px;
}

.font-12 {
  font-size: 12px;
}

/*PCで無効*/
.pc_hid {
  display: none;
}

.sp_hid {
  display: block;
}

/*スマートフォンで有効*/
@media screen and (max-width: 750px) {
  .pc_hid {
    display: block;
  }

  .sp_hid {
    display: none;
  }
}
/**
 * footer レイアウト
 * - 全体
 * - エリアコンテンツ
 * - グループコンテンツ
 * - 共通処理
 * - メニューコンテンツ
 */
/*** 全体 ***/
.b-footer {
  border-top: 5px solid #E50012;
}
.b-footer--contents {
  margin: 30px 0;
}
.b-footer--menu {
  background-color: #E50012;
  padding: 10px 0;
  text-align: center;
}
.b-footer--menu p {
  color: #FFF;
  font-size: 14px;
}
.b-footer .border-line {
  width: 100%;
  height: 5px;
  background-color: #F2F2F2;
}

/*** エリアコンテンツ ***/
.area-contents {
  width: 1000px;
  margin: 0 auto 40px;
}
.area-contents--title {
  margin-bottom: 20px;
}
.area-contents--title img {
  vertical-align: sub;
}
.area-contents--title h2 {
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
  margin-left: 8px;
}
.area-contents > p {
  font-size: 12px;
}

.area-box {
  margin-bottom: 15px;
}
.area-box h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

/*** グループコンテンツ ***/
.group-contents {
  width: 1000px;
  margin: 40px auto;
  overflow: hidden;
}
.group-contents h2 {
  position: relative;
}
.group-contents h2 span {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  padding-right: 20px;
  background: #FFF;
}
.group-contents h2:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #E6E6E6;
}

.group-box {
  padding-bottom: 25px;
  margin-top: 15px;
  overflow: hidden;
}
.group-box--title {
  float: left;
}
.group-box--title h3 {
  text-align: center;
  font-weight: bold;
  margin-top: 5px;
}
.group-box ul {
  float: left;
  width: 832px;
  margin-left: 30px;
}

.group-1 {
  border-bottom: 1px solid #E6E6E6;
}

/*** 共通処理 ***/
.b-f-contentsList {
  display: flex;
  flex-wrap: wrap;
}
.b-f-contentsList--item {
  margin: 0 25px 5px 0;
}
.b-f-contentsList--item a {
  display: block;
  font-size: 14px;
}

/*** メニューコンテンツ ***/
.b-footerList {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}
.b-footerList li a {
  color: #FFF;
  font-size: 14px;
}
.b-footerList li:after {
  content: "";
  display: inline-block;
  height: 15px;
  width: 1px;
  background-color: #FFF;
  margin: 0 20px;
  position: relative;
  top: 2px;
}
.b-footerList li:last-child:after {
  content: none;
}

/**
 * スマホレスポンシブ対応
 */
@media screen and (max-width: 750px) {
  /**
   * footer レイアウト
   * - 全体
   * - エリアコンテンツ
   * - グループコンテンツ
   * - 共通処理
   * - メニューコンテンツ
   */
  /*** 全体 ***/
  .b-footer {
    border-top: 0;
  }
  .b-footer--contents {
    display: none;
  }
  .b-footer--menu p {
    font-size: 12px;
  }

  /*** メニューコンテンツ ***/
  .b-footerList {
    width: 85%;
    flex-wrap: wrap;
    margin: 10px auto;
  }
  .b-footerList li {
    margin-bottom: 10px;
  }
  .b-footerList li:nth-child(1) {
    width: 30%;
  }
  .b-footerList li:nth-child(2) {
    width: 70%;
  }
  .b-footerList li:nth-child(3) {
    width: 60%;
  }
  .b-footerList li:nth-child(4) {
    width: 40%;
  }
  .b-footerList li:after {
    content: none;
  }
}
/*
 * 幅定義
 *
 */
/*
 * 色定義
 *
 */
/*---------------------------------------------
	Browser Default Initialization
  ---------------------------------------------*/
html {
  height: 100%;
  overflow-y: scroll;
}

body, div, dl, dt, dd, ul, ul li, h1, h2, h3, h4, h5, h6,
pre, form, fieldset, input, textarea, p, blockquote, th, td,
section, nav, article, aside, hgroup, header, address,
figure, figcaption {
  margin: 0;
  padding: 0;
  font-weight: 400;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

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

caption, th {
  text-align: left;
}

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

object, embed {
  vertical-align: top;
}

hr, legend {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

img, abbr, acronym, fieldset {
  border: 0;
}

img {
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

ul li {
  list-style-type: none;
}

/*---------------------------------------------
	body
  ---------------------------------------------*/
body {
  font-size: 15px;
  line-height: 1.7;
  text-align: left;
  -webkit-text-size-adjust: none;
}

/*---------------------------------------------
	Anchor
  ---------------------------------------------*/
a {
  outline: none;
  text-decoration: none;
}
a img {
  border: none;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: underline;
}

/*---------------------------------------------
	list
  ---------------------------------------------*/
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*---------------------------------------------
	clearfix
  ---------------------------------------------*/
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*¥*/
  /*/
  height:auto;
  overflow:hidden;
  /**/
}

/*---------------------------------------------
	input
  ---------------------------------------------*/
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  box-sizing: content-box;
  text-indent: 0.01px;
  text-overflow: "";
}
select::-ms-expand {
  display: none;
}

body {
  font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", sans-serif, "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana;
  color: #000;
}

input {
  font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", sans-serif, "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana;
}

.clr {
  clear: both;
}

img.logo {
  width: 186px;
  height: auto;
}

input, select, textarea {
  font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", sans-serif, "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana;
}
input:hover, select:hover, textarea:hover {
  cursor: pointer;
}

a:hover {
  text-decoration: none;
  opacity: 0.8;
}

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

.l-left {
  float: left;
}

.l-right {
  float: right;
}

/*** 共通スタイル ***/
.font-14 {
  font-size: 14px;
}

.font-12 {
  font-size: 12px;
}

/*PCで無効*/
.pc_hid {
  display: none;
}

.sp_hid {
  display: block;
}

/*スマートフォンで有効*/
@media screen and (max-width: 750px) {
  .pc_hid {
    display: block;
  }

  .sp_hid {
    display: none;
  }
}
/**
 * メイン レイアウト
 * - 全体
 * - 共通スタイル
 */
/*** 全体 ***/
@media screen and (max-width: 1440px) {
  body {
    min-width: 1440px;
  }
}
#root {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}

.b-main--title {
  background-color: #fef2f2;
  border-bottom: 2px solid #f5cfd7;
}
.b-main--title:after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background-color: #FFF;
}
.b-main--title h2 {
  width: 1000px;
  margin: 0 auto;
  padding: 25px 0;
  font-weight: bold;
  font-size: 20px;
}

/*** パンくずリスト ***/
.breadcrumb {
  margin-bottom: 60px;
}
.breadcrumb li {
  display: inline-block;
  font-size: 14px;
}
.breadcrumb li a {
  color: #000;
}
.breadcrumb li:after {
  content: "＞";
  padding: 0 0.2em 0 0.6em;
}
.breadcrumb li:last-child:after {
  content: "";
}

/*** コンテンツ全般 ***/
/*** サイドバー全般 ***/
/*** 矢印スタイル***/
.arrow {
  position: relative;
  display: inline-block;
  padding: 0 0 0 22px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  font-size: 15px;
}
.arrow::before, .arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.arrow_pt-1::before {
  left: 4px;
  box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 6px solid #CCCCCC;
}

/**
 * スマホレスポンシブ対応
 */
@media screen and (max-width: 750px) {
  body {
    min-width: 100%;
  }

  .b-main--title h2 {
    width: auto;
    padding: 25px 10px;
  }

  .breadcrumb {
    margin-bottom: 30px;
  }
}

/*# sourceMappingURL=l-main.css.map */
