@charset "UTF-8";
/****************************************
		0. Import
*****************************************/
/*options*/
   /*
  $base-grid: true,
  $margin-grid: true,
  $padding-grid: true,
  $block-grid: true,
  $collapse: true,
  $offset: true,
  $vertical-grid: true,
  $frame-grid: true

);
*/
/****************************************
		1. General Setting
*****************************************/
html, body, div, span, applet, object, iframe, strong,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, legend, caption,
tbody, tfoot, thead, table, label, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-style: inherit;
  font-family: inherit;
  vertical-align: baseline;
  list-style: none;
}

main {
  display: block;
}

a {
  color: #000;
  text-decoration: none;
}

nav {
  display: block;
}

/*Clear*/
.clear {
  clear: both;
  line-height: 0;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

/*box-sizing paddingとborderをwidth heightに含める*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
* *::after, * *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

.box {
  display: table;
}

.item {
  display: table-cell;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.inline {
  display: inline;
}

.columns, .column {
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
}

img {
  vertical-align: middle;
}

.space1 {
  margin-bottom: 5px;
}

.space2 {
  margin-bottom: 10px;
}

.space3 {
  margin-bottom: 15px;
}

.space4 {
  margin-bottom: 20px;
}

.space5 {
  margin-bottom: 25px;
}

.space6 {
  margin-bottom: 30px;
}

.space7 {
  margin-bottom: 35px;
}

.space8 {
  margin-bottom: 40px;
}

.space9 {
  margin-bottom: 45px;
}

.space10 {
  margin-bottom: 50px;
}

.space11 {
  margin-bottom: 55px;
}

.space12 {
  margin-bottom: 60px;
}

.space13 {
  margin-bottom: 65px;
}

.space14 {
  margin-bottom: 70px;
}

.space15 {
  margin-bottom: 75px;
}

.space16 {
  margin-bottom: 80px;
}

.space17 {
  margin-bottom: 85px;
}

.space18 {
  margin-bottom: 90px;
}

.space19 {
  margin-bottom: 95px;
}

.space20 {
  margin-bottom: 100px;
}

@media print {
  a[href]:after {
    content: "" !important;
  }

  abbr[title]:after {
    content: "" !important;
  }
}
figure {
  margin: 0;
}

/****************************************
		0.1. font-family
*****************************************/
/****************************************
		0.1. define
*****************************************/
.fs10 {
  font-size: 10px;
}

.fs11 {
  font-size: 11px;
}

.fs12 {
  font-size: 12px;
}

.fs13 {
  font-size: 13px;
}

.fs14 {
  font-size: 14px;
}

.fs15 {
  font-size: 15px;
}

.fs16 {
  font-size: 16px;
}

.fs17 {
  font-size: 17px;
}

.fs18 {
  font-size: 18px;
}

.fs19 {
  font-size: 19px;
}

.fs20 {
  font-size: 20px;
}

.fs21 {
  font-size: 21px;
}

.fs22 {
  font-size: 22px;
}

.fs23 {
  font-size: 23px;
}

.fs24 {
  font-size: 24px;
}

.fs25 {
  font-size: 25px;
}

.fs26 {
  font-size: 26px;
}

.fs27 {
  font-size: 27px;
}

.fs28 {
  font-size: 28px;
}

.fs29 {
  font-size: 29px;
}

.fs30 {
  font-size: 30px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb65 {
  margin-bottom: 65px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb85 {
  margin-bottom: 85px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb95 {
  margin-bottom: 95px;
}

.mb100 {
  margin-bottom: 100px;
}

.underline {
  text-decoration: underline;
}

.hover_a {
  opacity: 1;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.hover_a:hover {
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

@media screen and (max-width: 639px) {
  .mdbr::before {
    content: "\a";
    white-space: pre;
  }
}

@media screen and (max-width: 959px) {
  .lgbr::before {
    content: "\a";
    white-space: pre;
  }
}

@media screen and (min-width: 960px) {
  .pcbr::before {
    content: "\a";
    white-space: pre;
  }
}

#pagetop {
  position: fixed;
  display: none;
  z-index: 9;
}
#pagetop img {
  width: 100%;
}
#pagetop:hover {
  cursor: pointer;
}
@media screen and (max-width: 959px) {
  #pagetop {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
  }
}
@media screen and (min-width: 960px) {
  #pagetop {
    width: 65px;
    height: 65px;
    bottom: 30px;
    right: 30px;
  }
}

#btn_back_list {
  position: fixed;
  display: none;
  z-index: 2;
}
#btn_back_list img {
  width: 100%;
}
#btn_back_list:hover {
  cursor: pointer;
}
@media screen and (max-width: 959px) {
  #btn_back_list {
    width: 40px;
    height: 40px;
    bottom: 80px;
    right: 20px;
  }
}
@media screen and (min-width: 960px) {
  #btn_back_list {
    width: 65px;
    height: 65px;
    bottom: 120px;
    right: 30px;
  }
}

.indent-1 {
  padding-left: 1em;
  text-indent: -1em;
}

.last {
  margin-bottom: 0 !important;
}

.fas {
  margin-right: 0.5em;
}

.op0 {
  opacity: 0;
}

.lazyload {
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
}

.img_fit img {
  width: 100%;
}

/*
a{
    img{
        -webkit-transform:scale(.95);
        transform:scale(.95);
        -webkit-transition:transform .2s ease-out;
        transition:transform .2s ease-out;


    }
    img.no-scale{
        -webkit-transform:scale(1);
        transform:scale(1);
        -webkit-transition:none;
        transition:none;
        //transition:transform .2s ease-out;
    }
}
*/
@media screen and (max-width: 959px) {
  .no_sp {
    display: none;
  }
}

@media screen and (min-width: 960px) {
  .no_lg {
    display: none;
  }
}

/****************************************
1. General Setting
*****************************************/
body {
  font-family: "Hiragino Kaku Gothic ProN", Osaka, "ＭＳ Ｐゴシック", sans-serif;
  color: #000;
  background-color: #FFF;
  /*
  @include min-screen ($large-width){
      font-size:100%;
  }
  */
}
@media screen and (max-width: 959px) {
  body {
    font-size: 15px;
  }
}

.wrapper {
  position: realitive;
}

main {
  margin: 0 auto;
  width: 100%;
}

header {
  width: 100%;
}

footer {
  width: 100%;
}

