@charset "UTF-8";
/*-------------------------------------------*/
/* COMMON(サイト基本設定)                      */
/*-------------------------------------------*/
/*▼▼▼▼▼▼▼▼▼▼▼reset ▼▼▼▼▼▼▼▼▼▼▼▼*/
/*要素のフォントサイズやマージン・パディングをリセットしています*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/*行の高さをフォントサイズと同じにしています*/
body {
  line-height: 1;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています*/
/*nav ul {
    list-style:none;
}*/
ol, ul {
  list-style: none;
}

/*引用符の表示が出ないようにしています*/
blockquote, q {
  quotes: none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/*
a:visited {
  color: #ffffff;
}

a:link {
  color: #ffffff;
}

a:link {
  text-decoration: none;
}

a {
  color: #ffffff;
}*/

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています
また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
  text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています
また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定しています*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input, select {
  vertical-align: middle;
}

/*画像を縦に並べた時に余白が出ないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*▼▼▼▼▼▼▼▼▼▼▼BASE基本設定(import) ▼▼▼▼▼▼▼▼▼▼▼▼*/
* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-style: normal;
}

html {
  margin-top: 0 !important;
}

body {
  margin: 0;
  padding: 0;
  font-family: YuGothic, "游ゴシック", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "ＭＳ Ｐゴシック", sans-serif;
  width: 100%;
  height: 100%;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  line-height: 1.8;
}

.roboto {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  letter-spacing: 0.15em;
}

a {
  outline: none;
  text-decoration: none;
}

a:link {
  text-decoration: none;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

a img {
  border: none;
}

li {
  list-style-type: none;
}

/*-------------------------------------------*/
/* フォーム部品 　 　 　 　                     */
/*-------------------------------------------*/
form {
  /**********ラジオボタンとチェックボックス***********/
  /*
    input[type=radio], input[type=checkbox] {
      display: none;
    }

    .radio, .checkbox {
      box-sizing: border-box;
      -webkit-transition: background-color 0.2s linear;
      transition: background-color 0.2s linear;
      position: relative;
      display: inline-block;
      margin: 0 10px 4px 0;
      padding: 8px 8px 8px 8px;
      border-radius: 8px;
      vertical-align: middle;
      cursor: pointer;
      .wpcf7-list-item-label {
        display: none;
      }
    }
    .radio:hover, .checkbox:hover {
      //background-color: $form_input_hoverbg_color;
    }
    .radio:hover:after, .checkbox:hover:after {
      //border-color: $form_input_border_color;
    }
    .radio:after, .checkbox .wpcf7-list-item-label:after {
      -webkit-transition: border-color 0.2s linear;
      transition: border-color 0.2s linear;
      position: absolute;
      top: 50%;
      left: 9px;
      display: block;
      margin-top: -10px;
      width: 16px;
      height: 16px;
      border: 1px solid $form_input_border_color;
      background: #fff;
      content: '';
    }

    .radio:before {
      -webkit-transition: opacity 0.2s linear;
      transition: opacity 0.2s linear;
      position: absolute;
      top: 50%;
      left: 14px;
      display: block;
      margin-top: -5px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: $form_radio_checkbox_color;
      content: '';
      opacity: 0;
    }
    input[type=radio]:checked + .radio:before {
      opacity: 1;
    }

    .checkbox .wpcf7-list-item-label:before {
      -webkit-transition: opacity 0.2s linear;
      transition: opacity 0.2s linear;
      position: absolute;
      top: 50%;
      left: 15px;
      display: block;
      margin-top: -7px;
      width: 5px;
      height: 9px;
      border-right: 3px solid $form_radio_checkbox_color;
      border-bottom: 3px solid $form_radio_checkbox_color;
      content: '';
      opacity: 0;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    input[type=checkbox]:checked + .wpcf7-list-item-label::before {
      opacity: 1;
    }
    select {
      width: 200px;
      height: 40px;
      option {
        padding: 0.8em;
      }
    }
  */
}
form input, form label, form select, form textarea {
  vertical-align: middle;
}
form input {
  background: #ffffff;
  border-radius: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
form input::-webkit-input-placeholder {
  color: #dedede;
}
form input::-moz-placeholder {
  color: #dedede;
}
form input:-ms-input-placeholder {
  color: #dedede;
}
form input::-ms-input-placeholder {
  color: #dedede;
}
form input::placeholder {
  color: #dedede;
}
form input::-webkit-input-placeholder {
  color: #dedede;
}
form input::-moz-placeholder {
  color: #dedede;
}
form input:-ms-input-placeholder {
  color: #dedede;
}
form input::-ms-input-placeholder {
  color: #dedede;
}
form input::placeholder {
  color: #dedede;
}
form textarea::-webkit-input-placeholder {
  color: #dedede;
}
form textarea::-moz-placeholder {
  color: #dedede;
}
form textarea:-ms-input-placeholder {
  color: #dedede;
}
form textarea::-ms-input-placeholder {
  color: #dedede;
}
form textarea::placeholder {
  color: #dedede;
}
form input:-ms-input-placeholder {
  color: #dedede;
}
form input[type=text],
form input[type=email],
form input[type=tel],
form input[type=submit] {
  padding: 0.6em;
  border: 1px solid #F5F5F5;
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
}
form input[type=text].mwidth,
form input[type=email].mwidth,
form input[type=tel].mwidth,
form input[type=submit].mwidth {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
form input[type=text]:focus,
form input[type=email]:focus,
form input[type=tel]:focus,
form input[type=submit]:focus {
  background: #ffffe0;
}
form textarea {
  background: #ffffff;
  border: 1px solid #F5F5F5;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border-radius: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
form textarea:focus {
  background: #ffffe0;
}
form .req:after {
  content: "※";
  color: #1168CD;
  margin-left: 0.5em;
}

/*-------------------------------------------*/
/* 404見つかりませんでした                      */
/*-------------------------------------------*/
#not_found .inner {
  border-bottom: 1px solid #e6e6e6;
  padding: 30px 0 60px 0;
}
#not_found .inner h1 {
  color: #4b4b4b;
  font-size: 120px;
  text-align: center;
  font-weight: normal;
  margin-bottom: 30px;
}
#not_found .inner .lead {
  font-size: 35px;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 30px;
}
#not_found .inner .lead span {
  vertical-align: middle;
  font-size: 16px;
}
#not_found .inner .text {
  font-size: 13px;
  text-align: center;
  line-height: 1.6;
}
#not_found .totop {
  text-align: center;
  padding: 60px 0;
}
#not_found .totop a {
  display: inline-block;
  padding: 20px 60px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  background: #bcbcbc;
  color: #fff;
}

/*▲▲▲▲▲▲▲▲▲▲▲　BASE基本設定終了 ▲▲▲▲▲▲▲▲▲▲*/
html,
body {
  color: #141414;
  font-size: 14px;
  width: 100%;
  overflow-x: hidden;
  line-height: 2.1;
}
@media all and (max-width: 750px) {
  html,
  body {
    font-size: 12px;
  }
}

/*251009
a {
	color: $linkC;
}
a:link {
	color: $linkC;
}
a:visited {
	color: $linkC;
}
a:hover {
	color: $hoverC;
}*/
.nonSP {
  display: block !important;
}
@media all and (max-width: 750px) {
  .nonSP {
    display: none !important;
  }
}
@media all and (min-width: 751px) {
  .nonSP.inline {
    display: inline !important;
  }
  .nonSP.inline_block {
    display: inline-block !important;
  }
}

.forSP {
  display: none !important;
}
@media all and (max-width: 750px) {
  .forSP {
    display: block !important;
  }
  .forSP.inline {
    display: inline !important;
  }
}

.forTB {
  display: none !important;
}
@media all and (max-width: 980px) {
  .forTB {
    display: block !important;
  }
  .forTB.inline {
    display: inline !important;
  }
}

.forPC {
  display: none !important;
}
@media all and (min-width: 981px) {
  .forPC {
    display: block !important;
  }
  .forPC.inline {
    display: inline !important;
  }
}

@media all and (min-width: 981px) {
  .hvr_img img {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
.hvr_img:hover {
  cursor: pointer;
}
.hvr_img:hover img {
  opacity: 0.8;
}

/*=================
  color
=================*/
.color_blue {
  color: #1168cd;
}

.bold {
  font-weight: bold;
}

.alignCenter {
  text-align: center;
}

.alignRight {
  text-align: right;
}

/*=================
  bg_color
=================*/
.bg_blue {
  background: #1168cd;
}

/*=================
  text
=================*/
.text {
  font-size: 13px;
  margin-top: 1em;
}
.text.noMgn {
  margin-top: 0;
}
@media all and (min-width: 751px) {
  .text {
    font-size: 14px;
    margin-top: 20px;
  }
}

/*=================
  inner
=================*/
.inner {
  text-align: left;
  margin: 40px 20px;
  padding: 0px;
  max-width: 1246px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.inner.noMgnT {
  margin-top: 0;
}
.inner.noMgnB {
  margin-bottom: 0;
}
@media all and (min-width: 751px) {
  .inner {
    margin: 60px 30px;
    padding: 0px;
  }
}
@media all and (min-width: 981px) {
  .inner {
    margin: 80px 60px;
    padding: 0px;
  }
}
@media screen and (min-width: 1366px) {
  .inner {
    margin: 80px auto;
  }
}
.inner.single {
  max-width: 800px;
}
@media screen and (min-width: 920px) {
  .inner.single {
    margin: 80px auto;
  }
}
.inner.narrow {
  max-width: 1000px;
}
@media screen and (min-width: 1120px) {
  .inner.narrow {
    margin: 80px auto;
  }
}

.contents {
  min-height: calc(100vh - 80px - 190px - 20px);
  padding-top: 50px;
}
@media all and (min-width: 751px) {
  .contents {
    min-height: calc(100vh - 105px - 125px - 83px);
  }
}
@media all and (min-width: 981px) {
  .contents {
    padding-top: 90px;
  }
}

/*=================
  loading
=================*/
#loader-bg {
  display: none;
  position: relative;
  background: #efefef;
  color: #141414;
  text-align: center;
  width: 100%;
  height: 100vh;
  line-height: 100%;
  margin: 0 auto;
  overflow: hidden;
  z-index: 10000;
}

.loader {
  visibility: hidden;
  top: calc(50% - 23px);
  left: calc(50% - 23px);
  display: block;
  width: 46px;
  height: 46px;
  position: relative;
}

.loadingText {
  position: absolute;
  text-align: center;
  width: 100%;
  top: calc(50% + 40px);
  color: #141414;
  font-size: 0.9em;
}
@media all and (min-width: 981px) {
  .loadingText {
    font-size: 0.8em;
  }
}

#loadingWrap {
  position: relative;
  right: 0;
  -webkit-transition: all 0.8s cubic-bezier(0.51, 0.09, 0.21, 0.73);
  transition: all 0.8s cubic-bezier(0.51, 0.09, 0.21, 0.73);
}

@media all and (max-width: 980px) {
  #menu {
    display: block;
    position: fixed;
    margin-top: 50px;
    padding: 0;
    top: 0px;
    right: -100%;
    z-index: 1000;
    width: 100%;
    height: 100%;
    text-align: left;
    background: #1168cd;
    -webkit-transition: all 0.8s cubic-bezier(0.51, 0.09, 0.21, 0.73);
    transition: all 0.8s cubic-bezier(0.51, 0.09, 0.21, 0.73);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #menu .menulv1,
  #menu .menuLv2 {
    color: #fff;
  }
  #menu .menulv1 > li,
  #menu .menuLv2 > li {
    border-top: 1px solid #e0e0e0;
  }
  #menu .menulv1 > li a,
  #menu .menuLv2 > li a {
    color: #1168cd;
    font-weight: bold;
    font-size: 14px;
    display: block;
    padding: 10px 20px;
    width: 100%;
    height: 100%;
  }
  #menu .menulv1 > li a span,
  #menu .menuLv2 > li a span {
    display: block;
  }
  #menu .menulv1 > li a .ja,
  #menu .menuLv2 > li a .ja {
    font-size: 14px;
  }
  #menu .menulv1 > li a .eng,
  #menu .menuLv2 > li a .eng {
    font-size: 0.9em;
  }
  #menu .menuLv2 > li a span::before {
    content: "−";
    padding-right: 1em;
  }
}
@media all and (min-width: 981px) {
  #menu {
    display: block;
    margin-left: auto;
    height: 85px;
  }
  #menu .menulv1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  #menu .menulv1 > li {
    position: relative;
    padding: 25px 8px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #menu .menulv1 > li a {
    display: block;
    padding: 10px 0px;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #menu .menulv1 > li a::before {
    height: 1px;
  }
  #menu .menulv1 > li a span {
    display: block;
    text-align: center;
    line-height: 1em;
  }
  #menu .menulv1 > li a .ja {
    white-space: nowrap;
    font-size: 14px;
    color: #141414;
    font-weight: bold;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #menu .menulv1 > li a:hover .ja {
    color: #1168cd;
  }
  #menu .menulv1 > li a:hover + .menuLv2 {
    height: auto;
  }
  #menu .menulv1 > li a:hover + .menuLv2 > li {
    height: auto;
    overflow: visible;
    opacity: 1;
  }
  #menu .menulv1 > li + li::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 1px;
    height: 19px;
    top: 50%;
    left: 0;
    background: #141414;
    -webkit-transform: rotate(15deg) translateY(-50%);
            transform: rotate(15deg) translateY(-50%);
  }
  #menu .menuLv2 {
    position: absolute;
    padding-top: 24px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    height: 0;
    background: #fff;
  }
  #menu .menuLv2 > li {
    height: 0;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #menu .menuLv2 > li + li {
    border-top: 3px solid transparent;
  }
  #menu .menuLv2 > li a {
    padding: 20px 30px;
    background: #9abee8;
  }
  #menu .menuLv2 > li a .ja {
    color: #fff;
  }
  #menu .menuLv2 > li a:hover {
    background: #cdcdcd;
  }
  #menu .menuLv2 > li a:hover .ja {
    color: #505050;
  }
  #menu .menuLv2:hover {
    height: auto;
  }
  #menu .menuLv2:hover > li {
    height: auto;
    overflow: visible;
    opacity: 1;
  }
}
@media screen and (min-width: 1120px) {
  #menu .menulv1 > li > a .ja {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  #menu {
    display: block;
    margin-left: auto;
    height: 85px;
  }
  #menu .menulv1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  #menu .menulv1 > li {
    position: relative;
    padding: 25px 15px;
  }
  #menu .menulv1 > li > a {
    display: block;
    padding: 10px 0px;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #menu .menulv1 > li > a::before {
    height: 1px;
  }
  #menu .menulv1 > li > a span {
    display: block;
    text-align: center;
    line-height: 1em;
  }
  #menu .menulv1 > li > a .ja {
    font-size: 16px;
    color: #141414;
    font-weight: bold;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #menu .menulv1 > li > a:hover .ja {
    color: #1168cd;
  }
  #menu .menulv1 > li + li::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 1px;
    height: 19px;
    top: 50%;
    left: 0;
    background: #141414;
    -webkit-transform: rotate(15deg) translateY(-50%);
            transform: rotate(15deg) translateY(-50%);
  }
}
@media screen and (min-width: 1367px) {
  #menu .menulv1 > li {
    padding: 25px 30px;
  }
}

#g_recruit {
  display: block;
  font-weight: bold;
  color: #1168cd;
  padding: 10px 20px;
  font-size: 14px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media all and (max-width: 980px) {
  #g_recruit {
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
  }
}
@media all and (min-width: 981px) {
  #g_recruit {
    position: absolute;
    right: 0;
    top: -6px;
    padding: 29px 40px;
    font-size: 16px;
    width: 180px;
    background: #1168cd;
    color: #fff;
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}

#btnMenu {
  display: block;
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 50px;
  height: 50px;
  top: -3px;
  right: 0px;
  background: #1168cd;
  z-index: 1010;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  /*
   span:nth-child(4) {
     top: 30px;
   }
   */
}
#btnMenu span {
  display: block;
  position: absolute;
  height: 1px;
  width: 30px;
  left: 10px;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.11em;
  font-weight: bold;
  opacity: 1;
  right: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  background: #fff;
  /*
    &:not(:last-child) {
      background:#fff;
    }
    */
  /*
    &:nth-child(4) {
      &::before {
        content:"MENU";
        white-space: nowrap;
      }
    }
    */
}
#btnMenu span:nth-child(1) {
  top: 15px;
}
#btnMenu span:nth-child(2) {
  top: 25px;
}
#btnMenu span:nth-child(3) {
  top: 35px;
}

@media all and (max-width: 980px) {
  body.open #menu {
    right: 0;
    background: #fff;
    color: #1168cd;
  }
}
body.open #btnMenu {
  /*
    span:nth-child(4) {
      &::before {
        content:"CLOSE";
        letter-spacing: 0em;
      }
    }
    */
}
body.open #btnMenu span:nth-child(2) {
  display: none;
}
body.open #btnMenu span:nth-child(1) {
  top: 25px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
body.open #btnMenu span:nth-child(3) {
  top: 25px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media all and (min-width: 981px) {
  body.scroll #g_recruit {
    padding: 19px 40px;
  }
  body.scroll #menu .menulv1 > li {
    padding: 15px 8px;
  }
  body.scroll .header {
    height: 70px;
  }
  body.scroll .header .logo_h {
    width: 200px;
    margin-top: -20px;
  }
  body.scroll #menu .menuLv2 {
    padding-top: 14px;
  }
}
@media screen and (min-width: 1200px) {
  body.scroll #menu .menulv1 > li {
    padding: 15px 15px;
  }
}
@media screen and (min-width: 1367px) {
  body.scroll #menu .menulv1 > li {
    padding: 15px 30px;
  }
}

