@charset "UTF-8";
/* ★★このcssはscssをコンパイルしたcssです。cssを記述する場合は、こちらに記述せず、merge.cssに記述してください。★★ */
/* ==============================================
CSS information

 file name  : style.css
 style info : style.scssコンパイルしたファイル。

 このスタイルシートの構成
 style.scss参照
=============================================== */
/* ------------------------------------
  reset
------------------------------------ */
html {
  overflow-y: scroll;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
  /* 10px */
}

body {
  margin: 0;
  padding: 0;
  /* 英数の改行 */
  word-break: break-all;
  word-wrap: break-word;
  line-height: 1.6;
  -webkit-text-size-adjust: none;
}

h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p,
header, hgroup, section, article, aside, hgroup, footer, figure, figcaption, nav {
  margin: 0;
  padding: 0;
  font-size: 100%;
}

pre, form, fieldset, input, textarea,
div, blockquote, th, td {
  margin: 0;
  padding: 0;
}

article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6, em, b {
  font-weight: normal;
}

ul, ol {
  list-style: none;
}

li {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  /* 印刷時の要素内での改ページをしない */
  page-break-inside: avoid;
  empty-cells: show;
}

td {
  vertical-align: top;
}

a {
  text-decoration: none;
}

caption {
  text-align: left;
}

q:before, q:after {
  content: '';
}

object, embed {
  vertical-align: top;
}

hr, legend {
  display: none;
}

img, abbr, acronym, fieldset {
  border: none;
  vertical-align: bottom;
  /* listにて隙間ができるのを防ぐ kunihro*/
}

/* clearfix */
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

@media screen and (max-width: 767px) {
  .wrap {
    overflow: hidden;
  }
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/*=================================================
 * 全ページ共通スタイル
 * ================================================ */
/* ------------------------------------
  管理者ホームへのリンク
------------------------------------ */
.adminMenu {
  background-color: #0645A2;
  border-bottom: #043885 2px solid;
  padding: 5px 10px;
  text-align: right;
}
.adminMenu a {
  background-color: #043885;
  color: #FFF;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  letter-spacing: 0.1em;
}
.adminMenu a:hover {
  background: rgba(0, 0, 0, 0.1);
}
.adminMenu p {
  height: 30px;
  line-height: 30px;
}

/*=================================================
 * 全ページ共通スタイル
 * ================================================ */
/* ------------------------------------
  default
------------------------------------ */
a {
  color: #3D3527;
  /* Firefoxで点線が出ない処理　kunihiro */
}

td,
th {
  vertical-align: top;
  text-align: left;
}

hr.key_color {
  height: 1px;
  border: none;
  border-top: 1px dotted #E01F06;
}

body {
  font-family: "メイリオ", Verdana, Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  /* 16px */
  color: #3D3527;
  line-height: 1.6;
  margin: 0 auto !important;
  text-align: center;
  background-color: #FFF8F0;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
    /* 14px */
  }
}

#Frame {
  text-align: left;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  #Frame {
    padding-top: 0;
  }
}

.page_cont {
  background: url("../img_cmn/bg_cont_mainimg_02.png") 50% -70px repeat-y fixed;
}
@media screen and (max-width: 767px) {
  .page_cont {
    background: none;
  }
  .page_cont::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 100vh;
    background: url("../img_cmn/bg_cont_mainimg_02_sp@2x.png") 100% -68px repeat-y;
    background-size: 375px auto;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  .page_cont::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 100vh;
    background: url("../img_cmn/bg_cont_mainimg_02_sp_landscape@2x.png") 100% -134px repeat-y;
    background-size: 665px auto;
  }
}

/* コンテンツ背景（白）
------------------------------------ */
.cont_bg {
  background-color: #FFF;
  margin-bottom: 200px;
  padding-top: 1px;
}

/* コンテンツinner（960px）
------------------------------------ */
.cont_inner {
  width: 960px;
  box-sizing: border-box;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .cont_inner {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .cont_inner .wrap {
    padding-top: 60px;
  }
}
.cont_inner > .cont_inner {
  width: auto;
}

/* メディアクエリによる非表示用クラス
------------------------------------ */
/* タブレット以上の画面だけで表示するコンテンツ（SP画面で非表示にする）
--------------- */
@media screen and (max-width: 767px) {
  .pc_cont {
    display: none;
  }
}
/* SP画面だけで表示するコンテンツ（タブレット以上の画面で非表示にする）
--------------- */
@media screen and (min-width: 768px) {
  .sp_cont {
    display: none;
  }
}
/* 共通_ModulesListPage
------------------------------------ */
#content .cont_list .text-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 1.5;
}
#content .cont_list .text-ellipsis.multiline {
  white-space: normal;
  max-height: 3em;
  position: relative;
}
#content .cont_list .text-ellipsis.multiline::after {
  content: "…";
  background: #fff;
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
  padding-left: 10px;
}
#content .cont_list .text-ellipsis.line-2 {
  max-height: 3em;
}
#content .cont_list .text-ellipsis.line-3 {
  max-height: 4.5em;
}
#content .cont_list .text-ellipsis.line-4 {
  max-height: 6em;
}
#content .cont_list .text-ellipsis.line-5 {
  max-height: 7.5em;
}

/* ------------------------------------
/* 共通パーツ（テキスト）
------------------------------------ */
.txt_note {
  font-size: 1.2rem;
}

/* ------------------------------------
/* 共通パーツ（アイコン）
------------------------------------ */
.ico_link_blank {
  margin-left: 5px;
}

/* ------------------------------------
/* 共通パーツ（ボックス、カラム）
------------------------------------ */
/* 背景色有りbox(グレー)
------------------------------------ */
.bg_box {
  background-color: #EEE;
  padding: 30px 20px 1px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .bg_box {
    padding: 20px 15px 1px;
  }
}
.bg_box .page_subtl:first-child, .bg_box .page_subtl02:first-child, .bg_box .page_subtl03:first-child {
  margin-top: 0;
}
.bg_box p {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .bg_box p {
    margin-bottom: 15px;
  }
}

/* ボーダーbox(グレー)
------------------------------------ */
.border_box {
  border: #CCC 2px solid;
  padding: 30px 30px 1px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .border_box {
    padding: 20px 20px 1px;
  }
}
.border_box .border_box_inner {
  border-bottom: #CCC 2px solid;
}
.border_box .page_subtl:first-child, .border_box .page_subtl02:first-child, .border_box .page_subtl03:first-child {
  margin-top: 0;
}
.border_box p {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .border_box p {
    margin-bottom: 15px;
  }
}

/* 複数カラムボックス
------------------------------------ */
.multiple_box {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .multiple_box {
    flex-direction: column;
  }
}
.multiple_box .btn a {
  margin-top: 0;
}

.multiple_box_two .multiple_box_item {
  width: 460px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .multiple_box_two .multiple_box_item {
    width: auto;
  }
}
.multiple_box_two .multiple_box_item:first-child {
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .multiple_box_two .multiple_box_item:first-child {
    margin-right: 0;
  }
}

/* ボタン右上配置用ボックス
------------------------------------ */
.btn_right_box {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .btn_right_box {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .btn_right_box .btn {
    margin-top: 10px;
  }
}
.btn_right_box .btn a {
  margin-top: 0;
}

/* ------------------------------------
/* 共通パーツ（リスト）
------------------------------------ */
/* アイコン付きリスト（小さい黒丸）
------------------------------------ */
.base_list > li {
  margin-bottom: .6em;
  text-indent: -14px;
  padding-left: 14px;
}
.base_list > li:before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  display: inline-block;
  background-color: #3D3527;
  margin-right: 10px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

/* 番号付きリスト
------------------------------------ */
.base_ol_list {
  counter-reset: item;
}
.base_ol_list > li {
  margin-bottom: 30px;
  text-indent: -1.5em;
  padding-left: 1.5em;
}
@media screen and (max-width: 767px) {
  .base_ol_list > li {
    margin-bottom: 15px;
  }
}
.base_ol_list > li:before {
  counter-increment: item;
  content: counter(item) ".";
  padding-right: .5em;
}

/* ------------------------------------
/* 共通パーツ（パーツ）
------------------------------------ */
/* 関連リンク
------------------------------------ */
.related_link_box .tl_box {
  font-size: 24px;
  margin-bottom: 20px;
}
.related_link_box ul {
  display: flex;
  flex-wrap: wrap;
}
.related_link_box li {
  margin-right: 3.2%;
  width: 31.2%;
  box-sizing: border-box;
}
.related_link_box li:nth-child(3n) {
  margin-right: 0;
}
.related_link_box a {
  font-size: 20px;
  display: block;
  margin-bottom: 20px;
  -moz-box-shadow: 0 0 1px 1px #f0ecec;
  -webkit-box-shadow: 0 0 1px 1px #f0ecec;
  box-shadow: 0 0 1px 1px #f0ecec;
  padding: 34px 32px;
  position: relative;
}
.related_link_box a:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 80px;
  background: #E01F06;
  left: 10px;
  top: 50%;
  margin-top: -40px;
}
.related_link_box a::after {
  content: "";
  position: absolute;
  background: url("../img_cmn/ico_arrow.svg") no-repeat;
  background-size: 8px auto;
  width: 8px;
  height: 12px;
  margin-top: -6px;
  right: 10px;
  top: 50%;
}
.related_link_box a:hover {
  opacity: 0.7;
}

/* ------------------------------------
/* sp_メニューの黒overlay
------------------------------------ */
#overlayShadow {
  z-index: 9999 !important;
}

/* ------------------------------------
/* sp_モーダルダイアログ（ブラウザ標準の表示ができないため）
------------------------------------ */
.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal .modal-dialog {
  margin: 20px;
  background-color: #FFF;
  padding: 30px 20px;
}
.modal .modal-body p {
  margin-bottom: 20px;
}
.modal .modal-footer {
  display: flex;
  justify-content: center;
  margin: 0 5%;
}
.modal .modal-footer .btn {
  border: 1px solid #CCC;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
  width: 35%;
  margin: 0 15px;
  line-height: 50px;
  box-sizing: border-box;
}

/*=================================================
 * ログイン後表示される　admin-header（サイト別微調整）
 * ================================================ */
.admin-header {
  overflow: hidden;
  max-height: none !important;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .admin-header {
    top: 60px;
  }
}
.admin-header .admin-navbar {
  overflow: hidden;
}

/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
 * 全ページ共通スタイル
 * ================================================ */
/* ------------------------------------
  header　共通
------------------------------------ */
/* 採用サイト、spメニュー
------------------------------------ */
.header_btn_box .btn_rectuit {
  position: relative;
}
.header_btn_box .btn_rectuit .btn_rectuit_link {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #404040;
  color: #FFF;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  display: block;
  box-sizing: border-box;
  border-radius: 4px;
  text-align: center;
  font-size: 1.6rem;
  transition: 0.5s;
  /*
  &::after {
  	content: '';
  	display: inline-block;
  	width: 8px;
  	height: 8px;
  	margin: 0 0 3px 15px;
  	border-right: 2px solid #fff;
  	border-bottom: 2px solid #fff;
  	transform: rotate(45deg);
  	//sp
  	@include pcmq(sm) {
  	 margin: 0 0 3px 5px;
  	}
  }
  */
}
.header_btn_box .btn_rectuit .btn_rectuit_link:hover {
  opacity: 0.8;
}
.header_btn_box .btn_rectuit:hover .header_rectuit_link {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .header_btn_box .btn_rectuit:hover .header_rectuit_link::after {
    content: "×　閉じる";
    display: block;
    position: absolute;
    pointer-events: none;
    background-color: #9B9B9B;
    color: #FFF;
    text-align: right;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
  }
}
.header_btn_box .btn_menu a {
  display: block;
  color: #404040;
  width: 40px;
  padding-top: 24px;
  text-align: center;
  margin-left: 10px;
  font-size: 1rem;
  position: relative;
}
.header_btn_box .btn_menu a::before {
  content: "";
  position: absolute;
  background: url("../img_cmn/ico_menu.svg") no-repeat 0 0;
  background-size: 24px auto;
  width: 24px;
  height: 19px;
  top: 2px;
  left: 8px;
}

/* 募集要項
------------------------------------ */
.header_rectuit_link {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 55px;
  right: 0;
  background-color: #9B9B9B;
  padding: 20px;
  width: 560px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .header_rectuit_link {
    width: auto;
    margin: 0 15px;
    top: 70px;
    right: 0;
    padding: 20px 10px 20px;
  }
}
.header_rectuit_link::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 25px 20px;
  border-color: transparent transparent #9B9B9B transparent;
  position: absolute;
  top: -15px;
  right: 60px;
}
@media screen and (max-width: 767px) {
  .header_rectuit_link::before {
    top: -20px;
    right: 65px;
  }
}
.header_rectuit_link .header_rectuit_link_bnr_box {
  margin-bottom: 20px;
}
.header_rectuit_link .header_rectuit_link_bnr_box a {
  display: block;
  transition: 0.5s;
}
.header_rectuit_link .header_rectuit_link_bnr_box a:hover {
  opacity: 0.8;
}
.header_rectuit_link .header_rectuit_link_bnr_box img {
  width: 100%;
}
.header_rectuit_link .requirement_list_outer {
  display: flex;
  justify-content: space-between;
}
.header_rectuit_link .requirement_list {
  border-top: #FFF 1px solid;
  width: 49%;
}
@media screen and (max-width: 767px) {
  .header_rectuit_link .requirement_list {
    width: 48%;
  }
}
.header_rectuit_link .requirement_list_item {
  border-bottom: #FFF 1px solid;
}
.header_rectuit_link .requirement_list_item a {
  color: #FFF;
  font-size: 1.3rem;
  padding: 10px 0;
  display: block;
  position: relative;
  transition: 0.5s;
}
.header_rectuit_link .requirement_list_item a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .header_rectuit_link .requirement_list_item a {
    font-size: 1.2rem;
  }
}
.header_rectuit_link .requirement_list_item a::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -5px;
}
@media screen and (max-width: 767px) {
  .header_rectuit_link .requirement_list_item a::after {
    right: 3px;
  }
}

/* ------------------------------------
  header_cmn
------------------------------------ */
.header_cmn {
  width: 1000px;
  height: 120px;
  padding: 20px;
  box-sizing: border-box;
  background-color: #FFF;
  margin: 0 auto 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
  /* ロゴ
  ------------------------------------ */
  /* グローバルナビ
	------------------------------------ */
  /* 採用サイト、spメニュー
  ------------------------------------ */
}
@media screen and (max-width: 767px) {
  .header_cmn {
    width: 100%;
    height: 60px;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }
  .header_cmn.no_follow {
    position: absolute;
  }
}
@media screen and (max-width: 767px) {
  .header_cmn .cont_inner {
    display: flex;
    justify-content: space-between;
    padding-right: 5px;
  }
}
.header_cmn .logo_box {
  position: relative;
}
.header_cmn .logo_box a {
  display: flex;
  align-items: center;
  width: 340px;
}
@media screen and (max-width: 767px) {
  .header_cmn .logo_box a {
    max-width: 160px;
  }
}
.header_cmn .logo_box a .logo_mark {
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 767px) {
  .header_cmn .logo_box a .logo_mark {
    width: 40px;
    height: auto;
  }
}
.header_cmn .logo_box a .logo_type {
  margin: 20px 0 0 20px;
}
@media screen and (max-width: 767px) {
  .header_cmn .logo_box a .logo_type {
    max-width: 110px;
    height: auto;
    margin: 0 0 0 5px;
  }
}
.header_cmn .logo_box .tagline {
  position: absolute;
  top: 2px;
  left: 100px;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .header_cmn .logo_box .tagline {
    display: none;
  }
}
.header_cmn .gnav {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
@media screen and (max-width: 767px) {
  .header_cmn .gnav {
    display: none;
  }
}
.header_cmn .gnav .gnav_list {
  display: flex;
}
.header_cmn .gnav .gnav_list .gnav_list_item {
  border-left: #CCC 1px solid;
}
.header_cmn .gnav .gnav_list .gnav_list_item:last-child {
  border-right: #CCC 1px solid;
}
.header_cmn .gnav .gnav_list a {
  padding: 10px 20px;
  transition: 0.5s;
}
.header_cmn .gnav .gnav_list a:hover {
  opacity: 0.8;
}
.header_cmn .gnav .gnav_list a:hover {
  color: #E01F06;
}
.header_cmn .header_btn_box {
  position: absolute;
  top: 20px;
  right: 20px;
}
@media screen and (max-width: 767px) {
  .header_cmn .header_btn_box {
    position: static;
    display: flex;
  }
}
.header_cmn .header_btn_box .btn_rectuit {
  position: static;
}
.header_cmn .header_btn_box .btn_rectuit .btn_rectuit_link {
  width: 160px;
  height: 36px;
  line-height: 36px;
}
@media screen and (max-width: 767px) {
  .header_cmn .header_btn_box .btn_rectuit .btn_rectuit_link {
    width: 90px;
    height: auto;
    font-size: 1.2rem;
    line-height: 36px;
  }
}
.header_cmn .header_btn_box .btn_rectuit:hover .header_rectuit_link {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .header_cmn .header_btn_box .btn_rectuit:hover .header_rectuit_link::after {
    bottom: -40px;
    right: 0;
  }
}

/* ------------------------------------
  グローバルナビmin（スクロール後に表示）
------------------------------------ */
.gNav_min_wrap {
  width: 100%;
  position: fixed;
  margin-top: -40px;
  z-index: 10;
  background-color: #FFF;
  -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.06);
  display: none;
  height: 80px;
  padding: 10px 0;
  box-sizing: border-box;
  /* ロゴ
	------------------------------------ */
  /* グローバルナビ
	------------------------------------ */
  /* 採用サイト、spメニュー
	------------------------------------ */
}
@media screen and (max-width: 767px) {
  .gNav_min_wrap {
    display: none !important;
  }
}
.gNav_min_wrap.header_no_follow {
  display: none !important;
}
.gNav_min_wrap .cont_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gNav_min_wrap .logo a {
  display: flex;
  align-items: center;
}
.gNav_min_wrap .logo a .logo_type {
  margin: 0 0 0 20px;
}
.gNav_min_wrap .gnav .gnav_list {
  display: flex;
}
.gNav_min_wrap .gnav .gnav_list .gnav_list_item {
  border-left: #CCC 1px solid;
}
.gNav_min_wrap .gnav .gnav_list .gnav_list_item:last-child {
  border-right: #CCC 1px solid;
}
.gNav_min_wrap .gnav .gnav_list a {
  padding: 10px 20px;
  font-size: 1.4rem;
  transition: 0.5s;
}
.gNav_min_wrap .gnav .gnav_list a:hover {
  opacity: 0.8;
}
.gNav_min_wrap .gnav .gnav_list a:hover {
  color: #E01F06;
}
.gNav_min_wrap .header_btn_box {
  height: 40px;
}
.gNav_min_wrap .header_btn_box .btn_rectuit .btn_rectuit_link {
  width: 160px;
  height: 40px;
  line-height: 40px;
}

/* ------------------------------------
  SP版メニュー
------------------------------------ */
#overlayShadow {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

[off-canvas] {
  background: #fff !important;
}

.sidemenu_box {
  position: relative;
  text-align: left;
}
.sidemenu_box .sidemenu_box_inner {
  height: 100%;
  width: 100%;
}
.sidemenu_box .sidemenu_box_inner .tl_box_main .logo_box {
  margin-right: 50px;
}
.sidemenu_box .sidemenu_box_inner .tl_box_main .logo a {
  display: flex;
  align-items: center;
  padding: 14px 10px;
}
.sidemenu_box .sidemenu_box_inner .tl_box_main .logo .logo_mark {
  margin-right: 5px;
}
.sidemenu_box .sidemenu_box_inner .tl_box_main .btn_box {
  position: absolute;
  top: 18px;
  right: 10px;
}
.sidemenu_box .sidemenu_box_inner .tl_box_main .btn_box a {
  display: block;
  text-align: center;
  font-size: 1rem;
}
.sidemenu_box .sidemenu_box_inner .tl_box_main .btn_box .ico {
  display: block;
  margin: 0 auto 3px;
}
.sidemenu_box .sidemenu_box_inner .sitemap_list01 {
  margin: 0 0 30px;
}
.sidemenu_box .sidemenu_box_inner .sitemap_list01_item {
  width: 100%;
}
.sidemenu_box .sidemenu_box_inner .sitemap_list02_item a {
  font-size: 1.2rem;
}
.sidemenu_box .sidemenu_box_inner .sitemap_list02_item:nth-child(1) {
  padding-right: 10px;
}
.sidemenu_box .sidemenu_box_inner .sitemap_list02_item:nth-child(2) {
  padding-left: 10px;
}
.sidemenu_box .sidemenu_box_inner .sitemap_list03 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  margin: 20px 10px 0;
}
.sidemenu_box .sidemenu_box_inner .sitemap_list03_item {
  padding: 3px;
}
.sidemenu_box .sidemenu_box_inner .btn_close {
  padding: 20px;
}
.sidemenu_box .sidemenu_box_inner .btn_close a {
  display: block;
  border: 2px solid #CCC;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  font-size: 12px;
}
.sidemenu_box .sidemenu_box_inner .btn_close a img {
  vertical-align: middle;
  margin-right: 10px;
}

/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
 * 全ページ共通スタイル
 * ================================================ */
/* ------------------------------------
  ビジネスパートナー募集
------------------------------------ */
.footer_business_partner {
  background-color: #EEE;
  padding: 1px 0 60px;
}
@media screen and (max-width: 767px) {
  .footer_business_partner {
    padding: 1px 0 10px;
  }
}
.footer_business_partner .page_subtl {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .footer_business_partner .page_subtl {
    margin-top: 30px;
  }
}

.business_partner_list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .business_partner_list {
    flex-direction: column;
  }
}

.business_partner_item {
  width: 460px;
}
@media screen and (max-width: 767px) {
  .business_partner_item {
    width: auto;
    margin-bottom: 20px;
  }
}
.business_partner_item a {
  background-color: #FFF;
  display: flex;
  align-items: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
  transition: 0.5s;
}
.business_partner_item a:hover {
  opacity: 0.8;
}
.business_partner_item a:hover {
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  .business_partner_item a img {
    width: 40%;
    height: auto;
  }
}
.business_partner_item .txt {
  padding-left: 20px;
  font-size: 2.6rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .business_partner_item .txt {
    font-size: 1.8rem;
  }
}

/* ------------------------------------
  footer
------------------------------------ */
#footer {
  background-color: #FFF;
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  #footer {
    padding-top: 30px;
  }
}

.footer_box {
  display: flex;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .footer_box {
    flex-direction: column;
  }
}