section {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
section.contents_700 {
  max-width: 700px;
}
section.contents_800 {
  max-width: 800px;
}
section.contents_960 {
  max-width: 960px;
}
@media screen and (max-width: 959px) {
  section.contents_700, section.contents_800, section.contents_960 {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.contents_1100 {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1100px;
}

.contents_1280 {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1280px;
}

/****************************************************/
/******************************************************/
@media screen and (max-width: 959px) {
  h1, .h1size {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 960px) {
  h1, .h1size {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 959px) {
  h2, .h2size {
    font-size: 18px;
  }
}
@media screen and (min-width: 960px) {
  h2, .h2size {
    font-size: 20px;
  }
}

@media screen and (max-width: 959px) {
  h3, .h3size {
    font-size: 16px;
  }
}
@media screen and (min-width: 960px) {
  h3, .h3size {
    font-size: 18px;
  }
}

h1.h1_page {
  margin-bottom: 55px;
  text-align: center;
  color: #F39151;
  padding-bottom: 35px;
  border-bottom: 1px solid #F39151;
}

h2.label_red,
h2.label_orange {
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 43px;
  color: #FFF;
  text-align: center;
  line-height: 43px;
}
@media screen and (min-width: 720px) {
  h2.label_red,
  h2.label_orange {
    font-size: 18px;
  }
}
@media screen and (min-width: 721px) {
  h2.label_red,
  h2.label_orange {
    font-size: 20px;
  }
}

h1 {
  text-align: center;
  color: #F39151;
}

@media screen and (max-width: 720px) {
  h2.label_red {
    background-image: url(../images/common/bg_label_red.png);
  }
}
@media screen and (min-width: 721px) {
  h2.label_red {
    background-image: url(../images/common/bg_label_red.png);
  }
}

@media screen and (max-width: 720px) {
  h2.label_orange {
    background-image: url(../images/common/bg_label_orange_sp.png);
  }
}
@media screen and (min-width: 721px) {
  h2.label_orange {
    background-image: url(../images/common/bg_label_orange.png);
  }
}

/****************************************************/
/******************************************************/
header.header_pc {
  position: fixed;
  padding-top: 50px;
  padding-bottom: 30px;
  background-image: url(../images/header/loop_1d_8px.png);
  background-repeat: repeat-x;
  background-position: left top;
  background-size: 110px 8px;
  left: 0;
  z-index: 9990;
  background-color: #FFF;
}
@media screen and (min-width: 960px) {
  header.header_pc {
    top: 0;
  }
}
@media screen and (max-width: 779px) {
  header.header_pc.logged-in {
    top: 46px;
  }
}
@media screen and (min-width: 780px) {
  header.header_pc.logged-in {
    top: 32px;
  }
}
@media screen and (max-width: 959px) {
  header.header_pc {
    display: none;
  }
}
header.header_pc .header_pc_wrapper {
  width: 100%;
  height: 100%;
  max-width: 840px;
  position: relative;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
header.header_pc .header_pc_wrapper .logo_wrapper {
  display: block;
  width: 175px;
  padding-top: 0;
}
header.header_pc .header_pc_wrapper .logo_wrapper a {
  display: block;
}
header.header_pc .header_pc_wrapper .logo_wrapper a:hover {
  cursor: pointer;
}
header.header_pc .header_pc_wrapper .logo_wrapper a img {
  width: 100%;
}
header.header_pc .header_pc_wrapper .nav_pc_wrapper {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
header.header_pc .header_pc_wrapper nav.nav_pc_fix_wrapper {
  display: block;
  height: 100%;
}
header.header_pc .header_pc_wrapper ul.nav_pc {
  display: table;
  padding: 0;
  height: 100%;
  padding-right: 10px;
}
header.header_pc .header_pc_wrapper ul.nav_pc li {
  display: table-cell;
  vertical-align: top;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 959px) {
  header.header_pc .header_pc_wrapper ul.nav_pc li {
    padding: 0 15px;
  }
}
@media screen and (min-width: 960px) {
  header.header_pc .header_pc_wrapper ul.nav_pc li {
    padding-right: 10px;
    padding-left: 10px;
  }
  header.header_pc .header_pc_wrapper ul.nav_pc li:first-child {
    padding-right: 10px;
    padding-left: 0;
  }
  header.header_pc .header_pc_wrapper ul.nav_pc li:last-child {
    padding-right: 0;
    padding-left: 10px;
  }
}
header.header_pc .header_pc_wrapper ul.nav_pc li a {
  text-align: center;
  font-size: 12px;
  font-weight: normal;
  display: block;
  color: #000;
}
header.header_pc .header_pc_wrapper ul.nav_pc li a img {
  width: 40px;
  display: block;
  margin: 0 auto 10px auto;
}
header.header_pc .header_pc_wrapper ul.nav_pc li a:hover {
  cursor: pointer;
}
header.header_pc .header_pc_wrapper ul.nav_pc li a:hover span {
  padding-bottom: 4px;
  border-bottom: 1px solid #000;
}
header.header_pc .header_pc_wrapper ul.nav_pc li.current span {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  padding-bottom: 4px;
}
header.header_pc .header_pc_wrapper ul.nav_pc li.current a, header.header_pc .header_pc_wrapper ul.nav_pc li:hover a {
  color: #000000 !important;
}

.header_sp {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #FFF;
  z-index: 9999;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .header_sp {
    display: none;
  }
}
.header_sp .logo_sp {
  text-align: center;
}

@media screen and (max-width: 959px) {
  .header_under {
    height: 90px;
  }
}
@media screen and (min-width: 960px) {
  .header_under {
    height: 143px;
  }
}
@media screen and (min-width: 0) and (max-width: 779px) {
  .header_under.logged-in {
    height: 46px;
  }
}
@media screen and (min-width: 780px) and (max-width: 959px) {
  .header_under.logged-in {
    height: 32px;
  }
}

.header_sp_block {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #FFF;
  background-image: url(../images/header/loop_1d_8px.png);
  background-size: 110px 8px;
  background-position: left top;
  background-repeat: repeat-x;
  z-index: 99999;
  height: 90px;
  padding-top: 20px;
}
@media screen and (min-width: 960px) {
  .header_sp_block {
    display: none;
  }
}
.header_sp_block.logged-in {
  top: 32px !important;
}
.header_sp_block .header_sp_inner {
  position: relative;
  padding-top: 45px;
  z-index: 9999;
}
.header_sp_block .header_sp_inner .logo_sp {
  position: absolute;
  display: block;
  top: 12px;
  left: 20px;
  z-index: 9999;
}
@media screen and (min-width: 0) and (max-width: 400px) {
  .header_sp_block .header_sp_inner .logo_sp {
    width: 100px;
  }
}
@media screen and (min-width: 401px) {
  .header_sp_block .header_sp_inner .logo_sp {
    width: 128px;
  }
}
.header_sp_block .header_sp_inner .logo_sp img {
  width: 100%;
}
.header_sp_block .header_sp_inner .btn_sp_wrapper {
  position: absolute;
  top: 6px;
  right: 10px;
}
.header_sp_block .header_sp_inner .btn_sp_wrapper a {
  display: inline-block;
  margin-right: 12px;
  width: 40px;
  text-align: center;
  font-size: 9px;
}
.header_sp_block .header_sp_inner .btn_sp_wrapper a:nth-child(3) {
  margin-right: 0 !important;
}
.header_sp_block .header_sp_inner .btn_sp_wrapper a img {
  width: 40px;
  display: block;
  margin: 0 auto;
}
.header_sp_block .header_sp_inner .btn_sp_wrapper a.menu-trigger figure {
  width: 40px;
  height: 40px;
  background-image: url("../images/header/btn_sp_open.png");
  background-size: cover;
}
.header_sp_block .header_sp_inner .btn_sp_wrapper a.menu-trigger.active figure {
  width: 40px;
  height: 40px;
  background-image: url("../images/header/btn_sp_close.png");
  background-size: cover;
}

/* =========================
    gnavi
========================= */
#global_navi {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
  overflow: hidden;
  height: 0;
  background-color: #FFF;
  padding-top: 0;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  transition-timing-function: ease-in;
}
#global_navi.open {
  height: 100%;
  padding-top: 100px;
}
#global_navi #sp_menu {
  padding: 0 20px;
}
#global_navi #sp_menu .global_navi_main li {
  border-bottom: 1px solid #e2e2e2;
}
#global_navi #sp_menu .global_navi_main li a {
  padding: 10px 0;
  display: block;
  width: 14em;
  margin: 0 auto;
}
#global_navi #sp_menu .global_navi_main li img {
  width: 40px;
  margin-right: 1em;
}

#global_navi.fixed {
  position: fixed;
}