/*=================
  footer
=================*/
/*
.footer {251009
	position: relative;
	background: $bg_base;
	padding: 60px 0 60px;
	width: 100%;
	@include bbox;

	@include mediaTB {
		border-top: 1px solid $borderC;
		padding-bottom: 0;
	}
	@include mediaPC {
		margin-top: 120px;
	}

	&.fixed {
		position: fixed;
		bottom: 0;
	}
	.inner {
		margin-top: 0;
		margin-bottom: 0;
	}
	.logo_f {
		max-width: 319px;
		margin-bottom: 30px;
		@include mediaSP {
			margin: 0 auto 30px;
		}
		& + p {
			color: #5c5c5c;
			font-size: 11px;
			margin-bottom: 30px;
			line-height: 2;
		}
		@include mediaPC {
			& + p {
				font-size: 12px;
			}
		}
	}
	dl {
		width: 100%;
		dt,
		dd {
			display: inline-block;
			font-size: 14px;
		}
		dt {
			min-width: 50px;
		}
	}
	ul.foot {
		display: flex;
		@include mediaSP {
			flex-direction: column-reverse;
			align-items: center;
			&li {
				margin-bottom: 1em;
			}
		}
		@include mediaTB {
			justify-content: space-between;
			& > li {
				width: 345px;
				&:nth-child(2) {
					width: calc(100% - 365px);
				}
			}
		}
	}
	ul.fMenu {
		display: flex;
		flex-wrap: wrap;
		li {
			a {
				display: block;
				color: $blue;
				font-size: 14px;
				font-weight: bold;
				width: 100%;
				height: 100%;
			}
		}
		@include mediaSP {
			flex-wrap: wrap;
			margin-bottom: 30px;
			li {
				border-top: 1px solid $borderC;
				width: 100%;
				&:last-child {
					border-bottom: 1px solid $borderC;
				}
				a {
					padding: 15px 0;
				}
			}
		}
		@include mediaTB {
			justify-content: flex-end;
			li {
				margin-left: 17px;
			}
		}
		@include mediaPC {
			flex-wrap: wrap;
			li {
				margin-left: 30px;
				a {
					font-size: 15px;
				}
			}
		}
	}
	.copylight {
		font-size: 13px;
		text-align: center;
		color: #4f8ad0;
		@include mediaTB {
			text-align: right;
		}
	}
	.copylightMenu {
		position: absolute;

		bottom: 20px;
		ul {
			display: flex;
			justify-content: center;
			color: #8d8d8d;
			a {
				color: #8d8d8d;
			}
			li {
				white-space: nowrap;
				& + li {
					a::before {
						margin: 0 15px;
						content: "|";
						display: inline-block;
					}
				}
			}
		}
		@include mediaSP {
			left: 50%;
			transform: translateX(-50%);
		}
		@include mediaTB {
			right: $tbLR;
			bottom: 30px;
		}
		@include mediaPC {
			display: flex;
			ul {
				margin-right: 40px;
			}
		}
	}
}*/
/*=================
  goTop
=================*/
#goTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  z-index: 10;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#goTop a {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media all and (min-width: 981px) {
  #goTop {
    width: 90px;
    height: 90px;
  }
  #goTop a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #goTop a:hover {
    margin-top: -5px;
    opacity: 0.8;
  }
}

/*=================
  post
=================*/
.post .bigTitle {
  font-size: 2em;
}
.post .bigTitle.ubar {
  border-bottom: 1px solid #e0e0e0;
}
.post .body {
  margin-top: 40px;
  font-size: 1em;
}
.post .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.post .meta .date {
  margin-right: 1em;
  color: rgba(20, 20, 20, 0.5);
  font-weight: bold;
  letter-spacing: 0;
}
.post .meta .cate {
  background: #efefef;
  padding: 0.1em 0.5em;
  font-size: 0.8em;
  border: 1px solid #fff;
  border-radius: 3px;
}
.post .thumb {
  margin-top: 40px;
}
@media all and (min-width: 751px) {
  .post .thumb {
    margin-top: 60px;
  }
}
/*=================
  columns
=================*/
.columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.columns.addMgnT {
  margin-top: 40px;
}
.columns.addMgnB {
  margin-bottom: 40px;
}
.columns .column {
  width: 50%;
}
@media all and (min-width: 751px) {
  .columns.addMgnT {
    margin-top: 40px;
  }
  .columns.addMgnB {
    margin-bottom: 40px;
  }
}
@media all and (min-width: 981px) {
  .columns.addMgnT {
    margin-top: 80px;
  }
  .columns.addMgnB {
    margin-bottom: 80px;
  }
}
@media all and (max-width: 750px) {
  .columns.sp_col_max {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .columns.sp_col_max .column {
    width: 100%;
  }
  .columns.sp_col_max .column + .column {
    margin-top: 40px;
  }
}

/*=================
  グレー背景
=================*/
.bg_grid_gray {
  position: relative;
  padding: 60px 0;
  background: url(../images/common/bg_grid_gray_sp.jpg) no-repeat;
  background-size: cover;
}
@media all and (min-width: 751px) {
  .bg_grid_gray {
    background: url(../images/common/bg_grid_gray_pc.jpg) no-repeat;
    background-size: cover;
  }
}
@media all and (min-width: 981px) {
  .bg_grid_gray {
    padding: 100px 0;
  }
}

/*↑↑↑↑↑↑↑↑↑↑COMMON(サイト基本設定終了）↑↑↑↑↑↑↑↑↑↑↑*/
/*=================
  index,shop
=================*/
#pageHome #slider,
.pageShop #slider {
  overflow: hidden;
}
#pageHome .mvWrap,
.pageShop .mvWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background: #1168cd;
}
@media all and (max-width: 980px) {
  #pageHome .mvWrap,
  .pageShop .mvWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #pageHome .mvWrap .lead.load,
  .pageShop .mvWrap .lead.load {
    position: relative;
    width: 100vw;
    height: calc(58.6666667vw + 108px);
  }
  #pageHome .mvWrap .slideWrap,
  .pageShop .mvWrap .slideWrap {
    -webkit-transition: all 2s;
    transition: all 2s;
  }
  #pageHome .mvWrap .slideWrap.load #slider,
  .pageShop .mvWrap .slideWrap.load #slider {
    width: 100vw;
    height: 0;
  }
}
@media all and (min-width: 981px) {
  #pageHome .mvWrap,
  .pageShop .mvWrap {
    height: 29.2825769vw;
    overflow-y: hidden;
  }
  #pageHome .mvWrap .lead,
  #pageHome .mvWrap .slideWrap,
  .pageShop .mvWrap .lead,
  .pageShop .mvWrap .slideWrap {
    width: 50%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #pageHome .mvWrap .lead,
  .pageShop .mvWrap .lead {
    height: 29.2825769vw;
  }
  #pageHome .mvWrap .lead.load,
  .pageShop .mvWrap .lead.load {
    width: 100vw;
  }
  #pageHome .mvWrap .slideWrap,
  .pageShop .mvWrap .slideWrap {
    height: 29.2825769vw;
  }
  #pageHome .mvWrap .slideWrap.init,
  .pageShop .mvWrap .slideWrap.init {
    opacity: 0;
  }
  #pageHome .mvWrap .slideWrap.load,
  .pageShop .mvWrap .slideWrap.load {
    width: 0vw;
  }
}
#pageHome .mvWrap .lead,
.pageShop .mvWrap .lead {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 50px;
  text-align: center;
  overflow: hidden;
}
#pageHome .mvWrap .lead::before, #pageHome .mvWrap .lead::after,
.pageShop .mvWrap .lead::before,
.pageShop .mvWrap .lead::after {
  content: "";
  display: block;
  position: absolute;
  background: url("../images/home/square.png") no-repeat;
  background-size: contain;
  width: 67px;
  height: 67px;
  z-index: 1;
}
#pageHome .mvWrap .lead::before,
.pageShop .mvWrap .lead::before {
  top: 0;
  left: 0;
}
#pageHome .mvWrap .lead::after,
.pageShop .mvWrap .lead::after {
  bottom: 0;
  right: 0;
}
#pageHome .mvWrap .lead span,
.pageShop .mvWrap .lead span {
  display: block;
}
#pageHome .mvWrap .lead .lead1 img,
.pageShop .mvWrap .lead .lead1 img {
  width: 225px;
}
#pageHome .mvWrap .lead .lead2 img,
.pageShop .mvWrap .lead .lead2 img {
  width: 263px;
}
@media all and (min-width: 981px) {
  #pageHome .mvWrap .lead::before, #pageHome .mvWrap .lead::after,
  .pageShop .mvWrap .lead::before,
  .pageShop .mvWrap .lead::after {
    width: 11.3469985vw;
    max-width: 155px;
    height: 11.3469985vw;
    max-height: 155px;
  }
  #pageHome .mvWrap .lead::before,
  .pageShop .mvWrap .lead::before {
    top: 25px;
    left: -15px;
  }
  #pageHome .mvWrap .lead::after,
  .pageShop .mvWrap .lead::after {
    bottom: 25px;
    right: -15px;
  }
  #pageHome .mvWrap .lead .lead1 img,
  .pageShop .mvWrap .lead .lead1 img {
    width: 36.3103953vw;
    max-width: 496px;
  }
  #pageHome .mvWrap .lead .lead2,
  .pageShop .mvWrap .lead .lead2 {
    margin-top: 20px;
  }
  #pageHome .mvWrap .lead .lead2 img,
  .pageShop .mvWrap .lead .lead2 img {
    width: 36.3103953vw;
    max-width: 492px;
  }
}
@media all and (min-width: 751px) {
  #pageHome .posts,
  .pageShop .posts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#pageHome #topics,
#pageHome #seminar,
.pageShop #topics,
.pageShop #seminar {
  display: none;
}
#pageHome #topics.on,
#pageHome #seminar.on,
.pageShop #topics.on,
.pageShop #seminar.on {
  display: block;
}
#pageHome #topics .more,
#pageHome #seminar .more,
.pageShop #topics .more,
.pageShop #seminar .more {
  color: #b5b5b5;
  font-weight: bold;
  font-size: 14px;
  display: block;
}
#pageHome #topics .more::after,
#pageHome #seminar .more::after,
.pageShop #topics .more::after,
.pageShop #seminar .more::after {
  content: "";
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  display: inline-block;
  margin-left: 10px;
}
@media all and (max-width: 750px) {
  #pageHome #topics .more,
  #pageHome #seminar .more,
  .pageShop #topics .more,
  .pageShop #seminar .more {
    margin-top: 20px;
    text-align: right;
  }
}
@media all and (min-width: 751px) {
  #pageHome #topics .more,
  #pageHome #seminar .more,
  .pageShop #topics .more,
  .pageShop #seminar .more {
    margin-left: auto;
  }
}
@media all and (min-width: 981px) {
  #pageHome #topics .more,
  #pageHome #seminar .more,
  .pageShop #topics .more,
  .pageShop #seminar .more {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #pageHome #topics .more:hover,
  #pageHome #seminar .more:hover,
  .pageShop #topics .more:hover,
  .pageShop #seminar .more:hover {
    margin-right: -5px;
  }
  #pageHome #topics .more:hover::after,
  #pageHome #seminar .more:hover::after,
  .pageShop #topics .more:hover::after,
  .pageShop #seminar .more:hover::after {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media all and (min-width: 751px) {
  #pageHome #topics,
  #pageHome #seminar,
  .pageShop #topics,
  .pageShop #seminar {
    width: 48%;
  }
}
@media all and (min-width: 981px) {
  #pageHome #topics,
  #pageHome #seminar,
  .pageShop #topics,
  .pageShop #seminar {
    width: 45%;
  }
}
#pageHome #topics .more::after,
.pageShop #topics .more::after {
  border-top: 3px solid #1168cd;
  border-right: 3px solid #1168cd;
}
@media all and (min-width: 981px) {
  #pageHome #topics .more:hover,
  .pageShop #topics .more:hover {
    color: #1168cd;
  }
}
#pageHome #seminar .more::after,
.pageShop #seminar .more::after {
  border-top: 3px solid #8ce8c5;
  border-right: 3px solid #8ce8c5;
}
@media all and (min-width: 981px) {
  #pageHome #seminar .more:hover,
  .pageShop #seminar .more:hover {
    color: #8ce8c5;
  }
}
#pageHome #concept,
.pageShop #concept {
  position: relative;
}
#pageHome #concept .square1,
#pageHome #concept .square2,
.pageShop #concept .square1,
.pageShop #concept .square2 {
  display: block;
  background: url(../images/home/square_blue.png) no-repeat;
  background-size: contain;
}
#pageHome #concept .square1,
.pageShop #concept .square1 {
  position: absolute;
}
@media all and (max-width: 750px) {
  #pageHome #concept .square1,
  .pageShop #concept .square1 {
    width: 60px;
    height: 60px;
    right: 20px;
    top: 0;
  }
}
@media all and (min-width: 751px) {
  #pageHome #concept .square1,
  .pageShop #concept .square1 {
    width: 6.5885798vw;
    height: 6.5885798vw;
    right: calc(50% + 30px);
    top: 60px;
  }
}
@media all and (min-width: 981px) {
  #pageHome #concept .square1,
  .pageShop #concept .square1 {
    top: 100px;
  }
}
@media screen and (min-width: 1367px) {
  #pageHome #concept .square1,
  .pageShop #concept .square1 {
    width: 90px;
    height: 90px;
  }
}
@media all and (max-width: 750px) {
  #pageHome #concept .square2,
  .pageShop #concept .square2 {
    display: none;
  }
}
@media all and (min-width: 751px) {
  #pageHome #concept .square2,
  .pageShop #concept .square2 {
    position: absolute;
    width: 11.3469985vw;
    height: 11.3469985vw;
    left: 30px;
    bottom: 60px;
  }
}
@media all and (min-width: 981px) {
  #pageHome #concept .square2,
  .pageShop #concept .square2 {
    bottom: 100px;
  }
}
@media screen and (min-width: 1367px) {
  #pageHome #concept .square2,
  .pageShop #concept .square2 {
    width: 155px;
    height: 155px;
  }
}
@media screen and (min-width: 1426px) {
  #pageHome #concept .square2,
  .pageShop #concept .square2 {
    left: calc((100% - 1366px) / 2);
  }
}
@media all and (max-width: 750px) {
  #pageHome #concept .blueTitle,
  .pageShop #concept .blueTitle {
    margin-bottom: 40px;
  }
  #pageHome #concept .blueTitle img + img,
  .pageShop #concept .blueTitle img + img {
    margin-top: 15px;
  }
}
#pageHome #concept .blueTitle .concept_title1,
.pageShop #concept .blueTitle .concept_title1 {
  max-width: 276px;
  display: block;
}
@media all and (min-width: 751px) {
  #pageHome #concept .blueTitle .concept_title1,
  .pageShop #concept .blueTitle .concept_title1 {
    width: 31.4055637vw;
    max-width: 429px;
  }
}
#pageHome #concept .blueTitle .concept_title2,
.pageShop #concept .blueTitle .concept_title2 {
  max-width: 159px;
  display: block;
}
@media all and (min-width: 751px) {
  #pageHome #concept .blueTitle,
  .pageShop #concept .blueTitle {
    text-align: center;
  }
}
#pageHome #concept .title,
.pageShop #concept .title {
  color: #b5b5b5;
  font-size: 16px;
  font-weight: bold;
}
@media all and (min-width: 981px) {
  #pageHome #concept .title,
  .pageShop #concept .title {
    font-size: 18px;
  }
}
#pageHome #concept p,
.pageShop #concept p {
  margin-top: 30px;
  line-height: 2.2;
}
@media all and (min-width: 981px) {
  #pageHome #concept p,
  .pageShop #concept p {
    line-height: 2.5;
    letter-spacing: 0.15em;
    font-size: 15px;
  }
}
@media all and (min-width: 751px) {
  #pageHome #concept .columns,
  .pageShop #concept .columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #pageHome #concept .columns .blueTitle,
  #pageHome #concept .columns .texts,
  .pageShop #concept .columns .blueTitle,
  .pageShop #concept .columns .texts {
    width: 47%;
  }
}
#pageHome #detail,
.pageShop #detail {
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}
@media all and (min-width: 751px) {
  #pageHome #detail .inner,
  .pageShop #detail .inner {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
#pageHome #detail .info li:not(:last-child),
.pageShop #detail .info li:not(:last-child) {
  margin-bottom: 40px;
}
@media all and (min-width: 751px) {
  #pageHome #detail .info,
  .pageShop #detail .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #pageHome #detail .info li,
  .pageShop #detail .info li {
    width: 47%;
  }
  #pageHome #detail .info li:not(:last-child),
  .pageShop #detail .info li:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media all and (min-width: 981px) {
  #pageHome #detail .info li:not(:last-child),
  .pageShop #detail .info li:not(:last-child) {
    margin-bottom: 40px;
  }
}
#pageHome #detail .info_title_wrap,
.pageShop #detail .info_title_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#pageHome #detail .info_title_wrap .info_title,
.pageShop #detail .info_title_wrap .info_title {
  font-weight: bold;
  font-size: 16px;
}
@media all and (max-width: 750px) {
  #pageHome #detail .info_title_wrap,
  .pageShop #detail .info_title_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #pageHome #detail .info_title_wrap .info_icon,
  .pageShop #detail .info_title_wrap .info_icon {
    width: 60px;
    height: 60px;
  }
  #pageHome #detail .info_title_wrap .info_title,
  .pageShop #detail .info_title_wrap .info_title {
    margin: 1em 0;
  }
}
@media all and (min-width: 751px) {
  #pageHome #detail .info_title_wrap,
  .pageShop #detail .info_title_wrap {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    align-item: center;
    margin-bottom: 20px;
  }
  #pageHome #detail .info_title_wrap .info_icon,
  .pageShop #detail .info_title_wrap .info_icon {
    width: 60px;
  }
  #pageHome #detail .info_title_wrap .info_title,
  .pageShop #detail .info_title_wrap .info_title {
    margin-left: 30px;
    width: calc(100% - 90px);
  }
}
#pageHome #detail .info_body,
.pageShop #detail .info_body {
  font-size: 13px;
}
@media all and (max-width: 750px) {
  #pageHome #detail .info_body,
  .pageShop #detail .info_body {
    text-align: left;
  }
}
@media all and (min-width: 751px) {
  #pageHome #detail .info_body,
  .pageShop #detail .info_body {
    font-size: 14px;
    width: calc(100% - 90px);
    margin-left: auto;
  }
}
#pageHome #shops,
.pageShop #shops {
  padding: 40px 0 0;
  position: relative;
}
#pageHome #shops .left_gray,
.pageShop #shops .left_gray {
  position: absolute;
  left: 1px;
  background: #fcfcfc;
  width: 140px;
  height: 80%;
  z-index: 1;
  top: 40px;
}
#pageHome #shops::before, #pageHome #shops::after,
.pageShop #shops::before,
.pageShop #shops::after {
  content: "";
  position: absolute;
}
#pageHome #shops::before,
.pageShop #shops::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 84px;
  height: 84px;
  background: url(../images/home/square_blue_green.png) no-repeat;
  background-size: contain;
  top: -42px;
  right: 0;
}
#pageHome #shops::after,
.pageShop #shops::after {
  left: 0;
  background: url(../images/home/square_blue.png) no-repeat;
  background-size: contain;
  width: 70px;
  height: 70px;
  top: 25px;
  z-index: 2;
}
#pageHome #shops .btnArrowWrap,
.pageShop #shops .btnArrowWrap {
  text-align: left;
}
@media all and (max-width: 750px) {
  #pageHome #shops .btnArrowWrap,
  .pageShop #shops .btnArrowWrap {
    margin-bottom: 20px;
  }
}
@media all and (min-width: 751px) {
  #pageHome #shops .btnArrowWrap,
  .pageShop #shops .btnArrowWrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    max-width: 250px;
  }
  #pageHome #shops .btnArrowWrap a,
  .pageShop #shops .btnArrowWrap a {
    line-height: 20px;
  }
}
@media all and (min-width: 751px) {
  #pageHome #shops,
  .pageShop #shops {
    /*
       &::before {
         background: #EFEFEF;
       }
       */
  }
  #pageHome #shops::before,
  .pageShop #shops::before {
    width: 11.3469985vw;
    height: 11.3469985vw;
    top: -5.67349925vw;
  }
  #pageHome #shops .left_gray,
  .pageShop #shops .left_gray {
    background: #efefef;
  }
}
@media all and (min-width: 981px) {
  #pageHome #shops .left_gray,
  .pageShop #shops .left_gray {
    width: 185px;
  }
}
@media screen and (min-width: 1201px) {
  #pageHome #shops .left_gray,
  .pageShop #shops .left_gray {
    width: calc((100% - 1000px) / 2 + 125px);
  }
}
@media screen and (min-width: 1367px) {
  #pageHome #shops::before,
  .pageShop #shops::before {
    width: 155px;
    height: 155px;
    top: -77.5px;
  }
}
#pageHome #shops #shoplist,
.pageShop #shops #shoplist {
  position: relative;
  z-index: 3;
}
#pageHome #shops #shoplist > li,
.pageShop #shops #shoplist > li {
  margin-bottom: 40px;
}
@media all and (min-width: 751px) {
  #pageHome #shops #shoplist > li,
  .pageShop #shops #shoplist > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media all and (min-width: 981px) {
  #pageHome #shops #shoplist > li,
  .pageShop #shops #shoplist > li {
    margin-bottom: 80px;
  }
}
#pageHome #shops #shoplist .image,
.pageShop #shops #shoplist .image {
  overflow: hidden;
  position: relative;
  padding-top: 100%;
}
#pageHome #shops #shoplist .image img,
.pageShop #shops #shoplist .image img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
#pageHome #shops #shoplist .image::before,
.pageShop #shops #shoplist .image::before {
  content: "";
  width: 8px;
  height: 100%;
  display: block;
  background: #1168cd;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
}
@media all and (min-width: 751px) {
  #pageHome #shops #shoplist .image,
  .pageShop #shops #shoplist .image {
    width: 250px;
    padding-top: 250px;
  }
  #pageHome #shops #shoplist .image::before,
  .pageShop #shops #shoplist .image::before {
    height: 250px;
  }
}
@media all and (max-width: 750px) {
  #pageHome #shops #shoplist .texts,
  .pageShop #shops #shoplist .texts {
    margin-top: 20px;
  }
}
@media all and (min-width: 751px) {
  #pageHome #shops #shoplist .texts,
  .pageShop #shops #shoplist .texts {
    width: calc(100% - 290px);
  }
}
#pageHome #shops #shoplist .texts .shop_name,
.pageShop #shops #shoplist .texts .shop_name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
#pageHome #shops #shoplist .texts .shop_name::before, #pageHome #shops #shoplist .texts .shop_name::after,
.pageShop #shops #shoplist .texts .shop_name::before,
.pageShop #shops #shoplist .texts .shop_name::after {
  font-size: 22px;
  color: #1168cd;
  font-weight: bold;
}
#pageHome #shops #shoplist .texts .shop_name::before,
.pageShop #shops #shoplist .texts .shop_name::before {
  content: "[";
  padding-right: 1em;
}
#pageHome #shops #shoplist .texts .shop_name::after,
.pageShop #shops #shoplist .texts .shop_name::after {
  content: "]";
  padding-left: 1em;
}
#pageHome #shops #shoplist .texts em,
.pageShop #shops #shoplist .texts em {
  color: #1168cd;
  font-weight: 600;
}
#pageHome #shops #shoplist .texts .link,
.pageShop #shops #shoplist .texts .link {
  color: #8d8d8d;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