/* footerロゴ
------------------------------------ */
.footer_logo_box {
  margin-right: 80px;
}
@media screen and (max-width: 767px) {
  .footer_logo_box {
    display: flex;
    justify-content: center;
    margin-right: 0;
  }
}
.footer_logo_box a {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  transition: 0.5s;
}
.footer_logo_box a:hover {
  opacity: 0.8;
}
.footer_logo_box .logo_mark_box {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .footer_logo_box .logo_mark_box {
    margin-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .footer_logo_box .logo_mark_box img {
    width: 60px;
    height: auto;
  }
}
.footer_logo_box .logo_type_box .txt {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .footer_logo_box .logo_type_box .logo_type {
    width: 175px;
    height: auto;
  }
}

/* footerサイトマップ
------------------------------------ */
@media screen and (max-width: 767px) {
  .footer_sitemap {
    margin-top: 30px;
  }
}

/* footer_link01（gNav他、spメニュー共通）
--------------- */
.sitemap_list01 {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .sitemap_list01 {
    margin: 0 -15px 40px;
    border-top: #CCC 2px solid;
  }
}
.sitemap_list01 .sitemap_list01_item {
  width: 33%;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .sitemap_list01 .sitemap_list01_item {
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 0;
    border-bottom: #CCC 2px solid;
  }
  .sitemap_list01 .sitemap_list01_item:nth-child(odd) {
    border-right: #CCC 2px solid;
  }
}
@media screen and (min-width: 768px) {
  .sitemap_list01 .sitemap_list01_item:nth-child(1) {
    order: 1;
  }
  .sitemap_list01 .sitemap_list01_item:nth-child(2) {
    order: 4;
  }
  .sitemap_list01 .sitemap_list01_item:nth-child(3) {
    order: 7;
  }
  .sitemap_list01 .sitemap_list01_item:nth-child(4) {
    order: 2;
  }
  .sitemap_list01 .sitemap_list01_item:nth-child(5) {
    order: 5;
  }
  .sitemap_list01 .sitemap_list01_item:nth-child(6) {
    order: 3;
  }
  .sitemap_list01 .sitemap_list01_item:nth-child(7) {
    order: 6;
  }
}
.sitemap_list01 .sitemap_list01_item a {
  font-size: 1.4rem;
  transition: 0.5s;
}
.sitemap_list01 .sitemap_list01_item a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .sitemap_list01 .sitemap_list01_item a {
    display: block;
    font-size: 1.2rem;
    box-sizing: border-box;
    padding: 15px 20px 15px 15px;
    position: relative;
  }
  .sitemap_list01 .sitemap_list01_item a::after {
    content: "";
    display: block;
    width: 8px;
    height: 14px;
    position: absolute;
    top: 50%;
    margin-top: -7px;
    background: url("../img_cmn/ico_arrow_accent.svg") no-repeat;
    background-size: 8px auto;
    right: 10px;
    opacity: 0.4;
  }
}
.sitemap_list01 .sitemap_list01_item a:hover {
  color: #E01F06;
  text-decoration: underline;
}
.sitemap_list01 .sitemap_list01_item.item08 img {
  width: 133px;
  max-width: 95%;
  height: auto;
  vertical-align: middle;
}

/* sitemap_list02（出店用地募集他、spメニュー共通）
----------------------------------- */
.sitemap_list02_outer {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .sitemap_list02_outer {
    justify-content: center;
  }
}
.sitemap_list02_outer .group_link a {
  transition: 0.5s;
}
.sitemap_list02_outer .group_link a:hover {
  opacity: 0.8;
}

.sitemap_list02 {
  display: flex;
}
@media screen and (max-width: 767px) {
  .sitemap_list02 {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .sitemap_list02 .sitemap_list02_item {
    width: 10em;
    text-align: center;
    box-sizing: border-box;
  }
}
.sitemap_list02 .sitemap_list02_item:nth-child(1) {
  padding-right: 20px;
  border-right: #9B9B9B 1px solid;
}
.sitemap_list02 .sitemap_list02_item:nth-child(2) {
  padding-left: 20px;
}
.sitemap_list02 .sitemap_list02_item a {
  color: #9B9B9B;
  font-size: 1.4rem;
  display: inline-block;
  padding: 5px 0;
  transition: 0.5s;
}
.sitemap_list02 .sitemap_list02_item a:hover {
  opacity: 0.8;
}
.sitemap_list02 .sitemap_list02_item a:hover {
  color: #E01F06;
  text-decoration: underline;
}

/* footer_copyright
----------------------------------- */
.footer_copyright {
  background: #404040;
  color: #fff;
  padding: 10px 0;
}
@media screen and (max-width: 767px) {
  .footer_copyright {
    background-color: transparent;
    padding: 0;
  }
}
.footer_copyright .cont_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer_copyright .cont_inner {
    flex-direction: column;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .footer_copyright .footer_copyright_inner {
    order: 2;
    background: #404040;
    width: 100%;
  }
}
.footer_copyright .copyright {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .footer_copyright .copyright {
    font-size: 1rem;
    color: #fff;
    padding: 12px 0;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .footer_copyright .footer_copyright_sitemap {
    order: 1;
    margin-bottom: 10px;
  }
}

/* sitemap_list03（プライバシーポリシー他、spメニュー共通）
--------------- */
.sitemap_list03 {
  display: flex;
}
@media screen and (max-width: 767px) {
  .sitemap_list03 {
    justify-content: center;
  }
}

.sitemap_list03_item {
  padding: 0 20px;
  border-right: #9B9B9B 1px solid;
}
@media screen and (max-width: 767px) {
  .sitemap_list03_item {
    padding: 0 8px;
    border-right: none;
  }
}
.sitemap_list03_item:last-child {
  padding-right: 0;
  border-right: none;
}
@media screen and (max-width: 767px) {
  .sitemap_list03_item:last-child {
    padding: 0 8px;
  }
}
.sitemap_list03_item a {
  color: #FFF;
  font-size: 1.2rem;
  transition: 0.5s;
}
.sitemap_list03_item a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .sitemap_list03_item a {
    color: #9B9B9B;
    font-size: 1.2rem;
    display: inline-block;
    padding: 10px 0;
  }
}

/* ページ上部に戻る
----------------------------------- */
.btn_page_top {
  position: fixed;
  right: 10px;
  bottom: 100px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .btn_page_top {
    bottom: 10px;
  }
}
.btn_page_top a {
  transition: 0.5s;
}
.btn_page_top a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .btn_page_top img {
    width: 50px;
    height: auto;
  }
}

/*=================================================
 * contページ共通
 * ================================================ */
/* トップページへ
------------------------------------ */
/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
 * ページタイトル
 * ================================================ */
.page_tl_box {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .page_tl_box {
    margin-top: 60px;
    height: 90px;
  }
}

.page_tl {
  font-size: 3.6rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .page_tl {
    margin: 30px 0 25px;
    font-size: 2.2rem;
    line-height: 1.3;
    text-align: left;
  }
}

/*=================================================
 * パンくず
 * ================================================ */
.topic_path {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .topic_path {
    margin-top: 10px;
  }
}
.topic_path li {
  display: inline;
  position: relative;
  padding-left: 10px;
  margin-left: 10px;
  position: relative;
  font-size: 1.2rem;
}
.topic_path li::before {
  content: ">";
  display: block;
  position: absolute;
  top: -2px;
  left: -5px;
}
.topic_path li:first-child {
  padding-left: 0;
  margin-left: 0;
}
.topic_path li:first-child::before {
  content: "";
}
.topic_path a {
  padding: 3px 5px;
  transition: 0.5s;
}
.topic_path a:hover {
  opacity: 0.8;
}
.topic_path a:hover {
  color: #E01F06;
}

/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
 * 全ページ共通スタイル
 * ================================================ */
/* ------------------------------------
  見出し
------------------------------------ */
/* ページサブタイトル01(中央寄せ・赤下線・36px)
------------------------------------ */
.page_subtl {
  font-size: 3.6rem;
  line-height: 1.5;
  text-align: center;
  margin: 80px 0 50px;
  padding-bottom: 10px;
  position: relative;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .page_subtl {
    font-size: 2.4rem;
    margin: 60px 0 30px;
  }
}
.page_subtl::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  position: absolute;
  top: 50%;
  margin-top: 0;
  background-color: #E01F06;
  margin-left: -15px;
  top: auto;
  left: 50%;
  bottom: 0;
}

/* ページサブタイトル02(左寄せ・28px)
------------------------------------ */
.page_subtl02 {
  font-size: 2.8rem;
  line-height: 1.5;
  margin: 60px 0 30px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .page_subtl02 {
    font-size: 2.2rem;
    margin: 40px 0 20px;
  }
}

/* ページサブタイトル03(左寄せ・22px)
------------------------------------ */
.page_subtl03 {
  font-size: 2.2rem;
  line-height: 1.5;
  margin: 50px 0 20px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .page_subtl03 {
    font-size: 2.0rem;
    margin: 30px 0 15px;
  }
}

/* ページサブタイトル04(18px、blod)
------------------------------------ */
.page_subtl04 {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: bold;
  margin: 20px 0 10px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .page_subtl04 {
    font-size: 1.6rem;
  }
}

/* ページサブタイトル05(16px、blod)
------------------------------------ */
.page_subtl05 {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  margin: 15px 0 5px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .page_subtl05 {
    font-size: 1.4rem;
  }
}

/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
 * 全ページ共通スタイル
 * ================================================ */
/* ------------------------------------
/* 共通
------------------------------------ */
.page_nav {
  margin: 60px 0;
}
.page_nav .pages {
  text-align: center;
  /* 「前へ」「次へ」
    ------------------------------------ */
  /* ページが存在しない場合
    --------------- */
}
.page_nav .pages a:hover {
  transition: 0.2s;
}
.page_nav .pages .page_list {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .page_nav .pages .page_list {
    justify-content: space-between;
  }
}
.page_nav .pages .next,
.page_nav .pages .prev {
  border: none;
  background: #fff;
  display: inline-block;
  position: relative;
  width: 50%;
  max-width: 160px;
}
.page_nav .pages .next a,
.page_nav .pages .prev a {
  display: block;
  color: #404040;
  border-radius: 4px;
  border: 1px solid #404040;
  transition: all .5s;
  padding: 9px 0;
}
.page_nav .pages .next a:hover,
.page_nav .pages .prev a:hover {
  color: #E01F06;
  border: 1px solid #E01F06;
}
.page_nav .pages .next.no_link a,
.page_nav .pages .prev.no_link a {
  background: #DCDCDC;
  color: #9B9B9B;
  border: 1px solid #DCDCDC;
  border-radius: 4px;
  color: #404040;
  pointer-events: none;
}
.page_nav .pages .next.no_link a:hover,
.page_nav .pages .prev.no_link a:hover {
  color: unset;
  border: unset;
}
.page_nav .pages .next {
  margin-left: 20px;
}
.page_nav .pages .next:after {
  content: "";
  position: absolute;
  background: url("../img_cmn/ico_arrow_accent.svg") no-repeat;
  background-size: 100% 100%;
  width: 16px;
  height: 16px;
  right: 10px;
  top: 50%;
  margin-top: -9px;
}
.page_nav .pages .next:hover:after {
  background-image: url("../img_cmn/ico_arrow_keycolor.svg");
}
.page_nav .pages .next.no_link::after {
  background-image: none;
}
.page_nav .pages .prev {
  margin-right: 20px;
}
.page_nav .pages .prev:after {
  content: "";
  position: absolute;
  background: url("../img_cmn/ico_arrow_accent.svg") no-repeat;
  background-size: 100% 100%;
  width: 16px;
  height: 16px;
  left: 10px;
  top: 50%;
  margin-top: -9px;
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.page_nav .pages .prev:hover:after {
  background-image: url("../img_cmn/ico_arrow_keycolor.svg");
}
.page_nav .pages .prev.no_link::after {
  background-image: none;
}
.page_nav .pages .home {
  display: inline-block;
}
.page_nav .pages .home a {
  padding: 14px 90px;
  margin: 0 60px;
  background: #FFF;
  border-radius: 4px;
  border: 2px solid #DDD3C3;
}
@media screen and (max-width: 767px) {
  .page_nav {
    margin: 40px 0 30px;
  }
  .page_nav .page_list {
    flex-wrap: wrap;
  }
  .page_nav .page_number_box {
    order: 1;
    width: 100%;
    margin-bottom: 30px;
  }
  .page_nav .pages .prev {
    margin-right: 0;
    order: 2;
  }
  .page_nav .pages .next {
    margin-left: 0;
    order: 3;
  }
}

@media screen and (max-width: 767px) {
  .page_nav {
    margin: 40px 0 50px;
  }
}
.page_nav .pages .btn_back_list_box {
  position: relative;
}
.page_nav .pages .btn_back_list_box p {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .page_nav .pages .btn_back_list_box .show_category_box {
    position: absolute;
    top: 60px;
    left: 50%;
    margin-left: -151px;
  }
}
.page_nav .pages .btn_back_list_box .show_category_box a {
  width: 260px;
  border: 1px solid #CF0000;
  border-radius: 4px;
  background: #fff;
  padding: 0 20px;
  line-height: 43px;
}
.page_nav .pages .btn_back_list_box .show_category_box a span {
  position: relative;
  margin-left: 40px;
}
.page_nav .pages .btn_back_list_box .show_category_box a span:before {
  content: "";
  position: absolute;
  background: url(../img_cmn/ico_btn_category_box.svg) no-repeat;
  background-size: 20px auto;
  width: 20px;
  height: 15px;
  top: 4px;
  left: -30px;
}
.page_nav .pages .btn_back_list_box .show_category_box a:hover {
  color: #fff;
  background: #CF0000;
  transition: .3s;
}
.page_nav .pages .btn_back_list_box .show_category_box a:hover span::before {
  content: "";
  position: absolute;
  background: url(../img_cmn/ico_btn_category_box_white.svg) no-repeat;
  background-size: 20px auto;
  width: 20px;
  height: 15px;
  top: 4px;
  left: -30px;
}

/* ------------------------------------
/* 一覧ページ
------------------------------------ */
/* ページ番号
------------------------------------ */
.page_number_box {
  /* SP */
}
@media screen and (max-width: 767px) {
  .page_number_box {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.page_number_box li:first-child {
  margin-left: 0;
}
.page_number_box .current_none {
  margin-left: 10px;
  display: inline-block;
  position: relative;
  text-align: center;
  line-height: 22px;
  border: 1px solid #404040;
  border-radius: 4px;
  transition: all .5s;
  /* SP */
}
@media screen and (max-width: 767px) {
  .page_number_box .current_none {
    margin-left: 5px;
  }
}
.page_number_box .current_none.snip {
  border: none;
  pointer-events: none;
}
.page_number_box .current_none a {
  display: block;
}
.page_number_box .current_none a span {
  display: block;
  color: #404040;
  transition: all .5s;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
}
.page_number_box .current_none:hover {
  border: 1px solid #E01F06;
}
.page_number_box .current_none:hover span {
  color: #E01F06;
}
.page_number_box .current {
  margin-left: 10px;
  display: inline-block;
  position: relative;
  text-align: center;
  line-height: 22px;
  vertical-align: middle;
  border: 1px solid #E01F06;
  border-radius: 4px;
  transition: all .5s;
  /* SP */
}
@media screen and (max-width: 767px) {
  .page_number_box .current {
    margin-left: 5px;
  }
}
.page_number_box .current a {
  display: block;
}
.page_number_box .current span {
  display: block;
  color: #E01F06;
  z-index: 1;
  position: relative;
  border-radius: 4px;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
}

/* ------------------------------------
/* 詳細ページ
------------------------------------ */
/* ページ送り 前後
----------------------------------- */
.article_navi {
  margin: 60px 0 80px;
  font-size: 18px;
}
.article_navi a:hover {
  opacity: 0.8;
}
.article_navi ul li {
  display: inline-block;
  position: relative;
}
.article_navi ul li a {
  background: #404040;
}
.article_navi ul li span {
  color: #FFF;
}
.article_navi ul li.no_link {
  background: #EEE;
  color: #9B9B9B;
}
.article_navi ul li.no_link a {
  background: #EEE;
}
.article_navi ul li.no_link span {
  color: #404040;
}
.article_navi ul li.no_link p {
  padding: 10px 50px;
}
.article_navi ul li.prev a {
  padding: 10px 50px;
}
.article_navi ul li.home a {
  padding: 10px 100px;
  margin: 0 60px;
  background: #FFF;
  border: 1px solid;
}
.article_navi ul li.next a {
  padding: 10px 50px;
}
.article_navi .home span {
  color: #9B9B9B;
}

/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
 * 全ページ共通スタイル
 * ================================================ */
/* ------------------------------------
/* table
------------------------------------ */
.base_table {
  width: 100%;
  border-top: #CCC 1px solid;
  margin: 30px 0;
  table-layout: fixed;
}
.base_table caption {
  text-align: right;
  margin-bottom: 10px;
}
.base_table th, .base_table td {
  border-bottom: #CCC 1px solid;
}
@media screen and (max-width: 767px) {
  .base_table th, .base_table td {
    display: block;
  }
}
.base_table th {
  padding: 20px 10px 20px 0;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .base_table th {
    font-weight: bold;
    border-bottom: none;
    padding: 20px 0 10px;
  }
}
.base_table th:first-child {
  width: 10em;
}
.base_table td {
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .base_table td {
    padding: 0 0 20px;
  }
}

/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/*=================================================
 * 全ページ共通スタイル
 * ================================================ */
/* ------------------------------------
/* button
------------------------------------ */
/* ベース
------------------------------------ */
.base_btn {
  margin: 30px 0;
}
.base_btn a {
  display: block;
  color: #FFF;
  background-color: #404040;
  border-radius: 4px;
  font-size: 2rem;
  text-align: center;
  width: 420px;
  max-width: 100%;
  line-height: 50px;
  box-sizing: border-box;
  margin: 0 auto;
  transition: 0.5s;
}
.base_btn a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .base_btn a {
    width: auto;
    margin: 0 15px;
    font-size: 1.6rem;
  }
}

/* ベースSサイズ（郵便番号、Googleマップなどのボタン）
------------------------------------ */
.base_btn_s a {
  display: inline-block;
  width: inherit;
  box-sizing: border-box;
  color: #FFF;
  background-color: #404040;
  border-radius: 4px;
  font-size: 1.4rem;
  text-align: center;
  line-height: 32px;
  padding: 0 20px;
  transition: 0.5s;
}
.base_btn_s a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .base_btn_s a {
    width: auto;
    font-size: 1.3rem;
  }
}

/* ボーダーのボタン
------------------------------------ */
.base_btn_border {
  margin: 30px 0;
}
.base_btn_border a, .base_btn_border button {
  border: 1px solid #CCC;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
  width: 280px;
  max-width: 100%;
  line-height: 50px;
  box-sizing: border-box;
  transition: 0.5s;
}
.base_btn_border a:hover, .base_btn_border button:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .base_btn_border a, .base_btn_border button {
    width: 200px;
  }
}
.base_btn_border a:hover, .base_btn_border button:hover {
  color: #E01F06;
  border: 1px solid #E01F06;
}

/* 戻るボタン
------------------------------------ */
.back_btn {
  margin: 80px 0 120px;
}
@media screen and (max-width: 767px) {
  .back_btn {
    margin: 40px 0 60px;
  }
}
.back_btn a {
  position: relative;
}
.back_btn a::after {
  content: "";
  display: block;
  width: 8px;
  height: 14px;
  position: absolute;
  top: 50%;
  margin-top: -7px;
  background: url("../img_cmn/ico_arrow_accent.svg") no-repeat;
  background-size: 8px auto;
  transform: rotateY(180deg);
  left: 10px;
  transition: 0.5s;
}
.back_btn a::after:hover {
  opacity: 0.8;
}
.back_btn a:hover::after {
  background: url("../img_cmn/ico_arrow_keycolor.svg") no-repeat;
  background-size: 8px auto;
}

/* 矢印のリンク
------------------------------------ */
.base_link_arrow {
  display: inline-block;
}
.base_link_arrow a {
  display: block;
  position: relative;
}
.base_link_arrow a:hover {
  text-decoration: underline;
}
.base_link_arrow a::before {
  content: "";
  position: absolute;
  background: url(../img_cmn/ico_arrow_white.svg) no-repeat;
  background-size: 10px 10px;
  width: 10px;
  height: 10px;
  left: -20px;
  top: 7px;
}

.black_link_arrow > a {
  display: block;
  position: relative;
  padding-left: 20px;
}
.black_link_arrow > a:hover {
  cursor: pointer;
}
.black_link_arrow > a::before {
  content: "";
  position: absolute;
  background: url(../img_cmn/ico_arrow_black.svg) no-repeat;
  background-size: 10px 10px;
  width: 10px;
  height: 10px;
  left: -20px;
  top: 7px;
}

/* マップボタンのicon
------------------------------------ */
.btn_googlemap a::before {
  content: "";
  display: block;
  width: 12px;
  height: 18px;
  position: absolute;
  top: 50%;
  margin-top: 0;
  background: url("../img_cmn/ico_mappin.svg") 0 0 no-repeat;
  background-size: 12px auto;
  display: inline-block;
  position: relative;
  top: 0;
  left: 0;
  vertical-align: middle;
  margin-right: 10px;
}

/* テキスト（URL）のリンク
------------------------------------ */
.text_link {
  color: #2E70D4;
}
.text_link:hover {
  text-decoration: underline;
}