/****************************************************/
/******************************************************/
footer {
  position: relative;
  background-color: #A85252;
  background-image: url("../images/footer/loop_2footer.png");
  background-position: bottom left;
  background-size: 110px 15px;
  background-repeat: repeat-x;
  word-break: break-all;
}
footer a {
  color: #FFF;
}
footer .footer_1,
footer .footer_2 {
  width: 100%;
}
footer .inner {
  margin: 0 auto;
  max-width: 840px;
  padding: 0 20px;
}
footer .footer_sp {
  padding: 27px 40px 50px 40px;
}
@media screen and (min-width: 960px) {
  footer .footer_sp {
    display: none;
  }
}
footer .footer_sp .inner {
  margin: 0 auto;
  max-width: 600px;
}
footer .footer_sp .footer_menu_sp {
  margin-bottom: 24px;
}
footer .footer_sp .footer_menu_sp a {
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}
footer .footer_pc {
  padding-top: 54px;
  padding-bottom: 35px;
}
@media screen and (max-width: 959px) {
  footer .footer_pc {
    display: none;
  }
}
footer .footer_pc .footer_menu_pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
footer .footer_pc .footer_menu_pc li a span {
  padding-bottom: .5em;
}
footer .footer_pc .footer_menu_pc li a:hover span {
  border-bottom: 1px solid #FFF;
}
footer .footer_pc .footer_menu_pc li.current a span {
  border-bottom: 1px solid #FFF;
}
footer .footer_pc .footer_2 {
  width: 100%;
  display: table;
  table-layout: fixed;
}
footer .footer_pc .footer_2 .item {
  vertical-align: bottom;
}
footer .footer_pc .footer_2 .item:nth-child(1) {
  text-align: left;
}
footer .footer_pc .footer_2 .item:nth-child(1) li a {
  font-size: 12px;
}
footer .footer_pc .footer_2 .item:nth-child(1) li a span {
  display: inline-block;
  /*padding-bottom:.3em;*/
}
footer .footer_pc .footer_2 .item:nth-child(1) li a:hover span {
  border-bottom: 1px solid #FFF;
}
footer .footer_pc .footer_2 .item:nth-child(1) li.current a span {
  border-bottom: 1px solid #FFF;
}
footer .footer_pc .footer_2 .item:nth-child(2) {
  text-align: center;
}
footer .footer_pc .footer_2 .item:nth-child(3) {
  text-align: right;
}
@media screen and (max-width: 959px) {
  footer .logo_wrapper {
    padding-top: 55px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 960px) {
  footer .logo_wrapper {
    padding-top: 88px;
  }
}
footer .logo_wrapper img.logo_footer {
  width: 75px;
}
footer .copyright {
  text-align: center;
  color: #FFF;
  font-size: 10px;
}
@media screen and (max-width: 959px) {
  footer .copyright {
    display: block !important;
    margin-bottom: 34px;
  }
}
@media screen and (max-width: 960px) {
  footer .sns_wrapper {
    width: 100px;
    margin: 0 auto;
    text-align: center;
  }
}
@media screen and (min-width: 960px) {
  footer .sns_wrapper {
    padding-top: 12px;
    width: 100px;
    margin-left: auto;
    text-align: right;
  }
}
footer .sns_wrapper a {
  display: inline-block;
  width: 30px;
}
footer .sns_wrapper a img {
  width: 100%;
}
footer .sns_wrapper a:nth-child(1) {
  margin-right: 8px;
}

footer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  top: -4px;
  left: 0;
  background-image: url("../images/common/loop_2u.png");
  background-size: 110px 4px;
  background-repeat: repeat-x;
}