#pageHome #shops #shoplist .texts .link.mail,
.pageShop #shops #shoplist .texts .link.mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#pageHome #shops #shoplist .texts .link img,
.pageShop #shops #shoplist .texts .link img {
  max-width: 15px;
  max-height: 15px;
  margin-right: 10px;
}
@media all and (min-width: 981px) {
  #pageHome #shops #shoplist .texts .link,
  .pageShop #shops #shoplist .texts .link {
    font-size: 15px;
  }
}
@media all and (min-width: 981px) {
  #pageHome #shops #shoplist .texts a.link,
  .pageShop #shops #shoplist .texts a.link {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #pageHome #shops #shoplist .texts a.link:hover,
  .pageShop #shops #shoplist .texts a.link:hover {
    color: #1168cd;
    text-decoration: underline;
  }
}
#pageHome #shops #shoplist .texts .shopinfo,
.pageShop #shops #shoplist .texts .shopinfo {
  margin-top: 20px;
}
#pageHome #shops #shoplist .texts .shopinfo > li,
.pageShop #shops #shoplist .texts .shopinfo > li {
  margin-bottom: 20px;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#pageHome #shops #shoplist .texts .shopinfo > li .label,
#pageHome #shops #shoplist .texts .shopinfo > li .value,
.pageShop #shops #shoplist .texts .shopinfo > li .label,
.pageShop #shops #shoplist .texts .shopinfo > li .value {
  display: block;
}
#pageHome #shops #shoplist .texts .shopinfo > li .label,
.pageShop #shops #shoplist .texts .shopinfo > li .label {
  font-weight: bold;
  width: 80px;
}
#pageHome #shops #shoplist .texts .shopinfo > li .value,
.pageShop #shops #shoplist .texts .shopinfo > li .value {
  width: calc(100% - 80px);
}
@media all and (min-width: 751px) {
  #pageHome #shops #shoplist .texts .shopinfo > li,
  .pageShop #shops #shoplist .texts .shopinfo > li {
    font-size: 14px;
  }
}
@media all and (min-width: 981px) {
  #pageHome #shops #shoplist .texts .shopinfo,
  .pageShop #shops #shoplist .texts .shopinfo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #pageHome #shops #shoplist .texts .shopinfo > li,
  .pageShop #shops #shoplist .texts .shopinfo > li {
    width: 46%;
  }
  #pageHome #shops #shoplist .texts .shopinfo > li:nth-child(3), #pageHome #shops #shoplist .texts .shopinfo > li:nth-child(4),
  .pageShop #shops #shoplist .texts .shopinfo > li:nth-child(3),
  .pageShop #shops #shoplist .texts .shopinfo > li:nth-child(4) {
    margin-bottom: 0;
  }
}

.pageShop .mvWrap .lead {
  padding: 30px;
}
.pageShop .lead1 p,
.pageShop .lead2 p {
  color: #fff;
  line-height: 1.8;
  font-weight: bold;
  text-align: center;
}
@media all and (min-width: 981px) {
  .pageShop .lead1 p,
  .pageShop .lead2 p {
    text-align: left;
  }
}
.pageShop .lead1 p {
  font-size: 24px;
  letter-spacing: 0.1em;
}
@media all and (min-width: 751px) {
  .pageShop .lead1 p {
    font-size: 30px;
  }
}
@media all and (min-width: 981px) {
  .pageShop .lead1 p {
    font-size: 40px;
  }
}
.pageShop .lead2 p {
  font-size: 15px;
}
@media all and (min-width: 751px) {
  .pageShop .lead2 p {
    font-size: 18px;
  }
}
@media all and (min-width: 981px) {
  .pageShop .lead2 p {
    font-size: 20px;
    padding-right: 30px;
  }
}

#pageShopNakaimachi .k_NameWrap .bg_gray {
  padding-left: 30px;
  margin-top: 0;
}
@media all and (max-width: 750px) {
  #pageShopNakaimachi .k_NameWrap .bg_gray .min {
    font-size: 12px;
  }
}
@media screen and (min-width: 751px) and (max-width: 785px) {
  #pageShopNakaimachi .k_NameWrap .bg_gray .min {
    font-size: 16px;
  }
}
@media screen and (min-width: 981px) and (max-width: 1160px) {
  #pageShopNakaimachi .k_NameWrap .bg_gray {
    padding: 14px 20px 15px 40px;
    line-height: 1.2;
  }
  #pageShopNakaimachi .k_NameWrap .bg_gray .min {
    display: block;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1336px) {
  #pageShopNakaimachi .k_NameWrap .bg_gray .min {
    font-size: 18px;
  }
}

@media all and (min-width: 981px) {
  #pageShopMinamiguchi .k_NameWrap .bg_gray,
  #pageShopKizuna .k_NameWrap .bg_gray {
    padding-left: 25px;
    padding-right: 15px;
  }
}

@media all and (max-width: 750px) {
  #pageShopKizuna .mvWrap .lead {
    padding: 30px 20px;
  }
}

#topBnrRecruit {
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
@media all and (min-width: 751px) {
  #topBnrRecruit {
    margin-bottom: 40px;
  }
}
@media all and (min-width: 981px) {
  #topBnrRecruit {
    margin-bottom: 80px;
  }
}