/* ------------------------------------
/* 共通パーツ - プルダウンリスト
------------------------------------ */
.btn_select {
  margin-bottom: 20px;
}
.btn_select .select_label {
  position: relative;
}
.btn_select .select_label select {
  cursor: pointer;
  width: 100%;
  position: relative;
  padding: 6px;
  outline: none;
  border: 1px solid #DDD;
  font-size: 1.4rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.btn_select .select_label::after {
  content: "";
  position: absolute;
  background: url("../img_cmn/ico_arrow_red.svg") no-repeat;
  transform: rotate(90deg);
  background-size: 16px;
  width: 16px;
  height: 16px;
  right: 10px;
  top: 50%;
  margin-top: -12px;
  pointer-events: none;
}

/*=================================================
 * 最大括り
 * ================================================ */
/* ------------------------------------
/* 大括り
------------------------------------ */
/* 中括り
------------------------------------ */
/* 小括り
--------------- */
/* 最小括り */
/* ------------------------------------
  共通
------------------------------------ */
.cont_news .cont_bg_01 {
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .cont_news .cont_bg_01 {
    padding-bottom: 20px;
  }
}
.cont_news .news_list_bottom {
  margin: 60px 0;
}
@media screen and (max-width: 767px) {
  .cont_news .news_list_bottom {
    margin: 30px 0;
  }
}
.cont_news .news_list_bottom .flex_news_box {
  width: 100%;
  display: flex;
}
@media screen and (max-width: 767px) {
  .cont_news .news_list_bottom .flex_news_box {
    display: block;
  }
}
.cont_news .news_list_bottom .flex_news_box:first-child {
  margin-bottom: 30px;
}
.cont_news .news_list_bottom .flex_news_box .title_box {
  width: 140px;
  background-color: #3D3527;
  color: #FFF;
  text-align: center;
  padding: 30px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .cont_news .news_list_bottom .flex_news_box .title_box {
    width: 100%;
    padding: 5px 0;
  }
}
.cont_news .news_list_bottom .flex_news_box .bg_box {
  width: 820px;
  margin-bottom: 0;
  padding: 30px 70px 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .cont_news .news_list_bottom .flex_news_box .bg_box {
    width: 100%;
    padding: 20px 40px;
  }
}
.cont_news .news_list_bottom .flex_news_box .bg_box .flex_category_box {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.cont_news .news_list_bottom .flex_news_box .bg_box .flex_category_box a {
  margin-right: 70px;
  position: relative;
  color: #E01F06;
  text-decoration: underline;
  transition: color .5s;
  color: #3D3527;
  margin-bottom: 10px;
}
.cont_news .news_list_bottom .flex_news_box .bg_box .flex_category_box a:hover {
  color: #E01F06;
}
@media screen and (max-width: 767px) {
  .cont_news .news_list_bottom .flex_news_box .bg_box .flex_category_box a {
    margin-right: 50px;
  }
}
.cont_news .news_list_bottom .flex_news_box .bg_box .flex_category_box a::before {
  content: "";
  display: block;
  width: 8px;
  height: 15px;
  position: absolute;
  top: 50%;
  margin-top: -7.5px;
  background: url(../img_cmn/ico_arrow_accent.svg) no-repeat center/100% 100%;
  left: -20px;
}

/* ------------------------------------
  お知らせ(一覧)
------------------------------------ */
.cont_news_list {
  	/*
    .news_list {
      .news_list_item {
        .no_link {
          &:hover {
            color: unset;
            cursor: unset;
            opacity: unset;
          }
          &::after {
            display: none;
          }
        }
      }
    }
  	*/
}
@media screen and (max-width: 767px) {
  .cont_news_list .page_subtl02 {
    margin-top: 55px;
  }
}

/* ------------------------------------
  お知らせ(詳細)
------------------------------------ */
.cont_news_detail .cont_edit_box .article .article_head {
  margin-top: 60px;
}
.cont_news_detail .cont_edit_box .article .article_head .page_subtl02 {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .cont_news_detail .cont_edit_box .article .article_head .page_subtl02 {
    margin-top: 20px;
  }
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box {
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .cont_news_detail .cont_edit_box .article .article_body .news_txt_box {
    padding: 30px 0 0;
  }
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box h1 {
  font-size: 2.8rem;
  line-height: 1.5;
  margin: 60px 0 40px;
  padding-bottom: 5px;
  position: relative;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .cont_news_detail .cont_edit_box .article .article_body .news_txt_box h1 {
    font-size: 2.2rem;
    margin: 40px 0 20px;
  }
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box h1::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  position: absolute;
  top: 50%;
  margin-top: 0;
  background-color: #E01F06;
  top: auto;
  bottom: 0;
  left: 0;
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box h2 {
  font-size: 2.4rem;
  line-height: 1.5;
  margin: 50px 0 40px;
  position: relative;
  padding-bottom: 5px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .cont_news_detail .cont_edit_box .article .article_body .news_txt_box h2 {
    font-size: 2rem;
    margin: 30px 0 20px;
  }
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box h2::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  position: absolute;
  top: 50%;
  margin-top: 0;
  background-color: #CCC;
  top: auto;
  bottom: 0;
  left: 0;
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box h3 {
  font-size: 2.2rem;
  line-height: 1.5;
  margin: 40px 0 20px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .cont_news_detail .cont_edit_box .article .article_body .news_txt_box h3 {
    font-size: 1.8rem;
    margin: 30px 0 15px;
  }
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box h4 {
  font-size: 1.8rem;
  line-height: 1.5;
  margin: 40px 0 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid #CCC;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .cont_news_detail .cont_edit_box .article .article_body .news_txt_box h4 {
    font-size: 1.6rem;
    margin: 30px 0 15px;
  }
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box h5 {
  font-size: 1.8rem;
  line-height: 1.5;
  margin: 40px 0 20px;
  padding: 5px 0 5px 10px;
  background-color: #DCDCDC;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .cont_news_detail .cont_edit_box .article .article_body .news_txt_box h5 {
    font-size: 1.6rem;
    margin: 30px 0 15px;
  }
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box h6 {
  font-size: 1.8rem;
  line-height: 1.5;
  margin: 40px 0 20px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .cont_news_detail .cont_edit_box .article .article_body .news_txt_box h6 {
    font-size: 1.6rem;
    margin: 30px 0 15px;
  }
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box p {
  margin-bottom: 1em;
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box img {
  max-width: 100% !important;
  height: auto !important;
  vertical-align: middle;
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box strong {
  display: block;
  font-size: 1.6rem;
  margin: 30px 0;
}
@media screen and (max-width: 767px) {
  .cont_news_detail .cont_edit_box .article .article_body .news_txt_box strong {
    font-size: 1.4rem;
    margin: 15px 0;
  }
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box s {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .cont_news_detail .cont_edit_box .article .article_body .news_txt_box s {
    font-size: 1.4rem;
  }
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box ol {
  margin: 30px 0;
  counter-reset: numnum;
}
@media screen and (max-width: 767px) {
  .cont_news_detail .cont_edit_box .article .article_body .news_txt_box ol {
    margin: 25px 0;
  }
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box ol li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box ol li::before {
  content: counter(numnum) ".";
  position: absolute;
  counter-increment: numnum;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box ul {
  margin: 30px 0;
}
@media screen and (max-width: 767px) {
  .cont_news_detail .cont_edit_box .article .article_body .news_txt_box ul {
    margin: 25px 0;
  }
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box ul li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 50%;
  background-color: #E01F06;
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box hr {
  display: block;
  height: 2px;
  background-color: #DCDCDC;
  border: none;
  margin: 60px 0;
}
@media screen and (max-width: 767px) {
  .cont_news_detail .cont_edit_box .article .article_body .news_txt_box hr {
    margin: 30px 0;
  }
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box table, .cont_news_detail .cont_edit_box .article .article_body .news_txt_box th, .cont_news_detail .cont_edit_box .article .article_body .news_txt_box td {
  border: none;
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box table {
  margin: 30px 0;
}
@media screen and (max-width: 767px) {
  .cont_news_detail .cont_edit_box .article .article_body .news_txt_box table {
    width: 100% !important;
  }
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box table tr {
  border-bottom: 1px solid #CCC;
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box table tr th, .cont_news_detail .cont_edit_box .article .article_body .news_txt_box table tr td {
  padding: 20px;
  border-left: 1px solid #CCC;
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box table tr th:first-child, .cont_news_detail .cont_edit_box .article .article_body .news_txt_box table tr td:first-child {
  border-left: none;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .cont_news_detail .cont_edit_box .article .article_body .news_txt_box table tr th, .cont_news_detail .cont_edit_box .article .article_body .news_txt_box table tr td {
    padding: 15px 10px;
  }
  .cont_news_detail .cont_edit_box .article .article_body .news_txt_box table tr th:nth-child(2),
  .cont_news_detail .cont_edit_box .article .article_body .news_txt_box table tr th :nth-child(3), .cont_news_detail .cont_edit_box .article .article_body .news_txt_box table tr td:nth-child(2),
  .cont_news_detail .cont_edit_box .article .article_body .news_txt_box table tr td :nth-child(3) {
    width: 40%;
  }
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box table tr th[scope="row"] {
  border-right: 1px solid #3D3527;
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box table thead {
  /*
  + tbody {
  	tr {
  		&:first-child {
  			th,td {
  				border-top: none;
  			}
  		}
  	}
  }
  */
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box table thead tr {
  border-top: 1px solid #3D3527;
  border-bottom: 1px solid #3D3527;
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box table tbody tr:first-child th, .cont_news_detail .cont_edit_box .article .article_body .news_txt_box table tbody tr:first-child td {
  border-top: 1px solid #3D3527;
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box table tbody tr th {
  font-weight: bold;
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box table tbody tr th:first-child {
  border-right: 1px solid #3D3527;
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box table tbody tr th:last-child {
  border-right: none;
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box blockquote {
  background-color: rgba(224, 31, 6, 0.1);
  padding: 30px 20px;
  margin: 30px 0;
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box blockquote h6 {
  margin: 0 0 20px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}
.cont_news_detail .cont_edit_box .article .article_body .news_txt_box blockquote p {
  margin: 0;
}
.cont_news_detail .cont_edit_box .news_list_item {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .cont_news_detail .page_nav {
    margin: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .cont_news_detail .page_nav .pages .page_list {
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .cont_news_detail .page_nav .pages .page_list .prev {
    order: 1;
    margin-bottom: 30px;
  }
}
.cont_news_detail .page_nav .pages .page_list .back_btn {
  display: inline-block;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .cont_news_detail .page_nav .pages .page_list .back_btn {
    order: 3;
    width: 100%;
  }
}
.cont_news_detail .page_nav .pages .page_list .back_btn a {
  line-height: 45px;
  box-sizing: border-box;
  border-color: #404040;
}
@media screen and (max-width: 767px) {
  .cont_news_detail .page_nav .pages .page_list .back_btn a {
    width: 100%;
  }
}
.cont_news_detail .page_nav .pages .page_list .back_btn a::after {
  background: none;
}
.cont_news_detail .page_nav .pages .page_list .back_btn a:hover {
  border-color: #E01F06;
}
@media screen and (max-width: 767px) {
  .cont_news_detail .page_nav .pages .page_list .next {
    order: 2;
    margin-bottom: 30px;
  }
}

/*=================================================
 * liaise共通
 * ================================================ */
/* ３ステップ
------------------------------------ */
.liaise_step_box {
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 60px 0 40px;
  /* 現在のステップ地点
  --------------- */
  /* ステップ未着地
  --------------- */
}
@media screen and (min-width: 768px) {
  .liaise_step_box {
    width: 457px;
  }
}
.liaise_step_box::before {
  content: "";
  position: absolute;
  display: block;
  width: 320px;
  height: 2px;
  top: 36px;
  left: 50%;
  margin-left: -160px;
  background-color: #CCC;
}
@media screen and (max-width: 767px) {
  .liaise_step_box::before {
    width: 260px;
    margin-left: -130px;
  }
}
@media screen and (max-width: 320px) {
  .liaise_step_box::before {
    width: 220px;
    margin-left: -110px;
  }
}
.liaise_step_box ol {
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items: center;
}
.liaise_step_box li {
  flex-grow: 1;
  position: relative;
}
.liaise_step_box .step_do {
  color: #FFAF00;
}
.liaise_step_box .step_do::before {
  content: "";
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  top: -35px;
  left: 50%;
  margin-left: -12px;
  background-color: #FFAF00;
  border-radius: 50%;
}
.liaise_step_box .step_undone {
  color: #9B9B9B;
}
.liaise_step_box .step_undone::before {
  content: "";
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  top: -35px;
  left: 50%;
  margin-left: -12px;
  background-color: #8A8787;
  border-radius: 50%;
}

/* formのスタイル
------------------------------------ */
.contact_form .form_box {
  position: relative;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .contact_form .form_box {
    padding-top: 0;
  }
}
.contact_form .form_table {
  width: 100%;
  table-layout: fixed;
  /* エラーメッセージ
  --------------- */
  /* 必須アイコン
  --------------- */
  /* 住所自動入力ボタン
  --------------- */
  /*
  .postalcode_btn {
    display: inline-block;
    a {
      border: 4px solid #FAB502;
      color: #fff;
      background: #FAB502;
      border-radius: 5px;
      padding: 5px 10px;
      display: block;
    }
  }
  */
}
@media screen and (max-width: 767px) {
  .contact_form .form_table {
    margin-bottom: 30px;
  }
}
.contact_form .form_table .form_td,
.contact_form .form_table .form_th {
  position: relative;
  vertical-align: top;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .contact_form .form_table .form_td,
  .contact_form .form_table .form_th {
    display: block;
  }
}
.contact_form .form_table .form_th {
  width: 230px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .contact_form .form_table .form_th {
    margin-bottom: 10px;
    width: 100%;
  }
}
.contact_form .form_table .form_td {
  /* セレクトボックスのスタイル設定
  --------------- */
  /* チェックボックスのスタイル設定
  --------------- */
}
.contact_form .form_table .form_td .txt_notice {
  margin-top: 10px;
}
.contact_form .form_table .form_td .txt_notice.txt_error {
  color: #E01F06;
}
.contact_form .form_table .form_td .ex {
  font-size: 12px;
  color: #999;
  margin-top: 10px;
}
.contact_form .form_table .form_td button,
.contact_form .form_table .form_td input[type=email],
.contact_form .form_table .form_td input[type=tel],
.contact_form .form_table .form_td input[type=text],
.contact_form .form_table .form_td input[type=number],
.contact_form .form_table .form_td select,
.contact_form .form_table .form_td textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /** add */
  border: 1px solid #CCC;
  background: #FFF;
}
.contact_form .form_table .form_td button::placeholder,
.contact_form .form_table .form_td input[type=email]::placeholder,
.contact_form .form_table .form_td input[type=tel]::placeholder,
.contact_form .form_table .form_td input[type=text]::placeholder,
.contact_form .form_table .form_td input[type=number]::placeholder,
.contact_form .form_table .form_td select::placeholder,
.contact_form .form_table .form_td textarea::placeholder {
  color: #CCC;
}
@media screen and (max-width: 767px) {
  .contact_form .form_table .form_td button::placeholder,
  .contact_form .form_table .form_td input[type=email]::placeholder,
  .contact_form .form_table .form_td input[type=tel]::placeholder,
  .contact_form .form_table .form_td input[type=text]::placeholder,
  .contact_form .form_table .form_td input[type=number]::placeholder,
  .contact_form .form_table .form_td select::placeholder,
  .contact_form .form_table .form_td textarea::placeholder {
    font-size: 1.4rem;
  }
}
.contact_form .form_table .form_td textarea::-webkit-input-placeholder {
  color: #CCC;
  font-size: 15px;
  font-family: "メイリオ", Verdana, Arial, Helvetica, sans-serif;
}
@media screen and (max-width: 767px) {
  .contact_form .form_table .form_td textarea::-webkit-input-placeholder {
    font-size: 1.4rem;
  }
}
.contact_form .form_table .form_td textarea:-moz-placeholder {
  color: #CCC;
  font-size: 15px;
  font-family: "メイリオ", Verdana, Arial, Helvetica, sans-serif;
}
@media screen and (max-width: 767px) {
  .contact_form .form_table .form_td textarea:-moz-placeholder {
    font-size: 1.4rem;
  }
}
.contact_form .form_table .form_td textarea::-moz-placeholder {
  color: #CCC;
  font-size: 15px;
  font-family: "メイリオ", Verdana, Arial, Helvetica, sans-serif;
}
@media screen and (max-width: 767px) {
  .contact_form .form_table .form_td textarea::-moz-placeholder {
    font-size: 1.4rem;
  }
}
.contact_form .form_table .form_td textarea:-ms-input-placeholder {
  color: #CCC;
  font-size: 15px;
  font-family: "メイリオ", Verdana, Arial, Helvetica, sans-serif;
}
@media screen and (max-width: 767px) {
  .contact_form .form_table .form_td textarea:-ms-input-placeholder {
    font-size: 1.4rem;
  }
}
.contact_form .form_table .form_td input[type=email]::-ms-clear,
.contact_form .form_table .form_td input[type=tel]::-ms-clear,
.contact_form .form_table .form_td input[type=number]::-ms-clear,
.contact_form .form_table .form_td input[type=text]::-ms-clear {
  visibility: hidden;
}
.contact_form .form_table .form_td input[type=email]::-ms-reveal,
.contact_form .form_table .form_td input[type=tel]::-ms-reveal,
.contact_form .form_table .form_td input[type=number]::-ms-reveal,
.contact_form .form_table .form_td input[type=text]::-ms-reveal {
  visibility: hidden;
}
.contact_form .form_table .form_td select::-ms-expand {
  display: none;
}
.contact_form .form_table .form_td textarea {
  resize: none;
}
.contact_form .form_table .form_td select {
  padding: 9px 10px;
}
.contact_form .form_table .form_td input[type=email],
.contact_form .form_table .form_td input[type=tel],
.contact_form .form_table .form_td input[type=number],
.contact_form .form_table .form_td input[type=text],
.contact_form .form_table .form_td textarea {
  padding: 10px 10px;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  font-size: 1.5rem;
  border: #CCC 1px solid;
  box-shadow: none;
}
.contact_form .form_table .form_td button, .contact_form .form_table .form_td input, .contact_form .form_table .form_td select, .contact_form .form_table .form_td textarea {
  font-family: inherit;
  font-size: inherit;
}
.contact_form .form_table .form_td .select_label {
  position: relative;
  display: inline-block;
  border-radius: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .contact_form .form_table .form_td .select_label {
    width: 100%;
  }
}
.contact_form .form_table .form_td .select_label::after {
  content: "";
  position: absolute;
  background: url("../img_cmn/ico_arrow_keycolor_down.svg") no-repeat;
  background-size: 16px;
  width: 16px;
  height: 16px;
  right: 13px;
  top: 50%;
  margin-top: -11px;
  pointer-events: none;
}
.contact_form .form_table .form_td .select_label select {
  cursor: pointer;
  width: 150px;
}
@media screen and (max-width: 767px) {
  .contact_form .form_table .form_td .select_label select {
    width: 100%;
  }
}
.contact_form .form_table .form_td .radio::after {
  border-radius: 50%;
}
.contact_form .form_table .form_td input[type=radio]:checked + .radio:before {
  opacity: 1;
}
.contact_form .form_table .form_td input[type=radio]:checked + .radio {
  background-color: #FFD77F;
}
.contact_form .form_table .form_td input[type=checkbox]:checked + .checkbox:before {
  opacity: 1;
}
.contact_form .form_table .form_td input[type=checkbox]:checked + .checkbox {
  background-color: #FFD77F;
}
.contact_form .form_table tr:last-child .form_th .txt_th {
  margin-top: 0;
}
.contact_form .form_table .error_message {
  color: #E01F06;
}
.contact_form .form_table .ico_require {
  border: none;
  padding: 0 15px;
  background-color: #E01F06;
  color: #FFF;
  margin-left: 1em;
  display: inline-block;
}
.contact_form .txt_th {
  font-weight: normal;
}
.contact_form .txt_notice {
  font-size: 1.3rem;
}
.contact_form .txt_indent {
  padding-left: 1em;
  text-indent: -1em;
}
.contact_form .form_pp .txt_box {
  margin-bottom: 15px;
}
.contact_form .form_pp .txt_box a {
  text-decoration: underline;
}
.contact_form .form_pp .checkbox {
  width: 100%;
  padding: 12px 10px 10px 42px;
  margin-bottom: 2px;
  box-sizing: border-box;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  background-color: #EEE;
}
.contact_form .form_pp .checkbox:before {
  display: block;
  content: '';
  width: 7px;
  height: 17px;
  border-right: 3px solid #707070;
  border-bottom: 3px solid #707070;
  position: absolute;
  z-index: 2;
  top: 9px;
  left: 19px;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  opacity: 0;
}
.contact_form .form_pp .checkbox:after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #707070;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .contact_form .form_pp .check_box {
    background: #FAF2E5;
    padding: 5px 10px;
  }
}
.contact_form .btn_box {
  position: relative;
  text-align: center;
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .contact_form .btn_box {
    margin: 30px 0;
  }
}
.contact_form .btn_box input.confirm_btn {
  color: #FFF;
  width: 420px;
  background-color: #404040;
  padding: 15px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  transition: 0.5s;
}
.contact_form .btn_box input.confirm_btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .contact_form .btn_box input.confirm_btn {
    width: 100%;
    font-size: 1.6rem;
  }
}
.contact_form .btn_box input.btn_disabled {
  color: #8A8787;
  background-color: #DCDCDC;
  cursor: pointer;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .contact_form .btn_box input.btn_disabled {
    width: 100%;
  }
}
.contact_form .btn_box input[disabled] {
  background: #DCDCDC;
  cursor: not-allowed;
}

/* 戻るボタン
--------------- */
.retry {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .retry {
    position: relative;
  }
}

.retry_btn {
  display: block;
  position: relative;
  border: 1px solid #E01F06;
  border-radius: 3px;
  color: #E01F06;
  text-align: center;
  font-size: 2.0rem;
  line-height: 4.0rem;
  width: 150px;
  height: 60px;
  box-sizing: border-box;
  background-image: url(../img_cmn/ico_arrow_red_left.svg);
  background-repeat: no-repeat;
  background-color: #fff;
  background-size: 16px 16px;
  background-position: 10px 50%;
}
.retry_btn:hover {
  cursor: pointer;
  color: #fff;
  background-image: url(../img_cmn/ico_arrow_white_left.svg);
  background-repeat: no-repeat;
  background-color: #E01F06;
  background-size: 16px 16px;
  background-position: 10px 50%;
}

/*=================================================
 * お問い合わせ画面
 * ================================================ */
/* ------------------------------------
/* お問合せ - 入力画面
------------------------------------ */
.cont_liaise input[type=radio],
.cont_liaise input[type=checkbox] {
  display: none;
}
.cont_liaise .radio {
  padding: 12px 15px 12px 42px;
  margin-right: 20px;
  box-sizing: border-box;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  position: relative;
  display: inline-block;
  line-height: 1;
  vertical-align: bottom;
  cursor: pointer;
  background-color: #EEE;
}
.cont_liaise .radio:before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 14px;
  margin-top: -7px;
  background-color: #707070;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  opacity: 0;
}
.cont_liaise .radio:after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #707070;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  transform: translateY(-50%);
}

.main_inner {
  padding-bottom: 100px;
}

.main_contact_inner {
  width: 720px;
  margin: 0 auto;
  /* 上部導入
  ------------------------------------ */
  /* フォームcssの上書き
  ------------------------------------ */
}
@media screen and (max-width: 767px) {
  .main_contact_inner {
    width: 100%;
  }
}
.main_contact_inner .contact_top .txt_contact_top {
  margin-bottom: 30px;
}
.main_contact_inner .contact_top .contact_link_box {
  background: #EEE;
  padding: 20px 50px;
}
@media screen and (max-width: 767px) {
  .main_contact_inner .contact_top .contact_link_box {
    padding: 20px 20px;
    margin: 0 -10px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .main_contact_inner .contact_top .contact_link_box .txt_phone {
    font-size: 1.8rem;
  }
}
.main_contact_inner .contact_top .contact_link_box .txt_phone_sp {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .main_contact_inner .contact_top .contact_link_box .txt_phone_sp {
    display: none;
  }
}
.main_contact_inner .contact_top .contact_link_box .phone_btn {
  float: left;
  width: 300px;
}
.main_contact_inner .contact_top .contact_link_box .phone_btn a {
  display: block;
}
@media screen and (min-width: 768px) {
  .main_contact_inner .contact_top .contact_link_box .phone_btn a {
    pointer-events: none;
  }
}
.main_contact_inner .contact_top .contact_link_box .phone_btn .phone_number {
  color: #CF0000;
  font-weight: bold;
  font-size: 3.3rem;
  line-height: 4.2rem;
  margin-left: 25px;
  position: relative;
}
.main_contact_inner .contact_top .contact_link_box .phone_btn .phone_number::before {
  content: "";
  position: absolute;
  background: url("../img_cmn/ico_tel.svg") no-repeat;
  background-size: 23px auto;
  width: 23px;
  height: 30px;
  top: 8px;
  left: -24px;
}
.main_contact_inner .contact_top .contact_link_box .phone_btn .office_hour {
  text-align: right;
  display: block;
  font-size: 1.3rem;
  line-height: 1.3rem;
}
@media screen and (max-width: 767px) {
  .main_contact_inner .contact_top .contact_link_box .phone_btn {
    float: none;
    border: solid 5px #E01F06;
    border-radius: 5px;
    background-color: #fff;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
  }
  .main_contact_inner .contact_top .contact_link_box .phone_btn a {
    display: block;
    padding: 10px 20px;
  }
  .main_contact_inner .contact_top .contact_link_box .phone_btn .phone_number {
    font-size: 2.9rem;
  }
  .main_contact_inner .contact_top .contact_link_box .phone_btn .phone_number::before {
    background-size: 20px auto;
    width: 20px;
    height: 27px;
    top: 8px;
    left: -24px;
  }
  .main_contact_inner .contact_top .contact_link_box .phone_btn .office_hour {
    font-size: 1.2rem;
    text-align: center;
  }
}
@media screen and (max-width: 320px) {
  .main_contact_inner .contact_top .contact_link_box .phone_btn .phone_number {
    font-size: 2.6rem;
  }
  .main_contact_inner .contact_top .contact_link_box .phone_btn .phone_number::before {
    background-size: 18px auto;
    width: 28px;
    height: 25px;
    top: 8px;
    left: -24px;
  }
}
.main_contact_inner .contact_top .contact_link_box .btn_contact {
  display: inline-block;
  float: right;
}
.main_contact_inner .contact_top .contact_link_box .btn_contact a {
  width: 260px;
  height: 60px;
  box-sizing: border-box;
}
.main_contact_inner .contact_top .contact_link_box .btn_contact a span {
  font-size: 1.9rem;
  position: relative;
  top: 2px;
}
@media screen and (max-width: 767px) {
  .main_contact_inner .contact_top .contact_link_box .btn_contact {
    width: 100%;
    float: none;
  }
  .main_contact_inner .contact_top .contact_link_box .btn_contact a {
    width: 100%;
    height: 44px;
    border: 1px solid #E01F06;
    background: #fff;
    color: #E01F06;
  }
  .main_contact_inner .contact_top .contact_link_box .btn_contact a::after {
    background: url(../img_cmn/ico_arrow_red.svg) no-repeat;
  }
  .main_contact_inner .contact_top .contact_link_box .btn_contact a span {
    font-size: 1.5rem;
    line-height: 4.4rem;
    position: relative;
    top: -5px;
  }
}
@media screen and (max-width: 767px) {
  .main_contact_inner .cont_liaise {
    margin: 0 10px;
  }
}
.main_contact_inner .cont_liaise .contact_form {
  background-color: #fff;
  padding: 40px 0;
}

/* ------------------------------------
/* お問合せ - 送信確認画面
------------------------------------ */
.cont_contact_check {
  /* フォームcssの上書き
  ------------------------------------ */
}
.cont_contact_check .contact_top .txt_contact_top {
  margin-bottom: 0px;
}
.cont_contact_check .cont_liaise .contact_form .form_box .txt_th {
  margin-top: 0;
}
.cont_contact_check .cont_liaise .contact_form .form_box .user_mail_address {
  padding: 0 0 50px;
}
.cont_contact_check .cont_liaise .contact_form .form_box .form_td {
  width: 100%;
}

/* ------------------------------------
/* お問合せ - 完了画面
------------------------------------ */
.cont_contact_sent {
  /* フォーム部分
  ------------------------------------ */
}
.cont_contact_sent .contact_top .txt_contact_top {
  margin-bottom: 0px;
}
.cont_contact_sent .contact_top .txt_contact_top strong {
  font-size: 2.5rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .cont_contact_sent .contact_top .txt_contact_top strong {
    font-size: 2.0rem;
  }
}
.cont_contact_sent .contact_form .form_box {
  border-bottom: 1px solid #CF0000;
  padding-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cont_contact_sent .contact_form .form_box {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.cont_contact_sent .contact_form .form_box p {
  margin-bottom: 20px;
}
.cont_contact_sent .contact_form .form_box .contact_link_box {
  background: #EEE;
  padding: 20px 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cont_contact_sent .contact_form .form_box .contact_link_box {
    background: #fff;
    padding: 0;
  }
}
.cont_contact_sent .contact_form .form_box .contact_link_box .phone_btn {
  display: inline-block;
  text-align: center;
  width: 300px;
}
.cont_contact_sent .contact_form .form_box .contact_link_box .phone_btn a {
  display: block;
}
@media screen and (min-width: 768px) {
  .cont_contact_sent .contact_form .form_box .contact_link_box .phone_btn a {
    pointer-events: none;
  }
}
.cont_contact_sent .contact_form .form_box .contact_link_box .phone_btn .phone_number {
  color: #CF0000;
  font-weight: bold;
  font-size: 3.3rem;
  line-height: 4.2rem;
  margin-left: 25px;
  position: relative;
}
.cont_contact_sent .contact_form .form_box .contact_link_box .phone_btn .phone_number::before {
  content: "";
  position: absolute;
  background: url("../img_cmn/ico_tel.svg") no-repeat;
  background-size: 23px auto;
  width: 23px;
  height: 30px;
  top: 8px;
  left: -24px;
}
.cont_contact_sent .contact_form .form_box .contact_link_box .phone_btn .office_hour {
  text-align: right;
  display: block;
  font-size: 1.3rem;
  line-height: 1.3rem;
}
@media screen and (max-width: 767px) {
  .cont_contact_sent .contact_form .form_box .contact_link_box .phone_btn {
    float: none;
    border: solid 5px #E01F06;
    border-radius: 5px;
    background-color: #fff;
    padding: 0px;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
  }
  .cont_contact_sent .contact_form .form_box .contact_link_box .phone_btn a {
    display: block;
    padding: 10px 20px;
  }
  .cont_contact_sent .contact_form .form_box .contact_link_box .phone_btn .phone_number {
    font-size: 2.9rem;
  }
  .cont_contact_sent .contact_form .form_box .contact_link_box .phone_btn .phone_number::before {
    background-size: 20px auto;
    width: 20px;
    height: 27px;
    top: 8px;
    left: -24px;
  }
  .cont_contact_sent .contact_form .form_box .contact_link_box .phone_btn .office_hour {
    font-size: 1.2rem;
    text-align: center;
  }
}
@media screen and (max-width: 320px) {
  .cont_contact_sent .contact_form .form_box .contact_link_box .phone_btn .phone_number {
    font-size: 2.6rem;
  }
  .cont_contact_sent .contact_form .form_box .contact_link_box .phone_btn .phone_number::before {
    background-size: 18px auto;
    width: 28px;
    height: 25px;
    top: 8px;
    left: -24px;
  }
}
.cont_contact_sent .contact_form .btn_contact {
  margin: 40px auto 0;
  width: 360px;
}
@media screen and (max-width: 767px) {
  .cont_contact_sent .contact_form .btn_contact {
    width: 100%;
  }
}

/*=================================================
 * エントリーフォーム画面
 * ================================================ */
/* ------------------------------------
/* エントリーフォーム - 入力画面
------------------------------------ */
@media screen and (max-width: 767px) {
  .cont_recruit .form_box .txt_th .txt_new_line {
    display: none;
  }
}
.cont_recruit .form_box .rowspan_td {
  padding: 0 0 10px !important;
}
.cont_recruit .form_box .description_date {
  margin-bottom: 10px !important;
}
@media screen and (min-width: 768px) {
  .cont_recruit .form_box .description_date {
    width: 158px !important;
    margin-right: 20px !important;
  }
}
.cont_recruit .form_box .select_box {
  background-color: #fff !important;
  border: solid 1px #3E3E3E !important;
  border-right: solid 44px #3E3E3E !important;
}
@media screen and (max-width: 767px) {
  .cont_recruit .form_box .label_iaise_type {
    display: block;
    padding: 8px 10px;
    background-color: #EEE;
    margin: 0 0 15px !important;
  }
  .cont_recruit .form_box .label_iaise_type:last-child {
    margin: 0 0 0 !important;
  }
}
.cont_recruit .form_box .label_iaise_type input {
  margin-right: 5px;
  position: relative;
  top: 0.5px;
  left: 0;
}
.cont_recruit .form_box .liaise_job {
  width: 300px !important;
}
@media screen and (max-width: 767px) {
  .cont_recruit .form_box .liaise_job {
    width: 100% !important;
  }
}
.cont_recruit .form_box .label_iaise_type {
  margin-right: 30px;
}
.cont_recruit .form_box .zipcode span {
  display: inline-block;
}
.cont_recruit .form_box .zipcode input[type=text] {
  width: 135px !important;
  padding: 8px 15px !important;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .cont_recruit .form_box .zipcode input[type=text] {
    width: 270px;
  }
}
.cont_recruit .form_box .zipcode .txt_notice {
  display: inline-block;
  margin-left: 10px !important;
}

/* ------------------------------------
/* エントリーフォーム - 送信確認画面
------------------------------------ */
.cont_recruit_check {
  /* フォームcssの上書き
  ------------------------------------ */
}
.cont_recruit_check .contact_top .txt_contact_top {
  margin-bottom: 0px;
}
.cont_recruit_check .cont_liaise .contact_form .form_box .txt_th {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .cont_recruit_check .cont_liaise .contact_form .form_box .txt_th .txt_new_line {
    display: none;
  }
}
.cont_recruit_check .cont_liaise .contact_form .form_box .user_mail_address {
  padding: 0 0 50px;
}
.cont_recruit_check .cont_liaise .contact_form .form_box .form_td {
  width: 100%;
}
.cont_recruit_check .cont_liaise .contact_form .form_box .form_td .txt_description_date {
  float: left;
  margin-right: 30px;
}
.cont_recruit_check .cont_liaise .contact_form .form_box .form_td .txt_notice {
  margin: 0;
}
.cont_recruit_check .cont_liaise .contact_form .form_box .rowspan_td {
  padding: 0 0 25px !important;
}
@media screen and (max-width: 767px) {
  .cont_recruit_check .cont_liaise .contact_form .form_box .rowspan_td {
    padding: 0 0 15px !important;
  }
}

/* ------------------------------------
/* エントリーフォーム - 完了画面
------------------------------------ */
@media screen and (max-width: 767px) {
  .cont_recruit_sent .form_box {
    padding-top: 0px !important;
  }
}
.cont_recruit_sent .btn_contact {
  margin: 40px auto 0;
  width: 360px;
}
@media screen and (max-width: 767px) {
  .cont_recruit_sent .btn_contact {
    width: 100%;
  }
}

/* ------------------------------------
  共通
------------------------------------ */
/* ------------------------------------
  よくあるご質問(一覧)
------------------------------------ */
@media screen and (max-width: 767px) {
  .cont_faq .faq_top .bg_box {
    margin-bottom: 20px;
  }
  .cont_faq .faq_top .bg_box:last-child {
    margin-bottom: 0;
  }
}
.cont_faq .faq_top .multiple_box_two {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .cont_faq .faq_top .multiple_box_two {
    margin-top: 50px;
  }
}
.cont_faq .faq_top .multiple_box_two .multiple_box_item .page_subtl02 {
  margin-bottom: 35px;
}
.cont_faq .faq_top .multiple_box_two .link_blank {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cont_faq .faq_top .multiple_box_two .link_blank img {
  width: 11px;
  height: 11px;
  margin-left: 5px;
}
.cont_faq .cont_bg_01 {
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .cont_faq .cont_bg_01 {
    padding-bottom: 40px;
  }
}
.cont_faq .txt_faq_top {
  margin: 80px 0 60px;
}
@media screen and (max-width: 767px) {
  .cont_faq .txt_faq_top {
    margin: 60px 0 40px;
  }
}
.cont_faq .faq_list_box .page_subtl02 {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .cont_faq .faq_list_box .page_subtl02 {
    margin-bottom: 20px;
  }
}
.cont_faq .faq_list_box .faq_list {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .cont_faq .faq_list_box .faq_list {
    margin-bottom: 40px;
  }
}
.cont_faq .faq_list_box .faq_list .faq_item {
  border-top: 1px solid #CCC;
  position: relative;
  				/*
          &::before {
            @include ico_content(17px, 16px, 0);
            pointer-events: none;
            background: url(../img_cmn/ico_q.svg) no-repeat center/100% 100%;
            left: 10px;
            top: 29px;
            // sp
            @include pcmq(sm) {
              top: 17px;
            }
          }
          &::after {
            @include ico_content(8px, 15px, -7.5px);
            pointer-events: none;
            background: url(../img_cmn/ico_arrow_accent.svg) no-repeat center/100% 100%;
            right: 10px;
          }
  				*/
  				/*
          a {
            display: block;
            padding: 25px 50px 25px 50px;
            // @include link_hover;
            transition: color .5s;
            &:hover {
              color: $key_color;
            }
            // sp
            @include pcmq(sm) {
              padding: 15px 30px 15px 35px;
            }
          }
  				*/
}
.cont_faq .faq_list_box .faq_list .faq_item:last-child {
  border-bottom: 1px solid #CCC;
}
.cont_faq .border_box {
  margin: 60px 0;
}
@media screen and (max-width: 767px) {
  .cont_faq .border_box {
    margin: 30px 0 40px;
    padding: 20px 10px 1px 10px;
  }
  .cont_faq .border_box .txt_confirm_contact {
    text-align-last: left;
    padding: 0 10px;
  }
  .cont_faq .border_box .base_btn a {
    margin: 0;
  }
}
.cont_faq .border_box p {
  text-align: center;
}

/* ------------------------------------
  よくあるご質問(詳細)
------------------------------------ */
.faq_detail_box .faq_detail_q {
  position: relative;
}
.faq_detail_box .faq_detail_q::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 38%;
  transition: all 0.6s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 1px #3D3527;
  border-right: solid 1px #3D3527;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
@media screen and (max-width: 767px) {
  .faq_detail_box .faq_detail_q::after {
    right: 15px;
  }
}
.faq_detail_box .faq_detail_q.open::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 45%;
}
.faq_detail_box .faq_detail_q .page_subtl04 {
  padding: 20px 45px 20px 40px;
  margin: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq_detail_box .faq_detail_q .page_subtl04 {
    padding: 15px 30px;
  }
}
.faq_detail_box .faq_detail_q .page_subtl04::before {
  content: "";
  display: block;
  width: 20px;
  height: 22px;
  position: absolute;
  top: 50%;
  margin-top: 23px;
  background: url(../img_cmn/ico_q.svg) no-repeat center/100% 100%;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .faq_detail_box .faq_detail_q .page_subtl04::before {
    height: 18px;
    margin-top: 18px;
  }
}
.faq_detail_box .faq_detail_a {
  padding-top: 20px;
  display: none;
}
.faq_detail_box .faq_detail_a .txt_faq_a {
  margin-bottom: 30px;
}
.faq_detail_box .faq_detail_a .bg_box .answer_link_box {
  display: flex;
  align-items: center;
  color: #E01F06;
}
.faq_detail_box .faq_detail_a .bg_box .answer_link_box span {
  width: 150px;
}
@media screen and (max-width: 767px) {
  .faq_detail_box .faq_detail_a .bg_box .answer_link_box span {
    width: 115px;
  }
}
.faq_detail_box .faq_detail_a .bg_box .answer_link_box a {
  color: #E01F06;
  text-decoration: underline;
  position: relative;
  color: #3D3527;
  transition: color .5s;
}
.faq_detail_box .faq_detail_a .bg_box .answer_link_box a:hover {
  color: #E01F06;
}
.faq_detail_box .faq_detail_a .bg_box .answer_link_box a::before {
  content: "";
  display: block;
  width: 8px;
  height: 15px;
  position: absolute;
  top: 50%;
  margin-top: -7.5px;
  background: url(../img_cmn/ico_arrow_accent.svg) no-repeat center/100% 100%;
  pointer-events: none;
  left: -18px;
}

/* ------------------------------------
	040_voice-list.html
------------------------------------ */
.cont_voice_list .cont_bg_01 {
  padding-bottom: 60px;
}
.cont_voice_list .voice_list_top {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .cont_voice_list .voice_list_top {
    margin-top: 60px;
  }
}
.cont_voice_list .voice_list_top .img_box {
  max-width: 960px;
  margin: 0 auto;
}
.cont_voice_list .voice_list_top .img_box img {
  width: 100%;
  height: auto;
}
.cont_voice_list .voice_list_top .page_subtl02 {
  text-align: center;
  color: #E01F06;
  margin: 30px 0 40px;
}
@media screen and (max-width: 767px) {
  .cont_voice_list .voice_list_top .page_subtl02 {
    margin: 20px 0 30px;
    font-size: 1.8rem;
  }
}
.cont_voice_list .voice_list_top .txt_center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cont_voice_list .voice_list_top .txt_center {
    text-align: left;
  }
}
.cont_voice_list .voice_list_box .img_box {
  max-width: 960px;
  margin: 0 auto;
}
.cont_voice_list .voice_list_box .img_box img {
  width: 100%;
  height: auto;
}
.cont_voice_list .voice_list_box .box_absolute {
  width: 700px;
  margin: 0 auto;
  padding: 30px;
  background-color: #fff;
  position: relative;
  top: -60px;
}
@media screen and (max-width: 767px) {
  .cont_voice_list .voice_list_box .box_absolute {
    position: static;
    padding: 0;
    width: unset;
  }
}
.cont_voice_list .voice_list_box .box_absolute .page_subtl02 {
  margin: 0 0 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cont_voice_list .voice_list_box .box_absolute .page_subtl02 {
    text-align: left;
    margin: 20px 0 30px;
  }
}
.cont_voice_list .voice_list_box .box_absolute .page_subtl02 .key_color_txt {
  color: #E01F06;
}
.cont_voice_list .voice_list_bottom {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .cont_voice_list .voice_list_bottom {
    margin-top: 60px;
  }
}
.cont_voice_list .voice_list_bottom .page_subtl {
  margin: 0 0 60px;
}
@media screen and (max-width: 767px) {
  .cont_voice_list .voice_list_bottom .page_subtl {
    margin-bottom: 30px;
  }
}
.cont_voice_list .voice_list_bottom .txt_center {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .cont_voice_list .voice_list_bottom .txt_center {
    text-align: left;
  }
}
.cont_voice_list .voice_list_bottom .voice_list_table {
  padding: 30px 20px 40px;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .cont_voice_list .voice_list_bottom .voice_list_table {
    padding: 20px 10px 30px;
    margin-bottom: 60px;
  }
}
.cont_voice_list .voice_list_bottom .voice_list_table .page_subtl02 {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cont_voice_list .voice_list_bottom .voice_list_table .page_subtl02 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}
.cont_voice_list .voice_list_bottom .voice_list_table .voice_list {
  border-top: #CCC 1px solid;
}
.cont_voice_list .voice_list_bottom .voice_list_table .voice_list .voice_list_item {
  border-bottom: #CCC 1px solid;
}
.cont_voice_list .voice_list_bottom .voice_list_table .voice_list .voice_list_item .tl_voice_item {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .cont_voice_list .voice_list_bottom .voice_list_table .voice_list .voice_list_item .tl_voice_item {
    font-size: 1.6rem;
  }
}
.cont_voice_list .voice_list_bottom .voice_list_table .voice_list .voice_list_item .customer_detail {
  font-size: 1.6rem;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .cont_voice_list .voice_list_bottom .voice_list_table .voice_list .voice_list_item .customer_detail {
    font-size: 1.3rem;
  }
}
.cont_voice_list .voice_list_bottom .voice_list_table .voice_detail_box .voice_detail_tl {
  padding: 20px 30px 20px 0;
  position: relative;
}
.cont_voice_list .voice_list_bottom .voice_list_table .voice_detail_box .voice_detail_tl::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 38%;
  transition: all 0.6s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 1px #3D3527;
  border-right: solid 1px #3D3527;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
@media screen and (max-width: 767px) {
  .cont_voice_list .voice_list_bottom .voice_list_table .voice_detail_box .voice_detail_tl::after {
    right: 15px;
  }
}
.cont_voice_list .voice_list_bottom .voice_list_table .voice_detail_box .voice_detail_tl.open::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 45%;
}
.cont_voice_list .voice_list_bottom .voice_list_table .voice_detail_box .voice_detail_tl .page_subtl04 {
  padding: 20px 45px 20px 40px;
  margin: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .cont_voice_list .voice_list_bottom .voice_list_table .voice_detail_box .voice_detail_tl .page_subtl04 {
    padding: 15px 30px;
  }
}
.cont_voice_list .voice_list_bottom .voice_list_table .voice_detail_box .voice_detail_tl .page_subtl04::before {
  content: "";
  display: block;
  width: 20px;
  height: 22px;
  position: absolute;
  top: 50%;
  margin-top: 23px;
  background: url(../img_cmn/ico_q.svg) no-repeat center/100% 100%;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .cont_voice_list .voice_list_bottom .voice_list_table .voice_detail_box .voice_detail_tl .page_subtl04::before {
    height: 18px;
    margin-top: 18px;
  }
}
.cont_voice_list .voice_list_bottom .voice_list_table .voice_detail_box .voice_detail_txt {
  padding-top: 20px;
  display: none;
}
.cont_voice_list .voice_list_bottom .voice_list_table .voice_detail_box .voice_detail_txt .txt {
  margin-bottom: 30px;
}
.cont_voice_list .voice_list_bottom .voice_list_table .base_btn {
  margin: 40px 0 0;
}
@media screen and (max-width: 767px) {
  .cont_voice_list .voice_list_bottom .voice_list_table .base_btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .cont_voice_list .bnr_recruit {
    margin-bottom: 0;
  }
}

/* ------------------------------------
	041_voice-detail.html
------------------------------------ */
/*
.cont_voice_detail {
	.voice_detail_top {
		padding-bottom: 30px;
		margin-bottom: 30px;
		border-bottom: 1px solid $border_color;
		// sp
		@include pcmq(sm) {
			padding-bottom: 20px;
		}

		.page_subtl02 {
			// sp
			@include pcmq(sm) {
				margin-top: 60px;
			}
		}
	}

	.other_voice_box {
		margin-top: 80px;
		// sp
		@include pcmq(sm) {
			margin-top: 40px;
		}
		.page_subtl02 {
			margin-top: 0;
			// sp
			@include pcmq(sm) {
				margin-bottom: 10px;
			}
		}
	}
	.voice_list {
   border-top: $border_color 1px solid;
		.voice_list_item {
			border-bottom: $border_color 1px solid;
			.tl_voice_item {
				font-weight: bold;
				font-size: 2rem;
				margin-bottom: 10px;
				// sp
				@include pcmq(sm) {
					font-size: 1.6rem;
				}
			}

			.customer_detail {
				font-size: 1.6rem;
				margin-bottom: 0;
				// sp
				@include pcmq(sm) {
					font-size: 1.3rem;
				}
			}
		}
	}
	

	.back_btn {
		margin-top: 60px;
		// sp
		@include pcmq(sm) {
			margin: 30px 0 60px;
		}
	}
}
*/
/* ------------------------------------
  共通
------------------------------------ */
/* 日本地図
 ------------------------------------ */
.store_search_map {
  position: relative;
  /* エリアマップ */
  /* エリア名リスト（PC表示） */
  /* エリア名リスト（PC表示） */
}
@media screen and (max-width: 767px) {
  .store_search_map {
    text-align: center;
    width: 300px;
    margin: 0 auto;
  }
}
.store_search_map .map_svg {
  position: relative;
}
@media screen and (max-width: 767px) {
  .store_search_map .map_svg {
    height: 380px;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
}
.store_search_map .map_svg .g_areamap_wrap {
  position: absolute;
  top: 0;
  right: 40px;
}
@media screen and (max-width: 767px) {
  .store_search_map .map_svg .g_areamap_wrap {
    position: static;
  }
}
.store_search_map .map_svg .path_areamap {
  fill: #bbb;
}
.store_search_map .map_svg .g_areamap.active a .path_areamap {
  fill: #FFAF00;
}
.store_search_map .map_svg .g_areamap.active a:hover .path_areamap {
  fill: #E01F06 !important;
}
.store_search_map .map_svg .g_areamap a {
  cursor: default;
  pointer-events: none;
}
.store_search_map .map_svg .g_areamap.active a {
  cursor: pointer;
  pointer-events: auto;
}
.store_search_map .area_list.pc_cont .area_name_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100px;
}
.store_search_map .area_list.pc_cont .area_name_list li {
  width: 50%;
  box-sizing: border-box;
  padding-left: 5px;
  font-size: 1.4rem;
}
.store_search_map .area_list.pc_cont .area_name_list li:first-child {
  width: 100%;
  margin: 0 0 10px;
  padding: 0 0 5px;
  border-bottom: solid 1px #E01F06;
  text-align: center;
  font-weight: bold;
}
.store_search_map .area_list.pc_cont .area_name_list li:first-child .area_group_name {
  color: #BBBBBB;
}
.store_search_map .area_list.pc_cont .area_name_list li:first-child .area_group_name.active {
  color: #3D3527;
}
.store_search_map .area_list.pc_cont .area_name_list li.one_column {
  width: 100%;
  text-align: center;
}
.store_search_map .area_list.pc_cont .area_name_list li .area_name {
  display: block;
  color: #BBBBBB;
  cursor: default;
  pointer-events: none;
}
.store_search_map .area_list.pc_cont .area_name_list li .area_name.active {
  color: #3D3527;
  cursor: pointer;
  pointer-events: auto;
}
.store_search_map .area_list.pc_cont .area_name_list.hokkaido {
  position: absolute;
  top: 0;
  left: 280px;
}
.store_search_map .area_list.pc_cont .area_name_list.tohoku {
  position: absolute;
  top: 120px;
  left: 420px;
}
.store_search_map .area_list.pc_cont .area_name_list.kanto {
  position: absolute;
  top: 250px;
  left: 400px;
}
.store_search_map .area_list.pc_cont .area_name_list.koushin-hokuriku {
  position: absolute;
  top: 100px;
  left: 240px;
}
.store_search_map .area_list.pc_cont .area_name_list.tokai {
  position: absolute;
  top: 360px;
  left: 280px;
}
.store_search_map .area_list.pc_cont .area_name_list.kinki {
  position: absolute;
  top: 160px;
  left: 120px;
}
.store_search_map .area_list.pc_cont .area_name_list.chugoku {
  position: absolute;
  top: 220px;
  left: 0;
}
.store_search_map .area_list.pc_cont .area_name_list.shikoku {
  position: absolute;
  top: 400px;
  left: 170px;
}
.store_search_map .area_list.pc_cont .area_name_list.kyushu {
  position: absolute;
  top: 340px;
  left: 0;
}
.store_search_map .area_list.sp_cont {
  /*=================================================
   * ポップアップボタン
   * ================================================ */
  /* ポップアップウインドウの設定 */
  /* チェックボックスの初期設定 */
  /* チェックされたらポップアップウインドウを開く */
  /* 閉じるアイコン（右上） */
  /* 開くボタン */
  /* ポップアップの内容 */
}
.store_search_map .area_list.sp_cont .pop-box {
  position: absolute;
}
.store_search_map .area_list.sp_cont .pop-box.hokkaido {
  top: 30px;
  left: 160px;
}
.store_search_map .area_list.sp_cont .pop-box.tohoku {
  top: 150px;
  left: 240px;
}
.store_search_map .area_list.sp_cont .pop-box.kanto {
  top: 230px;
  left: 220px;
}
.store_search_map .area_list.sp_cont .pop-box.koushin-hokuriku {
  top: 130px;
  left: 70px;
}
.store_search_map .area_list.sp_cont .pop-box.tokai {
  top: 280px;
  left: 160px;
}
.store_search_map .area_list.sp_cont .pop-box.kinki {
  top: 170px;
  left: 80px;
}
.store_search_map .area_list.sp_cont .pop-box.chugoku {
  top: 200px;
  left: 40px;
}
.store_search_map .area_list.sp_cont .pop-box.shikoku {
  top: 300px;
  left: 70px;
}
.store_search_map .area_list.sp_cont .pop-box.kyushu {
  top: 230px;
  left: -5px;
}
.store_search_map .area_list.sp_cont .popup {
  background-color: #fff;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.8);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 80vw;
  height: 220px;
  max-width: 400px;
  overflow-y: scroll;
  z-index: 999;
}
.store_search_map .area_list.sp_cont .popup.popup_radius {
  border-radius: 5px;
  height: 70vh;
}
.store_search_map .area_list.sp_cont .pop-checkbox {
  display: none;
}
.store_search_map .area_list.sp_cont .pop-checkbox:checked + .popup {
  display: block;
}
.store_search_map .area_list.sp_cont .icon-close {
  background: #404040;
  color: #FFF;
  font-size: 20px;
  padding: 0 10px;
  position: absolute;
  right: 0;
}
.store_search_map .area_list.sp_cont .label_btn-open {
  pointer-events: none;
}
.store_search_map .area_list.sp_cont .label_btn-open.active {
  pointer-events: auto;
}
.store_search_map .area_list.sp_cont .label_btn-open.active .btn-open {
  color: #3D3527;
  padding: 3px 15px 3px 3px;
  position: relative;
}
.store_search_map .area_list.sp_cont .label_btn-open.active .btn-open::after {
  content: "";
  display: block;
  width: 6px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 3px;
  margin-top: -6px;
  background: url("../img_cmn/ico_arrow_keycolor.svg") no-repeat;
  background-size: 6px 10px;
}
.store_search_map .area_list.sp_cont .label_btn-open .btn-open {
  display: inline-block;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: bold;
  border-bottom: solid 1px #E01F06;
  position: relative;
  color: #BBBBBB;
}
.store_search_map .area_list.sp_cont .popup-content {
  margin: 30px auto;
}
.store_search_map .area_list.sp_cont .popup-content .area_name_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 200px;
  margin: 0 auto;
}
.store_search_map .area_list.sp_cont .popup-content .area_name_list li {
  width: 50%;
  box-sizing: border-box;
  padding-left: 5px;
  margin-top: 5px;
  font-size: 1.4rem;
  text-align: left;
}
.store_search_map .area_list.sp_cont .popup-content .area_name_list li:first-child {
  width: 100%;
  margin: 0 0 10px;
  padding: 0 0 5px;
  border-bottom: solid 1px #E01F06;
  text-align: center;
  font-weight: bold;
}
.store_search_map .area_list.sp_cont .popup-content .area_name_list li:first-child .area_group_name {
  color: #BBBBBB;
}
.store_search_map .area_list.sp_cont .popup-content .area_name_list li:first-child .area_group_name.active {
  color: #3D3527;
}
.store_search_map .area_list.sp_cont .popup-content .area_name_list li.one_column {
  width: 100%;
  text-align: center;
  padding: 0;
}
.store_search_map .area_list.sp_cont .popup-content .area_name_list li .link_area_name {
  display: inline-block;
  color: #BBBBBB;
  cursor: default;
  pointer-events: none;
  position: relative;
}
.store_search_map .area_list.sp_cont .popup-content .area_name_list li .link_area_name.active {
  padding-right: 15px;
  color: #3D3527;
  cursor: pointer;
  pointer-events: auto;
}
.store_search_map .area_list.sp_cont .popup-content .area_name_list li .link_area_name.active::after {
  content: "";
  display: block;
  width: 6px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 0px;
  margin-top: -6px;
  background: url("../img_cmn/ico_arrow_keycolor.svg") no-repeat;
  background-size: 6px 10px;
}

/* 店舗検索
------------------------------------ */
.store_search_box {
  /* 店舗数
  --------------- */
  /* 最近見た店舗
  --------------- */
  /* 地図から探す
  ------------------------------------ */
  /* 取扱い・キーワードから探す
  ------------------------------------ */
 /* 共通
--------------- */
  /* セレクトボックスのスタイル設定
  --------------- */
 /* 都道府県名選択
------------------------------------ */
 /* 取扱い・キーワードから探す
------------------------------------ */
}
.store_search_box .page_subtl {
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .store_search_box .page_subtl {
    margin: 30px 0;
  }
}
.store_search_box .page_subtl02 {
  margin: 40px 0 30px;
}
@media screen and (max-width: 767px) {
  .store_search_box .page_subtl02 {
    margin: 30px 0 20px;
  }
}
.store_search_box .number_of_store {
  color: #FFAF00;
  font-size: 2.4rem;
  text-align: center;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  margin-top: -10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .store_search_box .number_of_store {
    display: block;
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
}
.store_search_box .number_of_store em {
  font-size: 3.6rem;
  margin-left: 0.4em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .store_search_box .number_of_store em {
    font-size: 2.6rem;
  }
}
.store_search_box .btn_search_past a {
  display: flex;
  justify-content: space-between;
  background-color: #545454;
  min-height: 44px;
  line-height: 1.2;
  padding: 15px;
  color: #FFF;
  border-radius: 4px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  position: relative;
  transition: 0.5s;
}
.store_search_box .btn_search_past a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .store_search_box .btn_search_past a {
    padding-right: 30px;
    justify-content: flex-start;
  }
  .store_search_box .btn_search_past a::after {
    content: "";
    display: block;
    width: 8px;
    height: 14px;
    position: absolute;
    top: 50%;
    margin-top: -7px;
    background: url("../img_cmn/ico_arrow_white.svg") no-repeat;
    background-size: 8px auto;
    right: 15px;
  }
}
.store_search_box .btn_search_past .btn_inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.store_search_box .btn_search_past .tl {
  font-size: 1.4rem;
  padding-right: 10px;
  border-right: #FFF 1px solid;
  margin-right: 10px;
  width: 6em;
}
@media screen and (max-width: 767px) {
  .store_search_box .btn_search_past .tl {
    font-size: 1.2rem;
    width: 11em;
  }
}
.store_search_box .btn_search_past .store_name {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .store_search_box .btn_search_past .store_name {
    font-size: 1.4rem;
  }
}
.store_search_box .btn_search_past .store_flyer {
  font-size: 1.6rem;
  display: inline-block;
  margin-left: 5px;
}
.store_search_box .btn_search_past .btn_more_link {
  display: inline-block;
  width: 300px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #FFF;
  border-radius: 4px;
  color: #3D3527;
  position: relative;
}
@media screen and (max-width: 767px) {
  .store_search_box .btn_search_past .btn_more_link {
    display: none;
  }
}
.store_search_box .btn_search_past .btn_more_link::after {
  content: "";
  display: block;
  width: 8px;
  height: 14px;
  position: absolute;
  top: 50%;
  margin-top: -7px;
  background: url("../img_cmn/ico_arrow_accent.svg") no-repeat;
  background-size: 8px auto;
  right: 20px;
}
.store_search_box .store_search_map_box {
  width: 540px;
  height: 600px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .store_search_box .store_search_map_box {
    width: auto;
    height: auto;
    margin-bottom: 0;
  }
}
.store_search_box .store_search_detail_box {
  width: 380px;
}
@media screen and (max-width: 767px) {
  .store_search_box .store_search_detail_box {
    width: auto;
  }
}
.store_search_box .store_search_detail_box .btn_reset {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .store_search_box .store_search_detail_box .btn_reset {
    margin-top: 20px;
  }
}
.store_search_box .store_search_detail_box .btn_reset button {
  border: 1px solid #CCC;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
  width: 160px;
  max-width: 100%;
  line-height: 32px;
  box-sizing: border-box;
  font-size: 1.4rem;
  transition: 0.5s;
}
.store_search_box .store_search_detail_box .btn_reset button:hover {
  opacity: 0.8;
}
.store_search_box .store_search_detail_box .btn_reset button:hover {
  border: 1px solid #E01F06;
}
.store_search_box .store_search_detail_box .btn_reset button::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  margin-top: 0;
  background: url("../img_cmn/ico_cross.svg") no-repeat;
  background-size: 12px auto;
  position: static;
  display: inline-block;
  margin-right: 5px;
  transition: 0.5s;
}
.store_search_box .store_search_detail_box .btn_reset button::before:hover {
  opacity: 0.8;
}
.store_search_box .store_search_detail_box .btn_reset button:hover::before {
  background: url("../img_cmn/ico_cross_hover.svg") no-repeat;
}
.store_search_box button,
.store_search_box input[type=text],
.store_search_box select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /** add */
  border-right: 1px solid #F7F7F7;
  border-bottom: 1px solid #F7F7F7;
  background: #FFF;
  font-size: 1.6rem;
  line-height: 1.6;
}
.store_search_box button::placeholder,
.store_search_box input[type=text]::placeholder,
.store_search_box select::placeholder {
  color: #CECBCB;
}
.store_search_box .select_label {
  position: relative;
  display: inline-block;
  border-radius: 0;
  z-index: 0;
  margin: 0 10px 0 0;
  border: #CCC 1px solid;
}
@media screen and (max-width: 767px) {
  .store_search_box .select_label {
    width: 100%;
  }
}
.store_search_box .select_label::after {
  content: "";
  display: block;
  width: 14px;
  height: 8px;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  background: url("../img_cmn/ico_arrow_keycolor_down.svg") no-repeat;
  background-size: 14px auto;
  right: 20px;
  pointer-events: none;
}
.store_search_box .select_label select {
  padding: 13px 20px 12px;
  cursor: pointer;
  width: 380px;
  box-sizing: border-box;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.store_search_box .select_label select::-ms-expand {
  display: none;
}
@media screen and (max-width: 767px) {
  .store_search_box .select_label select {
    width: 100%;
  }
}
.store_search_box .store_search_handle_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px 0;
}
.store_search_box .store_search_handle_item {
  width: 48%;
}
.store_search_box .store_search_handle_item:nth-child(1) {
  order: 1;
}
.store_search_box .store_search_handle_item:nth-child(2) {
  order: 3;
}
.store_search_box .store_search_handle_item:nth-child(3) {
  order: 5;
}
.store_search_box .store_search_handle_item:nth-child(4) {
  order: 7;
}
.store_search_box .store_search_handle_item:nth-child(5) {
  order: 2;
}
.store_search_box .store_search_handle_item:nth-child(6) {
  order: 4;
}
.store_search_box .store_search_handle_item:nth-child(7) {
  order: 6;
}
.store_search_box .store_search_handle_item:nth-child(8) {
  order: 8;
}
.store_search_box .store_search_handle_item .checkbox {
  padding: 10px 0;
  display: inline-block;
}
.store_search_box .search_keyword_box .search_keyword {
  width: 380px;
  padding: 13px 20px 12px;
  box-sizing: border-box;
  margin-right: 10px;
  border: none;
  border: #CCC 1px solid;
}
@media screen and (max-width: 767px) {
  .store_search_box .search_keyword_box .search_keyword {
    width: 100%;
  }
}
.store_search_box .search_btn_box {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .store_search_box .search_btn_box {
    margin-bottom: 60px;
  }
}
.store_search_box .search_btn_box .search_btn {
  display: block;
  color: #FFF;
  background-color: #404040;
  border-radius: 4px;
  font-size: 2rem;
  text-align: center;
  width: 300px;
  max-width: 100%;
  line-height: 50px;
  box-sizing: border-box;
  margin: 0 auto;
  transition: 0.5s;
}
.store_search_box .search_btn_box .search_btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .store_search_box .search_btn_box .search_btn {
    width: 90%;
    margin: 0 15px;
    font-size: 1.6rem;
  }
}
.store_search_box .search_btn_box .search_btn::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  margin-top: 0;
  background: url("../img_cmn/ico_search.svg") 0 0 no-repeat;
  background-size: 20px;
  position: static;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  margin-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .store_search_box .search_btn_box .search_btn::before {
    margin-right: 5px;
  }
}

/* 取扱商品アイコン
------------------------------------ */
.store_handle_list_outer {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .store_handle_list_outer {
    flex-direction: column;
  }
}

.store_handle_list {
  display: flex;
}

.store_handle_item {
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  background-color: #FFF;
  margin: 0 5px 5px 0;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .store_handle_item {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin: 0 5px 5px 0;
  }
}
.store_handle_item.item01 {
  border: #F53219 1px solid;
  color: #F53219;
}
.store_handle_item.item02 {
  border: #0656E0 1px solid;
  color: #0656E0;
}
.store_handle_item.item03 {
  border: #06B3E0 1px solid;
  color: #06B3E0;
}
.store_handle_item.item04 {
  border: #FF7700 1px solid;
  color: #FF7700;
}
.store_handle_item.item05 {
  border: #2BA733 1px solid;
  color: #2BA733;
}
.store_handle_item.item06 {
  border: #E01F06 1px solid;
  color: #E01F06;
}
.store_handle_item.item07 {
  border: #3F5FDE 1px solid;
  color: #3F5FDE;
}
.store_handle_item.item08 {
  border: #CB9214 1px solid;
  color: #CB9214;
}
.store_handle_item::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  margin-top: 0;
  background: 50% 50% no-repeat;
  position: static;
  margin: 3px auto 3px;
}
@media screen and (max-width: 767px) {
  .store_handle_item::before {
    width: 30px;
    height: 25px;
  }
}
.store_handle_item.item01::before {
  background-image: url(../img_cmn/ico_store_handle_item_01.svg);
}
.store_handle_item.item02::before {
  background-image: url(../img_cmn/ico_store_handle_item_02.svg);
}
.store_handle_item.item03::before {
  background-image: url(../img_cmn/ico_store_handle_item_03.svg);
}
.store_handle_item.item04::before {
  background-image: url(../img_cmn/ico_store_handle_item_04.svg);
}
.store_handle_item.item05::before {
  background-image: url(../img_cmn/ico_store_handle_item_05.svg);
}
.store_handle_item.item06::before {
  background-image: url(../img_cmn/ico_store_handle_item_06.svg);
}
.store_handle_item.item07::before {
  background-image: url(../img_cmn/ico_store_handle_item_07.svg);
}
.store_handle_item.item08::before {
  background-image: url(../img_cmn/ico_store_handle_item_08.svg);
}
@media screen and (max-width: 767px) {
  .store_handle_item.item01::before {
    background-size: 23px auto;
  }
  .store_handle_item.item02::before {
    background-size: 21px auto;
  }
  .store_handle_item.item03::before {
    background-size: 21px auto;
  }
  .store_handle_item.item04::before {
    background-size: 23px auto;
  }
  .store_handle_item.item05::before {
    background-size: 21px auto;
  }
  .store_handle_item.item06::before {
    background-size: 26px auto;
  }
  .store_handle_item.item07::before {
    background-size: 28px auto;
  }
  .store_handle_item.item08::before {
    background-size: 27px auto;
  }
}

/* ------------------------------------
  100_store.html
  店舗案内・Webチラシ（店舗検索）
------------------------------------ */
/* LINE公式アカウント　説明
------------------------------------ */
.store_line {
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .store_line {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .store_line source, .store_line img {
    width: 100%;
  }
}
.store_line .txt {
  text-align: center;
  font-size: 1.8rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .store_line .txt {
    font-size: 1.6rem;
    margin-top: 20px;
  }
}
.store_line .txt:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  margin-top: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 40px solid #07B53B;
  position: static;
  margin: 20px auto 0;
}
@media screen and (max-width: 767px) {
  .store_line .txt:after {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid #07B53B;
  }
}
.store_line .txt em {
  font-size: 2.8rem;
  font-weight: bold;
  color: #07B53B;
}
@media screen and (max-width: 767px) {
  .store_line .txt em {
    font-size: 2.2rem;
  }
}

.store_search_qr {
  margin: 0 100px 120px;
}
@media screen and (max-width: 767px) {
  .store_search_qr {
    display: none;
  }
}
.store_search_qr .multiple_box {
  justify-content: space-between;
}

/* ------------------------------------
  101_store_list.html
  検索結果（一覧）
------------------------------------ */
/* 検索条件
------------------------------------ */
.search_criteria_box {
  border: #545454 1px solid;
  padding: 30px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .search_criteria_box {
    padding: 20px;
    margin-bottom: 20px;
  }
}
.search_criteria_box .inner {
  display: flex;
  align-items: center;
}
.search_criteria_box .tl {
  font-size: 1.4rem;
  border-right: #545454 1px solid;
  margin-right: 30px;
  width: 6em;
}
@media screen and (max-width: 767px) {
  .search_criteria_box .tl {
    font-size: 1.3rem;
    margin-right: 15px;
    width: 5em;
  }
}
.search_criteria_box .txt {
  font-size: 2rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .search_criteria_box .txt {
    font-size: 1.6rem;
  }
}

.search_criteria_txt .number_of_store {
  margin: 0 5px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}
.search_criteria_txt .number_of_store em {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .search_criteria_txt .number_of_store em {
    font-size: 2rem;
  }
}

/* 検索条件
------------------------------------ */
.store_list_tl {
  font-size: 3.6rem;
  margin: 60px 0 30px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .store_list_tl {
    font-size: 2.4rem;
    margin: 50px 0 20px;
  }
}
.store_list_tl .number_of_store {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .store_list_tl .number_of_store {
    font-size: 1.6rem;
  }
}

/* リスト　レイアウト
------------------------------------ */
.store_list {
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .store_list {
    margin: 0 -15px 60px;
  }
}
.store_list .search_criteria_txt {
  font-weight: bold;
}
.store_list .search_criteria_txt em {
  font-size: 2rem;
}

.store_list_item {
  background-color: #F8F8F8;
  padding: 30px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .store_list_item {
    padding: 0 15px 20px;
    margin-bottom: 15px;
  }
}
.store_list_item .store_detail_box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .store_list_item .store_detail_box {
    flex-direction: column;
  }
}
.store_list_item .map_box {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .store_list_item .map_box {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .store_list_item .map_box .map_box_inner {
    position: relative;
    width: 100%;
    padding-top: 220px;
  }
}
@media screen and (max-width: 767px) {
  .store_list_item .map_box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/* 店舗詳細（左カラム）
------------------------------------ */
.store_detail_01 {
  /* 店名
  --------------- */
  /* 住所
  --------------- */
  /* 営業時間、電話番号、FAX番号
  --------------- */
}
.store_detail_01 .store_name_box {
  transition: 0.5s;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
.store_detail_01 .store_name_box:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .store_detail_01 .store_name_box {
    display: block;
    padding-top: 20px;
    border-bottom: #CCC 1px solid;
    margin-bottom: 20px;
  }
}
.store_detail_01 .store_name_box:hover {
  color: #E01F06;
}
@media screen and (max-width: 767px) {
  .store_detail_01 .store_name_box::after {
    content: "";
    display: block;
    width: 8px;
    height: 14px;
    position: absolute;
    top: 50%;
    margin-top: -7px;
    background: url("../img_cmn/ico_arrow_accent.svg") no-repeat;
    background-size: 8px auto;
    right: 10px;
  }
}
.store_detail_01 .store_name {
  font-size: 2.6rem;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .store_detail_01 .store_name {
    font-size: 2rem;
  }
}
.store_detail_01 .store_name_en {
  color: #E01F06;
  transition: 0.5s;
}
.store_detail_01 .store_name_en:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .store_detail_01 .store_name_en {
    margin-bottom: 15px;
  }
}
.store_detail_01 .address {
  margin-bottom: 20px;
}
.store_detail_01 .store_detail_01_list {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .store_detail_01 .store_detail_01_list {
    flex-direction: row;
  }
}
.store_detail_01 .store_detail_01_list .store_detail_01_item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .store_detail_01 .store_detail_01_list .store_detail_01_item {
    width: 50%;
    flex-direction: column;
    align-items: flex-start;
  }
}
.store_detail_01 .store_detail_01_list .tl {
  width: 6em;
}
@media screen and (max-width: 767px) {
  .store_detail_01 .store_detail_01_list .tl {
    margin-bottom: 5px;
  }
}
.store_detail_01 .store_detail_01_list .tl img {
  vertical-align: middle;
  margin-right: 5px;
}
.store_detail_01 .store_detail_01_list .txt a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .store_detail_01 .store_detail_01_list .txt a[href^="tel:"] {
    pointer-events: auto;
    color: #E01F06;
    text-decoration: underline;
  }
}

/* 取扱いico、btn（右カラム）
------------------------------------ */
.store_detail_02 {
  width: 520px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .store_detail_02 {
    width: auto;
  }
}
.store_detail_02 .store_handle_list {
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .store_detail_02 .store_handle_list {
    justify-content: flex-start;
  }
}
.store_detail_02 .store_handle_item {
  margin: 0 0 5px 5px;
}
@media screen and (max-width: 767px) {
  .store_detail_02 .store_handle_item {
    margin: 0 5px 5px 0;
  }
}

/* チラシ、地図ボタン
------------------------------------ */
.store_detail_btn_list {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .store_detail_btn_list {
    margin-top: 15px;
    position: static;
  }
}
@media screen and (max-width: 767px) {
  .store_detail_btn_list .store_detail_btn_item {
    width: 48%;
  }
  .store_detail_btn_list .store_detail_btn_item:first-child {
    margin-right: 4%;
  }
}
.store_detail_btn_list .btn {
  width: 200px;
  margin: 0 0 0 10px;
}
@media screen and (max-width: 767px) {
  .store_detail_btn_list .btn {
    width: auto;
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .store_detail_btn_list .btn a {
    font-size: 1.4rem;
    margin: 0;
  }
}
.store_detail_btn_list .btn_flyer a::before {
  content: "";
  display: block;
  width: 30px;
  height: 24px;
  position: absolute;
  top: 50%;
  margin-top: 0;
  background: url("../img_cmn/ico_flyer.svg") 0 0 no-repeat;
  position: static;
  vertical-align: middle;
  display: inline-block;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .store_detail_btn_list .btn_flyer a::before {
    width: 22px;
    height: 18px;
    background-size: 22px auto;
    margin-right: 5px;
  }
}
.store_detail_btn_list .btn_map a {
  padding-right: 10px;
  position: relative;
}
.store_detail_btn_list .btn_map a::before {
  content: "";
  display: block;
  width: 21px;
  height: 30px;
  position: absolute;
  top: 50%;
  margin-top: 0;
  background: url("../img_cmn/ico_mappin.svg") 0 0 no-repeat;
  background-size: 20px auto;
  position: static;
  vertical-align: middle;
  display: inline-block;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .store_detail_btn_list .btn_map a::before {
    width: 15px;
    height: 22px;
    background-size: 15px auto;
    margin-right: 5px;
  }
}
.store_detail_btn_list .btn_map a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 15px;
  top: 38%;
  transition: 0.5s;
}
.store_detail_btn_list .btn_map a.open::after {
  transform: rotate(-135deg);
  top: 45%;
}

/* 店舗別のお知らせ
------------------------------------ */
.store_news {
  background-color: #E1E1E1;
  margin-top: 30px;
  padding: 10px 20px;
}
@media screen and (max-width: 767px) {
  .store_news {
    margin-top: 20px;
  }
}
.store_news .txt {
  font-size: 1.4rem;
}

/* ------------------------------------
  102_store_detail.html
  店舗詳細
------------------------------------ */
/* 店舗詳細01
------------------------------------ */
.store_detail_about {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  /* 営業時間・電話番号・FAX
  --------------- */
}
@media screen and (max-width: 767px) {
  .store_detail_about {
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 60px;
    margin-bottom: 15px;
  }
}
.store_detail_about .store_detail_box {
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .store_detail_about .store_detail_box {
    margin-right: 0;
  }
}
.store_detail_about .store_name_box {
  margin-bottom: 40px;
}
.store_detail_about .store_name {
  font-size: 3.6rem;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .store_detail_about .store_name {
    font-size: 2.4rem;
  }
}
.store_detail_about .store_name_en {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .store_detail_about .store_name_en {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .store_detail_about .store_detail_01_list {
    flex-direction: column;
    width: 100%;
  }
}
.store_detail_about .store_detail_01_list .store_detail_01_item {
  width: 100%;
  flex-direction: row;
}
.store_detail_about .store_detail_01_list .store_detail_01_item .tl {
  width: 7em;
}
.store_detail_about .map_box {
  width: 470px;
}
@media screen and (max-width: 767px) {
  .store_detail_about .map_box {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .store_detail_about .map_box .map_box_inner {
    position: relative;
    width: 100%;
    padding-top: 220px;
  }
}
@media screen and (max-width: 767px) {
  .store_detail_about .map_box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.store_detail_about .store_news {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .store_detail_about .store_news {
    margin-bottom: 30px;
  }
}

/* ページ内リンク
------------------------------------ */
.page_link_list_box {
  border-top: #CCC 2px solid;
  padding-top: 20px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .page_link_list_box {
    border-top: none;
    border-bottom: #CCC 2px solid;
    margin-bottom: -1px;
  }
}

.page_link_list {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .page_link_list {
    flex-wrap: wrap;
  }
}
.page_link_list .page_link_item {
  width: 20%;
  text-align: center;
  border-right: #CCC 2px solid;
  height: 30px;
}
@media screen and (max-width: 767px) {
  .page_link_list .page_link_item {
    width: 50%;
    box-sizing: border-box;
    text-align: left;
    border-right: none;
    border-top: #CCC 2px solid;
    border-bottom: #CCC 2px solid;
    padding: 10px 0;
    height: auto;
    margin-top: -2px;
  }
  .page_link_list .page_link_item:nth-child(2n) a {
    border-right: none;
  }
}
.page_link_list .page_link_item:last-child {
  border-right: none;
}
@media screen and (max-width: 767px) {
  .page_link_list .page_link_item:last-child {
    border-bottom: none;
  }
}
.page_link_list .page_link_item a {
  font-size: 2rem;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .page_link_list .page_link_item a {
    font-size: 1.6rem;
    display: block;
    border-right: #CCC 2px solid;
    padding: 5px 5px 5px 10px;
  }
}
.page_link_list .page_link_item a:hover {
  color: #E01F06;
}
.page_link_list .page_link_item a::before {
  content: "";
  display: block;
  width: 18px;
  height: 11px;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  background: url(../img_cmn/ico_arrow_keycolor_down.svg) 0 0 no-repeat;
  position: static;
  display: inline-block;
  margin-right: 10px;
}

/* チラシ
------------------------------------ */
@media screen and (max-width: 767px) {
  .dummyTarget > #page_link_01 {
    top: 0;
  }
}

.store_detail_flyer {
  /* バナー
  --------------- */
}
.store_detail_flyer .flyer_list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -40px;
}
.store_detail_flyer .flyer_item {
  margin-right: 30px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .store_detail_flyer .flyer_item {
    width: 100%;
  }
}
.store_detail_flyer .flyer_inner_list {
  display: flex;
  margin-bottom: 10px;
}
.store_detail_flyer .flyer_inner_item {
  border: #CCC 1px solid;
  margin-right: 8px;
  position: relative;
  /*
  a {
  	display: block;
  	position: relative;
  	&::before {
  		@include ico_content(50px, 50px, 0);
  		background: rgba(0, 0, 0, 0.6) url(../img_cmn/ico_zoom.svg) 50% 50% no-repeat;
  		top: auto;
  		bottom: 0;
  		left: auto;
  		right: 0;
  	}
  }
  */
}
@media screen and (max-width: 767px) {
  .store_detail_flyer .flyer_inner_item {
    width: 50%;
  }
}
.store_detail_flyer .flyer_inner_item::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  margin-top: 0;
  background: rgba(0, 0, 0, 0.6) url(../img_cmn/ico_zoom.svg) 50% 50% no-repeat;
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
  pointer-events: none;
}
.store_detail_flyer .flyer_inner_item img {
  width: auto;
  height: 210px;
}
@media screen and (max-width: 767px) {
  .store_detail_flyer .flyer_inner_item img {
    width: 100%;
    height: auto;
  }
}
.store_detail_flyer .txt_flyer_none {
  margin-bottom: 40px;
}
.store_detail_flyer .bnr_dcpc_line {
  margin-top: 0;
}
.store_detail_flyer .line_qr_box {
  position: relative;
}
@media screen and (max-width: 767px) {
  .store_detail_flyer .line_qr_box {
    border: #07B53B 2px solid;
  }
}
.store_detail_flyer .line_qr_box .tl {
  margin-top: 25px;
  text-align: center;
}
.store_detail_flyer .line_qr_box .tl img {
  width: 300px;
  max-width: 100%;
}
.store_detail_flyer .line_qr_box .qr_box {
  position: absolute;
  top: 10px;
  right: 10px;
}
@media screen and (max-width: 767px) {
  .store_detail_flyer .line_qr_box .qr_box {
    position: static;
    text-align: center;
  }
}
.store_detail_flyer .line_qr_box .btn_line a {
  margin: 20px auto;
  width: 200px;
  height: 40px;
  line-height: 40px;
  border-radius: 4px;
  background-color: #07B53B;
  color: #FFF;
  text-align: center;
  display: block;
}
.store_detail_flyer .line_qr_box .btn_line a::before {
  content: url(../img_cmn/ico_line.svg);
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 28px;
  margin-right: 5px;
}
.store_detail_flyer .line_qr_box .line_point img {
  width: 100%;
  height: auto;
}

/* 店舗詳細02
------------------------------------ */
.store_detail_about_02 .store_detail_about_02_inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .store_detail_about_02 .store_detail_about_02_inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .store_detail_about_02 .store_exterior {
    margin-bottom: 30px;
  }
}
.store_detail_about_02 .img_box {
  border: #CCC 1px solid;
}
.store_detail_about_02 .img_box img {
  width: 380px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .store_detail_about_02 .img_box img {
    width: 100%;
    height: auto;
  }
}
.store_detail_about_02 .base_table {
  width: 550px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .store_detail_about_02 .base_table {
    width: 100%;
  }
}
.store_detail_about_02 .base_table th {
  width: 8em;
}
.store_detail_about_02 .base_table td {
  flex: 1;
}
.store_detail_about_02 .store_handle_list_outer {
  justify-content: flex-start;
}

/* 利用いただけるお支払方法
------------------------------------ */
.store_detail_payment .base_table {
  margin-top: 0;
}
.store_detail_payment .subtl {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.store_detail_payment .payment_handle_list + .subtl {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .store_detail_payment .payment_handle_list + .subtl {
    margin-top: 10px;
  }
}
.store_detail_payment .bg_box {
  margin-top: 20px;
  padding-bottom: 20px;
}
.store_detail_payment .bg_box p {
  margin-bottom: 20px;
}

.payment_handle_list {
  display: flex;
  flex-wrap: wrap;
}

.payment_handle_item {
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  background-color: #FFF;
  margin: 0 5px 5px 0;
  text-align: center;
  font-size: 1.4rem;
  border: #CCC 1px solid;
}
@media screen and (max-width: 767px) {
  .payment_handle_item {
    width: 50px;
    height: 50px;
    font-size: 1rem;
    margin: 0 5px 5px 0;
  }
}
.payment_handle_item img {
  width: 58px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .payment_handle_item img {
    width: 48px;
  }
}

.store_detail_floormap .img_box {
  display: flex;
  justify-content: center;
  align-items: center;
  border: #CCC 1px solid;
}
.store_detail_floormap .img_box img {
  max-width: 100%;
  height: auto;
}

/* ------------------------------------
  _000_top.scss
------------------------------------ */
.page_top {
  /*
  // ブラウザ150%表示対応(test)
  @media screen and (min-width: 768px) and (max-height: 650px) {
  	&::before {
  		content:"";
  		display:block;
  		position:fixed;
  		top:0;
  		left:0;
  		z-index:-2;
  		width:100%;
  		height:100vh;
  		background: url("../img_dmy/img_bg_top_img_test600.png") 50% 50% no-repeat;
  	}
  }
  */
  /* メイン
	------------------------------------ */
}
@media screen and (max-width: 767px) {
  .page_top::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 100vh;
    background: url("../img_top/bg_top_mainimg_sp@2x.png") 50% 50% no-repeat;
    background-size: cover;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  .page_top::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 100vh;
    background: url("../img_top/bg_top_mainimg_sp_landscape@2x.png") 50% 50% no-repeat;
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  .page_top .page_subtl {
    margin-top: 40px;
  }
}

.bg_animation_box {
  position: fixed;
  	/*
    top: 50%;
    left: 50%;
    width: 1280px;
    height: 950px;
    margin-top: -475px;
    margin-left: -640px;
    overflow: visible;
    z-index: -1;
    background-color: #FFF8F0;
  	//sp
    @include pcmq(sm) {
  	}
  	*/
}

/* TOPのメインビジュアルエリア
------------------------------------ */
.top_main_img {
  height: calc( 100vh - 160px );
  max-height: 720px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top_main_img {
    height: 100vh;
    max-height: none;
  }
}
.top_main_img .main_txt {
  position: absolute;
  top: 25%;
  left: 50%;
  margin-left: -178px;
}
@media (max-height: 800px) {
  .top_main_img .main_txt {
    /* 高さ720px以下の場合 */
    top: 15%;
  }
}
@media screen and (max-width: 767px) {
  .top_main_img .main_txt {
    top: 34%;
    margin-left: -130px;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  .top_main_img .main_txt {
    top: 25%;
    margin-left: -130px;
  }
}
@media screen and (max-width: 767px) {
  .top_main_img .main_txt img {
    width: 260px;
    height: auto;
  }
}
.top_main_img .mainimg_scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-decoration: none;
  padding-top: 60px;
  margin-left: -20px;
}
@media screen and (max-width: 767px) {
  .top_main_img .mainimg_scroll {
    padding-top: 50px;
    bottom: 60px;
  }
}
.top_main_img .mainimg_scroll span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 46px;
  height: 46px;
  margin-left: -23px;
  border: 1px solid #404040;
  border-radius: 100%;
  box-sizing: border-box;
}
.top_main_img .mainimg_scroll span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: '';
  width: 16px;
  height: 16px;
  margin: -12px 0 0 -8px;
  border-left: 1px solid #404040;
  border-bottom: 1px solid #404040;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  box-sizing: border-box;
}
.top_main_img .mainimg_scroll span::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  content: '';
  width: 44px;
  height: 44px;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
  border-radius: 100%;
  opacity: 0;
  -webkit-animation: sdb 3s infinite;
  animation: sdb 3s infinite;
  box-sizing: border-box;
}

@-webkit-keyframes sdb {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    box-shadow: 0 0 0 60px rgba(0, 0, 0, 0.1);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    box-shadow: 0 0 0 60px rgba(0, 0, 0, 0.1);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* 店舗検索
------------------------------------ */
.top_search_box {
  position: relative;
  z-index: 2;
  /* 共通
  --------------- */
  /* セレクトボックスのスタイル設定
  --------------- */
}
@media screen and (max-width: 767px) {
  .top_search_box {
    padding: 0 15px;
    box-sizing: border-box;
  }
}
.top_search_box .cont_inner {
  background-color: #404040;
  border-radius: 4px;
  padding: 20px;
  margin-top: 40px;
  		/*
      position: absolute;
      top: -60px;
      left: 50%;
      margin-left: -480px;
  		*/
}
@media screen and (max-width: 767px) {
  .top_search_box .cont_inner {
    width: 100%;
    margin: 0 auto;
    margin-top: -90px;
    padding: 20px 15px;
  }
}
.top_search_box .tl_top_search_box {
  color: #FFF;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  font-size: 2.6rem;
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .top_search_box .tl_top_search_box {
    font-size: 2rem;
    text-align: center;
    padding-left: 0;
    line-height: 1.4;
  }
}
.top_search_box .tl_top_search_box::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  margin-top: -12px;
  background: url("../img_cmn/ico_search.svg") 0 0 no-repeat;
  background-size: 24px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .top_search_box .tl_top_search_box::before {
    position: static;
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle;
  }
}
.top_search_box .number_of_store {
  color: #FFAF00;
  font-size: 1.6rem;
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .top_search_box .number_of_store {
    margin-left: 20px;
    display: block;
    margin-bottom: 10px;
  }
}
.top_search_box .number_of_store em {
  font-size: 2.6rem;
  margin-left: 0.4em;
}
.top_search_box .search_box {
  display: flex;
  padding-bottom: 20px;
  border-bottom: #FFF 2px solid;
  margin-bottom: 20px;
  /* 最近見た店舗（sp用）
  --------------- */
}
@media screen and (max-width: 767px) {
  .top_search_box .search_box {
    flex-direction: column;
  }
}
.top_search_box .search_box .btn_search_past {
  margin-bottom: 20px;
}
.top_search_box .search_box .btn_search_past a {
  display: flex;
  align-items: center;
  background-color: #545454;
  min-height: 44px;
  line-height: 1.2;
  padding: 15px 40px 15px 15px;
  color: #FFF;
  border-radius: 4px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  position: relative;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .top_search_box .search_box .btn_search_past a {
    padding-right: 30px;
  }
}
.top_search_box .search_box .btn_search_past a:hover {
  opacity: 0.8;
}
.top_search_box .search_box .btn_search_past a::after {
  content: "";
  display: block;
  width: 8px;
  height: 14px;
  position: absolute;
  top: 50%;
  margin-top: -7px;
  background: url("../img_cmn/ico_arrow_white.svg") no-repeat;
  background-size: 8px auto;
  right: 20px;
}
@media screen and (max-width: 767px) {
  .top_search_box .search_box .btn_search_past a::after {
    right: 15px;
  }
}
.top_search_box .search_box .btn_search_past .tl {
  font-size: 1.3rem;
  padding-right: 10px;
  border-right: #FFF 1px solid;
  margin-right: 10px;
  width: 9em;
}
@media screen and (max-width: 767px) {
  .top_search_box .search_box .btn_search_past .tl {
    font-size: 1.2rem;
  }
}
.top_search_box .search_box .btn_search_past .store_name {
  font-size: 1.4rem;
  font-weight: bold;
}
.top_search_box .search_box .btn_search_past .store_flyer {
  font-size: 1.4rem;
  display: inline-block;
}
.top_search_box button,
.top_search_box input[type=text],
.top_search_box select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /** add */
  border-right: 1px solid #F7F7F7;
  border-bottom: 1px solid #F7F7F7;
  background: #FFF;
  font-size: 1.6rem;
  line-height: 1.6;
}
.top_search_box button::placeholder,
.top_search_box input[type=text]::placeholder,
.top_search_box select::placeholder {
  color: #CECBCB;
}
.top_search_box .select_label {
  position: relative;
  display: inline-block;
  border-radius: 0;
  z-index: 0;
  margin: 0 10px 0 0;
}
@media screen and (max-width: 767px) {
  .top_search_box .select_label {
    width: 100%;
    margin-bottom: 20px;
  }
}
.top_search_box .select_label::after {
  content: "";
  display: block;
  width: 14px;
  height: 8px;
  position: absolute;
  top: 50%;
  margin-top: -8px;
  background: url("../img_cmn/ico_arrow_keycolor_down.svg") no-repeat;
  background-size: 14px auto;
  right: 20px;
  pointer-events: none;
}
.top_search_box .select_label select {
  padding: 13px 20px 12px;
  cursor: pointer;
  width: 340px;
  box-sizing: border-box;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.top_search_box .select_label select::-ms-expand {
  display: none;
}
@media screen and (max-width: 767px) {
  .top_search_box .select_label select {
    width: 100%;
  }
}
.top_search_box .search_keyword_box .search_keyword {
  width: 400px;
  padding: 13px 20px 12px;
  box-sizing: border-box;
  margin-right: 10px;
  border: none;
}
@media screen and (max-width: 767px) {
  .top_search_box .search_keyword_box .search_keyword {
    width: 100%;
    margin-bottom: 30px;
  }
}
.top_search_box .search_btn_box {
  margin-bottom: 10px;
}
.top_search_box .search_btn_box .search_btn {
  display: block;
  background-color: #E01F06;
  color: #FFF;
  width: 160px;
  height: 50px;
  border-radius: 4px;
  border: none;
  font-size: 2rem;
  transition: 0.5s;
}
.top_search_box .search_btn_box .search_btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .top_search_box .search_btn_box .search_btn {
    font-size: 1.6rem;
    margin: 0 auto;
  }
}
.top_search_box .search_btn_box .search_btn::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  margin-top: 0;
  background: url("../img_cmn/ico_search.svg") 0 0 no-repeat;
  background-size: 20px;
  position: static;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  margin-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .top_search_box .search_btn_box .search_btn::before {
    margin-right: 5px;
  }
}
.top_search_box .search_btn_box .search_btn .ico {
  margin-right: 10px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .top_search_box .search_btn_box .search_btn .ico {
    width: 20px;
    height: auto;
  }
}
.top_search_box .search_link {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .top_search_box .search_link {
    justify-content: center;
  }
}
.top_search_box .search_link .btn_search_past {
  width: 580px;
  margin-right: 40px;
}
.top_search_box .search_link .btn_search_past a {
  display: block;
  background-color: #545454;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  color: #FFF;
  border-radius: 4px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  letter-spacing: 0;
  padding-right: 40px;
  position: relative;
  transition: 0.5s;
}
.top_search_box .search_link .btn_search_past a:hover {
  opacity: 0.8;
}
.top_search_box .search_link .btn_search_past a::after {
  content: "";
  display: block;
  width: 8px;
  height: 14px;
  position: absolute;
  top: 50%;
  margin-top: -7px;
  background: url("../img_cmn/ico_arrow_white.svg") no-repeat;
  background-size: 8px auto;
  right: 20px;
}
.top_search_box .search_link .btn_search_past .tl {
  font-size: 1.4rem;
  padding-right: 10px;
  border-right: #FFF 1px solid;
  margin-right: 10px;
}
.top_search_box .search_link .btn_search_past .store_name {
  font-size: 2rem;
}
.top_search_box .search_link .btn_search_past .store_flyer {
  font-size: 1.6rem;
}
.top_search_box .search_link .btn_search_link a {
  display: block;
  background-color: #FFF;
  border-radius: 4px;
  height: 50px;
  line-height: 50px;
  width: 300px;
  text-align: center;
  position: relative;
  transition: 0.5s;
}
.top_search_box .search_link .btn_search_link a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .top_search_box .search_link .btn_search_link a {
    width: 260px;
    margin: 10px auto;
  }
}
.top_search_box .search_link .btn_search_link a::after {
  content: "";
  display: block;
  width: 8px;
  height: 14px;
  position: absolute;
  top: 50%;
  margin-top: -7px;
  background: url("../img_cmn/ico_arrow_accent.svg") no-repeat;
  background-size: 8px auto;
  right: 20px;
}
.top_search_box .search_link .btn_search_link a .ico {
  vertical-align: middle;
  margin-right: 5px;
}

/* お知らせ
------------------------------------ */
.top_news {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .top_news {
    padding-top: 0;
    margin-bottom: 40px;
  }
}

.top_notices {
  border: #E01F06 2px solid;
  padding: 20px 20px 10px;
  text-align: center;
  margin: 40px;
}
@media screen and (max-width: 767px) {
  .top_notices {
    margin: 30px 20px 0;
    padding: 15px 15px 5px;
  }
}
.top_notices .tl {
  margin-bottom: 30px;
  font-size: 2rem;
  line-height: 1.4;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .top_notices .tl {
    font-size: 1.6rem;
  }
}
.top_notices .txt {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .top_notices .txt {
    text-align: left;
  }
}
.top_notices a {
  color: #E01F06;
  text-decoration: underline;
  transition: 0.5s;
}
.top_notices a:hover {
  opacity: 0.8;
}

.news_list {
  border-top: #CCC 1px solid;
}

.news_list_item {
  border-bottom: #CCC 1px solid;
}
.news_list_item a {
  padding: 20px 30px 20px 0;
  display: flex;
  position: relative;
  transition: 0.5s;
}
.news_list_item a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .news_list_item a {
    padding: 15px 30px 15px 0;
    flex-direction: column;
  }
}
.news_list_item a:hover {
  color: #E01F06;
}
.news_list_item a:hover .ico_pdf {
  border-color: #E01F06;
}
.news_list_item a::after {
  content: "";
  display: block;
  width: 8px;
  height: 14px;
  position: absolute;
  top: 50%;
  margin-top: -7px;
  background: url("../img_cmn/ico_arrow_accent.svg") no-repeat;
  background-size: 8px auto;
  right: 10px;
}
.news_list_item .no_link:hover {
  color: unset;
  cursor: unset;
  opacity: unset;
}
.news_list_item .no_link::after {
  display: none;
}
.news_list_item .date_box {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .news_list_item .date_box {
    margin-bottom: 10px;
  }
}
.news_list_item .date_box .category {
  color: #FFAF00;
  font-size: 1.4rem;
  border: #FFAF00 1px solid;
  padding: 1px 0;
  width: 120px;
  box-sizing: border-box;
  display: inline-block;
  text-align: center;
  margin-right: 1.5em;
}
@media screen and (max-width: 767px) {
  .news_list_item .date_box .category {
    font-size: 1.2rem;
    width: 6em;
    padding: 0;
  }
}
.news_list_item .date_box .date {
  margin-right: 2em;
}
.news_list_item .txt {
  width: 600px;
  /*
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  */
}
@media screen and (max-width: 767px) {
  .news_list_item .txt {
    width: auto;
  }
}
.news_list_item .txt .ico_pdf {
  font-size: 1.4rem;
  border: #3D3527 1px solid;
  margin-left: 5px;
  display: inline-block;
  padding: 0 3px;
  line-height: 1.4;
}

/* 新型コロナウイルス感染対応について（201225追加 kunihiro）
--------------- */
.top_news_topics {
  margin-top: 20px;
}
.top_news_topics a {
  display: flex;
  background-color: #EEE;
  padding: 30px;
  transition: 0.5s;
}
.top_news_topics a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .top_news_topics a {
    flex-direction: column;
    padding: 15px 10px;
  }
}
.top_news_topics a:hover .txt {
  color: #E01F06;
}
.top_news_topics .tl {
  margin: 0;
  padding-right: 20px;
  border-right: #CCC 1px solid;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .top_news_topics .tl {
    padding-right: 0;
    border-right: none;
    margin-right: 0;
    padding-bottom: 10px;
    border-bottom: #CCC 1px solid;
    margin-bottom: 10px;
  }
}
.top_news_topics .txt {
  flex: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_news_topics .txt {
    padding-right: 20px;
  }
}
.top_news_topics .txt::after {
  content: "";
  display: block;
  width: 8px;
  height: 14px;
  position: absolute;
  top: 50%;
  margin-top: -7px;
  background: url("../img_cmn/ico_arrow_accent.svg") no-repeat;
  background-size: 8px auto;
  right: 0;
}

/* 会社紹介動画
------------------------------------ */
.top_company_movie {
  background-color: #EEE;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .top_company_movie {
    padding: 40px 0;
  }
}
.top_company_movie .cont_inner {
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .top_company_movie .cont_inner {
    flex-direction: column;
  }
}
.top_company_movie .page_subtl {
  margin-top: 0;
  text-align: left;
}
.top_company_movie .page_subtl::after {
  left: 0;
  margin-left: 0;
}
.top_company_movie .txt_box {
  margin-left: 40px;
}
@media screen and (max-width: 767px) {
  .top_company_movie .txt_box {
    margin-left: 0;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top_company_movie .movie_box {
    position: relative;
    padding-bottom: 56.25%;
    /*アスペクト比 16:9の場合の縦幅*/
    height: 0;
    overflow: hidden;
  }
  .top_company_movie .movie_box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/* 選ばれる理由
------------------------------------ */
@media screen and (max-width: 767px) {
  .top_advantage {
    display: flex;
    flex-direction: column-reverse;
    padding-bottom: 40px;
  }
}
.top_advantage .cont_inner {
  position: relative;
}
.top_advantage .txt_box {
  width: 480px;
  position: absolute;
  left: 0;
  top: 80px;
}
@media screen and (max-width: 767px) {
  .top_advantage .txt_box {
    width: auto;
    position: relative;
    z-index: 2;
    top: 0;
    left: 0;
    margin: -70px 10px 0;
  }
}
.top_advantage .txt_box a {
  display: block;
  background-color: rgba(255, 255, 255, 0.9);
  height: 340px;
  padding: 40px 30px;
  box-sizing: border-box;
  position: relative;
  transition: 0.5s;
}
.top_advantage .txt_box a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .top_advantage .txt_box a {
    height: auto;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
    padding: 30px 20px;
  }
}
.top_advantage .txt_box a::after {
  content: "";
  display: block;
  width: 73px;
  height: 53px;
  position: absolute;
  top: 50%;
  margin-top: 0;
  background: url("../img_cmn/ico_arrow_box_accentcolor.svg") no-repeat;
  background-size: 73px auto;
  top: auto;
  bottom: 0;
  right: 0;
  transition: 0.5s;
}
.top_advantage .txt_box a::after:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .top_advantage .txt_box a::after {
    width: 50px;
    height: 36px;
    background-size: 50px auto;
  }
}
.top_advantage .txt_box a:hover::after {
  background: url("../img_cmn/ico_arrow_box_keycolor.svg") no-repeat;
}
.top_advantage .page_subtl {
  margin-top: 0;
  text-align: left;
}
.top_advantage .page_subtl::after {
  left: 0;
  margin-left: 0;
}
.top_advantage .img_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top_advantage .img_box {
    z-index: 1;
  }
}
@media screen and (min-width: 1280px) {
  .top_advantage .img_box {
    height: 500px;
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .top_advantage .img_box img {
    width: 120%;
    height: auto;
  }
}
@media screen and (min-width: 1280px) {
  .top_advantage .img_box img {
    width: 100%;
    height: auto;
  }
}

/* 会社情報
------------------------------------ */
.top_company {
  padding: 1px 0 80px;
}
@media screen and (max-width: 767px) {
  .top_company {
    padding-bottom: 10px;
  }
}

.company_list {
  display: flex;
  flex-wrap: wrap;
}

.company_list_item {
  width: 290px;
  margin-right: 45px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .company_list_item {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 30px;
  }
}
.company_list_item:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .company_list_item:nth-child(3n) {
    margin-right: 4%;
  }
}
@media screen and (max-width: 767px) {
  .company_list_item:nth-child(2n) {
    margin-right: 0;
  }
}
.company_list_item a {
  transition: 0.5s;
}
.company_list_item a:hover {
  opacity: 0.8;
}
.company_list_item a:hover {
  color: #E01F06;
}
.company_list_item a .img_box {
  position: relative;
  transition: 0.5s;
}
.company_list_item a .img_box:hover {
  opacity: 0.8;
}
.company_list_item a .img_box::after {
  content: "";
  display: block;
  width: 73px;
  height: 53px;
  position: absolute;
  top: 50%;
  margin-top: 0;
  background: url("../img_cmn/ico_arrow_box_accentcolor.svg") 0 0 no-repeat;
  background-size: 73px auto;
  top: auto;
  bottom: 0;
  right: 0;
  transition: 0.5s;
}
.company_list_item a .img_box::after:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .company_list_item a .img_box::after {
    width: 50px;
    height: 36px;
    background-size: 50px auto;
  }
}
.company_list_item a .img_box:hover::after {
  background: url("../img_cmn/ico_arrow_box_keycolor.svg") 0 0 no-repeat;
}
.company_list_item a .img_box img {
  width: 100%;
  height: auto;
}
.company_list_item .tl {
  font-size: 2.6rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .company_list_item .tl {
    font-size: 1.6rem;
    margin-top: 15px;
  }
}
.company_list_item .txt {
  margin-top: 10px;
}

/* 店舗案内・Webチラシ
------------------------------------ */
.top_store_search_link {
  background: url(../img_top/bg_top_store_search_link.jpg) 0 0/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .top_store_search_link {
    margin: 0 -15px;
  }
}
.top_store_search_link .cont_inner {
  position: relative;
  text-align: center;
  height: 266px;
}
@media screen and (max-width: 767px) {
  .top_store_search_link .cont_inner {
    height: 253px;
    overflow: hidden;
  }
}
.top_store_search_link .txt_box {
  position: relative;
  z-index: 3;
}
.top_store_search_link .tl {
  font-size: 3.6rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  padding-top: 60px;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .top_store_search_link .tl {
    font-size: 2.6rem;
    padding-top: 40px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .top_store_search_link .btn {
    margin-top: 20px;
  }
}
.top_store_search_link .btn a {
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .top_store_search_link .btn a {
    margin: 0 30px;
  }
}
.top_store_search_link .btn a:hover {
  opacity: 0.8;
}
.top_store_search_link .btn a::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  margin-top: 0;
  background: url("../img_cmn/ico_search.svg") 0 0 no-repeat;
  background-size: 20px;
  position: static;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  margin-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .top_store_search_link .btn a::before {
    margin-right: 5px;
  }
}
.top_store_search_link .img_box_01 {
  position: absolute;
  left: -300px;
  bottom: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top_store_search_link .img_box_01 {
    left: -120px;
    bottom: -20px;
  }
  .top_store_search_link .img_box_01 img {
    width: 382px;
    height: auto;
  }
}
.top_store_search_link .img_box_02 {
  position: absolute;
  top: 30px;
  right: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top_store_search_link .img_box_02 {
    top: auto;
    bottom: 0;
  }
  .top_store_search_link .img_box_02 source, .top_store_search_link .img_box_02 img {
    width: 158px;
    height: auto;
  }
}

.cont_store_search_link {
  overflow: hidden;
}

/* バナー
------------------------------------ */
.bnr_box {
  margin: 60px 0;
}
@media screen and (max-width: 767px) {
  .bnr_box {
    margin: 30px 0 0;
  }
}
.bnr_box .cont_inner {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .bnr_box .cont_inner {
    padding: 0 15px;
  }
}
.bnr_box a {
  transition: 0.5s;
}
.bnr_box a:hover {
  opacity: 0.8;
}

.bnr_dcpc_line .bnr_list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .bnr_dcpc_line .bnr_list {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .bnr_dcpc_line .bnr_list_item {
    margin-bottom: 20px;
  }
  .bnr_dcpc_line .bnr_list_item:last-child {
    margin-bottom: 0;
  }
}
.bnr_dcpc_line .bnr_list_item img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .bnr_recruit {
    margin-bottom: 30px;
  }
}
.bnr_recruit a {
  display: block;
  position: relative;
  transition: 0.5s;
}
.bnr_recruit a:hover {
  opacity: 0.8;
}
.bnr_recruit a::after {
  content: "";
  display: block;
  width: 73px;
  height: 53px;
  position: absolute;
  top: 50%;
  margin-top: 0;
  background: url("../img_cmn/ico_arrow_box_accentcolor.svg") 0 0 no-repeat;
  background-size: 73px auto;
  top: auto;
  bottom: 0;
  right: 0;
  transition: 0.5s;
}
.bnr_recruit a::after:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .bnr_recruit a::after {
    width: 50px;
    height: 36px;
    background-size: 50px auto;
  }
}
.bnr_recruit a:hover::after {
  background: url("../img_cmn/ico_arrow_box_keycolor.svg") 0 0 no-repeat;
}
.bnr_recruit a img {
  width: 100%;
  vertical-align: bottom;
}

/* ------------------------------------
  _000_top_animation.scss
------------------------------------ */
.page_top {
  /* 共通
  ------------------------------------ */
  /* TOPイメージ
  ------------------------------------ */
}
.page_top #content {
  padding-top: 0;
}
.page_top .main_inner {
  margin-top: 30px;
}
.page_top .main_img {
  height: 100vh;
  z-index: -1;
  background-color: #FFF8F0;
  /* イメージ上のテキスト
  --------------- */
  /*.main_tl_inner {
  	position: absolute;
  	top: 50%;
  	left: 15px;
  	.tl_box {
  		img {
  			width: 370px;
  		}
  	}
  }
  // スライド上のテキスト pc
  @include mq(lg) {
  	.main_tl {
  		position: relative;
  		width: 940px;
  		margin: 0 auto;
  		z-index: 10;
  	}
  	.main_tl_inner {
  		width: 925px;
  		margin-top: 380px;
  		text-align: center;
  		.tl_box {
  			font-size: 6.8rem;
  			width: 100%;
  		}
  		.sub_txt {
  			font-size: 1.6rem;
  			width: 100%;
  		}
  	}
  }
  */
  /* 背景
  --------------- */
}
@media screen and (max-width: 799px) {
  .page_top .main_img {
    padding-top: 55px;
  }
}
@media screen and (min-width: 992px) {
  .page_top .main_img {
    min-width: 940px;
  }
}
.page_top .main_img .main_img_inner {
  	/* ダミー 最終的に消す ここから 
  	.dmy_box {
  		left: 207px;
      position: absolute;
      text-align: center;
      top: 67px;
      vertical-align: top;
      z-index: -100;
  		img {
  			width: 1450px;
  		}
  	}
  	/* ここまで */
}
.page_top .main_img .main_img_inner .bg_area {
  position: fixed;
  top: 0;
  left: 50%;
  width: 1440px;
  height: 880px;
  margin-left: -720px;
  overflow: visible;
  /* ダイレックス
  --------------- */
  /* 建物
  --------------- */
  /* 公園
  --------------- */
  /* 木
  --------------- */
  /* 雲
  --------------- */
  /* 気球
  --------------- */
  /* 中央_アニメーション
  --------------- */
  /* ie11のみ
  --------------- */
}
@media (max-height: 800px) {
  .page_top .main_img .main_img_inner .bg_area {
    /* 高さ720px以下の場合 */
    margin-top: 65px;
  }
}
.page_top .main_img .main_img_inner .bg_area img {
  position: absolute;
}
.page_top .main_img .main_img_inner .bg_area .bld_direx_box .img_direx_parking_lot {
  left: 404px;
  top: 603px;
  width: 590px;
}
@media (max-height: 800px) {
  .page_top .main_img .main_img_inner .bg_area .bld_direx_box .img_direx_parking_lot {
    /* 高さ720px以下の場合 */
    left: 516px;
    top: 422px;
    width: 429px;
  }
}
.page_top .main_img .main_img_inner .bg_area .bld_box .img_bld_01 {
  left: -47px;
  top: 242px;
  width: 200px;
}
@media (max-height: 800px) {
  .page_top .main_img .main_img_inner .bg_area .bld_box .img_bld_01 {
    /* 高さ720px以下の場合 */
    left: 200px;
    top: 175px;
    width: 150px;
  }
}
.page_top .main_img .main_img_inner .bg_area .bld_box .img_bld_02 {
  bottom: -40px;
  left: 268px;
  width: 198px;
}
@media (max-height: 800px) {
  .page_top .main_img .main_img_inner .bg_area .bld_box .img_bld_02 {
    /* 高さ720px以下の場合 */
    bottom: 258px;
    left: 431px;
    width: 138px;
  }
}
.page_top .main_img .main_img_inner .bg_area .bld_box .img_bld_03 {
  left: 554px;
  top: 128px;
  width: 160px;
}
@media (max-height: 800px) {
  .page_top .main_img .main_img_inner .bg_area .bld_box .img_bld_03 {
    /* 高さ720px以下の場合 */
    left: 600px;
    top: 76px;
    width: 118px;
  }
}
.page_top .main_img .main_img_inner .bg_area .bld_box .img_bld_04 {
  right: 315px;
  top: 204px;
  width: 136px;
}
@media (max-height: 800px) {
  .page_top .main_img .main_img_inner .bg_area .bld_box .img_bld_04 {
    /* 高さ720px以下の場合 */
    right: 408px;
    top: 140px;
    width: 98px;
  }
}
.page_top .main_img .main_img_inner .bg_area .bld_box .img_bld_05 {
  bottom: 20px;
  right: 170px;
  width: 202px;
}
@media (max-height: 800px) {
  .page_top .main_img .main_img_inner .bg_area .bld_box .img_bld_05 {
    /* 高さ720px以下の場合 */
    bottom: 297px;
    right: 341px;
    width: 132px;
  }
}
.page_top .main_img .main_img_inner .bg_area .bld_box .img_house_01 {
  width: 200px;
  bottom: 201px;
  left: -42px;
}
@media (max-height: 800px) {
  .page_top .main_img .main_img_inner .bg_area .bld_box .img_house_01 {
    /* 高さ720px以下の場合 */
    bottom: 397px;
    left: 225px;
    width: 144px;
  }
}
.page_top .main_img .main_img_inner .bg_area .bld_box .img_house_02 {
  width: 180px;
  bottom: 231px;
  right: -81px;
}
@media (max-height: 800px) {
  .page_top .main_img .main_img_inner .bg_area .bld_box .img_house_02 {
    /* 高さ720px以下の場合 */
    bottom: 418px;
    right: 172px;
    width: 125px;
  }
}
.page_top .main_img .main_img_inner .bg_area .park_box .img_park_A {
  left: 279px;
  top: 338px;
  width: 226px;
}
@media (max-height: 800px) {
  .page_top .main_img .main_img_inner .bg_area .park_box .img_park_A {
    /* 高さ720px以下の場合 */
    left: 427px;
    top: 228px;
    width: 156px;
  }
}
.page_top .main_img .main_img_inner .bg_area .park_box .img_park_B {
  right: 157px;
  top: 384px;
  width: 240px;
}
@media (max-height: 800px) {
  .page_top .main_img .main_img_inner .bg_area .park_box .img_park_B {
    /* 高さ720px以下の場合 */
    right: 277px;
    top: 260px;
    width: 180px;
  }
}
.page_top .main_img .main_img_inner .bg_area .trees_box .img_tree {
  width: 45px;
}
@media (max-height: 800px) {
  .page_top .main_img .main_img_inner .bg_area .trees_box .img_tree {
    /* 高さ720px以下の場合 */
    width: 35px;
  }
}
.page_top .main_img .main_img_inner .bg_area .trees_box .img_tree_01 {
  bottom: 168px;
  left: -42px;
}
@media (max-height: 800px) {
  .page_top .main_img .main_img_inner .bg_area .trees_box .img_tree_01 {
    /* 高さ720px以下の場合 */
    bottom: 359px;
    left: 227px;
  }
}
.page_top .main_img .main_img_inner .bg_area .trees_box .img_tree_02 {
  bottom: 40px;
  left: 26px;
}
@media (max-height: 800px) {
  .page_top .main_img .main_img_inner .bg_area .trees_box .img_tree_02 {
    /* 高さ720px以下の場合 */
    bottom: 297px;
    left: 292px;
  }
}
.page_top .main_img .main_img_inner .bg_area .trees_box .img_tree_03 {
  bottom: 400px;
  left: 176px;
}
@media (max-height: 800px) {
  .page_top .main_img .main_img_inner .bg_area .trees_box .img_tree_03 {
    /* 高さ720px以下の場合 */
    bottom: 541px;
    left: 347px;
  }
}
.page_top .main_img .main_img_inner .bg_area .trees_box .img_tree_04 {
  bottom: 17px;
  right: 196px;
}
.page_top .main_img .main_img_inner .bg_area .trees_box .img_tree_05 {
  top: 284px;
  right: -29px;
}
@media (max-height: 800px) {
  .page_top .main_img .main_img_inner .bg_area .trees_box .img_tree_05 {
    /* 高さ720px以下の場合 */
    right: 164px;
    top: 218px;
  }
}
.page_top .main_img .main_img_inner .bg_area .trees_box .img_tree_06 {
  bottom: -14px;
  right: -51px;
}
.page_top .main_img .main_img_inner .bg_area .clouds_box span {
  display: block;
}
.page_top .main_img .main_img_inner .bg_area .clouds_box .img_cloud_01 {
  animation: cloud_01 50s;
  animation-iteration-count: infinite;
}
@keyframes cloud_01 {
  0% {
    transform: translate(0px, 0px);
  }
  50% {
    transform: translate(-100px, 70px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
.page_top .main_img .main_img_inner .bg_area .clouds_box .img_cloud_01 img {
  width: 275px;
  left: 30px;
  top: -60px;
}
@media (max-height: 800px) {
  .page_top .main_img .main_img_inner .bg_area .clouds_box .img_cloud_01 img {
    /* 高さ720px以下の場合 */
    left: 340px;
    top: -60px;
    width: 195px;
  }
}
.page_top .main_img .main_img_inner .bg_area .clouds_box .img_cloud_02 {
  animation: cloud_02 50s;
  animation-iteration-count: infinite;
}
@keyframes cloud_02 {
  0% {
    transform: translate(0px, 0px);
  }
  50% {
    transform: translate(100px, -70px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
.page_top .main_img .main_img_inner .bg_area .clouds_box .img_cloud_02 img {
  width: 178px;
  left: 450px;
  top: 320px;
}
@media (max-height: 800px) {
  .page_top .main_img .main_img_inner .bg_area .clouds_box .img_cloud_02 img {
    /* 高さ720px以下の場合 */
    left: 520px;
    top: 250px;
    width: 138px;
  }
}
.page_top .main_img .main_img_inner .bg_area .clouds_box .img_cloud_03 {
  animation: cloud_03 55s;
  animation-iteration-count: infinite;
}
@keyframes cloud_03 {
  0% {
    transform: translate(0px, 0px);
  }
  50% {
    transform: translate(-100px, 50px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
.page_top .main_img .main_img_inner .bg_area .clouds_box .img_cloud_03 img {
  width: 250px;
  top: -30px;
  right: 390px;
}
@media (max-height: 800px) {
  .page_top .main_img .main_img_inner .bg_area .clouds_box .img_cloud_03 img {
    /* 高さ720px以下の場合 */
    right: 480px;
    top: -20px;
    width: 200px;
  }
}
.page_top .main_img .main_img_inner .bg_area .clouds_box .img_cloud_04 {
  animation: cloud_04 40s;
  animation-iteration-count: infinite;
}
@keyframes cloud_04 {
  0% {
    transform: translate(0px, 0px);
  }
  50% {
    transform: translate(100px, -70px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
.page_top .main_img .main_img_inner .bg_area .clouds_box .img_cloud_04 img {
  width: 260px;
  right: 70px;
  top: 210px;
}
@media (max-height: 800px) {
  .page_top .main_img .main_img_inner .bg_area .clouds_box .img_cloud_04 img {
    /* 高さ720px以下の場合 */
    right: 250px;
    top: 200px;
    width: 190px;
  }
}
.page_top .main_img .main_img_inner .bg_area .airballoon_box {
  animation: airballoon 30s;
  animation-iteration-count: infinite;
}
@keyframes airballoon {
  0% {
    transform: translate(0px, 0px);
  }
  50% {
    transform: translate(0px, -50px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
.page_top .main_img .main_img_inner .bg_area .airballoon_box img {
  left: 140px;
  top: 200px;
  width: 184px;
}
@media (max-height: 800px) {
  .page_top .main_img .main_img_inner .bg_area .airballoon_box img {
    /* 高さ720px以下の場合 */
    left: 310px;
    top: 140px;
    width: 144px;
  }
}
.page_top .main_img .main_img_inner .bg_area .top_animation {
  position: absolute;
  left: -30px;
  top: 153px;
}
@media (max-height: 800px) {
  .page_top .main_img .main_img_inner .bg_area .top_animation {
    /* 高さ720px以下の場合 */
    left: 194px;
    position: absolute;
    top: 92px;
  }
}
.page_top .main_img .main_img_inner .bg_area .animation_box {
  width: 1470px;
  height: 744px;
}
@media (max-height: 800px) {
  .page_top .main_img .main_img_inner .bg_area .animation_box {
    /* 高さ720px以下の場合 */
    width: 1080px;
    height: 549px;
  }
}
.page_top .main_img .main_img_inner .bg_area .ie11 {
  display: none;
}
.page_top .main_img .main_img_inner .bg_area .ie11_none {
  display: block;
}
@media all and (-ms-high-contrast: none) {
  .page_top .main_img .main_img_inner .bg_area .ie11 {
    display: block;
  }
  .page_top .main_img .main_img_inner .bg_area .ie11_none {
    display: none;
  }
}

/*=================================================
 * 050_contact.html
 * ================================================ */
.cont_liaise .contact_middle .bg_box {
  margin-top: 20px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .cont_liaise .contact_middle .bg_box {
    margin-bottom: 60px;
  }
}
.cont_liaise .contact_tr {
  border-bottom: 1px solid #CCC;
  padding: 20px 0;
  display: flex;
}
@media screen and (max-width: 767px) {
  .cont_liaise .contact_tr {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .cont_liaise .contact_tr.contact_type .form_td .flex_form_td {
    display: block;
    margin-bottom: 15px;
  }
  .cont_liaise .contact_tr.contact_type .form_td .flex_form_td:last-child {
    margin-bottom: 0;
  }
}
.cont_liaise .contact_tr:first-child {
  border-top: 1px solid #CCC;
}
.cont_liaise .contact_tr .form_th {
  width: 250px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .cont_liaise .contact_tr .form_th {
    width: 100%;
    padding-right: 0;
  }
}
.cont_liaise .contact_tr .form_th .txt_th {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .cont_liaise .contact_tr .form_th .txt_th {
    justify-content: flex-start;
    font-weight: bold;
  }
}
.cont_liaise .contact_tr .form_th .txt_th .ico_require {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .cont_liaise .contact_tr .form_th .txt_th .ico_require {
    font-size: 1.2rem;
  }
}
.cont_liaise .contact_tr .form_td {
  width: 670px;
}
@media screen and (max-width: 767px) {
  .cont_liaise .contact_tr .form_td {
    width: 100%;
  }
}
.cont_liaise .contact_tr .form_td .flex_form_td {
  display: inline-block;
  padding: 0;
}
.cont_liaise .contact_tr .form_td.flex_visit_datetime {
  display: flex;
}
@media screen and (max-width: 767px) {
  .cont_liaise .contact_tr .form_td.flex_visit_datetime {
    display: block;
  }
  .cont_liaise .contact_tr .form_td.flex_visit_datetime:first-child {
    margin-bottom: 15px;
  }
}
.cont_liaise .contact_tr .form_td.flex_visit_datetime .visit_datetime {
  display: flex;
  align-items: center;
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .cont_liaise .contact_tr .form_td.flex_visit_datetime .visit_datetime:first-child {
    margin-bottom: 15px;
  }
}
.cont_liaise .contact_tr .form_td.flex_visit_datetime .visit_datetime .select_wrap {
  position: relative;
}
.cont_liaise .contact_tr .form_td.flex_visit_datetime .visit_datetime .select_wrap::before {
  content: "";
  display: block;
  width: 18px;
  height: 11px;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 10px;
  background: url(../img_cmn/ico_arrow_keycolor_down.svg) no-repeat center/18px auto;
  pointer-events: none;
}
.cont_liaise .contact_tr .form_td.flex_visit_datetime .visit_datetime .select_wrap .form_select {
  width: 80px;
}
.cont_liaise .contact_tr .form_td.flex_visit_datetime .visit_datetime span {
  margin-left: 10px;
}
.cont_liaise .contact_tr .form_td.flex_visit_datetime .visit_datetime span:first-of-type {
  margin-right: 20px;
}
.cont_liaise .contact_tr .form_td.form_name,
.cont_liaise .contact_tr .form_td .form_name {
  display: flex;
}
.cont_liaise .contact_tr .form_td.form_name .name_label,
.cont_liaise .contact_tr .form_td .form_name .name_label {
  display: flex;
  align-items: center;
  width: 200px;
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .cont_liaise .contact_tr .form_td.form_name .name_label,
  .cont_liaise .contact_tr .form_td .form_name .name_label {
    display: block;
    width: calc((100% - 20px) / 2);
    margin-right: 20px;
  }
  .cont_liaise .contact_tr .form_td.form_name .name_label:nth-child(2),
  .cont_liaise .contact_tr .form_td .form_name .name_label:nth-child(2) {
    margin-right: 0;
  }
}
.cont_liaise .contact_tr .form_td.form_name .name_label span,
.cont_liaise .contact_tr .form_td .form_name .name_label span {
  margin-right: 15px;
}
.cont_liaise .contact_tr .form_td.form_name .name_label .contact_name,
.cont_liaise .contact_tr .form_td .form_name .name_label .contact_name {
  width: 100%;
}
.cont_liaise .contact_tr .form_td.user_phone_number .tel {
  width: 80px;
}
.cont_liaise .contact_tr .form_td.user_phone_number span {
  margin: 0 15px;
}
@media screen and (max-width: 767px) {
  .cont_liaise .contact_tr .form_td.user_phone_number span {
    margin: 0;
  }
}
.cont_liaise .contact_tr .form_td.user_age .age {
  width: 80px;
  margin-right: 15px;
}
.cont_liaise .contact_tr .form_td.zipcode .user_zipcode {
  width: 80px;
  margin: 0 15px;
}
@media screen and (max-width: 767px) {
  .cont_liaise .contact_tr .form_td.zipcode .user_zipcode {
    margin: 0;
  }
}
.cont_liaise .contact_tr .form_td.zipcode .user_zipcode:nth-of-type(2) {
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .cont_liaise .contact_tr .form_td.zipcode .user_zipcode:nth-of-type(2) {
    margin-right: 20px;
  }
}
.cont_liaise .contact_tr .form_td.zipcode .btn_auto_zipcode {
  display: inline-block;
  margin: 0;
}
.cont_liaise .contact_tr .form_td.zipcode .btn_auto_zipcode a {
  transition: 0.5s;
  width: auto;
}
.cont_liaise .contact_tr .form_td.zipcode .btn_auto_zipcode a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .cont_liaise .contact_tr .form_td.zipcode .btn_auto_zipcode a {
    margin-top: 7px;
  }
}
.cont_liaise .contact_tr .form_td.prefectures .select_wrap {
  position: relative;
  display: inline-block;
}
.cont_liaise .contact_tr .form_td.prefectures .select_wrap::before {
  content: "";
  display: block;
  width: 18px;
  height: 11px;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 10px;
  background: url(../img_cmn/ico_arrow_keycolor_down.svg) no-repeat center/18px auto;
  pointer-events: none;
}
.cont_liaise .contact_tr .form_td.prefectures .select_wrap .form_select {
  width: 200px;
}
.cont_liaise .contact_tr .form_td.form_pp .checkbox {
  display: inline-block;
  width: auto;
}
.cont_liaise .btn_contact_submit {
  margin-top: 80px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .cont_liaise .btn_contact_submit {
    margin-top: 40px;
    padding-bottom: 60px;
  }
}

/*=================================================
 * 051_contact-check.html
 * ================================================ */
.cont_liaise_check .liaise_step_box::before {
  background: linear-gradient(to right, #FFAF00, #FFAF00 50%, #CCC 50%, #CCC 100%);
}
.cont_liaise_check .txt_contact_top {
  margin-bottom: 40px;
}
.cont_liaise_check .form_box .btn_check_submit {
  padding-bottom: 0;
}
.cont_liaise_check .btn_return_form {
  text-align: left;
}
.cont_liaise_check .btn_return_form .btn_return_wrap {
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .cont_liaise_check .btn_return_form .btn_return_wrap {
    width: calc(100% * 200 / 345);
  }
}
.cont_liaise_check .btn_return_form .btn_return_wrap::after {
  content: "";
  display: block;
  width: 8px;
  height: 14px;
  position: absolute;
  top: 50%;
  margin-top: -7px;
  background: url("../img_cmn/ico_arrow_accent.svg") no-repeat;
  background-size: 8px auto;
  transform: rotateY(180deg);
  left: 10px;
  transition: 0.5s;
}
.cont_liaise_check .btn_return_form .btn_return_wrap::after:hover {
  opacity: 0.8;
}
.cont_liaise_check .btn_return_form .btn_return_wrap:hover::after {
  background: url("../img_cmn/ico_arrow_keycolor.svg") no-repeat;
  background-size: 8px auto;
}
.cont_liaise_check .btn_return_form .btn_return_wrap .confirm_btn {
  color: #404040;
  background-color: #fff;
  border: 1px solid #404040;
  width: 280px;
  font-size: 1.6rem;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .cont_liaise_check .btn_return_form .btn_return_wrap .confirm_btn {
    font-size: 1.4rem;
    width: calc(100% * 200 / 345);
    width: 100%;
  }
}
.cont_liaise_check .btn_return_form .btn_return_wrap .confirm_btn:hover {
  opacity: 0.8;
}
.cont_liaise_check .btn_return_form .btn_return_wrap .confirm_btn:hover {
  color: #E01F06;
  border: 1px solid #E01F06;
}

/*=================================================
 * 052_contact-sent.html
 * ================================================ */
.cont_liaise_sent .contact_sent_inner {
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .cont_liaise_sent .contact_sent_inner {
    padding-bottom: 40px;
  }
}
.cont_liaise_sent .liaise_step_box::before {
  background-color: #FFAF00;
}
.cont_liaise_sent .page_subtl02 {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cont_liaise_sent .page_subtl02 {
    margin-top: 0;
  }
}
.cont_liaise_sent .txt_contact_top {
  text-align: center;
}
.cont_liaise_sent .btn_return_home {
  margin: 60px 0 75px;
}
@media screen and (max-width: 767px) {
  .cont_liaise_sent .btn_return_home {
    margin: 30px 0 60px;
  }
}

/*=================================================
 * 060_company.html
 * ================================================ */
.cont_company .cont_bg .cont_inner {
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .cont_company .cont_bg .cont_inner {
    padding-bottom: 30px;
  }
}

.company_cont_list {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .company_cont_list {
    margin-top: 60px;
  }
}

/*=================================================
 * 062_company_vision.html
 * ================================================ */
.cont_company_vision .cont_bg .cont_inner {
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .cont_company_vision .cont_bg .cont_inner {
    padding-bottom: 30px;
  }
}

.company_vision_detail,
.company_mission,
.company_greeting {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .company_vision_detail,
  .company_mission,
  .company_greeting {
    margin-bottom: 60px;
  }
}
.company_vision_detail .page_subtl02,
.company_mission .page_subtl02,
.company_greeting .page_subtl02 {
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .company_vision_detail .page_subtl02,
  .company_mission .page_subtl02,
  .company_greeting .page_subtl02 {
    font-size: 2.4rem;
  }
}

/* ビジョン・ミッション共通
--------------- */
.vision_tl_box .page_subtl02 .sub_txt {
  color: #E01F06;
  font-size: 2.2rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .vision_tl_box .page_subtl02 .sub_txt {
    font-size: 1.8rem;
  }
}

.company_vision_box .txt_box .txt,
.company_mission_box .txt_box .txt {
  margin-bottom: 1em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .company_vision_box .txt_box .txt,
  .company_mission_box .txt_box .txt {
    line-height: 1.6;
  }
}

.company_vision_box,
.company_mission_philosophy {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .company_vision_box,
  .company_mission_philosophy {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .company_vision_box .img_box img,
  .company_mission_philosophy .img_box img {
    width: 100%;
    height: auto;
  }
}

/* 代表あいさつ
------------------------------------ */
.greeting_box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .greeting_box {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .greeting_box .txt {
    order: 2;
  }
}
@media screen and (max-width: 767px) {
  .greeting_box .img_box {
    order: 1;
    width: 90%;
    margin: 0 auto 30px;
  }
  .greeting_box .img_box > a > img {
    width: 100%;
    height: auto;
  }
}
.greeting_box .name {
  text-align: right;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .greeting_box .name {
    margin-top: 10px;
    font-size: 1.2rem;
  }
}
.greeting_box .name .img_name {
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .greeting_box .name .img_name {
    height: 18px;
    width: auto;
  }
}

/* ビジョン
------------------------------------ */
.company_vision_motto_img {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .company_vision_motto_img {
    margin-bottom: 30px;
  }
  .company_vision_motto_img > img {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .company_vision_box .img_box {
    order: 2;
  }
}
@media screen and (max-width: 767px) {
  .company_vision_box .txt_box {
    order: 1;
  }
}

/* ミッション
------------------------------------ */
.company_mission_philosophy {
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .company_mission_philosophy {
    margin: 20px 0;
  }
}

.philosophy_list_outer {
  margin-right: 30px;
  width: 370px;
}
@media screen and (max-width: 767px) {
  .philosophy_list_outer {
    margin-right: 0;
    width: auto;
  }
}

.philosophy_list {
  counter-reset: item;
}

.philosophy_list_item {
  text-indent: -1.3em;
  padding-left: 1.3em;
  font-size: 1.8rem;
  margin-bottom: 1em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}
.philosophy_list_item::before {
  counter-increment: item;
  content: counter(item) ".";
  /* 以下は自由に装飾... */
  padding-right: .5em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  color: #E01F06;
}

/*=================================================
 * 063_company_about.html
 * ================================================ */
.cont_company_about .cont_bg .cont_inner {
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .cont_company_about .cont_bg .cont_inner {
    padding-bottom: 30px;
  }
}

.company_about_outline {
  margin-top: 80px;
}

.company_about_chart source, .company_about_chart img {
  width: 100%;
  height: auto;
}

/*=================================================
 * 064_company_history.html
 * ================================================ */
.cont_company_history .cont_bg .cont_inner {
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .cont_company_history .cont_bg .cont_inner {
    padding-bottom: 30px;
  }
}

.company_history_timeline {
  height: 700px;
  overflow: auto;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .company_history_timeline {
    height: auto;
    margin-top: 60px;
  }
}

.timeline_list {
  border-top: #CCC 1px solid;
  position: relative;
}
.timeline_list::before {
  content: "";
  display: block;
  width: 6px;
  height: 100%;
  position: absolute;
  top: 50%;
  margin-top: 0;
  background-color: #E01F06;
  top: 0;
  left: 175px;
}
@media screen and (max-width: 767px) {
  .timeline_list::before {
    left: 85px;
  }
}

.timeline_item {
  padding: 20px 0;
  display: flex;
  border-bottom: #CCC 1px solid;
}
@media screen and (max-width: 767px) {
  .timeline_item {
    flex-direction: column;
  }
}
.timeline_item .date {
  width: 260px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .timeline_item .date {
    width: 170px;
  }
}
.timeline_item .year {
  width: 180px;
  display: block;
  float: left;
}
@media screen and (max-width: 767px) {
  .timeline_item .year {
    width: 100px;
    margin-bottom: -19px;
  }
}
.timeline_item .year .year_j {
  font-weight: normal;
  font-size: 1.4rem;
  margin-bottom: 1px;
}
@media screen and (max-width: 767px) {
  .timeline_item .year .year_j {
    display: block;
    font-size: 1.2rem;
  }
}
.timeline_item .month {
  position: relative;
  display: block;
  float: right;
  width: 65px;
}
.timeline_item .month::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  margin-top: 0;
  background-color: #E01F06;
  border-radius: 50%;
  top: 4px;
  left: -25px;
}
.timeline_item .txt {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .timeline_item .txt {
    padding-left: 105px;
  }
}

/*=================================================
 * 065_company_finance.html
 * ================================================ */
.cont_company_finance .cont_bg .cont_inner {
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .cont_company_finance .cont_bg .cont_inner {
    padding-bottom: 30px;
  }
}

.company_finance_01 .txt,
.company_finance_02 .txt {
  margin-bottom: 30px;
}
.company_finance_01 img, .company_finance_01 source,
.company_finance_02 img,
.company_finance_02 source {
  width: 100%;
}

/* ------------------------------------
	070_privacy-policy.html
------------------------------------ */
.cont_pp .cont_box p {
  margin-bottom: 1em;
}
.cont_pp ol {
  margin-top: 2em;
  margin-left: 1em;
}
@media screen and (max-width: 767px) {
  .cont_pp ol {
    margin-left: 20px;
  }
}
.cont_pp ol li {
  list-style-type: decimal;
  margin-bottom: 2em;
}
.cont_pp .pp_back {
  margin-top: 80px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .cont_pp .pp_back {
    margin-top: 40px;
    padding-bottom: 40px;
  }
}
.cont_pp .pp {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .cont_pp .pp {
    margin-top: 65px;
  }
}

/* ------------------------------------
	071_site-policy.html
------------------------------------ */
.cont_site-policy .cont_box p {
  margin-bottom: 1em;
}
.cont_site-policy ol {
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .cont_site-policy ol {
    margin-left: 0;
  }
}
.cont_site-policy ol li {
  margin-bottom: 2em;
}
.cont_site-policy .site-policy {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .cont_site-policy .site-policy {
    margin-top: 65px;
  }
}
.cont_site-policy .site-policy .list_site-policy_02 {
  margin-left: 2em;
  counter-reset: num;
}
.cont_site-policy .site-policy .list_site-policy_02 .item_site-policy_02 {
  padding-left: 2em;
  position: relative;
}
.cont_site-policy .site-policy .list_site-policy_02 .item_site-policy_02::before {
  position: absolute;
  counter-increment: num;
  content: "(" counter(num) ")";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cont_site-policy .site-policy .adobe_site-policy {
  margin-top: 15px;
}
.cont_site-policy .site-policy .policy_analitics {
  margin-top: 40px;
}
.cont_site-policy .site-policy .policy_analitics a {
  transition: 0.5s;
  text-decoration: underline;
  position: relative;
}
.cont_site-policy .site-policy .policy_analitics a:hover {
  opacity: 0.8;
}
.cont_site-policy .site-policy .policy_analitics a::after {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  position: absolute;
  top: 50%;
  margin-top: -5.5px;
  right: -16px;
  background: url(../img_cmn/ico_link_blank.svg) no-repeat center/100% 100%;
}
.cont_site-policy .site-policy_back {
  margin-top: 80px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .cont_site-policy .site-policy_back {
    margin-top: 40px;
    padding-bottom: 40px;
  }
}

/* ------------------------------------
  sitemap.html
------------------------------------ */
.cont_sitemap .cont_bg .cont_inner {
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .cont_sitemap .cont_bg .cont_inner {
    padding-bottom: 30px;
  }
}

/* １階層目
------------------------------------ */
.sitemap_cont_list01 {
  display: flex;
  flex-wrap: wrap;
}

.sitemap_cont_list01_item {
  width: 300px;
  margin-bottom: 50px;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .sitemap_cont_list01_item {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }
}
.sitemap_cont_list01_item:nth-child(3n) {
  margin-right: 0;
}
.sitemap_cont_list01_item > a {
  display: block;
  border-bottom: #CCC 1px solid;
  font-size: 2.2rem;
  padding: 10px 0 10px 20px;
  position: relative;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .sitemap_cont_list01_item > a {
    font-size: 1.8rem;
    padding-left: 0;
  }
}
.sitemap_cont_list01_item > a:hover {
  opacity: 0.8;
}
.sitemap_cont_list01_item > a:hover {
  color: #E01F06;
}
.sitemap_cont_list01_item > a::after {
  content: "";
  display: block;
  width: 8px;
  height: 14px;
  position: absolute;
  top: 50%;
  margin-top: -7px;
  background: url("../img_cmn/ico_arrow_accent.svg") no-repeat;
  background-size: 8px auto;
  left: 0;
}
@media screen and (max-width: 767px) {
  .sitemap_cont_list01_item > a::after {
    left: auto;
    right: 10px;
  }
}

/* ２階層目、その他
------------------------------------ */
.sitemap_cont_list02 {
  display: flex;
  flex-wrap: wrap;
}

.sitemap_cont_list02_item {
  margin-top: 20px;
}
.sitemap_cont_list02_item a {
  padding-left: 20px;
  position: relative;
  transition: 0.5s;
}
.sitemap_cont_list02_item a:hover {
  opacity: 0.8;
}
.sitemap_cont_list02_item a:hover {
  color: #E01F06;
}
.sitemap_cont_list02_item a::after {
  content: "";
  display: block;
  width: 8px;
  height: 14px;
  position: absolute;
  top: 50%;
  margin-top: -7px;
  background: url("../img_cmn/ico_arrow_accent.svg") no-repeat;
  background-size: 8px auto;
  left: 0;
}

/* 個別設定
------------------------------------ */
.sitemap_corporate {
  margin-bottom: 60px;
}
.sitemap_corporate .sitemap_cont_list01_item .sitemap_cont_list02_item {
  width: 50%;
}
.sitemap_corporate > .sitemap_cont_list02 .sitemap_cont_list02_item {
  margin-right: 30px;
}
.sitemap_corporate .logo_sd {
  vertical-align: middle;
}

.sitemap_recruit {
  margin-bottom: 30px;
}
.sitemap_recruit .sitemap_cont_list01_item .sitemap_cont_list02_item {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sitemap_recruit .sitemap_cont_list01_item .sitemap_cont_list02_item {
    width: 50%;
  }
}

/*=================================================
 * 120_development.html
 * ================================================ */
.cont_development .multiple_box_two {
  margin: 30px 0 40px;
}
@media screen and (max-width: 767px) {
  .cont_development .multiple_box_two {
    margin: 20px 0;
  }
}
.cont_development .multiple_box_two .multiple_box_item {
  padding: 20px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .cont_development .multiple_box_two .multiple_box_item {
    padding: 15px 20px;
  }
  .cont_development .multiple_box_two .multiple_box_item:first-child {
    margin-bottom: 25px;
  }
}
.cont_development .multiple_box_two .multiple_box_item p {
  margin-bottom: 0;
}
.cont_development .multiple_box_two .multiple_box_item .txt_bgbox_note {
  margin-bottom: 0;
  font-size: 1.4rem;
}
.cont_development .multiple_box_two .multiple_box_item .flex_development_img {
  display: flex;
}
.cont_development .multiple_box_two .multiple_box_item .flex_development_img .item_development_img:first-child {
  margin-right: 20px;
}
.cont_development .multiple_box_two .multiple_box_item .flex_development_img .item_development_img .img_box {
  margin-bottom: 10px;
}
.cont_development .multiple_box_two .development_ico_box .page_subtl03 {
  display: flex;
  align-items: stretch;
  margin-bottom: 40px;
}
.cont_development .multiple_box_two .development_ico_box .page_subtl03 .white_box {
  background-color: #fff;
  font-size: 1.4rem;
  padding: 0 7px 0 10px;
  margin-left: 10px;
  line-height: 3.3rem;
}
.cont_development .multiple_box_two .development_ico_box .flex_development_img {
  justify-content: space-between;
  margin-bottom: 10px;
  position: relative;
}
.cont_development .multiple_box_two .development_ico_box .flex_development_img::before {
  content: "";
  display: block;
  width: 25px;
  height: 22px;
  position: absolute;
  top: 50%;
  margin-top: -11px;
  background: url(../img_cmn/ico_triangle_accent.svg) no-repeat center/100% 100%;
  left: 50%;
  transform: translateX(-50%);
}
.cont_development .multiple_box_two .development_ico_box .flex_development_img .item_development_img .img_box {
  position: relative;
  margin-bottom: 0;
}
.cont_development .multiple_box_two .development_ico_box .flex_development_img .item_development_img .img_box::before {
  content: '';
  position: absolute;
  width: 88px;
  height: 20px;
  top: -20px;
  left: -2px;
  background: url(../img_cmn/ico_onimg_after.svg) no-repeat center/100% 100%;
}
.cont_development .multiple_box_two .development_ico_box .flex_development_img .item_development_img:first-child .img_box::before {
  background-image: url(../img_cmn/ico_onimg_before.svg);
}
.cont_development .flex_development_area {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .cont_development .flex_development_area {
    display: block;
  }
}
.cont_development .flex_development_area .development_area_map {
  margin-right: 30px;
  /*
  .map_svg {
    // sp
    @include pcmq(sm) {
      height: 380px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .g_areamap_wrap {
      position: static;
    }
  }
  */
}
@media screen and (max-width: 767px) {
  .cont_development .flex_development_area .development_area_map {
    margin: 0 auto;
  }
}
.cont_development .flex_development_area .development_area_map .g_areamap_wrap {
  position: static;
}
.cont_development .flex_development_area .development_area_map .g_areamap_wrap a {
  pointer-events: none;
}
.cont_development .flex_development_area .development_area_list .page_subtl03:first-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .cont_development .flex_development_area .development_area_list .page_subtl03:first-child {
    margin-top: 40px;
  }
}

/*=================================================
 * 130_tenant.html
 * ================================================ */
.cont_tenant .tenant_top {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .cont_tenant .tenant_top {
    margin-top: 60px;
  }
}
.cont_tenant .tenant_top .tenant_box_topimg {
  margin-top: 20px;
  width: 100%;
}
.cont_tenant .tenant_top .tenant_box_topimg .tenant_topimg {
  width: 100%;
  height: 100%;
}
.cont_tenant .tenant_recruit_timepoint {
  text-align: right;
}
.cont_tenant .flex_tenant_tables {
  display: flex;
}
@media screen and (max-width: 767px) {
  .cont_tenant .flex_tenant_tables {
    display: block;
  }
}
.cont_tenant .flex_tenant_tables .base_table {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 767px) {
  .cont_tenant .flex_tenant_tables .base_table {
    width: 100%;
    margin: 0;
  }
  .cont_tenant .flex_tenant_tables .base_table:nth-child(2) {
    border-top: none;
  }
}
.cont_tenant .flex_tenant_tables .base_table:first-child {
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .cont_tenant .flex_tenant_tables .base_table:first-child {
    margin-right: 0;
  }
}
.cont_tenant .flex_tenant_tables .base_table tr:first-child th {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .cont_tenant .flex_tenant_tables .base_table tr th, .cont_tenant .flex_tenant_tables .base_table tr td {
    display: table-cell;
  }
}
@media screen and (max-width: 767px) {
  .cont_tenant .flex_tenant_tables .base_table tr th {
    border-bottom: #CCC 1px solid;
    padding: 20px 10px 20px 0;
    font-weight: normal;
  }
}
.cont_tenant .flex_tenant_tables .base_table tr th:first-child {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .cont_tenant .flex_tenant_tables .base_table tr th:first-child {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .cont_tenant .flex_tenant_tables .base_table tr td {
    padding: 20px 0;
  }
}
.cont_tenant .tenant_border_box {
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .cont_tenant .tenant_border_box {
    padding: 20px 15px;
  }
}
.cont_tenant .tenant_border_box .tl_contact_infomation {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .cont_tenant .tenant_border_box .tl_contact_infomation {
    margin-bottom: 15px;
  }
}
.cont_tenant .tenant_border_box .flex_contact_infomation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .cont_tenant .tenant_border_box .flex_contact_infomation {
    display: block;
  }
}
.cont_tenant .tenant_border_box .flex_contact_infomation .item_contact_infomation {
  width: calc((100% - 20px) / 3);
  font-size: 2.8rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .cont_tenant .tenant_border_box .flex_contact_infomation .item_contact_infomation {
    width: 100%;
    font-size: 2.2rem;
  }
}
.cont_tenant .tenant_border_box .flex_contact_infomation .item_contact_infomation:first-child {
  font-size: 1.6rem;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .cont_tenant .tenant_border_box .flex_contact_infomation .item_contact_infomation:first-child {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .cont_tenant .tenant_border_box .flex_contact_infomation .item_contact_infomation .base_btn {
    margin-top: 20px;
  }
}
.cont_tenant .tenant_border_box .flex_contact_infomation .item_contact_infomation .base_btn a {
  background-color: #fff;
  color: #3D3527;
  font-size: 2.8rem;
  transition: 0.5s;
}
.cont_tenant .tenant_border_box .flex_contact_infomation .item_contact_infomation .base_btn a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .cont_tenant .tenant_border_box .flex_contact_infomation .item_contact_infomation .base_btn a {
    background-color: #404040;
    font-size: 2.2rem;
    color: #FFF;
    margin: 0;
  }
}
.cont_tenant .tenant_border_box .flex_contact_infomation .item_contact_infomation span {
  display: block;
  text-align: center;
}
.cont_tenant .form_box .form_table .contact_tr .form_td.tenant_type_flex {
  display: flex;
  flex-wrap: wrap;
}

/*# sourceMappingURL=style.css.map */