/***************************************/
/**************************************/
.gmap_wrapper {
  position: relative;
  height: 0;
  overflow: hidden;
  margin: 0 auto 10px auto;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .gmap_wrapper {
    padding-bottom: 75%;
  }
}
@media screen and (min-width: 601px) and (max-width: 959px) {
  .gmap_wrapper {
    max-width: 800px;
    padding-bottom: 50%;
  }
}
@media screen and (min-width: 960px) {
  .gmap_wrapper {
    max-width: 450px;
    padding-bottom: 75%;
  }
}
.gmap_wrapper iframe, .gmap_wrapper object, .gmap_wrapper embed, .gmap_wrapper #gmap, .gmap_wrapper #gmap2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**********************************
TOPPAGE
**********************************/
.top h2.h2_top {
  text-align: center;
  color: #F39151;
}
@media screen and (max-width: 959px) {
  .top h2.h2_top {
    margin: 0 auto 40px auto;
    font-size: 18px;
  }
}
@media screen and (min-width: 960px) {
  .top h2.h2_top {
    margin: 0 auto 45px auto;
    font-size: 24px;
  }
}
.top .sec_slide {
  padding-top: 26px;
}
.top .sec_slide #slide_pc {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.top .sec_slide #slide_pc .slide_child img {
  width: 100%;
}
.top .slide_wrapper {
  opacity: 0;
  transition: opacity 3s ease;
}
.top .slide_wrapper.slick-initialized {
  opacity: 1;
}
.top section.sec_info {
  padding: 14px;
  background-color: #A85252;
  position: relative;
}
@media screen and (max-width: 959px) {
  .top section.sec_info {
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 960px) {
  .top section.sec_info {
    margin-bottom: 40px;
  }
}
.top section.sec_info:before {
  content: "";
  height: 4px;
  width: 100%;
  position: absolute;
  top: -4px;
  left: 0;
  background-image: url(../images/common/loop_2u.png);
  background-size: 110px 4px;
  background-position: left bottom;
  background-repeat: repeat-x;
}
.top section.sec_info:after {
  content: "";
  height: 4px;
  width: 100%;
  position: absolute;
  bottom: -4px;
  left: 0;
  background-image: url(../images/common/loop_2d.png);
  background-size: 110px 4px;
  background-position: left bottom;
  background-repeat: repeat-x;
}
.top section.sec_info .info_new {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.top section.sec_info .info_new a, .top section.sec_info .info_new span {
  font-size: 14px;
  color: #FFF;
}
.top section.sec_info .info_new span.date {
  margin-right: 1em;
}
.top section.sec_info .info_new:nth-child(1), .top section.sec_info .info_new:nth-child(2) {
  margin-bottom: 20px;
}
.top section.sec_osusume .sec_osusume_inner {
  margin: 0 auto 40px;
  max-width: 800px;
}
.top section.sec_osusume .sec_osusume_inner.last {
  margin-bottom: 0;
}
.top section.sec_osusume h2 {
  margin-bottom: 40px;
}
.top section.sec_osusume .osusume_text {
  width: 100%;
  margin: 0 auto 40px;
  max-width: 840px;
}
.top section.sec_osusume .osusume_text p {
  line-height: 1.5;
}
@media screen and (max-width: 959px) {
  .top section.sec_cal {
    padding-top: 25px;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 960px) {
  .top section.sec_cal {
    padding-top: 45px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 959px) {
  .top section.sec_cal .cal_wrapper {
    width: 318px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 960px) {
  .top section.sec_cal .cal_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    max-width: 688px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 959px) {
  .top section.sec_cal .cal_wrapper .xo-event-calendar:nth-child(1) {
    margin-bottom: 40px;
  }
}
.top section.sec_cal p.rest_title {
  text-align: center;
  line-height: 1;
}
.top section.sec_cal p.rest_title i {
  color: #F39151;
  font-size: 10px;
}
.top section.sec_cal p.rest_title span {
  font-size: 14px;
}
.top section.sec_cal .xo-event-calendar {
  width: 316px;
  display: block;
}
.top section.sec_cal .xo-event-calendar button.month-prev, .top section.sec_cal .xo-event-calendar button.month-next {
  display: none;
}
.top section.sec_cal .xo-event-calendar table th {
  color: #FFF;
  font-weight: normal;
}
.top section.sec_cal .xo-event-calendar table th.sunday {
  background-color: #9A2828;
}
.top section.sec_cal .xo-event-calendar table th.monday, .top section.sec_cal .xo-event-calendar table th.tuesday, .top section.sec_cal .xo-event-calendar table th.wednesday, .top section.sec_cal .xo-event-calendar table th.thursday, .top section.sec_cal .xo-event-calendar table th.friday {
  background-color: #5F2828;
}
.top section.sec_cal .xo-event-calendar table th.saturday {
  background-color: #20557C;
}
.top section.sec_cal .xo-event-calendar table .month-dayname td div {
  padding: 15px;
}
.top section.sec_cal .xo-event-calendar .holiday-titles {
  text-indent: -26px;
  padding-left: 26px !important;
}
.top section.sec_cal .hosoku_text {
  text-align: center;
  font-weight: normal !important;
  margin-bottom: 45px;
}
.top section.sec_cal > .h2_top.h2_top_text {
  margin: 0 auto 20px auto !important;
}
.top section.sec_sns {
  min-height: 200px;
  background: #e2f5fd;
  background: -moz-linear-gradient(left, #e2f5fd 0%, #e2f5fd 50%, #fff7cb 51%, #fff7cb 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #e2f5fd), color-stop(50%, #e2f5fd), color-stop(51%, #fff7cb), color-stop(100%, #fff7cb));
  background: -webkit-linear-gradient(left, #e2f5fd 0%, #e2f5fd 50%, #fff7cb 51%, #fff7cb 100%);
  background: -o-linear-gradient(left, #e2f5fd 0%, #e2f5fd 50%, #fff7cb 51%, #fff7cb 100%);
  background: -ms-linear-gradient(left, #e2f5fd 0%, #e2f5fd 50%, #fff7cb 51%, #fff7cb 100%);
  background: linear-gradient(to right, #e2f5fd 0%, #e2f5fd 50%, #fff7cb 51%, #fff7cb 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e2f5fd', endColorstr='#fff7cb', GradientType=1 );
}
.top section.sec_sns h2.h2_sns {
  font-size: 14px;
  line-height: 1;
}
@media screen and (max-width: 959px) {
  .top section.sec_sns h2.h2_sns {
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 960px) {
  .top section.sec_sns h2.h2_sns {
    margin-bottom: 50px;
  }
}
.top section.sec_sns h2.h2_sns img {
  width: 40px;
  display: block;
  margin: 0 auto 15px auto;
}
.top section.sec_sns h2.h2_sns span {
  font-size: 14px;
  color: #5f2828;
}
.top .top_sns_wrapper {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  .top .top_sns_wrapper {
    display: block;
    min-height: 200px;
  }
}
@media screen and (min-width: 960px) {
  .top .top_sns_wrapper {
    display: table;
    max-width: 840px;
    min-height: 200px;
  }
}
@media screen and (max-width: 959px) {
  .top .top_sns_wrapper .top_sns_wrapper_child {
    padding-top: 25px;
    padding-bottom: 45px;
    display: block;
    width: 100%;
    min-height: 200px;
  }
}
@media screen and (min-width: 960px) {
  .top .top_sns_wrapper .top_sns_wrapper_child {
    padding-top: 50px;
    padding-bottom: 80px;
    display: table-cell;
    width: 50%;
    min-height: 200px;
  }
}
.top .top_sns_wrapper .top_sns_wrapper_child:nth-child(1) {
  background-color: #E2F5FD;
}
.top .top_sns_wrapper .top_sns_wrapper_child:nth-child(1) .fb_iframe_widget {
  width: 300px;
  display: block !important;
  margin: 0 auto;
}
.top .top_sns_wrapper .top_sns_wrapper_child:nth-child(2) {
  background-color: #FFF7CB;
}
.top .top_sns_wrapper .top_sns_wrapper_child:nth-child(2) .insta_wrapper, .top .top_sns_wrapper .top_sns_wrapper_child:nth-child(2) #insta_gal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-content: flex-start;
  -ms-align-content: flex-start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 300px;
  margin: 0 auto;
}
.top .top_sns_wrapper .top_sns_wrapper_child:nth-child(2) .insta_wrapper a.insta_single, .top .top_sns_wrapper .top_sns_wrapper_child:nth-child(2) .insta_wrapper li.gallery-item, .top .top_sns_wrapper .top_sns_wrapper_child:nth-child(2) #insta_gal a.insta_single, .top .top_sns_wrapper .top_sns_wrapper_child:nth-child(2) #insta_gal li.gallery-item {
  width: 50%;
  height: 0;
  padding-top: 50%;
  display: block;
  position: relative;
  overflow: hidden;
  border: 2px solid #fff7cb;
}
.top .top_sns_wrapper .top_sns_wrapper_child:nth-child(2) .insta_wrapper a.insta_single figure, .top .top_sns_wrapper .top_sns_wrapper_child:nth-child(2) .insta_wrapper a.insta_single img, .top .top_sns_wrapper .top_sns_wrapper_child:nth-child(2) .insta_wrapper li.gallery-item figure, .top .top_sns_wrapper .top_sns_wrapper_child:nth-child(2) .insta_wrapper li.gallery-item img, .top .top_sns_wrapper .top_sns_wrapper_child:nth-child(2) #insta_gal a.insta_single figure, .top .top_sns_wrapper .top_sns_wrapper_child:nth-child(2) #insta_gal a.insta_single img, .top .top_sns_wrapper .top_sns_wrapper_child:nth-child(2) #insta_gal li.gallery-item figure, .top .top_sns_wrapper .top_sns_wrapper_child:nth-child(2) #insta_gal li.gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transform: scale(1);
  /*画像の拡大率*/
  transform: scale(1);
  /*画像の拡大率*/
  -webkit-transition-duration: 0.3s;
  /*変化に掛かる時間*/
  transition-duration: 0.3s;
  /*変化に掛かる時間*/
}
.top .top_sns_wrapper .top_sns_wrapper_child:nth-child(2) .insta_wrapper a.insta_single figure:hover, .top .top_sns_wrapper .top_sns_wrapper_child:nth-child(2) .insta_wrapper a.insta_single img:hover, .top .top_sns_wrapper .top_sns_wrapper_child:nth-child(2) .insta_wrapper li.gallery-item figure:hover, .top .top_sns_wrapper .top_sns_wrapper_child:nth-child(2) .insta_wrapper li.gallery-item img:hover, .top .top_sns_wrapper .top_sns_wrapper_child:nth-child(2) #insta_gal a.insta_single figure:hover, .top .top_sns_wrapper .top_sns_wrapper_child:nth-child(2) #insta_gal a.insta_single img:hover, .top .top_sns_wrapper .top_sns_wrapper_child:nth-child(2) #insta_gal li.gallery-item figure:hover, .top .top_sns_wrapper .top_sns_wrapper_child:nth-child(2) #insta_gal li.gallery-item img:hover {
  -webkit-transform: scale(1.1);
  /*画像の拡大率*/
  transform: scale(1.1);
  /*画像の拡大率*/
  -webkit-transition-duration: 0.3s;
  /*変化に掛かる時間*/
  transition-duration: 0.3s;
  /*変化に掛かる時間*/
}
.top .top_sns_wrapper .top_sns_wrapper_child:nth-child(2) .insta_wrapper a.insta_single figure, .top .top_sns_wrapper .top_sns_wrapper_child:nth-child(2) .insta_wrapper li.gallery-item figure, .top .top_sns_wrapper .top_sns_wrapper_child:nth-child(2) #insta_gal a.insta_single figure, .top .top_sns_wrapper .top_sns_wrapper_child:nth-child(2) #insta_gal li.gallery-item figure {
  width: 100%;
  height: 100%;
}
.top .top_sns_wrapper .top_sns_wrapper_child:nth-child(2) .insta_wrapper a.insta_single img, .top .top_sns_wrapper .top_sns_wrapper_child:nth-child(2) .insta_wrapper li.gallery-item img, .top .top_sns_wrapper .top_sns_wrapper_child:nth-child(2) #insta_gal a.insta_single img, .top .top_sns_wrapper .top_sns_wrapper_child:nth-child(2) #insta_gal li.gallery-item img {
  display: block;
  height: 100%;
  right: 0;
  bottom: 0;
  margin: auto;
}
.top .top_sns_wrapper .fb-page, .top .top_sns_wrapper #insta_gal {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.top .top_sns_wrapper .fb-page.initialized, .top .top_sns_wrapper #insta_gal.initialized {
  opacity: 1;
}
.top section.sec_access {
  background-color: #FFF5EF;
}
@media screen and (max-width: 959px) {
  .top section.sec_access {
    padding-top: 25px;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 960px) {
  .top section.sec_access {
    padding-top: 45px;
    padding-bottom: 40px;
  }
}

/**********************************
Access Google map
**********************************/
@media screen and (max-width: 959px) {
  .access_wrapper {
    display: block;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 960px) {
  .access_wrapper {
    display: table;
    width: 100%;
    max-width: 800px;
    table-layout: fixed;
    margin: 0 auto;
  }
}
@media screen and (max-width: 959px) {
  .access_wrapper .table_child {
    display: block;
  }
}
@media screen and (min-width: 960px) {
  .access_wrapper .table_child {
    display: table-cell;
    vertical-align: top;
  }
}
@media screen and (min-width: 960px) {
  .access_wrapper .table_child:nth-child(1) {
    width: 450px;
  }
}
@media screen and (max-width: 959px) {
  .access_wrapper .table_child:nth-child(2) {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 960px) {
  .access_wrapper .table_child:nth-child(2) {
    width: 350px;
    padding-left: 45px;
  }
}
.access_wrapper .table_child:nth-child(2) p {
  color: #5f2828;
}
.access_wrapper .table_child:nth-child(2) p.text {
  font-size: 14px;
}
@media screen and (max-width: 959px) {
  .access_wrapper .table_child:nth-child(2) p.text {
    text-align: center;
    margin-bottom: 15px;
  }
}
.access_wrapper .table_child:nth-child(2) p.name {
  font-size: 20px;
  margin-bottom: 15px;
}
@media screen and (max-width: 959px) {
  .access_wrapper .table_child:nth-child(2) p.name {
    text-align: center;
  }
}
@media screen and (max-width: 959px) {
  .access_wrapper .table_child:nth-child(2) p.address {
    width: 20em;
    margin: 0 auto;
    line-height: 2;
    font-size: 14px;
  }
}
@media screen and (min-width: 960px) {
  .access_wrapper .table_child:nth-child(2) p.address {
    line-height: 2;
    font-size: 14px;
  }
}

/**********************************
Single Cake
**********************************/
main.single_cake {
  padding-top: 40px;
}
main.single_cake h2.label_orange {
  margin-bottom: 30px;
}
main.single_cake ul li {
  list-style: disc inside !important;
  text-indent: -1.3em;
  padding-left: 1.3em;
}
@media screen and (max-width: 959px) {
  main.single_cake section.sec_single {
    padding-left: 10px;
    padding-right: 10px;
  }
}
main.single_cake .single_wrapper {
  max-width: 800px;
  margin: 0 auto;
}
main.single_cake .single_wrapper a, main.single_cake .single_wrapper p, main.single_cake .single_wrapper li, main.single_cake .single_wrapper span {
  line-height: 1.5;
}
@media screen and (max-width: 959px) {
  main.single_cake .single_wrapper a, main.single_cake .single_wrapper p, main.single_cake .single_wrapper li, main.single_cake .single_wrapper span {
    font-size: 0.85em;
  }
}
main.single_cake .single_wrapper li {
  margin-bottom: 0.5em;
}
main.single_cake .single_wrapper .flex_wrapper {
  padding: 0 0 30px 0;
}
@media screen and (max-width: 959px) {
  main.single_cake .single_wrapper .flex_wrapper {
    display: block;
  }
}
@media screen and (min-width: 960px) {
  main.single_cake .single_wrapper .flex_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
main.single_cake .single_wrapper .flex_wrapper .flex_child {
  padding: 0 15px;
}
@media screen and (max-width: 959px) {
  main.single_cake .single_wrapper .flex_wrapper .flex_child {
    width: 100%;
    margin: 0 auto 25px auto;
  }
  main.single_cake .single_wrapper .flex_wrapper .flex_child img {
    max-width: 450px;
    display: block;
    margin: 0 auto;
    width: 100%;
  }
}
@media screen and (min-width: 960px) {
  main.single_cake .single_wrapper .flex_wrapper .flex_child {
    width: 50%;
  }
  main.single_cake .single_wrapper .flex_wrapper .flex_child img {
    width: 100%;
    max-width: 350px;
  }
}
@media screen and (max-width: 960px) {
  main.single_cake .single_wrapper .flex_wrapper .flex_child h3.cake_name {
    font-size: 18px;
    margin-bottom: 18px;
  }
}
@media screen and (min-width: 960px) {
  main.single_cake .single_wrapper .flex_wrapper .flex_child h3.cake_name {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
main.single_cake .single_wrapper .flex_wrapper .flex_child table {
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
  line-height: 1.5;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  margin: 10px;
}
main.single_cake .single_wrapper .flex_wrapper .flex_child table th {
  width: 150px;
  padding: 10px;
  font-weight: bold;
  vertical-align: top;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  background: #eee;
}
main.single_cake .single_wrapper .flex_wrapper .flex_child table td {
  width: 350px;
  padding: 10px;
  vertical-align: top;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
main.single_cake .single_wrapper .gal_wrapper {
  width: 100%;
  padding: 0 15px 30px 15px;
}
@media screen and (min-width: 960px) {
  main.single_cake .single_wrapper .gal_wrapper {
    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;
  }
}
@media screen and (max-width: 959px) {
  main.single_cake .single_wrapper .gal_wrapper figure {
    width: 100%;
    max-width: 450px;
    margin: 0 auto 30px auto;
    text-align: center;
  }
}
@media screen and (min-width: 960px) {
  main.single_cake .single_wrapper .gal_wrapper figure {
    width: 30%;
    max-width: 200px;
    margin-bottom: 30px;
  }
  main.single_cake .single_wrapper .gal_wrapper figure.dummy {
    margin-bottom: 0  !important;
    padding: 0;
  }
}
main.single_cake .single_wrapper .gal_wrapper figure img {
  width: 100%;
}
main.single_cake .single_wrapper .all_wrapper {
  width: 100%;
  padding: 0 15px 30px 15px;
}
main.single_cake .single_wrapper .caution1, main.single_cake .single_wrapper .caution2 {
  padding: 0 15px 15px 15px;
}
@media screen and (min-width: 960px) {
  main.single_cake .single_wrapper .caution2 {
    font-size: 14px;
  }
  main.single_cake .single_wrapper .caution2 * {
    font-size: 14px;
  }
}
main.single_cake .single_wrapper a span {
  padding-bottom: .5em;
}
main.single_cake .single_wrapper a:hover span {
  border-bottom: 1px solid #000;
}
main.single_cake .backtolist {
  font-weight: bold;
  padding-top: 20px;
}
main.single_cake section.sec_osusume {
  padding: 40px 0;
  background-color: #FFF5EF;
}
main.single_cake section.sec_osusume h2 {
  color: #F39151;
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 959px) {
  main.single_cake section.sec_osusume .cake_thum_wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/**********************************
Cake Thumnail (list)
**********************************/
main.list_cake {
  padding-top: 40px;
  padding-bottom: 40px;
}
main.list_cake ul li {
  list-style: disc inside !important;
  text-indent: -1.3em;
  padding-left: 1.3em;
}
main.list_cake h2 {
  margin-bottom: 30px;
}
main.list_cake .text {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 40px auto;
}
main.list_cake .caution_area {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 40px auto;
}
@media screen and (max-width: 959px) {
  main.list_cake section.section_list {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.cake_thum_wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  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;
}

.dummy {
  padding: 30px 0 30px 0;
  display: block;
  width: 30%;
  max-width: 250px;
}
@media screen and (max-width: 959px) {
  .dummy {
    display: none;
  }
}

a.cake_thum {
  padding: 30px 0 30px 0;
  display: block;
  transition: all 1s linear;
  position: relative;
}
@media screen and (max-width: 960px) {
  a.cake_thum {
    width: 45%;
    max-width: 250px;
  }
}
@media screen and (min-width: 960px) {
  a.cake_thum {
    width: 33%;
    max-width: 250px;
  }
}
a.cake_thum figure {
  width: 100%;
  height: 0;
  padding-top: 100%;
  position: relative;
  border-radius: 50%;
  margin-bottom: 15px;
  overflow: hidden;
  z-index: 1;
}
a.cake_thum figure .plate {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-size: 100%;
  background-position: center center;
  -webkit-transition-duration: 0.3s;
  /*変化に掛かる時間*/
  transition-duration: 0.3s;
  /*変化に掛かる時間*/
}
a.cake_thum .name {
  display: block;
  text-align: center;
}
@media screen and (max-width: 959px) {
  a.cake_thum .name {
    font-size: 14px;
  }
}
@media screen and (min-width: 960px) {
  a.cake_thum .name {
    font-size: 16px;
  }
}
a.cake_thum:hover figure .plate {
  -webkit-transform: scale(1.1);
  /*画像の拡大率*/
  transform: scale(1.1);
  /*画像の拡大率*/
  -webkit-transition-duration: 0.3s;
  /*変化に掛かる時間*/
  transition-duration: 0.3s;
  /*変化に掛かる時間*/
}
a.cake_thum .label_kazari {
  position: absolute;
  z-index: 3;
}
@media screen and (max-width: 959px) {
  a.cake_thum .label_kazari {
    width: 40%;
    height: 40%;
    top: 20px;
    right: 0;
  }
}
@media screen and (min-width: 960px) {
  a.cake_thum .label_kazari {
    width: 28%;
    height: 28%;
    top: 10px;
    right: -10px;
  }
}
a.cake_thum .label_kazari img {
  width: 100%;
}

/**********************************
Shop Info
*********************************/
main.shop_info {
  padding-top: 40px;
}
main.shop_info ul, main.shop_info li, main.shop_info a, main.shop_info .text {
  font-size: 14px;
}
@media screen and (max-width: 959px) {
  main.shop_info section.setion01,
  main.shop_info section.sec_access,
  main.shop_info section.sec_pay,
  main.shop_info section.sec_toriyose {
    padding: 40px 10px;
  }
}
@media screen and (min-width: 960px) {
  main.shop_info section.setion01,
  main.shop_info section.sec_access,
  main.shop_info section.sec_pay,
  main.shop_info section.sec_toriyose {
    margin: 0 auto;
    max-width: 840px;
    padding: 40px 20px;
  }
}
main.shop_info h2 {
  color: #F39151;
  text-align: center;
  width: 250px;
  border-bottom: solid 2px #F39151;
}
@media screen and (max-width: 959px) {
  main.shop_info h2 {
    font-size: 18px;
    margin: 0 auto 25px auto;
    padding-bottom: 25px;
  }
}
@media screen and (min-width: 960px) {
  main.shop_info h2 {
    font-size: 18px;
    margin: 0 auto 34px auto;
    padding-bottom: 30px;
  }
}
main.shop_info section.section01 figure {
  max-width: 840px;
  margin: 0 auto;
}
main.shop_info section.section01 figure img {
  width: 100%;
}
main.shop_info section.sec_access2 {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #FFF5EF;
}
main.shop_info section.sec_access2 .inner {
  padding-left: 10px;
  padding-right: 10px;
  margin: 0 auto;
  max-width: 840px;
}
main.shop_info section.sec_access2 .text {
  margin-bottom: 50px;
}
@media screen and (max-width: 959px) {
  main.shop_info section.sec_access2 .ill_wrapper {
    margin-bottom: 30px;
    width: 100%;
  }
}
@media screen and (min-width: 960px) {
  main.shop_info section.sec_access2 .ill_wrapper {
    margin-bottom: 50px;
    display: table;
    width: 100%;
    table-layout: fixed;
  }
}
@media screen and (max-width: 959px) {
  main.shop_info section.sec_access2 .ill_wrapper .table_child {
    display: block;
  }
  main.shop_info section.sec_access2 .ill_wrapper .table_child:nth-child(1) {
    width: 100%;
    max-width: 450px;
    margin: 0 auto 15px auto;
    text-align: center;
  }
  main.shop_info section.sec_access2 .ill_wrapper .table_child:nth-child(1) img {
    width: 100%;
  }
  main.shop_info section.sec_access2 .ill_wrapper .table_child:nth-child(2) {
    width: 100%;
    max-width: 450px;
    margin: 0 auto 15px auto;
  }
  main.shop_info section.sec_access2 .ill_wrapper .table_child:nth-child(2) span {
    font-size: 1em;
  }
}
@media screen and (min-width: 960px) {
  main.shop_info section.sec_access2 .ill_wrapper .table_child {
    display: table-cell;
    vertical-align: top;
  }
  main.shop_info section.sec_access2 .ill_wrapper .table_child:nth-child(1) {
    width: 56.25%;
  }
  main.shop_info section.sec_access2 .ill_wrapper .table_child:nth-child(1) img {
    width: 100%;
  }
  main.shop_info section.sec_access2 .ill_wrapper .table_child:nth-child(2) {
    padding-left: 40px;
    width: 43.75%;
  }
  main.shop_info section.sec_access2 .ill_wrapper .table_child:nth-child(2) span {
    font-size: 1em;
  }
}
main.shop_info .credit_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
main.shop_info .credit_wrapper img {
  display: inline-block;
  width: 16%;
  max-width: 85px;
}
@media screen and (max-width: 959px) {
  main.shop_info section.sec_pay .text {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 960px) {
  main.shop_info section.sec_pay .text {
    margin-bottom: 35px;
  }
}
main.shop_info section.sec_toriyose li {
  margin-bottom: 14px;
}

/**********************************
News
**********************************/
.archive_news {
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .archive_news {
    padding: 40px 10px;
  }
}
@media screen and (min-width: 960px) {
  .archive_news {
    padding: 40px 20px;
  }
}
.archive_news section.section_news {
  padding: 50px 15px;
  border-bottom: 1px solid #F39151;
}
.archive_news section.section_news.section_0 {
  border-top: 1px solid #F39151;
}
.archive_news section.section_news p.date {
  font-size: 16px;
  margin-bottom: 30px;
}
.archive_news section.section_news h2.title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
}

/**********************************
Recruit
**********************************/
.recruit {
  max-width: 840px;
  margin: 0 auto;
}
@media screen and (max-width: 959px) {
  .recruit {
    padding: 40px 10px;
  }
}
@media screen and (min-width: 960px) {
  .recruit {
    padding: 40px 20px;
  }
}
.recruit h1 {
  margin-bottom: 55px;
  text-align: center;
  color: #F39151;
  padding-bottom: 35px;
  border-bottom: 1px solid #F39151;
}
.recruit h2 {
  color: #F39151;
  width: 250px;
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #F39151;
}
@media screen and (max-width: 959px) {
  .recruit h2 {
    margin: 0 auto 25px auto;
  }
}
@media screen and (min-width: 960px) {
  .recruit h2 {
    margin: 0 auto 50px auto;
  }
}
.recruit h3 {
  font-size: 18px;
  margin-bottom: 20px;
}
.recruit section.section00 {
  margin-bottom: 55px;
}
@media screen and (max-width: 959px) {
  .recruit section.sec_common_part {
    margin-bottom: 30px;
  }
}
.recruit .rec_div {
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 959px) {
  .recruit .rec_div {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
@media screen and (min-width: 960px) {
  .recruit .rec_div {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.recruit .rec_div.count_0 {
  padding-top: 0;
}
@media screen and (max-width: 959px) {
  .recruit section.sec_common {
    padding: 25px 0;
  }
}
@media screen and (min-width: 960px) {
  .recruit section.sec_common {
    padding: 50px 0;
  }
}
.recruit section.sec_regular {
  margin-bottom: 60px;
}
.recruit section.sec_regular p {
  margin-bottom: 1em;
}
.recruit section.sec_regular a {
  color: #00f !important;
  text-decoration: underline;
}
.recruit section.sec_regular .sub_content {
  position: relative;
  margin-bottom: 2em;
}
.recruit section.sec_regular .sub_content iframe {
  position: aboslute;
  width: 100%;
  max-width: 560px;
}
@media screen and (max-width: 959px) {
  .recruit .text.first_text {
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 960px) {
  .recruit .text.first_text {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 959px) {
  .recruit table.detail th, .recruit table.detail td {
    display: block;
  }
}
.recruit table.detail th {
  text-align: left;
  position: relative;
}
@media screen and (max-width: 959px) {
  .recruit table.detail th {
    width: 100%;
  }
}
@media screen and (min-width: 960px) {
  .recruit table.detail th {
    width: 7em;
  }
  .recruit table.detail th::after {
    content: "：";
    position: absolute;
    top: 0;
    right: 10px;
  }
}
@media screen and (max-width: 959px) {
  .recruit table.detail td {
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 960px) {
  .recruit table.detail td {
    padding-left: .5em;
  }
}
.recruit .tbl_sei_common {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.recruit .tbl_sei_common th, .recruit .tbl_sei_common td {
  text-align: left;
}
@media screen and (max-width: 959px) {
  .recruit .tbl_sei_common th, .recruit .tbl_sei_common td {
    width: 100% !important;
    display: block;
  }
}
@media screen and (min-width: 960px) {
  .recruit .tbl_sei_common th, .recruit .tbl_sei_common td {
    padding-bottom: 1em;
  }
}
@media screen and (max-width: 959px) {
  .recruit .tbl_sei_common th {
    padding-bottom: .5em;
  }
}
@media screen and (max-width: 959px) {
  .recruit .tbl_sei_common td {
    padding-bottom: 1.5em;
  }
}
@media screen and (min-width: 960px) {
  .recruit .tbl_sei_common td {
    padding-left: .5em;
  }
}

/**********************************
Privacy Policy
**********************************/
@media screen and (max-width: 959px) {
  .privacy {
    padding: 40px 10px;
  }
}
@media screen and (min-width: 960px) {
  .privacy {
    padding: 40px 20px;
  }
}
.privacy section {
  max-width: 840px;
  width: 100%;
  margin: 0 auto 45px auto;
}
.privacy h2 {
  color: #000;
}
@media screen and (max-width: 959px) {
  .privacy h2 {
    font-size: 16px;
  }
}
@media screen and (min-width: 960px) {
  .privacy h2 {
    font-size: 18px;
    margin: 0 auto 15px auto;
  }
}
.privacy ul.case {
  padding-left: 1em;
}

/**********************************
Sitemap
**********************************/
.sitemap_main {
  max-width: 840px;
  margin: 0 auto;
}
.sitemap_main ul {
  max-width: 400px;
  margin: 0 auto;
}
.sitemap_main ul li {
  text-align: center;
  margin-bottom: 30px;
}

/**********************************
Breadcrumb
**********************************/
.bread {
  max-width: 1000px;
  margin: 0 auto 20px;
}

.bread_list li {
  display: inline-block;
  vertical-align: middle;
  padding-left: 10px;
  font-size: 12px;
}
.bread_list li * {
  font-size: 12px;
}
.bread_list li:before {
  content: ">";
  margin-right: 5px;
}
.bread_list li:first-child {
  padding-left: 0 !important;
}
.bread_list li:first-child:before {
  content: "";
}
.bread_list li:last-child span {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  padding-bottom: 2px;
}

/**********************************
INDEX PHP
**********************************/
.index-php .contents_index {
  padding: 60px 20px 30px;
  text-align: center;
}
.index-php .contents_index img {
  display: block;
  margin: 0 auto 30px;
}
@media screen and (max-width: 959px) {
  .index-php .contents_index img {
    width: auto;
    height: auto;
    max-width: 400px;
  }
}
@media screen and (min-width: 960px) {
  .index-php .contents_index img {
    max-width: 600px;
  }
}
.index-php .to_top {
  padding: 20px;
}