.slideIn {
  position: relative;
  overflow: hidden;
  z-index: 0;
  -webkit-transition: all 1s cubic-bezier(0.88, 0.17, 0.36, 0.99);
  transition: all 1s cubic-bezier(0.88, 0.17, 0.36, 0.99);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.slideIn::after {
  content: "";
  width: 200%;
  height: 100%;
  display: block;
  position: absolute;
  left: -200%;
  top: 0;
  z-index: 3;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  -webkit-transition: all 1s cubic-bezier(0.88, 0.17, 0.36, 0.99);
  transition: all 1s cubic-bezier(0.88, 0.17, 0.36, 0.99);
  background-image: -webkit-gradient(linear, left bottom, left top, from(#5db1bd), to(#5186b9));
  background-image: linear-gradient(0deg, #5db1bd 0%, #5186b9 100%);
}
.slideIn.view::after {
  left: 100%;
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
.bounce {
  display: inline-block;
  -webkit-animation: bounce 0.1s ease alternate;
          animation: bounce 0.1s ease alternate;
}

/*=================
  shop
=================*/
.pageShop .mvWrap .lead .lead1 img,
.pageShop .mvWrap .lead .lead2 img {
  width: 335px;
}
.pageShop .mvWrap .lead .lead2 {
  margin-top: 20px;
}
.pageShop .iconlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.pageShop .iconlist li {
  width: 31%;
  display: inline-block;
  margin-bottom: 20px;
  text-align: center;
}
.pageShop .iconlist li .image {
  width: 70px;
  margin: 0 auto;
  image-rendering: -webkit-optimize-contrast;
}
.pageShop .iconlist li .caption {
  font-size: 12px;
  font-weight: bold;
  margin-top: 1em;
}
.pageShop #map {
  width: 100%;
  height: 75vw;
}
.pageShop .timeWrap .title {
  background: #61cca3;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.1em;
}
.pageShop .timeWrap dl {
  margin-top: 20px;
  font-size: 14px;
}
.pageShop .timeWrap dl dt,
.pageShop .timeWrap dl dd {
  display: inline-block;
  margin-bottom: 1em;
}
.pageShop .timeWrap dl dt {
  width: 80px;
  color: #61cca3;
  font-weight: bold;
}
.pageShop .timeWrap dl dd {
  width: calc(100% - 100px);
  margin-left: 10px;
}
.pageShop .weekWrap {
  padding: 20px;
  border: 2px solid #d9ebff;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.pageShop .weekWrap table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  text-align: center;
}
.pageShop .weekWrap table tr td,
.pageShop .weekWrap table tr th {
  border-bottom: 1px solid #d9ebff;
}
.pageShop .weekWrap table tr td {
  color: #1168cd;
  font-weight: bold;
}
.pageShop .weekWrap table tr td.black {
  color: #141414;
}
.pageShop .weekWrap table tr td.lightblue {
  color: #8ebdf4;
}
.pageShop .weekWrap table tr td,
.pageShop .weekWrap table tr .hour {
  border-right: 1px solid #d9ebff;
}
.pageShop .weekWrap table tr .hour {
  border-left: 1px solid #d9ebff;
  color: #61cca3;
}
.pageShop .weekWrap table tr .hour.last {
  color: #1168cd;
}
.pageShop .shopinfo {
  margin-top: 40px;
}
.pageShop .shopinfo li {
  padding: 1em;
  border-top: 1px solid #e0e0e0;
}
.pageShop .shopinfo li:last-child {
  border-bottom: 1px solid #e0e0e0;
}
.pageShop .shopinfo li .label {
  color: #1168cd;
  font-weight: bold;
}
.pageShop .shopinfo li dl dt,
.pageShop .shopinfo li dl dd {
  display: inline-block;
}
.pageShop .shopinfo li dl dt {
  width: 80px;
}
.pageShop .shopinfo li dl dd {
  width: calc(100% - 100px);
}
.pageShop .blue_round_title {
  background: #1168cd;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  line-height: 30px;
  width: 137px;
  border-radius: 3px;
  position: absolute;
  top: -15px;
  left: 20px;
  letter-spacing: 0.1em;
}
.pageShop .k_NameWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pageShop .k_NameWrap .bg_blue,
.pageShop .k_NameWrap .bg_gray {
  padding: 10px;
  font-weight: bold;
  font-size: 15px;
  line-height: 1.3;
}
.pageShop .k_NameWrap .bg_blue {
  position: relative;
  background: #1168cd;
  width: 43%;
  display: inline-block;
  color: #fff;
  text-align: center;
  line-height: 36px;
}
.pageShop .k_NameWrap .bg_blue::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 28px 0 28px 10px;
  border-color: transparent transparent transparent #1168cd;
  left: 100%;
  top: 0;
  z-index: 1;
}
.pageShop .k_NameWrap .bg_gray {
  width: 57%;
  background: #efefef;
  display: inline-block;
  padding-left: 40px;
}
.pageShop .k_NameWrap .bg_gray .min {
  display: block;
}
.pageShop .k_infoWrap {
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.16);
  margin-top: 30px;
}
.pageShop .k_infoWrap .texts {
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.pageShop .k_infoWrap .texts .big {
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.pageShop .k_infoWrap .texts .min {
  font-weight: bold;
}
.pageShop .k_infoWrap .rowUp .texts {
  position: relative;
  color: #1168cd;
  background: #d9ebff;
}
.pageShop .k_infoWrap .rowUp .texts::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 5.333333vw;
  background: url(../images/shop/triangle_up.png) no-repeat;
  background-size: 100% 5.333333vw;
  left: 0;
  top: -5.2vw;
}
.pageShop .k_infoWrap .keiTitle {
  padding-bottom: 10px;
  color: #1168cd;
  border-bottom: 1px solid #e0e0e0;
  margin-top: 40px;
}
.pageShop .link {
  display: block;
  margin-top: 40px;
}
@media all and (max-width: 980px) {
  .pageShop .mvWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media all and (max-width: 750px) {
  .pageShop .columns .column:last-child {
    margin-top: 20px;
  }
  .pageShop .shopinfo li > span {
    display: block;
  }
}
@media all and (min-width: 751px) {
  .pageShop #map {
    height: 450px;
  }
  .pageShop .iconlist {
    margin-top: 30px;
  }
  .pageShop .iconlist li {
    width: 18%;
    margin-bottom: 30px;
  }
  .pageShop .iconlist li .caption {
    font-size: 14px;
  }
  .pageShop .columns .column:nth-child(1) {
    width: 40%;
  }
  .pageShop .columns .column:nth-child(2) {
    width: 56%;
  }
  .pageShop .shopinfo li {
    padding: 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .pageShop .shopinfo li > span {
    display: block;
  }
  .pageShop .shopinfo li .label {
    width: 100px;
  }
  .pageShop .shopinfo li .data {
    width: calc(100% - 140px);
  }
  .pageShop .blue_round_title {
    font-size: 14px;
    width: 150px;
  }
  .pageShop .k_NameWrap .bg_blue,
  .pageShop .k_NameWrap .bg_gray {
    font-size: 25px;
    padding: 20px;
  }
  .pageShop .k_NameWrap .bg_blue::after {
    border-width: 38px 0 38px 20px;
  }
  .pageShop .k_NameWrap .bg_gray {
    text-align: center;
  }
  .pageShop .k_NameWrap .bg_gray .min {
    display: inline-block;
    font-size: 20px;
  }
  .pageShop .k_infoWrap {
    margin-top: 40px;
  }
  .pageShop .k_infoWrap .texts .big {
    font-size: 25px;
  }
  .pageShop .k_infoWrap .rowUp .texts {
    /*
         &::before {
           content:none;
           width: 0;
           height: 0;
           border-style: solid;
           border-width: 20vw 40px 20vw 0;
           border-color: transparent #D9EBFF transparent transparent;
           top:0;
           right: 100%;
         }
         */
  }
  .pageShop .k_infoWrap .rowUp .texts .big {
    font-size: 25px;
    line-height: 1.5;
  }
  .pageShop .k_infoWrap .rowDown .texts {
    padding: 40px 30px;
  }
}
@media screen and (min-width: 751px) and (max-width: 980px) {
  .pageShop .k_infoWrap .rowUp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .pageShop .k_infoWrap .rowUp .image {
    width: 54%;
  }
  .pageShop .k_infoWrap .rowUp .texts {
    position: relative;
    width: 46%;
    padding: 27px 30px;
  }
  .pageShop .k_infoWrap .rowUp .texts::before {
    background: url(../images/shop/triangle_left.png) no-repeat;
    background-size: 40px 100%;
    width: 40px;
    height: 100%;
    top: 0;
    left: -40px;
  }
  .pageShop .k_infoWrap .rowUp .texts .ab_wrap {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 30px;
    width: calc(100% - 60px);
  }
}
@media all and (min-width: 981px) {
  .pageShop .mvWrap .lead .lead1 img {
    width: 33.96vw;
    max-width: 468px;
  }
  .pageShop .mvWrap .lead .lead2 {
    margin-top: 30px;
  }
  .pageShop .mvWrap .lead .lead2 img {
    width: 33.235vw;
    max-width: 454px;
  }
  .pageShop .iconlist li {
    margin-bottom: 50px;
  }
  .pageShop .iconlist li .image {
    width: 80px;
  }
  .pageShop .k_NameWrap .bg_blue,
  .pageShop .k_NameWrap .bg_gray {
    font-size: 20px;
    line-height: 36px;
  }
  .pageShop .k_infoWrap .rowUp .texts {
    padding: 40px 30px;
  }
  .pageShop .k_infoWrap .rowUp .texts::before {
    background: url(../images/shop/triangle_up.png) no-repeat;
    background-size: 100% 40px;
    height: 40px;
    width: 100%;
    bottom: 100%;
    top: auto;
    left: 0px;
  }
}
@media screen and (min-width: 1200px) {
  .pageShop .iconlist li .image {
    width: 120px;
  }
  .pageShop .k_NameWrap .bg_blue,
  .pageShop .k_NameWrap .bg_gray {
    font-size: 25px;
    line-height: 36px;
  }
}
@media screen and (min-width: 1366px) {
  .pageShop .k_infoWrap .rowUp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .pageShop .k_infoWrap .rowUp .texts {
    padding: 40px 30px;
  }
  .pageShop .k_infoWrap .rowUp .texts::before {
    background: url(../images/shop/triangle_left.png) no-repeat;
    background-size: 40px 100%;
    width: 40px;
    height: 100%;
    top: 0;
    left: -40px;
  }
}

/*=================
   共通
=================*/
/*:::::  アイコン付きタイトル  :::::::::::::::::::::::*/
.square_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
.square_head.noMgnB {
  margin-bottom: 0;
}
.square_head .title_icon {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-right: 10px;
}
.square_head .title_icon.blue {
  background: url(../images/common/icon_square_blue.png) no-repeat;
  background-size: contain;
}
.square_head .title_icon.green {
  background: url(../images/common/icon_square_green.png) no-repeat;
  background-size: contain;
}
.square_head .title {
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
}
.square_head .title.blue {
  color: #1168cd;
}
.square_head .title.green {
  color: #8ce8c5;
}
@media all and (min-width: 751px) {
  .square_head .title {
    font-size: 17px;
    line-height: 1.5;
  }
}

.square_head_sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 20px;
  max-width: 335px;
}
.square_head_sp li {
  width: 48%;
}
@media all and (min-width: 751px) {
  .square_head_sp {
    display: none;
  }
}

/*:::::  一覧  :::::::::::::::::::::::*/
.cms_body li {
  border-bottom: 1px solid #e0e0e0;
  background: #fff;
}
.cms_body li a {
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cms_body li a .image {
  position: relative;
  width: 60px;
  height: 60px;
  overflow: hidden;
  background-position: center center;
  background-size: cover;
}
.cms_body li a .texts {
  width: calc(100% - 80px);
}
.cms_body li a .post_title {
  font-size: 14px;
  font-weight: bold;
  overflow: hidden;
  /* text-overflow: ellipsis;
      white-space: nowrap; */
}
.cms_body li a .date {
  font-size: 13px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.5);
}
@media all and (min-width: 981px) {
  .cms_body li a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .cms_body li a:hover {
    margin-right: -10px;
    margin-left: 10px;
  }
  .cms_body li a .post_title {
    font-size: 15px;
  }
}

/*:::::  枠つき付きタイトル  :::::::::::::::::::::::*/
.alignCenter {
  text-align: center;
}

.border_box {
  border: 2px solid #1168cd;
  padding: 20px;
  margin: 40px auto;
  color: #1168cd;
  letter-spacing: 0.1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.border_box .big {
  font-size: 25px;
}
.border_box .mid {
  font-size: 18px;
}
.border_box .min {
  font-size: 15px;
}
.border_box span {
  display: block;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.15em;
}
.border_box span + span {
  margin-top: 10px;
}
@media all and (min-width: 751px) {
  .border_box {
    margin-top: 60px;
  }
  .border_box .big {
    font-size: 35px;
  }
  .border_box .mid {
    font-size: 28px;
  }
  .border_box .min {
    font-size: 24px;
  }
}
@media all and (min-width: 981px) {
  .border_box {
    margin-top: 80px;
  }
  .border_box .big {
    font-size: 42px;
  }
  .border_box .mid {
    font-size: 30px;
  }
  .border_box .min {
    font-size: 25px;
  }
}
.border_box.noMgnT {
  margin-top: 0;
}
.border_box.noMgnB {
  margin-bottom: 0;
}

/*:::::  背景グレーのFULLBOX  :::::::::::::::::::::::*/
.gray_box {
  margin-top: 40px;
  background: #fafafa;
  margin-left: -20px;
  margin-right: -20px;
  padding: 40px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media all and (min-width: 751px) {
  .gray_box {
    margin-left: 0px;
    margin-right: 0px;
    padding: 40px 30px;
  }
}
@media all and (min-width: 981px) {
  .gray_box {
    padding: 55px 20px;
  }
}

.white_box {
  background: #fff;
  border-radius: 10px;
  padding: 40px 20px;
  position: relative;
}
.white_box + .white_box {
  margin-top: 45px;
}
@media all and (min-width: 751px) {
  .white_box {
    padding: 40px 60px;
  }
  .white_box + .white_box {
    margin-top: 55px;
  }
}

/*:::::  四角い飾り付きタイトル  :::::::::::::::::::*/
.decoTitle {
  position: relative;
  padding: 0px 20px 80px;
  margin-top: 60px;
}
.decoTitle .d_title {
  font-weight: bold;
  font-size: 23px;
  text-align: center;
  letter-spacing: 0.15em;
  line-height: 1.8;
}
.decoTitle::after {
  content: "";
  position: absolute;
  top: -30px;
  width: 60px;
  height: 60px;
  z-index: 1;
}
.decoTitle.blue_green, .decoTitle.blue_lightblue {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid #e0e0e0;
}
.decoTitle.blue_green::after {
  right: 0;
  background: url(../images/common/square_blue_green.png) no-repeat;
  background-size: contain;
}
.decoTitle.blue_lightblue::after {
  left: 0;
  background: url(../images/common/square_blue.png) no-repeat;
  background-size: contain;
}
.decoTitle .u_decoWrap {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 45px;
  left: 0;
}
.decoTitle .u_decoWrap span {
  display: inline-block;
  width: 13px;
  height: 13px;
}
.decoTitle .u_decoWrap span + span {
  margin-left: 6px;
}
.decoTitle .u_decoWrap span.darkblue {
  background: #1168cd;
}
.decoTitle .u_decoWrap span.lightblue {
  background: #9abee8;
}
@media all and (min-width: 751px) {
  .decoTitle .d_title {
    font-size: 35px;
  }
}
@media all and (min-width: 981px) {
  .decoTitle {
    margin-top: 0;
    padding: 0px 20px 85px;
  }
  .decoTitle.blue_green, .decoTitle.blue_lightblue {
    margin-top: 90px;
    padding-top: 80px;
  }
}

/*:::::  上下四角い飾り付きタイトル  :::::::::::::::*/
.decoTitleUD {
  position: relative;
  padding: 0px 20px 50px;
  margin: 40px -20px 40px;
}
.decoTitleUD .d_title {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.15em;
}
.decoTitleUD::before, .decoTitleUD::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: 1;
}
.decoTitleUD.blue_lightblue {
  margin-top: 50px;
  padding-top: 50px;
}
.decoTitleUD.blue_lightblue::before {
  right: 0;
  top: -25px;
  background: url(../images/common/square_blue.png) no-repeat;
  background-size: contain;
}
.decoTitleUD.blue_lightblue::after {
  left: 0;
  bottom: -25px;
  background: url(../images/common/square_blue.png) no-repeat;
  background-size: contain;
}
@media all and (min-width: 751px) {
  .decoTitleUD {
    margin-left: -30px;
    margin-right: -30px;
  }
  .decoTitleUD .d_title {
    font-size: 28px;
  }
  .decoTitleUD::before, .decoTitleUD::after {
    width: 90px;
    height: 90px;
  }
}
@media all and (min-width: 981px) {
  .decoTitleUD.blue_lightblue {
    margin: 0 0 60px;
    padding: 90px 20px;
  }
  .decoTitleUD.blue_lightblue::before {
    top: 0;
  }
  .decoTitleUD.blue_lightblue::after {
    bottom: 0;
  }
}

/*:::::  行頭文字が１つの■タイトル  :::::::::::::::::::::::
 *  + サイトマップ * */
.pre_square_title,
.wsp-container > h2 {
  position: relative;
  padding: 5px 0 5px 30px;
  font-weight: bold;
  color: #1168cd;
  border-bottom: 2px solid #1168cd;
  margin: 40px 0 20px;
  font-size: 18px;
  letter-spacing: 0.1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.pre_square_title.noMgnT,
.wsp-container > h2.noMgnT {
  margin-top: 0;
}
.pre_square_title::before,
.wsp-container > h2::before {
  content: "";
  background: #1168cd;
  width: 12px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 17px;
}
@media all and (min-width: 751px) {
  .pre_square_title,
  .wsp-container > h2 {
    padding: 5px 0 5px 40px;
    font-size: 22px;
  }
  .pre_square_title::before,
  .wsp-container > h2::before {
    width: 14px;
    height: 14px;
    top: calc(50% - 7px);
  }
}
@media all and (min-width: 751px) {
  .pre_square_title,
  .wsp-container > h2 {
    font-size: 25px;
  }
  .pre_square_title::before,
  .wsp-container > h2::before {
    width: 16px;
    height: 16px;
    top: 22px;
  }
}

/*:::::  下線タイトル  :::::::::::::::::::::::::::*/
.ubar_title {
  margin-top: 40px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: bold;
  padding-bottom: 5px;
  border-bottom: 2px solid #1168cd;
  color: #1168cd;
}
@media all and (min-width: 751px) {
  .ubar_title {
    margin-top: 60px;
    padding-bottom: 10px;
    font-size: 22px;
  }
}
@media all and (min-width: 981px) {
  .ubar_title {
    margin-top: 80px;
    font-size: 25px;
  }
}

/*:::::  矢印付きボタン  :::::::::::::::::::::::::*/
.btnArrowWrap {
  text-align: center;
}
.btnArrowWrap a {
  position: relative;
  display: inline-block;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  color: #fff;
  width: 100%;
  max-width: 375px;
  letter-spacing: 0.2em;
  background: #1168cd;
  position: relative;
}
.btnArrowWrap a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% + 60px);
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
@media all and (min-width: 751px) {
  .btnArrowWrap a {
    max-width: 300px;
  }
}
@media all and (min-width: 981px) {
  .btnArrowWrap a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .btnArrowWrap a:hover {
    background: #8d8d8d;
  }
  .btnArrowWrap a:hover::after {
    left: calc(50% + 70px);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
.btnArrowWrap.addMgnT {
  margin-top: 40px;
}

/*:::::  ボーダー付きの一覧 :::::::::::::::::::::::*/
.lists li {
  border-bottom: 1px solid #e0e0e0;
}
.lists li:first-child {
  border-top: 1px solid #e0e0e0;
}
.lists .label,
.lists dt {
  font-weight: bold;
  font-size: 14px;
}
.lists .label {
  color: #1168cd;
}
@media all and (max-width: 750px) {
  .lists li {
    padding: 20px 0;
  }
  .lists .label {
    font-size: 13px;
    margin-bottom: 5px;
    display: block;
  }
  .lists dt {
    font-size: 12px;
  }
  .lists .data {
    font-size: 12px;
  }
}
@media all and (min-width: 751px) {
  .lists {
    margin-top: 40px;
    font-size: 14px;
  }
  .lists li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 30px 0;
  }
  .lists .label {
    width: 234px;
  }
  .lists .data {
    width: calc(100% - 255px);
  }
  .lists dt,
  .lists dd {
    display: inline-block;
  }
  .lists dt {
    width: 105px;
  }
  .lists dd {
    margin-left: 15px;
    width: calc(100% - 140px);
  }
}
@media all and (min-width: 981px) {
  .lists li {
    padding: 20px 0;
  }
}

/*=================
  下層共通
=================*/
body:not(#pageHome) .content {
  margin-top: 60px;
}
@media all and (min-width: 981px) {
  body:not(#pageHome) .content {
    overflow: hidden;
    margin-top: 80px;
  }
  body:not(#pageHome) .content .inner {
    margin-top: 0;
  }
}
@media all and (min-width: 981px) {
  body:not(#pageHome) .main {
    width: 64.2054575%;
    max-width: 800px;
    float: left;
  }
}
@media all and (max-width: 750px) {
  body:not(#pageHome) .aside {
    padding-top: 80px;
  }
}
@media all and (min-width: 751px) {
  body:not(#pageHome) .aside {
    padding-top: 80px;
  }
}
@media all and (min-width: 981px) {
  body:not(#pageHome) .aside {
    padding-top: 0;
    width: 29.29374%;
    max-width: 366px;
    float: right;
  }
}
body:not(#pageHome) .bold_text {
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.1em;
}
body:not(#pageHome) #mainTitleWrap {
  padding: 1px;
  background: url(../images/common/content_header_bg_sp.jpg) no-repeat;
  background-size: cover;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  color: #1168cd;
}
body:not(#pageHome) #mainTitleWrap .inner {
  padding: 1px;
}
@media all and (min-width: 751px) {
  body:not(#pageHome) #mainTitleWrap {
    text-align: left;
    background: url(../images/common/content_header_bg_pc.jpg) no-repeat;
    background-size: cover;
    background-position: right center;
    font-size: 35px;
  }
  body:not(#pageHome) #mainTitleWrap h1 {
    padding-left: 30px;
  }
}
@media all and (min-width: 981px) {
  body:not(#pageHome) #mainTitleWrap {
    font-size: 47px;
  }
  body:not(#pageHome) #mainTitleWrap h1 {
    padding-left: 60px;
  }
}
@media all and (min-width: 1486px) {
  body:not(#pageHome) #mainTitleWrap {
    background: url(../images/common/content_header_bg_pc.jpg) no-repeat;
    background-size: contain;
    background-position: right center;
  }
  body:not(#pageHome) #mainTitleWrap h1 {
    padding-left: 0;
  }
}
body:not(#pageHome) .bold_text {
  font-weight: bold;
  font-size: 13px;
  line-height: 2.1;
}
@media all and (min-width: 751px) {
  body:not(#pageHome) .bold_text {
    font-size: 14px;
  }
}
@media all and (min-width: 981px) {
  body:not(#pageHome) .bold_text {
    font-size: 15px;
  }
}

/*=================
  店の一覧(共通)
=================*/
body:not(#pageHome) .shop_name {
  font-size: 15px;
  font-weight: bold;
  margin: 20px auto;
  text-align: center;
  line-height: 1;
}
body:not(#pageHome) .shop_name::before, body:not(#pageHome) .shop_name::after {
  font-size: 22px;
  color: #1168cd;
  font-weight: bold;
}
body:not(#pageHome) .shop_name::before {
  content: "[";
  padding-right: 1em;
}
body:not(#pageHome) .shop_name::after {
  content: "]";
  padding-left: 1em;
}
@media all and (min-width: 751px) {
  body:not(#pageHome) .shop_name {
    margin-top: 20px;
    font-size: 18px;
  }
  body:not(#pageHome) .shop_name::before, body:not(#pageHome) .shop_name::after {
    font-size: 18px;
  }
}
body:not(#pageHome) #shops {
  position: relative;
  padding-top: 20px;
  margin-top: 60px;
}
body:not(#pageHome) #shops .graywall {
  position: absolute;
  background: #efefef;
  width: 100px;
  height: 100%;
  z-index: -1;
  left: -20px;
  top: -20px;
}
body:not(#pageHome) #shops::before {
  content: "";
  position: absolute;
  background: url(../images/common/square_blue.png) no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  top: -40px;
  left: -20px;
  z-index: 1;
}
@media all and (min-width: 751px) {
  body:not(#pageHome) #shops {
    margin-top: 80px;
    padding-top: 70px;
  }
  body:not(#pageHome) #shops .graywall {
    width: calc(100% + 60px);
    height: 200px;
    left: -30px;
    top: 0;
  }
  body:not(#pageHome) #shops::before {
    width: 70px;
    height: 70px;
    top: -35px;
    left: -35px;
  }
}
@media all and (min-width: 981px) {
  body:not(#pageHome) #shops .graywall {
    width: calc(100% + 60px);
    left: -60px;
  }
  body:not(#pageHome) #shops::before {
    left: -60px;
  }
}
body:not(#pageHome) #shops #shoplist {
  position: relative;
  z-index: 3;
}
body:not(#pageHome) #shops #shoplist li {
  margin-bottom: 40px;
}
@media all and (min-width: 751px) {
  body:not(#pageHome) #shops #shoplist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  body:not(#pageHome) #shops #shoplist li {
    margin-bottom: 0;
    width: 32%;
  }
}
body:not(#pageHome) #shops #shoplist .image {
  overflow: hidden;
  position: relative;
  padding-top: 100%;
}
body:not(#pageHome) #shops #shoplist .image img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
body:not(#pageHome) #shops #shoplist .image::before {
  content: "";
  width: 8px;
  height: 100%;
  display: block;
  background: #1168cd;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
}
body:not(#pageHome) #shops #shoplist .shop_tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body:not(#pageHome) #shops #shoplist .shop_tel img {
  width: 14.34px;
  height: 14.34px;
  margin-right: 10px;
}
body:not(#pageHome) #shops #shoplist .shop_fax {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body:not(#pageHome) #shops #shoplist .shop_fax img {
  width: 15px;
  height: 15px;
  margin-right: 10px;
}
@media all and (max-width: 750px) {
  body:not(#pageHome) #shops #shoplist .texts {
    margin-top: 20px;
  }
}
body:not(#pageHome) #shops #shoplist .texts .link {
  color: #8d8d8d;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
body:not(#pageHome) #shops #shoplist .texts .link.mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body:not(#pageHome) #shops #shoplist .texts .link img {
  max-width: 15px;
  max-height: 15px;
  margin-right: 10px;
}
@media all and (min-width: 981px) {
  body:not(#pageHome) #shops #shoplist .texts .link {
    font-size: 15px;
  }
}
@media all and (min-width: 981px) {
  body:not(#pageHome) #shops #shoplist .texts a.link {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  body:not(#pageHome) #shops #shoplist .texts a.link:hover {
    color: #1168cd;
    text-decoration: underline;
  }
}

/*=================
  サイドメニュー
=================*/
#aside .a_title {
  background: #1168cd;
  padding: 10px 20px;
  color: #fff;
  letter-spacing: 0.2em;
  text-align: center;
  font-size: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 40px;
}
#aside ul.shopInsta li {
  margin-top: 20px;
  width: 100%;
}
#aside ul.banColumns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#aside ul.banColumns li {
  width: 100%;
  margin-top: 35px;
}
@media all and (min-width: 751px) {
  #aside ul.banColumns {
    -ms-flex-wrap: noWrap;
        flex-wrap: noWrap;
  }
  #aside ul.banColumns li {
    width: 31%;
  }
}
@media all and (min-width: 981px) {
  #aside ul.banColumns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #aside ul.banColumns li {
    width: 100%;
  }
}

/*=================
  高齢者・介護施設の担当者様へ
=================*/
#pageNf .border_box {
  padding: 20px 0;
}
#pageNf .border_box .big {
  font-size: 23px;
  line-height: 1.5;
}
@media all and (min-width: 751px) {
  #pageNf .border_box .big {
    font-size: 35px;
  }
}
@media all and (min-width: 981px) {
  #pageNf .border_box {
    margin-top: 0;
  }
}
#pageNf .stack .texts {
  position: relative;
  top: -30px;
  margin: 0 20px -30px;
  background: #fff;
  border-top: 5px solid #8ce8c5;
  padding: 20px;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.16);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.12em;
}
#pageNf .stack .texts span {
  display: block;
}
#pageNf .stack .texts .min {
  font-size: 15px;
}
#pageNf .stack .texts .bold {
  font-size: 18px;
  font-weight: bold;
}
@media all and (min-width: 751px) {
  #pageNf .listCheckWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #pageNf .listCheckWrap .listCheck {
    width: 48%;
  }
}
#pageNf .listCheck li {
  position: relative;
  border-bottom: 1px solid #e8e8e8;
  padding-left: 30px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#pageNf .listCheck li::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/nursingfacility/icon_check.png) no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  left: 0;
  top: 0;
  z-index: 1;
}
#pageNf #fullsupport .list_fs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#pageNf #fullsupport .list_fs li {
  width: 47%;
  margin-bottom: 20px;
}
#pageNf #fullsupport .list_fs li .image {
  max-width: 150px;
  margin-left: auto;
  margin-right: auto;
}
#pageNf #fullsupport .list_fs li .title {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  margin-top: 1em;
}
@media all and (min-width: 751px) {
  #pageNf #fullsupport .list_fs li {
    width: 23%;
    margin-bottom: 30px;
  }
}
#pageNf #fullsupport .blueRound {
  display: inline-block;
  background: #1168cd;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  border-radius: 80px;
  padding: 10px 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media all and (min-width: 751px) {
  #pageNf #fullsupport .blueRound {
    font-size: 20px;
    padding: 20px 40px;
  }
}
#pageNf .voiceList li + li {
  margin-top: 40px;
}
@media all and (min-width: 751px) {
  #pageNf .voiceList li:nth-child(even) .voiceItem {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
#pageNf .voiceItem {
  border: 3px solid #1168cd;
  background: #fff;
  padding: 40px 20px;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.16);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#pageNf .voiceItem .personal .image {
  width: 100px;
}
#pageNf .voiceItem .personal .name {
  font-weight: bold;
  font-size: 14px;
}
#pageNf .voiceItem .msg .title {
  color: #1168cd;
  font-weight: bold;
  line-height: 1.5;
  font-size: 16px;
}
@media all and (max-width: 750px) {
  #pageNf .voiceItem .personal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #pageNf .voiceItem .personal .name {
    width: calc(100% - 120px);
  }
  #pageNf .voiceItem .msg {
    margin-top: 20px;
  }
  #pageNf .voiceItem .msg .title {
    border-bottom: 1px solid #1168cd;
    padding-bottom: 5px;
  }
}
@media all and (min-width: 751px) {
  #pageNf .voiceItem {
    padding: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #pageNf .voiceItem .personal {
    width: 100px;
  }
  #pageNf .voiceItem .name {
    margin-top: 20px;
    text-align: center;
  }
  #pageNf .voiceItem .msg {
    width: calc(100% - 130px);
  }
  #pageNf .voiceItem .msg .title .uber {
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 1px solid #1168cd;
  }
}
@media all and (min-width: 751px) {
  #pageNf #entry .input_area .input.bg_white .wpcf7-list-item {
    width: 47%;
  }
  #pageNf #entry .input_area .input.bg_white .wpcf7-list-item + .wpcf7-list-item {
    padding-top: 0;
  }
  #pageNf #entry .input_area .input.bg_white .wpcf7-list-item:nth-child(n+3) {
    padding-top: 10px;
  }
  #pageNf #entry .wpcf7-radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #pageNf #entry .wpcf7-radio .wpcf7-list-item-label {
    height: auto;
  }
}

/*============================
  採用情報と高齢者・介護施設　共通
============================*/
.bg_box {
  background: #f1f3f8;
  margin-left: -20px;
  margin-right: -20px;
  padding: 1px 20px 40px;
}
.bg_box.blue {
  background: #1168cd;
  color: #fff;
}
.bg_box.blue.arrow {
  position: relative;
}
.bg_box.blue.arrow::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22px 22px 0 22px;
  border-color: #f1f3f8 transparent transparent transparent;
  top: 0;
  left: calc(50% - 22px);
}

@media all and (min-width: 751px) {
  .bg_box {
    margin-left: -30px;
    margin-right: -30px;
    padding: 1px 30px 60px;
  }
}
@media all and (min-width: 981px) {
  .bg_box {
    margin-left: 0px;
    margin-right: 0px;
    padding: 60px 40px;
  }
  .bg_box.bdr_pc_only {
    border: 3px solid #1168cd;
  }
  .bg_box.blue.arrow {
    position: relative;
  }
  .bg_box.blue.arrow::before {
    top: -3px;
  }
}
.round_border_box {
  margin-top: 40px;
  border: 3px solid #1168cd;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
  background: #fff;
  line-height: 1.5;
}
@media all and (min-width: 751px) {
  .round_border_box {
    position: relative;
    margin-top: 20px;
    padding: 40px 30px;
  }
}
.round_border_box.white {
  border-color: #fff;
}
@media all and (min-width: 751px) {
  .round_border_box.white {
    margin-top: 60px;
  }
}
@media all and (min-width: 981px) {
  .round_border_box.white {
    margin-top: 0px;
  }
}

.font20 {
  font-size: 14px;
  font-weight: bold;
  margin-top: 20px;
}
.font20 a {
  display: inline-block;
  border-bottom: 1px solid #1168cd;
  color: #1168cd;
}
@media all and (min-width: 751px) {
  .font20 {
    font-size: 20px;
    margin-top: 40px;
  }
}

.diago_title {
  margin-top: 30px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.2em;
}
.diago_title::before, .diago_title::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 25px;
  background: #fff;
}
.diago_title::before {
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
.diago_title::after {
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
.diago_title span {
  display: inline-block;
  font-size: 25px;
}
@media all and (min-width: 751px) {
  .diago_title span {
    font-size: 35px;
  }
  .diago_title::before, .diago_title::after {
    height: 35px;
  }
}
@media all and (min-width: 981px) {
  .diago_title {
    margin-top: 0;
  }
}

.listRound {
  margin-top: 30px;
}
.listRound li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  color: #1168cd;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border-radius: 35px;
}
.listRound li + li {
  margin-top: 20px;
}
@media all and (min-width: 751px) {
  .listRound {
    margin-top: 40px;
  }
  .listRound li {
    padding: 10px;
    font-size: 20px;
  }
}

.r_columns > li {
  margin-bottom: 40px;
  background: #fff;
}
@media all and (min-width: 751px) {
  .r_columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .r_columns.pc_col2 > li, .r_columns.pc_col3 > li {
    width: 47%;
  }
}
@media all and (min-width: 981px) {
  .r_columns.pc_col3::after {
    content: "";
    display: inline-block;
    width: 31%;
  }
  .r_columns.pc_col3 > li {
    width: 31%;
  }
}

.listBoldText {
  font-size: 14px;
  font-weight: bold;
}
@media all and (max-width: 750px) {
  .listBoldText li + li {
    margin-top: 1em;
  }
}
@media all and (min-width: 751px) {
  .listBoldText {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 16px;
  }
  .listBoldText li {
    width: 49%;
  }
  .listBoldText li:nth-child(n+3) {
    margin-top: 1em;
  }
}

#pageRecruit #entry .ent_title,
#pageNf #entry .ent_title {
  font-size: 16px;
  text-align: center;
  font-weight: bold;
}
#pageRecruit #entry dl,
#pageNf #entry dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-top: 20px;
}
#pageRecruit #entry dl dt,
#pageNf #entry dl dt {
  width: 100%;
  font-size: 14px;
}
#pageRecruit #entry dl dd,
#pageNf #entry dl dd {
  width: 50%;
  line-height: 15px;
}
#pageRecruit #entry dl .icon,
#pageNf #entry dl .icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 10px;
}
@media all and (max-width: 750px) {
  #pageRecruit #entry dl dt,
  #pageNf #entry dl dt {
    margin-bottom: 10px;
  }
}
@media all and (min-width: 751px) {
  #pageRecruit #entry dl,
  #pageNf #entry dl {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #pageRecruit #entry dl dt,
  #pageRecruit #entry dl dd,
  #pageNf #entry dl dt,
  #pageNf #entry dl dd {
    width: 170px;
  }
}

/*=================
  採用情報
=================*/
#pageRecruit .recruitData {
  margin-top: 40px;
}
#pageRecruit .recruitData.noMgnT {
  margin-top: 0;
}
#pageRecruit .recruitData li {
  border-bottom: 1px solid #e0e0e0;
}
#pageRecruit .recruitData li:first-child {
  border-top: 1px solid #e0e0e0;
}
#pageRecruit .recruitData .label,
#pageRecruit .recruitData dt {
  font-weight: bold;
  font-size: 14px;
}
#pageRecruit .recruitData .label {
  color: #1168cd;
}
@media all and (max-width: 750px) {
  #pageRecruit .recruitData li {
    padding: 20px 0;
  }
  #pageRecruit .recruitData .label {
    font-size: 13px;
    margin-bottom: 5px;
  }
  #pageRecruit .recruitData dt {
    font-size: 12px;
  }
  #pageRecruit .recruitData .data {
    font-size: 12px;
  }
}
@media all and (min-width: 751px) {
  #pageRecruit .recruitData {
    font-size: 14px;
  }
  #pageRecruit .recruitData li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 30px 0;
  }
  #pageRecruit .recruitData .label {
    max-width: 200px;
    width: 25%;
  }
  #pageRecruit .recruitData .data {
    min-width: calc(100% - 220px);
    width: 72%;
  }
  #pageRecruit .recruitData dt,
  #pageRecruit .recruitData dd {
    display: inline-block;
  }
  #pageRecruit .recruitData dt {
    width: 105px;
    vertical-align: top;
  }
  #pageRecruit .recruitData dd {
    margin-left: 15px;
    width: calc(100% - 140px);
  }
}
@media all and (min-width: 981px) {
  #pageRecruit .recruitData li {
    padding: 35px 0;
  }
}
#pageRecruit .rTitle {
  font-size: 16px;
  font-weight: bold;
}
#pageRecruit .rTitle .city {
  letter-spacing: 0.1em;
  font-size: 18px;
}
@media all and (min-width: 751px) {
  #pageRecruit .rTitle {
    font-size: 20px;
  }
  #pageRecruit .rTitle .city {
    font-size: 25px;
  }
}
@media all and (min-width: 981px) {
  #pageRecruit #recTop .text {
    margin-top: 40px;
  }
}
#pageRecruit #about .btnArrowWrap {
  position: relative;
}
#pageRecruit #about .btnArrowWrap a::after {
  left: calc(50% + 80px);
}
@media all and (max-width: 750px) {
  #pageRecruit #about .btnArrowWrap {
    margin-top: 40px;
  }
}
@media all and (min-width: 751px) {
  #pageRecruit #about .btnArrowWrap {
    top: calc(50% - 30px);
  }
}
@media all and (min-width: 981px) {
  #pageRecruit #about .btnArrowWrap a:hover::after {
    left: calc(50% + 90px);
  }
}
#pageRecruit #message .decoTitle.blue_green,
#pageRecruit #requirements .decoTitle.blue_green {
  padding-top: 0;
}
#pageRecruit #message .tabBtnSet,
#pageRecruit #requirements .tabBtnSet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#pageRecruit #message .tabBtnSet .tabBtn,
#pageRecruit #requirements .tabBtnSet .tabBtn {
  width: 33.33333%;
}
#pageRecruit #message .tabBtnSet .tabBtn:last-child,
#pageRecruit #requirements .tabBtnSet .tabBtn:last-child {
  width: 33.33334%;
}
#pageRecruit #message .tabBtnSet .tabBtn a,
#pageRecruit #requirements .tabBtnSet .tabBtn a {
  display: block;
  width: 100%;
  height: 100%;
  background: #e0e0e0;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #141414;
  font-weight: bold;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#pageRecruit #message .tabBtnSet .tabBtn .image,
#pageRecruit #requirements .tabBtnSet .tabBtn .image {
  display: inline-block;
  width: 50px;
  height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#pageRecruit #message .tabBtnSet .tabBtn:nth-child(1) .image,
#pageRecruit #requirements .tabBtnSet .tabBtn:nth-child(1) .image {
  background: url(../images/recruit/msg_icon1_off.png) no-repeat;
  background-size: contain;
}
#pageRecruit #message .tabBtnSet .tabBtn:nth-child(2) .image,
#pageRecruit #requirements .tabBtnSet .tabBtn:nth-child(2) .image {
  background: url(../images/recruit/msg_icon2_off.png) no-repeat;
  background-size: contain;
}
#pageRecruit #message .tabBtnSet .tabBtn:nth-child(3) .image,
#pageRecruit #requirements .tabBtnSet .tabBtn:nth-child(3) .image {
  background: url(../images/recruit/msg_icon3_off.png) no-repeat;
  background-size: contain;
}
#pageRecruit #message .tabBtnSet .tabBtn.active a,
#pageRecruit #requirements .tabBtnSet .tabBtn.active a {
  background: #1168cd;
  color: #fff;
}
#pageRecruit #message .tabBtnSet .tabBtn.active:nth-child(1) .image,
#pageRecruit #requirements .tabBtnSet .tabBtn.active:nth-child(1) .image {
  background: url(../images/recruit/msg_icon1_on.png) no-repeat;
  background-size: contain;
}
#pageRecruit #message .tabBtnSet .tabBtn.active:nth-child(2) .image,
#pageRecruit #requirements .tabBtnSet .tabBtn.active:nth-child(2) .image {
  background: url(../images/recruit/msg_icon2_on.png) no-repeat;
  background-size: contain;
}
#pageRecruit #message .tabBtnSet .tabBtn.active:nth-child(3) .image,
#pageRecruit #requirements .tabBtnSet .tabBtn.active:nth-child(3) .image {
  background: url(../images/recruit/msg_icon3_on.png) no-repeat;
  background-size: contain;
}
@media all and (max-width: 750px) {
  #pageRecruit #message .tabBtnSet .tabBtn a .name,
  #pageRecruit #requirements .tabBtnSet .tabBtn a .name {
    display: block;
    text-align: center;
    margin-top: 15px;
  }
}
@media all and (min-width: 751px) {
  #pageRecruit #message .tabBtnSet .tabBtn a,
  #pageRecruit #requirements .tabBtnSet .tabBtn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#pageRecruit #message .tabBodySet,
#pageRecruit #requirements .tabBodySet {
  border: 3px solid #1168cd;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.16);
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#pageRecruit #message .tabBodySet .tabBody,
#pageRecruit #requirements .tabBodySet .tabBody {
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: none;
}
#pageRecruit #message .tabBodySet .tabBody.active,
#pageRecruit #requirements .tabBodySet .tabBody.active {
  display: block;
}
@media all and (min-width: 751px) {
  #pageRecruit #message .tabBodySet .tabBody,
  #pageRecruit #requirements .tabBodySet .tabBody {
    padding: 30px;
  }
}
@media all and (min-width: 981px) {
  #pageRecruit #message .tabBodySet .tabBody,
  #pageRecruit #requirements .tabBodySet .tabBody {
    padding: 40px;
  }
}
@media all and (min-width: 751px) {
  #pageRecruit #message .tabInner,
  #pageRecruit #requirements .tabInner {
    padding: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #pageRecruit #message .tabInner .personal,
  #pageRecruit #requirements .tabInner .personal {
    max-width: 160px;
    width: 28%;
  }
  #pageRecruit #message .tabInner .msg,
  #pageRecruit #requirements .tabInner .msg {
    min-width: calc(100% - 200px);
    width: 67%;
  }
}
#pageRecruit #message .personal .college,
#pageRecruit #requirements .personal .college {
  font-size: 12px;
  font-weight: bold;
}
#pageRecruit #message .personal .name,
#pageRecruit #requirements .personal .name {
  font-size: 20px;
  font-weight: bold;
}
@media all and (max-width: 750px) {
  #pageRecruit #message .personal,
  #pageRecruit #requirements .personal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #pageRecruit #message .personal .image,
  #pageRecruit #requirements .personal .image {
    width: 160px;
  }
  #pageRecruit #message .personal .texts,
  #pageRecruit #requirements .personal .texts {
    width: calc(100% - 180px);
  }
}
@media all and (min-width: 751px) {
  #pageRecruit #message .personal .college,
  #pageRecruit #requirements .personal .college {
    margin-top: 30px;
  }
}
#pageRecruit #message .msg .title,
#pageRecruit #requirements .msg .title {
  color: #1168cd;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}
@media all and (max-width: 750px) {
  #pageRecruit #message .msg,
  #pageRecruit #requirements .msg {
    margin-top: 20px;
  }
  #pageRecruit #message .msg .title,
  #pageRecruit #requirements .msg .title {
    padding-bottom: 10px;
    border-bottom: 1px solid #1168cd;
  }
}
@media all and (min-width: 751px) {
  #pageRecruit #message .msg .title span,
  #pageRecruit #requirements .msg .title span {
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 1px solid #1168cd;
  }
}
@media all and (min-width: 751px) {
  #pageRecruit #message .btnArrowWrap,
  #pageRecruit #requirements .btnArrowWrap {
    text-align: left;
  }
}
#pageRecruit #requirements {
  margin-top: 40px;
}
#pageRecruit #requirements .tabBtnSet .tabBtn a {
  padding: 15px 10px;
}
#pageRecruit #requirements .tabBtnSet .tabBtn a .occupation {
  font-size: 14px;
}
#pageRecruit #requirements .tabBtnSet .tabBtn a .occupation + .min {
  font-size: 9px;
}
@media all and (max-width: 750px) {
  #pageRecruit #requirements .tabBtnSet {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #pageRecruit #requirements .tabBtnSet .tabBtn {
    width: 50%;
  }
  #pageRecruit #requirements .tabBtnSet .tabBtn:last-child {
    width: 50%;
  }
}
@media all and (min-width: 751px) {
  #pageRecruit #requirements .tabBtnSet .tabBtn {
    width: 25%;
  }
  #pageRecruit #requirements .tabBtnSet .tabBtn a {
    display: block;
    text-align: center;
  }
  #pageRecruit #requirements .tabBtnSet .tabBtn:last-child {
    width: 25%;
  }
}
#pageRecruit #education .recruitData {
  margin-top: 40px;
}
@media all and (min-width: 751px) {
  #pageRecruit #education .recruitData {
    margin-top: 60px;
  }
}
@media all and (min-width: 981px) {
  #pageRecruit #education .recruitData {
    margin-top: 80px;
  }
}
#pageRecruit #benefit .std_box .image {
  width: 100px;
  margin: 0 auto;
}
#pageRecruit #benefit .std_box .title {
  margin-top: 20px;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}
#pageRecruit .sex,
#pageRecruit .g_title,
#pageRecruit .tani,
#pageRecruit .ageText {
  font-weight: bold;
  color: #5c5c5c;
}

.box_shadow {
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.std_box {
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.addTriangle {
  position: relative;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.addTriangle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 35px 0 0;
  border-color: #1168cd transparent transparent transparent;
}

.titleBlue,
.titleMix {
  font-size: 15px;
  font-weight: bold;
}
.titleBlue .dashed,
.titleMix .dashed {
  color: #1168cd;
  display: inline-block;
  border-bottom: 1px dashed #1168cd;
  padding-bottom: 5px;
  line-height: 1.5;
}
.titleBlue .min,
.titleMix .min {
  font-size: 0.8em;
}

.titleBlue {
  color: #1168cd;
}

.titleMix {
  margin-top: 60px;
  color: #141414;
  font-size: 20px;
  letter-spacing: 0.2em;
}
.titleMix .dashed {
  font-size: 25px;
}
.titleMix em {
  display: inline-block;
  position: relative;
}
.titleMix em::before {
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  left: calc(50% - 3px);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9abee8;
}
@media all and (min-width: 981px) {
  .titleMix {
    margin-top: 0;
  }
}

.flowlist {
  font-weight: bold;
}
.flowlist li {
  position: relative;
}
.flowlist li + li {
  padding-top: 60px;
}
.flowlist li + li::before, .flowlist li + li::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 27px;
  height: 3px;
  background: #b5b5b5;
  top: 40px;
}
.flowlist li + li::before {
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  right: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.flowlist li + li::after {
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  left: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.flowlist .noWrap {
  position: relative;
  background: #99a7b7;
  padding: 10px 20px;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.flowlist .noWrap.blue {
  background: #1168cd;
}
.flowlist .noWrap .title {
  font-size: 14px;
  display: inline-block;
  letter-spacing: 0.2em;
  line-height: 1.2;
}
.flowlist .noWrap .no {
  font-size: 20px;
  display: inline-block;
}
.flowlist .texts {
  padding: 15px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 12px;
  border: 1px solid #f5f5f5;
  background: #fdfdfd;
  letter-spacing: 0.2em;
}
@media all and (max-width: 750px) {
  .flowlist .noWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .flowlist .noWrap .no {
    margin-right: 15px;
  }
  .flowlist .noWrap::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 18px 12px 0 12px;
    border-color: #1168cd transparent transparent transparent;
    top: 100%;
    left: calc(50% - 12px);
  }
}
@media all and (min-width: 751px) {
  .flowlist .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .flowlist .item .noWrap {
    width: 140px;
    padding: 20px;
    text-align: center;
  }
  .flowlist .item .noWrap .no {
    font-size: 30px;
    width: 100%;
  }
  .flowlist .item .noWrap .title {
    font-size: 14px;
    letter-spacing: 0.1em;
    width: 100%;
  }
  .flowlist .item .noWrap::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 18px;
    border-color: transparent transparent transparent #1168cd;
    top: calc(50% - 12px);
    left: 140px;
  }
  .flowlist .item .texts {
    width: calc(100% - 140px);
    padding: 10px 25px;
    font-size: 14px;
    position: relative;
  }
  .flowlist .item .texts .text {
    margin-top: 0;
    position: absolute;
    width: calc(100% - 50px);
    left: 40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media all and (min-width: 981px) {
  .flowlist .item .noWrap {
    padding: 15px;
    width: 160px;
  }
  .flowlist .item .noWrap::after {
    left: 160px;
  }
  .flowlist .item .noWrap .no {
    font-size: 35px;
    line-height: 1.4;
  }
  .flowlist .item .noWrap .title {
    font-size: 16px;
  }
  .flowlist .item .texts {
    width: calc(100% - 160px);
  }
}

#graph_gender .text {
  text-align: center;
}
#graph_gender .text span {
  display: inline-block;
}
#graph_gender .text .numMale {
  font-size: 68px;
  font-weight: bold;
  padding: 0 20px;
  color: #1168cd;
  line-height: 1.2;
}
#graph_gender .text .colon {
  color: #5c5c5c;
  font-weight: bold;
  font-size: 30px;
}
#graph_gender .image {
  text-align: center;
}
#graph_gender .image img {
  max-width: 125px;
}

#graph_age .graph {
  text-align: center;
}
#graph_age .age_hanrei {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#graph_age .age_hanrei > li {
  width: 49%;
}
#graph_age .age_hanrei span {
  display: inline-block;
}
#graph_age .age_hanrei .colorBlock {
  width: 12px;
  height: 12px;
  margin-right: 10px;
}
#graph_age .age_hanrei .perNum {
  color: #1168cd;
  font-size: 25px;
  margin-left: 10px;
  line-height: 1;
  font-weight: bold;
}
#graph_age .age_hanrei .graph {
  margin: 20px auto;
}
#graph_age .age_hanrei .per {
  color: #1168cd;
}
@media all and (min-width: 981px) {
  #graph_age .age_hanrei > li {
    width: 100%;
  }
}
@media all and (min-width: 1201px) {
  #graph_age .age_hanrei > li {
    width: 49%;
  }
}

#graph_overtime .text {
  text-align: center;
}
#graph_overtime .text span {
  display: inline-block;
}
#graph_overtime .overTime {
  font-weight: bold;
  color: #1168cd;
  font-size: 55px;
  line-height: 1.2;
}
#graph_overtime .image {
  text-align: center;
  margin-top: 1em;
}
#graph_overtime .image img {
  max-width: 195px;
}

#graph_retention,
.reduce {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#graph_retention .chartWrap,
.reduce .chartWrap {
  width: 48%;
  position: relative;
  text-align: center;
  margin-top: 20px;
}
#graph_retention .chartWrap .g_title,
.reduce .chartWrap .g_title {
  font-weight: bold;
}
#graph_retention .chartWrap.nk,
.reduce .chartWrap.nk {
  margin-left: 30px;
  color: #1168cd;
}
#graph_retention .chartWrap.nk .per,
#graph_retention .chartWrap.nk .perNum,
#graph_retention .chartWrap.nk .g_title,
.reduce .chartWrap.nk .per,
.reduce .chartWrap.nk .perNum,
.reduce .chartWrap.nk .g_title {
  color: #1168cd;
}
#graph_retention .chartWrap .box_per,
.reduce .chartWrap .box_per {
  position: absolute;
  left: 50%;
  top: 35px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #5c5c5c;
}
#graph_retention .chartWrap .box_per .perNum,
.reduce .chartWrap .box_per .perNum {
  font-size: 28px;
  font-weight: bold;
}
#graph_retention .chartWrap .box_per .per,
.reduce .chartWrap .box_per .per {
  font-size: 18px;
  font-weight: bold;
}

#graph_holiday {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#graph_holiday .hol:nth-child(2) {
  margin-left: 30px;
}
#graph_holiday .holNum {
  font-size: 45px;
  color: #1168cd;
  font-weight: bold;
  line-height: 1.2;
}
#graph_holiday .per {
  font-size: 26px;
  color: #1168cd;
  font-weight: bold;
  line-height: 1.2;
}
#graph_holiday .h_title {
  color: #5c5c5c;
  display: inline-block;
  font-weight: bold;
  max-width: 3em;
  margin-right: 10px;
  line-height: 1.1;
}
@media all and (min-width: 981px) {
  #graph_holiday .h_title {
    max-width: 100%;
  }
}
@media all and (min-width: 1201px) {
  #graph_holiday .h_title {
    max-width: 3em;
  }
}

/*=================
  よくある質問
=================*/
#pageFaq ul.faqlist li,
#pageRecruit ul.faqlist li {
  margin-bottom: 20px;
}
#pageFaq .ques,
#pageFaq .ans,
#pageFaq .point,
#pageRecruit .ques,
#pageRecruit .ans,
#pageRecruit .point {
  padding: 10px 10px 10px 40px;
  position: relative;
  margin-top: 10px;
  color: #141414;
}
#pageFaq .ques::before,
#pageFaq .ans::before,
#pageFaq .point::before,
#pageRecruit .ques::before,
#pageRecruit .ans::before,
#pageRecruit .point::before {
  position: absolute;
  width: 20px;
  height: 20px;
  left: 10px;
  top: 12px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 20px;
  text-align: center;
  font-weight: bold;
  background: #fff;
}
#pageFaq .ques,
#pageRecruit .ques {
  margin-top: 0;
  /* font-weight: bold; */
  background: #7daade;
  color: #fff;
}
#pageFaq .ques::before,
#pageRecruit .ques::before {
  content: "Q";
  color: #1168cd;
  text-decoration: none;
}
#pageFaq .ans,
#pageRecruit .ans {
  background: #d9ebff;
}
#pageFaq .ans::before,
#pageRecruit .ans::before {
  content: "A";
  color: #89b5e6;
}
#pageFaq .point,
#pageRecruit .point {
  background: #fafafa;
}
#pageFaq .point::before,
#pageRecruit .point::before {
  content: "!";
  color: #141414;
}
#pageFaq h3,
#pageRecruit h3 {
  font-weight: normal;
}
@media all and (min-width: 751px) {
  #pageFaq ul.faqlist li,
  #pageRecruit ul.faqlist li {
    margin-bottom: 20px;
  }
  #pageFaq .ques,
  #pageFaq .ans,
  #pageFaq .point,
  #pageRecruit .ques,
  #pageRecruit .ans,
  #pageRecruit .point {
    padding: 10px 15px 10px 68px;
    margin-top: 20px;
  }
  #pageFaq .ques::before,
  #pageFaq .ans::before,
  #pageFaq .point::before,
  #pageRecruit .ques::before,
  #pageRecruit .ans::before,
  #pageRecruit .point::before {
    width: 28px;
    height: 28px;
    left: 20px;
    top: 10px;
    font-size: 16px;
    line-height: 28px;
  }
  #pageFaq .ques,
  #pageRecruit .ques {
    margin-top: 0;
  }
}

/*=================
  処方箋受付
=================*/
#pageAccept #secMail .link {
  display: block;
  margin-top: 40px;
}
#pageAccept #secFax .shoplistFax {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media all and (max-width: 750px) {
  #pageAccept #secFax .shoplistFax li {
    padding: 20px 0;
  }
}
@media all and (min-width: 751px) {
  #pageAccept #secFax .shoplistFax {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #pageAccept #secFax .shoplistFax li {
    width: 32%;
  }
  #pageAccept #secFax .shoplistFax li + li {
    border-left: 1px solid #e0e0e0;
    padding-left: 1%;
  }
}
#pageAccept #secFax .shoplistFax .image {
  width: 60px;
  height: 60px;
  margin: 0 auto;
}
#pageAccept #secFax .shoplistFax .fax_no {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
}

/*=================
  会社概要
=================*/
#pageCompany #secGreeting .image {
  position: absolute;
  width: 45%;
  max-width: 160px;
  bottom: 0;
  left: 0;
}
@media all and (min-width: 751px) {
  #pageCompany #secGreeting .image {
    width: 180px;
    max-width: initial;
  }
}
@media screen and (min-width: 1200px) {
  #pageCompany #secGreeting .image {
    width: 242px;
  }
}
@media all and (min-width: 751px) {
  #pageCompany .lists .label {
    width: 130px;
  }
  #pageCompany .lists .data {
    width: calc(100% - 140px);
  }
}
#pageCompany .bg_lightblueWrap {
  background: #f4fbff;
  padding: 20px;
  position: relative;
}
#pageCompany .bg_whiteWrap {
  background: #fff;
  padding: 20px;
  padding-bottom: 40px;
}
#pageCompany .bg_grayWrap {
  padding: 20px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  background: #fafafa;
}
#pageCompany .bg_grayWrap em {
  font-size: 1.38em;
  color: #1168cd;
}
@media all and (min-width: 751px) {
  #pageCompany .bg_lightblueWrap {
    padding: 40px 20px;
  }
  #pageCompany .bg_whiteWrap {
    padding: 40px;
  }
  #pageCompany .bg_grayWrap {
    padding: 40px;
    font-size: 18px;
  }
  #pageCompany .bg_grayWrap em {
    font-size: 25px;
  }
}
@media screen and (min-width: 1200px) {
  #pageCompany .text.narrow {
    width: 70%;
    margin-left: auto;
  }
}
@media screen and (min-width: 1367px) {
  #pageCompany .text.narrow {
    width: 77%;
  }
}
#pageCompany .greeting_footer {
  width: 50%;
  margin-top: 40px;
  margin-left: auto;
}
#pageCompany .greeting_footer .corp {
  font-size: 10px;
  display: block;
}
#pageCompany .greeting_footer .name em {
  font-size: 16px;
}
#pageCompany .greeting_footer .ceoInfo {
  margin-top: 1em;
}
#pageCompany .greeting_footer .ceoInfo span {
  display: block;
}
@media all and (max-width: 750px) {
  #pageCompany .greeting_footer .name em {
    display: block;
  }
}
@media all and (min-width: 751px) {
  #pageCompany .greeting_footer .corp {
    font-size: 12px;
  }
  #pageCompany .greeting_footer .name em {
    font-size: 18px;
    margin-left: 5px;
  }
  #pageCompany .greeting_footer .ceoInfo span {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  #pageCompany .greeting_footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 70.3%;
  }
  #pageCompany .greeting_footer .nameWrap,
  #pageCompany .greeting_footer .ceoInfo {
    width: 48%;
  }
  #pageCompany .greeting_footer .ceoInfo {
    margin-top: 0;
  }
}
#pageCompany .mapWrap {
  width: 100%;
  height: 400px;
}
@media all and (min-width: 751px) {
  #pageCompany .mapWrap {
    height: 450px;
  }
}
#pageCompany #secGyomu .bg_whiteWrap {
  padding: 20px 10px;
}
#pageCompany #secGyomu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#pageCompany #secGyomu ul li {
  width: 32%;
}
#pageCompany #secGyomu ul li:last-child {
  width: 34%;
}
#pageCompany #secGyomu ul li + li {
  border-left: 1px solid #e0e0e0;
}
#pageCompany #secGyomu .image {
  width: 80%;
  max-width: 60px;
  margin: 0 auto;
}
#pageCompany #secGyomu .text_bold {
  margin: 5px;
  font-size: 13px;
}
@media all and (min-width: 751px) {
  #pageCompany #secGyomu .text_bold {
    font-size: 16px;
  }
}
@media screen and (min-width: 1367px) {
  #pageCompany #secGyomu ul {
    margin: 0 40px;
  }
  #pageCompany #secGyomu ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #pageCompany #secGyomu ul li:nth-child(1), #pageCompany #secGyomu ul li:nth-child(2) {
    padding-right: 25px;
  }
  #pageCompany #secGyomu ul li:nth-child(2), #pageCompany #secGyomu ul li:nth-child(3) {
    padding-left: 25px;
  }
  #pageCompany #secGyomu .image {
    margin: 0;
  }
  #pageCompany #secGyomu .text_bold {
    margin-left: 20px;
  }
}

/*=================
  プライバシーポリシー
=================*/
#pagePrivacy h3 {
  margin-bottom: 16px;
}
#pagePrivacy h4 + p {
  margin-bottom: 16px;
}
#pagePrivacy ol {
  margin: 40px 0;
  padding-left: 1.5em;
  font-size: 13px;
}
#pagePrivacy ol > li {
  list-style-type: decimal;
}
@media all and (min-width: 751px) {
  #pagePrivacy ol {
    font-size: 14px;
  }
}
#pagePrivacy .ubar_title + ol {
  margin-top: 1em;
}
@media all and (min-width: 751px) {
  #pagePrivacy .ubar_title + ol {
    margin-top: 20px;
  }
}
#pagePrivacy ul.dot {
  margin-bottom: 16px;
}
#pagePrivacy ul.dot > li {
  list-style-type: disc;
  margin-left: 18px;
}
#pagePrivacy dl {
  margin-top: 18px;
}
#pagePrivacy dl dt {
  font-weight: bold;
}
@media all and (min-width: 751px) {
  #pagePrivacy dl dt,
  #pagePrivacy dl dd {
    display: inline-block;
  }
  #pagePrivacy dl dt {
    width: 135px;
  }
  #pagePrivacy dl dd {
    width: calc(100% - 140px);
  }
}

/*=================
  ページャー(pager)
=================*/
.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}
.wp-pagenavi .current,
.wp-pagenavi a.page {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 20px;
  padding: 10px;
  margin: 0 5px;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wp-pagenavi .current {
  background-color: rgba(17, 104, 205, 0.25);
}
.wp-pagenavi a.page {
  border: 1px solid transparent;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  display: block;
  width: 40px;
  height: 40px;
  color: #fff;
  position: relative;
}
.wp-pagenavi .previouspostslink::after,
.wp-pagenavi .nextpostslink::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #1168cd;
  position: absolute;
  display: block;
  top: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wp-pagenavi .previouspostslink {
  margin-right: 20px;
}
.wp-pagenavi .previouspostslink::after {
  border-left: 2px solid #1168cd;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
  left: 10px;
}
.wp-pagenavi .nextpostslink {
  margin-left: 20px;
}
.wp-pagenavi .nextpostslink::after {
  border-right: 2px solid #1168cd;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  right: 10px;
}
@media all and (min-width: 981px) {
  .wp-pagenavi {
    margin-bottom: 115px;
  }
  .wp-pagenavi .current {
    margin: 0 10px;
  }
  .wp-pagenavi a.page {
    margin: 0 10px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .wp-pagenavi a.page:hover {
    border-color: #c3d9f3;
  }
  .wp-pagenavi .previouspostslink:hover::after {
    left: 0;
  }
  .wp-pagenavi .nextpostslink:hover::after {
    right: 0;
  }
}

/**シングルページ**/
.single_pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  color: #1168cd;
  margin-top: 40px;
}
.single_pager a {
  position: relative;
  display: block;
  padding: 10px;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #1168cd;
}
.single_pager .prev,
.single_pager .next {
  color: #1168cd;
  width: 33%;
}
.single_pager .prev a,
.single_pager .next a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single_pager .prev a::after,
.single_pager .next a::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #1168cd;
  position: absolute;
  display: block;
  top: calc(50% - 7px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.single_pager .prev a {
  padding-left: 20px;
  text-align: left;
}
.single_pager .prev a::after {
  border-left: 2px solid #1168cd;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  left: 10px;
}
.single_pager .next a {
  padding-right: 20px;
  text-align: right;
}
.single_pager .next a::after {
  border-right: 2px solid #1168cd;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: 10px;
}
.single_pager .goList {
  width: 34%;
}
.single_pager .goList a {
  text-align: center;
}
@media all and (min-width: 981px) {
  .single_pager .prev a {
    padding-left: 40px;
  }
  .single_pager .prev a::after {
    left: 20px;
  }
  .single_pager .next a {
    padding-right: 40px;
  }
  .single_pager .next a::after {
    right: 20px;
  }
  .single_pager .prev a:hover,
  .single_pager .next a:hover,
  .single_pager .goList a:hover {
    background: #1168cd;
    color: #fff;
  }
  .single_pager .prev a:hover::after,
  .single_pager .next a:hover::after,
  .single_pager .goList a:hover::after {
    border-color: #fff;
  }
}

/*=================
  フォーム
=================*/
body.form .bg_gray {
  margin-top: 20px;
  /* background: #FDFDFD; */
  padding: 40px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body.form .input_area li {
  margin-bottom: 20px;
}
body.form .input_area .label {
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}
body.form .input_area .input {
  display: block;
}
body.form .input_area .input + .input {
  margin-top: 20px;
}
body.form .linkPrivacy {
  color: #1168cd;
  text-decoration: underline;
  font-weight: bold;
}

/***フォーム部品 **/
textarea {
  max-height: 240px;
}

.selectWrap {
  position: relative;
  display: block;
}
.selectWrap::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7px 0 7px;
  border-color: #141414 transparent transparent transparent;
  left: 150px;
  top: 20px;
  z-index: 1;
}
@media all and (min-width: 751px) {
  .selectWrap span.wpcf7-not-valid-tip {
    display: inline-block;
    margin-left: 10px;
  }
}

select {
  width: 180px;
  padding: 10px;
  background: #fff;
  border: 1px solid #f5f5f5;
  border-radius: 0;
  font-size: 16px;
}

.privacyWrap {
  margin: 20px 0;
}

input[type=checkbox], input[type=radio] {
  opacity: 0;
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  z-index: 3;
}

.wpcf7-list-item {
  position: relative;
}

.wpcf7-list-item-label {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  padding-left: 20px;
}

.wpcf7-radio .wpcf7-list-item-label {
  padding-left: 30px;
}

input[type=checkbox] + .wpcf7-list-item-label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
}
input[type=checkbox] + .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
  border-right: 3px solid #1168cd;
  border-bottom: 3px solid #1168cd;
  top: 3px;
  left: 7px;
  width: 6px;
  height: 12px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
  z-index: 1;
}

input[type=radio] + .wpcf7-list-item-label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
}
input[type=radio] + .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
  background: #1168cd;
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 0;
  z-index: 1;
}

.privacyWrap .wpcf7-list-item-label {
  color: transparent;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
input[type=radio]:checked + .wpcf7-list-item-label::before {
  border-color: #1168cd;
}

.formBtnWrap {
  text-align: center;
}

.formBtnWrap {
  position: relative;
  margin: 40px auto;
}
.formBtnWrap::after {
  content: "";
  position: absolute;
  top: calc(50% - 18px);
  left: calc(50% + 60px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (min-width: 751px) {
  .formBtnWrap {
    max-width: 300px;
    margin: 60px auto;
  }
}
@media all and (min-width: 981px) {
  .formBtnWrap {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .formBtnWrap:hover input[type=submit] {
    background: #8d8d8d;
  }
  .formBtnWrap:hover::after {
    left: calc(50% + 70px);
  }
}

form input[type=submit] {
  position: relative;
  display: inline-block;
  padding: 20px 15px;
  text-align: center;
  font-weight: bold;
  color: #fff;
  width: 100%;
  max-width: 375px;
  letter-spacing: 0.2em;
  background: #1168cd;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (min-width: 751px) {
  form input[type=submit] {
    max-width: 300px;
  }
}

form input[type=file] {
  padding: 0.6em;
  border: 1px solid #f5f5f5;
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

/*=================
  フォーム(完了画面)
=================*/
#pageComplete .bg_gray,
#pagePrescriptionComplete .bg_gray {
  margin-top: 0;
}
#pageComplete .bg_gray .border_box,
#pagePrescriptionComplete .bg_gray .border_box {
  margin-top: 0;
  border-color: #f5f5f5;
  background: #fff;
  font-weight: bold;
  text-align: center;
  color: #141414;
}
@media all and (min-width: 751px) {
  #pageComplete .bg_gray .border_box,
  #pagePrescriptionComplete .bg_gray .border_box {
    padding: 40px 30px;
  }
}

/*=================
  処方箋メール受付
=================*/
@media all and (max-width: 750px) {
  #pagePrescription .border_box span,
  #pagePrescriptionComplete .border_box span {
    line-height: 1.5;
  }
}
#pagePrescription .flow,
#pagePrescriptionComplete .flow {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#pagePrescription .flow li,
#pagePrescriptionComplete .flow li {
  margin-bottom: 20px;
}
#pagePrescription .flow .image img,
#pagePrescriptionComplete .flow .image img {
  max-height: 120px;
  width: auto;
}
#pagePrescription .flow .text,
#pagePrescriptionComplete .flow .text {
  font-weight: bold;
  font-size: 12px;
}
#pagePrescription .flow .f_detail,
#pagePrescriptionComplete .flow .f_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media all and (max-width: 750px) {
  #pagePrescription .flow .text,
  #pagePrescriptionComplete .flow .text {
    margin-left: 30px;
  }
}
@media all and (min-width: 751px) {
  #pagePrescription .flow,
  #pagePrescriptionComplete .flow {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #pagePrescription .flow li,
  #pagePrescriptionComplete .flow li {
    width: 18%;
  }
  #pagePrescription .flow .f_detail,
  #pagePrescriptionComplete .flow .f_detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #pagePrescription .flow .text,
  #pagePrescriptionComplete .flow .text {
    text-align: center;
  }
}
#pagePrescription .flow_big_text,
#pagePrescriptionComplete .flow_big_text {
  line-height: 2;
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}
#pagePrescription .flow_big_text em,
#pagePrescriptionComplete .flow_big_text em {
  font-size: 2rem;
  border-bottom: 2px solid #1168cd;
  padding-bottom: 3px;
  color: #1168cd;
}
@media all and (min-width: 751px) {
  #pagePrescription .flow_big_text,
  #pagePrescriptionComplete .flow_big_text {
    font-size: 2rem;
  }
  #pagePrescription .flow_big_text em,
  #pagePrescriptionComplete .flow_big_text em {
    font-size: 2.5rem;
  }
}
@media all and (min-width: 981px) {
  #pagePrescription .flow_big_text,
  #pagePrescriptionComplete .flow_big_text {
    font-size: 30px;
  }
  #pagePrescription .flow_big_text em,
  #pagePrescriptionComplete .flow_big_text em {
    font-size: 40px;
  }
}
#pagePrescription ul.dot,
#pagePrescriptionComplete ul.dot {
  margin-left: 1em;
}
#pagePrescription ul.dot > li,
#pagePrescriptionComplete ul.dot > li {
  list-style-type: disc;
}

#pagePrescription #region {
  display: none;
}
#pagePrescription .ac_option .discription {
  display: block;
}
#pagePrescription .ac_option .flex {
  margin-top: 20px;
}
#pagePrescription .ac_option .flex .wpcf7-list-item {
  margin-bottom: 10px;
}
@media all and (min-width: 751px) {
  #pagePrescription .ac_option .subTitle {
    display: inline-block;
    width: 80px;
  }
  #pagePrescription .ac_option .selectWrap {
    display: inline-block;
  }
  #pagePrescription .ac_option .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/*=================
  サイトマップ
=================*/
#sitemaplist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#sitemaplist li {
  margin-bottom: 20px;
}
#sitemaplist a {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #e0e0e0;
  color: #141414;
  font-weight: bold;
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#sitemaplist .sm_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 200px;
  margin: 0 auto;
}
#sitemaplist .text {
  margin-top: 0;
}
#sitemaplist img {
  width: 45px;
  height: 45px;
  margin-right: 20px;
}
@media all and (min-width: 751px) {
  #sitemaplist {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #sitemaplist li {
    width: 47%;
    margin-bottom: 40px;
  }
  #sitemaplist img {
    width: 60px;
    height: 60px;
  }
}
@media all and (min-width: 981px) {
  #sitemaplist a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #sitemaplist a:hover {
    border-color: #1168cd;
    color: #1168cd;
  }
}

/*********************************************************
以下　個別設定されたCSS
*********************************************************/
.bg_gray {
  margin-top: 20px;
  background: #fdfdfd;
  padding: 40px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, rgb(233, 233, 233)), color-stop(50%, transparent)), -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgb(229, 229, 229)), color-stop(50%, transparent));
  background-image: linear-gradient(90deg, rgb(233, 233, 233) 50%, transparent 50%), linear-gradient(rgb(229, 229, 229) 50%, transparent 50%);
  background-size: 3px 3px;
}

.input_area .label {
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.input_area .input {
  display: block;
}

.input_area .input.bg_white {
  background: #fff;
  padding: 10px 0;
}
.input_area .input.bg_white .wpcf7-list-item {
  display: block;
}
.input_area .input.bg_white .wpcf7-list-item + .wpcf7-list-item {
  padding-top: 10px;
}

.input_area li {
  margin-bottom: 20px;
}

input[type=number] {
  width: 50px;
  font-size: 16px;
}


/* ps auto sitemap */
#sitemap_list > li {
  padding: 10px;
  border: 2px solid #91c3fd;
  margin-bottom: 10px;
}

.shop_menu h3,
.shop_menu h4,
.shop_menu p {
  display: inline-block;
}

.shop_menu h3,
.shop_menu h4 {
  font-weight: bold;
  color: #1168cd;
}

.shop_menu h3:after,
.shop_menu h4:after {
  content: "：";
}

.shop_menu p {
  margin-right: 10px;
}

.ptnon {
  margin-top: 0px !important;
}

/* 外部リンク(imgなし) */
.flow_msg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.flow_msg .txtl {
  width: 160px;
  text-align: center;
  background: #c57733;
  padding: 0px 10px;
  border-radius: 10px;
  font-weight: bold;
  margin-right: 10px;
  color: #ffffff;
}

.flow_msg .txtr {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 680px) {
  .flow_msg {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/* ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆
topics
◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */
.topics {
  font-size: 16px;
}

.topics p {
  margin-bottom: 10px;
}

.topics h2 {
  position: relative;
  padding: 5px 0 5px 30px;
  font-weight: bold;
  color: #1168cd;
  border-bottom: 2px solid #1168cd;
  margin: 40px 0 20px;
  font-size: 18px;
  letter-spacing: 0.1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 25px;
}

.topics h2::before {
  content: "";
  background: #1168cd;
  width: 12px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 17px;
  width: 16px;
  height: 16px;
  top: 22px;
}

.topics h2 + img {
  margin-bottom: 20px;
  image-rendering: -webkit-optimize-contrast;
}

.topics h3 {
  font-size: 20px;
  padding-left: 10px;
  margin: 40px 0px 20px 0px;
  border-left: 3px solid #1168cd;
  line-height: 1.4em;
}

.topics h4 {
  display: inline-block;
  font-size: 18px;
  margin: 20px 0px 10px 0px;
  border-bottom: 2px solid #828282;
}

.img-c {
  width: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.topics ol > li,
.seminars ol > li {
  list-style-type: decimal;
  margin: 10px 0px 10px 20px;
}

.topics .box1,
.seminars .box1 {
  padding: 10px;
  margin: 30px 0px;
  line-height: 40px;
}

.topics .list-flex,
.seminars .list-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.topics .list-flexw,
.seminars .list-flexw {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.topics .list-flexw div,
.topics .list-flex div,
.seminars .list-flexw div,
.seminars .list-flex div {
  margin-right: 20px;
  position: relative;
  left: 25px;
}

.topics .list-flexw div:before,
.topics .list-flex div:before,
.seminars .list-flex div:before,
.seminars .list-flex div:before {
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  font-weight: 700;
  color: #979797;
  position: absolute;
  left: 0;
  left: -25px;
}

.topics-list {
  margin-top: -24px;
}

.topics-list > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 40px;
}

.topics-list > ul > li {
  list-style-type: disc;
  list-style-position: inside;
}

/* 文献リスト */
.topics .bunkenlist a {
  display: block;
}

.topics .bunkenlist a:hover {
  text-decoration: underline;
  color: #666666;
}

/* 旧ボックス */
.topics .box1 .ulinline ul,
.seminars .box1 .ulinline ul {
  width: 100%;
}

.topics .box1 .ulinline li,
.seminars .box1 .ulinline li {
  display: inline-block;
  width: 48%;
  vertical-align: top;
  margin-right: 10px;
}

.topics .box1 .ulinline li:before,
.seminars .box1 .ulinline li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  font-weight: 900;
  margin-right: 10px;
  color: #3b6958;
}

@media only screen and (max-width: 1024px) {
  .topics .box1 .ulinline li,
  .seminars .box1 .ulinline li {
    display: block;
    width: 100%;
  }
}
/* TOPICS テキスト& テキスト */
.blog-blocktt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.seminars .blog-blocktt {
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-blocktt .txt {
  width: 47%;
}

.blog-blocktt .txt p {
  padding-left: 0px;
}

@media (max-width: 740px) {
  .blog-blocktt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .blog-blocktt .txt {
    width: 100%;
  }
}
/* TOPICS テキスト&画像 */
.blog-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blog-block .txt {
  -webkit-box-flex: 1.5;
      -ms-flex: 1.5;
          flex: 1.5;
}

.blog-block .img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 20px;
}

.blog-block img {
  border-radius: 10px;
  image-rendering: -webkit-optimize-contrast;
}

@media (max-width: 1200px) {
  .blog-block .txt {
    -webkit-box-flex: 1.5;
        -ms-flex: 1.5;
            flex: 1.5;
    width: 95%;
  }
  .blog-block .img {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media (min-width: 960px) and (max-width: 1020px) {
  .blog-block .txt {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .blog-block .img {
    display: none;
  }
}
@media (max-width: 740px) {
  .blog-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/* ブロブブロック3列 */
.blog-thblock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.blog-thblock div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 760px) {
  .blog-thblock {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/* ブロブshop3列 */
.blog-block-shops {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.blog-block-shops div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 760px) {
  .blog-block-shops {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/* 画像サイズS */
.blog-blockimgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
}

.blog-blockimgs .txt {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

.blog-blockimgs .img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 580px) {
  .blog-blockimgs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/* voice */
.topics .say {
  margin-bottom: 60px;
}

.topics .say {
  display: table;
  overflow: hidden;
  width: 100%;
  margin: 1.5em 0;
}

.topics .faceicon {
  display: table-cell;
  width: 100px;
  padding-right: 20px;
  text-align: center;
  vertical-align: top;
}

.topics .faceicon img {
  width: auto;
  height: auto;
}

/* 吹き出し */
.topics .chatting-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.chattings-img-box {
  width: auto;
}

.chattings-txt-box {
  position: relative;
  background: #fce4cc;
  padding: 16px;
  text-align: left;
  color: #6f6f6f;
  font-size: 0.9em;
  font-weight: bold;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.chattings-txt-box:after {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-color: rgba(0, 153, 255, 0);
  border-top-width: 14px;
  border-bottom-width: 14px;
  border-left-width: 9px;
  border-right-width: 9px;
  margin-top: -14px;
  border-right-color: #fce4cc;
  right: 100%;
  top: 53%;
}

.chattings-txt-box p {
  margin-bottom: 0px;
}

.topics .chatting {
  display: table-cell;
  position: relative;
  width: calc(100% - 100px);
  font-size: 0.95em;
  vertical-align: top;
}

.topics .sc {
  display: inline-block;
  text-align: left;
  padding: 13px;
  border-radius: 25px;
  background: #ffe4cc;
  word-break: break-word;
  margin-top: 40px;
}

.topics .sc:before {
  display: inline-block;
  position: absolute;
  top: 30px;
  left: -23px;
  border: 12px solid transparent;
  border-right: 12px solid #ffe4cc;
  content: "";
}

.topics .sc:after {
  display: inline-block;
  position: absolute;
  top: 30px;
  left: -20px;
  border: 12px solid transparent;
  border-right: 12px solid #ffe4cc;
  content: "";
}

/* 休暇案内 */
.holiday-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
  /* border-bottom: 1px solid #d2d2d2; */
  width: 100%;
  color: #4c4c4c;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.holiday-flex div:first-of-type {
  min-width: 30%;
  border-bottom: 1px solid #e0e0e0;
}

.holiday-flex div span {
  color: #eb4345;
}

@media (max-width: 740px) {
  .holiday-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    border-bottom: 1px solid #e0e0e0;
  }
  .holiday-flex div:first-of-type {
    border-bottom: none;
  }
}
.kintel {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.kintel a {
  color: #eb4345 !important;
  text-decoration: underline;
}

.kintel div:last-of-type {
  letter-spacing: 5px;
  color: #eb4345;
  font-size: 22px;
}

@media screen and (max-width: 400px) {
  .kintel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0px;
  }
}
/* セミナーテーブル */
.topics .bl table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  table-layout: fixed;
  color: #141414;
}

.topics .bl table tr {
  background-color: #fff;
  padding: 0.35em;
  border-bottom: 1px dotted #1168cd;
}

/*
.topics .bl table tr:first-child{
   border-top: 2px solid #18521b;
}
.topics .bl table tr:last-child{
   border-bottom: 2px solid #18521b;
}
*/
.topics .bl table th,
.topics .dl table td {
  padding: 1em 10px 1em 1em;
}

.topics .bl tbody th {
  color: #1168cd;
  width: 30%;
}

@media screen and (max-width: 600px) {
  .topics .bl table {
    border: 0;
    width: 100%;
  }
  .topics .bl table th {
    display: block;
    border-right: none;
    border-bottom: 2px solid #1168cd;
    /* padding-bottom: .6em; */
    margin-bottom: 0.6em;
    width: 100%;
    padding: 0px;
  }
  .topics .bl table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .topics .bl table tr {
    display: block;
    margin-bottom: 2em;
    border-bottom: none;
  }
  .topics .bl table td {
    border-bottom: 1px solid #bbb;
    display: block;
    text-align: right;
    position: relative;
    padding: 0.625em 0.625em 0.625em 4em;
    border-right: none;
  }
  .topics .bl table td::before {
    content: attr(data-label);
    font-weight: bold;
    position: absolute;
    left: 10px;
  }
  .topics .bl table td:last-child {
    border-bottom: 0;
    padding: 0px;
    text-align: left;
  }
}
@media only screen and (min-width: 768px) {
  .topics .sc {
    padding: 20px;
  }
  .topics .sc {
    margin-top: 0px;
  }
}
@media only screen and (max-width: 481px) {
  .topics .faceicon {
    width: 130px;
  }
  .topics .sc:before,
  .topics .sc:after {
    top: 60px;
  }
}
/*  補足 */
.topics .memo, .seminars .memo {
  margin-bottom: 1.5em;
  padding: 1em;
  background: #fff9e5;
  color: #545454;
}

.topics .memo_ttl, .seminars .memo_ttl {
  margin-bottom: 5px;
  color: #ffb36b;
  font-size: 1.2em;
  font-weight: bold;
}

.topics .memo_ttl:before, .seminars .memo_ttl:before {
  font-family: "Font Awesome 5 Free";
  content: "\f249";
  margin-right: 10px;
  font-size: 24px;
}

/* 強調文字 */
.topics .keiko_purple {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(50%, rgba(127, 85, 162, 0.25)));
  background: linear-gradient(transparent 70%, rgba(127, 85, 162, 0.25) 50%);
  font-weight: bold;
}

/* shareボタン */
.share_bt {
  text-align: center;
}

.share_bt_top {
  margin-top: 20px;
  margin-bottom: -20px;
}

/* faq */
.openans {
  display: none;
}

.ques {
  cursor: pointer;
}

.ques:hover {
  text-decoration: underline;
}

.openans a {
  /* color: #408bd1; */
  text-decoration: underline;
}

.openans a {
  color: #408bd1;
  text-decoration: underline;
}

.openans a:visited {
  color: #408bd1;
}

.openans a:hover {
  color: #093f71;
  font-weight: bold;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.textin {
  text-indent: 1em;
}

.fmenu_right {
  margin-bottom: 20px;
}

.fmenu_right a {
  margin-right: 20px;
  color: #1168cd;
  font-size: 13px;
}

/* サイドバー　*/
.sideinfo {
  padding: 10px 0px;
  letter-spacing: 0.2em;
  text-align: left;
  margin-top: 20px;
}

.sideinfob {
  border-bottom: 2px solid #1168cd;
}

.sideinfog {
  border-bottom: 2px solid #8ce8c5;
}

.copylight {
  color: #b8b8b8 !important;
}

@media only screen and (max-width: 481px) {
  .fmenu_right {
    display: none;
  }
  .copylightMenu {
    width: 100%;
  }
  .copylight {
    color: #b8b8b8 !important;
  }
}
.al-c {
  text-align: center;
}

.al-r {
  text-align: right;
}

/* 地域セミナーテーブル */
.regsemi table {
  border-collapse: collapse;
  margin-top: 20px;
  padding: 0;
  width: 100%;
  table-layout: fixed;
  color: #1168cd;
}

.regsemi table tr {
  background-color: #fff;
  padding: 0.35em;
  border-bottom: 1px dotted #1168cd;
}

.regsemi table tr:last-child {
  border-bottom: 1px solid #18521b;
}

.regsemi table th,
.regsemi table td {
  padding: 1em 10px 1em 1em;
}

.regsemi tbody th {
  color: #1168cd;
}

.regsemi tbody td {
  color: #616161;
}

.regsemi tbody td.date {
  width: 20%;
}

.regsemi a {
  color: #1168cd;
}

.regsemi a:hover {
  color: #9abee8;
}

.regsemi p {
  font-size: 16px;
}

.ranking {
  font-size: 20px;
  margin: 10px 0px;
  padding: 5px 3px 5px 10px;
  line-height: 20px;
  color: #585858;
  /* background: #c3ffe8; */
  border-bottom: 2px solid #42c593;
}

.rank1:before {
  content: url(/wp-content/uploads/2020/02/ran1_mini.png);
  vertical-align: -18px;
  margin-right: 10px;
}

.rank2:before {
  content: url(/wp-content/uploads/2020/02/ran2_mini.png);
  vertical-align: -18px;
  margin-right: 10px;
}

.rank3:before {
  content: url(/wp-content/uploads/2020/02/ran3_mini.png);
  vertical-align: -18px;
  margin-right: 10px;
}

/* 漢方ページ */
.kanpo .ranking {
  font-size: 20px;
  margin: 60px 0px 20px 0px;
  padding: 5px 3px 5px 10px;
  line-height: 20px;
  color: #585858;
  /* background: #c3ffe8; */
  border-bottom: 2px solid #42c593;
}

.kanpo .rank1:before {
  content: url(/wp-content/uploads/2020/02/ran1_mini.png);
  vertical-align: -18px;
  margin-right: 10px;
}

.kanpo .rank2:before {
  content: url(/wp-content/uploads/2020/02/ran2_mini.png);
  vertical-align: -18px;
  margin-right: 10px;
}

.kanpo .rank3:before {
  content: url(/wp-content/uploads/2020/02/ran3_mini.png);
  vertical-align: -18px;
  margin-right: 10px;
}

.kanpo h4 {
  background: #ff6d6d;
  padding: 5px 20px;
  color: #ffffff;
  display: inline-block;
  border-radius: 10px;
  margin: 10px 0px;
}

.kanpo p {
  margin-bottom: 10px;
  font-size: 16px;
}

.kanpo li {
  list-style-type: disc;
  margin-left: 15px;
  font-size: 16px;
}

.kanpo a {
  color: #ffffff;
}

.kanpo a:hover {
  background-color: #8d8d8d;
}

.okanpo h3 {
  font-size: 16px;
  border-left: 2px solid #42c593;
  padding-left: 10px;
  margin-top: 40px !important;
}

.okanpo h4 {
  background: #5886bb;
  padding: 0px 20px;
  color: #ffffff;
  display: inline-block;
  border-radius: 10px;
  margin-bottom: 5px;
}

.okanpo p {
  font-size: 16px;
}

.okanpo h3 + p {
  margin-top: -10px;
  border-left: 2px solid #42c593;
  padding-left: 10px;
}

.okanpo .block {
  display: inline-block;
  vertical-align: top;
  margin-top: 10px;
}

.okanpo .blockw_harf {
  width: 48%;
}

.okanpo li {
  list-style-type: disc;
  margin-left: 15px;
  font-size: 14px;
}

/* パンくず */
.breadcrumbs {
  /* margin-bottom: 40px; */
  font-size: 12px;
}

@media (min-width: 751px) {
  .text {
    font-size: 16px;
  }
}
.sidemoreblue a,
.sidemoregreen a {
  color: #b6b6b6;
}

.sidemoreblue,
.sidemoreblue a:hover {
  color: #1168cd;
}

.sidemoregreen,
.sidemoregreen a:hover {
  color: #1cb57c;
}

.sidemoreblue,
.sidemoregreen {
  margin-top: 5px;
  font-size: 14px;
  text-align: right;
}

.sidemoreblue a,
.sidemoregreen a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.sidemoreblue a::after,
.sidemoregreen a::after {
  position: absolute;
  bottom: 2px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sidemoreblue a::after {
  background: #1168cd;
}

.sidemoregreen a::after {
  background: #1cb57c;
}

.sidemoreblue a:hover::after,
.sidemoregreen a:hover::after {
  bottom: -4px;
  opacity: 1;
  visibility: visible;
}

/* 店舗特徴画像 */
.infoWraph:hover img {
  opacity: 0.6;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.b {
  font-weight: bold;
}

/* 引用元 */
blockquote .base {
  text-align: right;
  margin-bottom: 0px;
  font-size: 14px;
}

blockquote h3 {
  border-left: none !important;
  padding-left: 0px !important;
}

/* 監修執筆*/
.supervisionbox {
  margin-top: 40px;
  border: 2px solid #d0d0d0;
  padding: 20px;
  -webkit-box-shadow: 20px;
          box-shadow: 20px;
  -webkit-box-shadow: 0 10px 25px 0 #b1b1b1;
          box-shadow: 0 10px 25px 0 #b1b1b1;
}

.supervisionbox h3 span {
  background: #949494;
  padding: 0px 5px;
  display: inline-block;
  color: #ffffff;
  font-size: 16px !important;
  border-radius: 10px;
  margin-right: 10px;
}

.supervisionbox h3 {
  font-size: 16px !important;
  color: #636363 !important;
  padding: 5px;
  margin: 20px 0px;
  letter-spacing: 2px;
  margin-top: 0px !important;
  margin-bottom: 20px;
  border-bottom: 2px solid #b3b3b3 !important;
  background: none !important;
  text-align: left !important;
  border-left: none;
}

.supervisionbox img {
  border-radius: 0%;
  margin: 10px 0px 20px 0px !important;
}

.supervisionbox li {
  list-style-type: disc !important;
  margin-left: 20px;
  color: #545454;
}

/* セミナー */
.seminars {
  font-size: 16px;
}

.seminars .leftbborder {
  background: none;
  border-left: 5px solid #2368cd;
  padding-left: 10px;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 20px;
}

.seminars ul {
  margin-left: 20px;
}

.seminars ul li {
  list-style-type: circle;
  font-size: 18px;
}

.seminars a:link,
.seminars a:visited {
  color: #4996c4;
}

.seminars a:hover,
.seminars a:active {
  color: #1168cd;
  /* font-weight:bold; */
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.seminars .leftborder {
  font-size: 18px;
  background: none;
  border-left: 4px solid #469a7b;
  padding-left: 15px;
  margin: 30px 0px 10px 0px;
  border-bottom: none;
  color: #469a7b;
  text-align: left;
  padding: 2px 10px;
}

.smtimg {
  width: auto;
  margin: 0 auto;
  display: block;
}

/* 0410対応ページ */
.topmd {
  background: #e8e8e8;
  border: 3px solid #1168cd;
  padding: 20px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.topmp {
  text-align: center;
  font-weight: bold;
  color: #1168cd;
  font-size: 20px;
  margin-bottom: 0px !important;
}

@media screen and (max-width: 680px) {
  .topmp {
    text-align: left;
    font-size: 18px;
  }
}
/* Poketmusub案内 */
.pmcontainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.pmcontainer .img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.pmcontainer .txt {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}

@media screen and (max-width: 680px) {
  .pmcontainer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .pmcontainer .img {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0 auto;
  }
  .pmcontainer .txt {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.pm-shoplists {
  display: -ms-grid;
  display: grid;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  justify-items: center;
}

.pm-shoplists a:hover {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  opacity: 0.6;
}

.pm-shoplist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 680px) {
  .pm-shoplists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .pm-shoplist {
    width: 100%;
  }
}
/* タブ表示 */
.tab_container {
  padding-bottom: 1em;
  background-color: #fff;
  /* border:1px solid #37beb0; */
  margin: 0 auto;
}

.tab_container h4 {
  margin-top: 20px;
}

.tab_item {
  width: 33.3333333333%;
  padding: 10px 0;
  border-bottom: 3px solid #f1f3f8;
  background-color: #ececec;
  text-align: center;
  color: #717172;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: left;
  text-align: center;
  font-weight: bold;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  height: 120px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tab_item:hover {
  opacity: 0.75;
}

input[name=tab_item] {
  display: none;
}

.tab_content {
  display: none;
  padding: 1em 1em 0;
  clear: both;
  overflow: hidden;
}

#tab1:checked ~ #tab1_content,
#tab2:checked ~ #tab2_content,
#tab3:checked ~ #tab3_content,
#tab4:checked ~ #tab4_content {
  display: block;
}

.tab_container input:checked + .tab_item {
  background-color: #2368cd;
  color: #ffffff;
}
