@charset "UTF-8";
/* COMPASS
 * ----------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* BASE
 * ----------------------------------------------- */
/* MEDIA QUERIES
 * ----------------------------------------------- */
/* ADDITIONAL RESET
 * ----------------------------------------------- */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body * {
  max-height: 99999em;
}

body img {
  display: block;
  max-height: none;
  width: 100%;
}

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  font: inherit;
  line-height: 1;
}

input:focus,
button:focus,
select:focus {
  outline: 0;
}

/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Turn off scroll bars in IE unless needed */
textarea {
  overflow: auto;
  white-space: pre-line;
}

/* PRINTING
 * ----------------------------------------------- */
@media print {
  body {
    -webkit-print-color-adjust: exact;
  }

  html,
  body {
    margin: 0;
  }

  @page {
    margin: 0;
  }
  @page :left {
    margin: 0;
  }
  @page :right {
    margin: 0;
  }
  @page :first {
    margin-top: 0;
  }
}
/* GENERAL
 * ----------------------------------------------- */
body {
  color: #000;
  font-size: 14px;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  line-height: 2;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  background: url(../img/shared/bg.jpg) repeat center top;
}

.ft-noto {
  font-family: "Noto Serif JP", serif;
}

.ft-gothic {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.font-title {
  font-family: font-common;
}

.fnt-mincho {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-family: 'Noto Serif JP', serif;
}
.fnt-meiryo {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴシックPro", "ＭＳ ゴシック", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.ryumin-pr6n{
	font-family: a-otf-ryumin-pr6n, serif;
	font-weight: 300;
	font-style: normal;
}
.fnt_spartan,.font_spt,.fnt-spartan {
  font-family: "Spartan", sans-serif;
}

.font_rbt {
  font-family: "Roboto", sans-serif;
}

.fnt-roboto {
  font-family: 'Roboto Condensed', sans-serif;
}

.c_ef7a00{
  color: #ef7a00;
}

@font-face {
  font-family: "font-common";
  src: url("../fonts/gennokaku.eot");
  src: url("../fonts/gennokaku.eot?#iefix") format("embedded-opentype"), url("../fonts/gennokaku.woff2") format("woff2"), url("../fonts/gennokaku.woff") format("woff"), url("../fonts/gennokaku.ttf") format("truetype"), url("../fonts/gennokaku.svg#svgFontName") format("svg");
}
/* @font-face {
	font-family: notoserif;
	src: url("../fonts/NotoSerifCJKjp-Regular.otf");
} */
/* HELPERS
 * ----------------------------------------------- */
a {
  color: #000;
  text-decoration: none;
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

.text-left {
  text-align: left;
}

.text-center,.txt-center {
  text-align: center;
}

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

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-bold {
  font-weight: bold;
}

.container {
  width: auto;
  min-width: 320px;
}

/* PARTS
 * ----------------------------------------------- */
/* COMMON HEADER
 * ----------------------------------------------- */
.navOpen {
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.navOpen #pagetop {
  z-index: -1;
}

.header-top {
  width: 100%;
  z-index: 100;
  position: fixed;
  top: 10px;
  right: 10px;
  width: 55px;
  height: 47px;
  color: #ee7a00;
  /* color: #000; */
}

.header-top:after{
  content: '';
  width: 55px;
  height: 47px;
  position: absolute;
  border-left: 1px solid;
  border-bottom: 1px solid;
  bottom: -3px;
  left: -3px;
  opacity: 1;
  transition: .3s;
}

.navOpen .header-top:after{
  opacity: 0;
}

header {
  position: relative;
  background:#e5ddd3;
}
header .logo {
  width: 35%;
  /* padding: 0 0 5%; */
  z-index: 98;
  margin: 0 auto;
}
header .logo_menu{
  filter: invert(1);
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
}
header h1 {
  position: relative;
  font-size: 2.7vw;
  font-weight: normal;
  z-index: 10;
  left: 0;
  right: 0;
  text-align: center;
  bottom: 0;
  color: #000;
  padding: 1% 3.5% 3%;
  word-break: break-all;
  letter-spacing: -1px;
}

.logo_kv {
  width: 160px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 90;
}

.logo_kv_page {
  position: absolute;
  padding-top: 5%;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 90;
  width: 100%;
}
.logo_kv_page a {
  width: 160px;
  display: block;
  margin: auto;
}

.navOpen header .logo {
  opacity: 0;
}
.navOpen .header-top {
  border-bottom: none;
}

/*====================== nav ====================== */
.hamburger {
  /* padding: 6px 5px 6px 55px; */
  padding: 6px 5px 12px 5px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  margin: 0;
  overflow: hidden;
  position: relative;
  position: fixed;
  top: 10px;
  z-index: 100;
  right: 10px;
  color: #fff;
  background: #ee7a00;
  /* background: #000; */
}
/* .navOpen .hamburger{
  color: #fff;
  background: #000;
} */
.hamburger:after {
  font-size: 10px;
  content: "Menu";
  position: absolute;
  /* width: calc(100% - 38px); */
  /* top: 50%; */
  text-align: center;
  /* transform: translateY(-50%); */
  left: 0;
  right: 0;
  bottom: -2px;
  text-align: center;
  transition: all 0.4s ease;
  font-weight: 600;
}
.hamburger:before {
  font-size: 10px;
  content: "Close";
  position: absolute;
  /* width: calc(100% - 38px); */
  /* top: 150%; */
  text-align: center;
  /* transform: translateY(-50%); */
  left: -100%;
  right: 0;
  bottom: -2px;
  font-weight: 600;
  transition: all 0.4s ease;
  opacity: 0;
}

.navOpen .hamburger:after {
  /* top: -50%; */
  left: 100%;
  opacity: 0;
}
.navOpen .hamburger:before {
  /* top: 50%; */
  left: 0;
  opacity: 1;
}

.hamburger-box {
  width: 45px;
  height: 29px;
  display: flex;
  justify-content: center;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
  width: 30px;
  height: 2px;
  background-color: #fff;
  border-radius: 3px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
/* .navOpen .hamburger-inner,
.navOpen .hamburger-inner::before,
.navOpen .hamburger-inner::after{
  background: #fff;
} */
.hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 2px;
  background-color: #fff;
  border-radius: 3px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -8px;
  width: 100%;
}
.hamburger-inner::after {
  bottom: -8px;
}

.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

#menu_toggle {
  padding: 35px 0px 65px;
  background:#d1c4b2;
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  position: fixed;
  top: 0;
  left: 100%;
  right: 0;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  opacity: 0;
  z-index: -1;
}
#menu_toggle .btn1 {
  padding-top: 8%;
}
#menu_toggle .btn2 {
  padding-top: 5%;
}
#menu_toggle .btn2 img {
  border-radius: 5px;
}
#menu_toggle .btn1, #menu_toggle .btn2 {
  margin: 0 15%;
}
#menu_toggle ul {
  padding: 35px 15% 30px;
}
#menu_toggle li {
  /* transform: matrix(1, 0, 0, 1, 0, 25); */
  transform: translateX(100%);
  transition: all ease 0.5s 0.3s;
  opacity: 0;
  /* margin: 3% 0; */
}
#menu_toggle li:nth-child(2) {
  transition: all ease 0.5s 0.35s;
}
#menu_toggle li:nth-child(3) {
  transition: all ease 0.5s 0.4s;
}
#menu_toggle li:nth-child(4) {
  transition: all ease 0.5s 0.45s;
}
#menu_toggle li:nth-child(5) {
  transition: all ease 0.5s 0.5s;
}
#menu_toggle li:nth-child(6) {
  transition: all ease 0.5s 0.55s;
}
#menu_toggle li:nth-child(7) {
  transition: all ease 0.5s 0.6s;
}
#menu_toggle li:nth-child(8) {
  transition: all ease 0.5s 0.65s;
}
#menu_toggle li:nth-child(9) {
  transition: all ease 0.5s 0.7s;
}
#menu_toggle li:nth-child(10) {
  transition: all ease 0.5s 0.75s;
}
#menu_toggle li:nth-child(11) {
  transition: all ease 0.5s 0.8s;
}
#menu_toggle li:nth-child(12) {
  transition: all ease 0.5s 0.85s;
}
#menu_toggle li:nth-child(13) {
  transition: all ease 0.5s 0.9s;
}
#menu_toggle li:nth-child(14) {
  transition: all ease 0.5s 0.95s;
}
#menu_toggle li a {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #000;
  position: relative;
  display: block;
  padding: 3% 5%;
  box-sizing: border-box;
  text-align: center;
}
#menu_toggle li a span{
  position: relative;
  display: inline-block;
  color: #938676;
}
#menu_toggle li a span:after{
  content: '';
  border-top: 1px solid #000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
}
/* #menu_toggle li.active{
  background: #FDFDFD;
} */
#menu_toggle li.active a span:after{
  opacity: 1;
}
#menu_toggle .btn_hd{
  text-align: center;
  border: 1px solid #000;
  margin-top: 10%;
}
#menu_toggle li.btn-web {
  background: url(../img/shared/bg_common.jpg) repeat;
  margin: 20px auto 0 !important;
  position: relative;
  width: 280px;
  box-sizing: border-box;
  border: 1px solid #dcd3c5;
  padding: 7px 0;
}
#menu_toggle li.btn-web .icon-angle-right:before {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: #dcd3c5;
  padding: 5px;
  border-radius: 50%;
}
#menu_toggle.is-btn {
  background: #3A4F5A;
}

.navOpen #menu_toggle {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
  z-index: 99;
  left: 0;
  overflow: auto;
}
.navOpen #menu_toggle li {
  opacity: 1;
  /* transform: matrix(1, 0, 0, 1, 0, 0); */
  transform:translateX(0);
}

header .menu_toggle.nav-style01 {
  top: 0px;
  right: -100%;
  display: block;
  transition: all 0.5s ease 0s;
}

.navOpen .menu_toggle.nav-style01 {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  right: 0;
}

/* COMMON FOOTER
 * ----------------------------------------------- */
footer {
  background: url(../img/shared/bg_ft1.jpg) repeat;
  color: #fff;
  padding-bottom: 49px;
}
footer .btn {
  margin: 8% 10% 8%;
}
footer a {
  color: #fff;
}
footer #logo-ft {
  margin: auto;
  text-align: center;
  padding-top: 8%;
  padding-bottom: 3%;
}
footer .tel_ft{
  padding-bottom: 3%;
}
footer .vcard {
  margin: 0 5%;
  padding: 10px 0 20px;
}
footer .vcard .title {
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  padding-bottom: 5px;
  border-bottom: 1px solid #d1c4b2;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
footer .vcard dl {
  padding: 5px 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
footer .vcard dl dt {
  width: 25%;
}
footer .vcard dl dd {
  width: 75%;
}
footer .sns-box {
  background: url(../img/shared/bg_ft.jpg) repeat;
  color: #fff;
  text-align: center;
  padding: 20px 0 0 0;
}
footer .sns-box span {
  display: block;
}
footer .sns-box span a {
  color: #fff;
}
footer #socialbuttons {
  text-align: center;
  line-height: 10px;
  display: flex;
  justify-content: center;
  /* margin-bottom: 10px; */
}
footer #socialbuttons > * {
  display: inline-block;
  margin: 0 2px;
  padding: 4px 0;
}
footer #socialbuttons .social-facebook {
  max-width: 98px;
  display: flex !important;
  justify-content: center;
}
footer address {
  background: url(../img/shared/line_ft.jpg) repeat center top;
  line-height: 20px;
  padding: 10px 0;
}

#pagetop {
  cursor: pointer;
  opacity: 0;
  background-repeat: no-repeat;
  background-position: center;
  position: fixed;
  right: 0;
  bottom: 10%;
  visibility: hidden;
  z-index: 999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  -moz-transition: opacity 0.3s ease, visibility 0.3s ease;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  width: 45px;
}
#pagetop.visible {
  opacity: 1;
  visibility: visible;
}

.btn-fix #fixed-btn{
  opacity: 1;
  visibility: visible;
}

#fixed-btn {
  position: fixed;
  z-index: 98;
  width: 100%;
  bottom: 0;
  color: #FFF;
  background: #000;
  /* height: 50px; */
  transition: all 0.4s ease;
  box-sizing: border-box;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  opacity: 0;
  visibility: hidden;
}
/* #fixed-btn::before {
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 24%;
  content: "";
  background: #FFF;
  opacity: 0.3;
}
#fixed-btn::after {
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 24%;
  content: "";
  background: #FFF;
  opacity: 0.3;
} */
#fixed-btn ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
#fixed-btn ul li:nth-child(odd) {
  width: 20%;
  
}
#fixed-btn ul li:nth-child(odd) span{
  padding-left: 5vw;
}
#fixed-btn ul li:nth-child(2){
  width: 60%;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
/* #fixed-btn ul li {
  width: 50%;
  height: 100%;
  position: relative;
} */
/* #fixed-btn ul li:nth-child(1) {
  border-right:1px solid rgba(255, 255, 255, 0.3);
}
#fixed-btn ul li:nth-child(1) a span{
  position: relative;
} */
/* #fixed-btn ul li:nth-child(1) a span::before{
  content: '';
  background: url(../img/shared/icon_tel.png) no-repeat center top/100%;
  width: 20px;
  height: 20px;
  position: absolute;
  left: -25px;
  top: -3px;
  filter: invert(1);
} */
#fixed-btn ul li a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  position: relative;
  line-height: 1.4;
  text-align: center;
  box-sizing: border-box;
  padding: 15px 0;
}
#fixed-btn ul li a.icon-location {
  padding-left: 25px;
}
#fixed-btn .icon-phone:before, #fixed-btn .icon-calendar:before, #fixed-btn .icon-location:before {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  background: url(../img/index/bg_blog.jpg) no-repeat;
  padding: 4px 10px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* #fixed-btn ul li a{
  padding-left: 0;
  padding-top: 20px;
} */
/* #fixed-btn ul li:nth-child(odd) a{
  padding-left: 0;
  padding-top: 20px;
} */
#fixed-btn .icon-phone:before,#fixed-btn .icon-location:before{
  left: 8px;
  top: 12px;
  transform: translateY(0);
  /* text-align: center;
  width: 100%;
  transform: translateY(0);
  margin: 0;
  font-size: 20px; */
}
/* @media only screen and (max-width: 374px) {
  #fixed-btn .icon-phone:before, #fixed-btn .icon-calendar:before, #fixed-btn .icon-location:before {
    left: 10px;
  }
} */
.txt-common {
  margin: 0 5% 8%;
  text-align: justify;
}

.text-common {
  margin: 0 5%;
  text-align: justify;
}

.top-blog {
  padding: 25px 0 5px;
  background: url(../img/index/bg_blog.jpg) repeat;
}
.top-blog #feed {
  padding: 10px 20px 30px;
  max-width: 400px;
  margin: auto;
}
.top-blog #feed .row {
  padding: 5px 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-blog #feed .row dl {
  display: flex;
  width: 100%;
  color: #000;
}
.top-blog #feed .row dl dt {
  width: 32%;
  position: relative;
  box-sizing: border-box;
  padding-left: 3%;
}
.top-blog #feed .row dl dt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  background: #c00f01;
  width: 5px;
  height: 5px;
  transform: translateY(-50%);
}
.top-blog #feed .row dl dd {
  width: 68%;
  font-weight: bold;
}
.top-blog #feed .row dl dd a {
  color: #000;
}

.btn-common {
  display: flex;
  justify-content: center;
}
.btn-common a,
.btn-common span {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFFFB4;
  padding: 10px 40px;
  position: relative;
  font-size: 20px;
  color: #008C96;
  letter-spacing: -1px;
  font-family: font-common;
}
.btn-common.is-line a::before,
.btn-common.is-line span::before {
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  bottom: -5px;
  right: -5px;
}
.btn-common.is-blue {
  justify-content: flex-end;
  position: relative;
  margin-top: -15px;
}
.btn-common.is-blue a {
  padding: 10px 30px;
  background: #4BAFB6;
  color: #FFF;
  font-family: font-common;
}
.btn-common.is-orange {
  justify-content: flex-end;
  position: relative;
  margin-top: -15px;
}
.btn-common.is-orange a {
  padding: 10px 30px;
  background: #FFA857;
  color: #FFF;
  font-family: font-common;
}

.slick-next,.slick-next1{

  right: 0;
}
.slick-prev,.slick-prev1{
  left: 0;
}
.slick-next,.slick-prev,
.slick-next1,.slick-prev1{
  width: 40px;
  height: 40px;
  z-index: 2;
  font-size: 10px;
  background-size: 100% 100%;
  position: absolute;
  bottom:0;
  text-indent: -999px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}
.slick-next::before,
.slick-prev::before,
.slick-next1::before,
.slick-prev1::before{
  content: '';
  position: absolute;
  border-top: 1px solid;
  border-right: 1px solid;
  border-color: #000;
  top: 50%;
  left: 50%;
  transform: translate(-70%,-50%) rotate(45deg);
  width: 12px;
  height: 12px;
}
.slick-prev::before,
.slick-prev1::before{
   transform: translate(-30%,-50%) rotate(-135deg);
}
/* .slick-prev {
  left: 5%;
} */
/* .slick-prev.slick-arrow::before {
  content: "";
} */

/* .slick-next {
  right: 5%;
} */

.slick-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex !important;
  justify-content: center;
  width: 100%;
}
.slick-dots li {
  margin: 0 15px;
  width: 12px;
  height: 12px;
  background: #000;
  color: transparent;
  position: relative;
  border: none;
  border-radius: 50%;
}
.slick-dots li button {
  display: block;
  color: transparent;
}
.slick-dots li button::before{
  display: none;
}
.slick-dots li.slick-active {
  background: #b33514;
}

.btn-number .slick-dots li button {
  text-indent: inherit;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  color: #bcbcbc;
  background: none;
  font-weight: bold;
  width: 20px;
  height: 20px;
}
.btn-number .slick-dots li.slick-active button {
  color: #b33514;
}

.toggle .toggle-link {
  position: relative;
  cursor: pointer;
  padding-bottom: 5%;
}
/* .toggle .toggle-link:after {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  position: absolute;
  line-height: 20px;
  top: 50%;
  right: 4%;
  margin-top: -10px;
  color: currentColor;
  content: "";
  font-size: 13px;
} */
.btn-acc_bt{
  position: relative;
  height: 40px;
}
.toggle .toggle-link:after,.btn-acc_bt::after{
  content: 'v';
  border: 1px solid rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 25px;
  height:25px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
 .btn-acc_bt::after{
  left: 49%;
}
.toggle.active .toggle-link:after{
  transform: translateX(-50%) scale(-1);
}
.btn-acc_bt.open::after {
  transform:scale(-1);
  left: 45%;
}
.toggle .toggle-main {
  display: none;
}
.toggle.active .toggle-main {
  display: block;
}


.map-gg {
  width: 100%;
  height: 480px;
}
.map-gg iframe {
  width: 100%;
  height: 100%;
}

.btn-box-info {
  margin: 0 5%;
  padding: 35px 0 10px;
}
.btn-box-info li {
  margin-bottom: 20px;
  background: url(../img/access/bg_btn.jpg) no-repeat;
  background-size: cover;
}
.btn-box-info li a, .btn-box-info li span {
  padding: 8px 25px;
  display: block;
  color: #000;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.list-common dl {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
}
.list-common dl dd {
  text-align: right;
}

@font-face {
  font-family: "fontello";
  src: url("../fonts/fontello.eot");
  src: url("../fonts/fontello.eot#iefix") format("embedded-opentype"), url("../fonts/fontello.woff2") format("woff2"), url("../fonts/fontello.woff") format("woff"), url("../fonts/fontello.ttf") format("truetype"), url("../fonts/fontello.svg#fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: 0.2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-videocam:before {
  content: "";
}

.icon-th-list:before {
  content: "";
}

.icon-ok-circled:before {
  content: "";
}

.icon-mail:before {
  content: "";
}

.icon-heart:before {
  content: "";
}

.icon-help-circled:before {
  content: "";
}

.icon-info-circled:before {
  content: "";
}

.icon-attach:before {
  content: "";
}

.icon-user:before {
  content: "";
}

.icon-lock:before {
  content: "";
}

.icon-picture:before {
  content: "";
}

.icon-camera:before {
  content: "";
}

.icon-camera-alt:before {
  content: "";
}

.icon-edit:before {
  content: "";
}

.icon-attention:before {
  content: "";
}

.icon-ok:before {
  content: "";
}

.icon-cancel:before {
  content: "";
}

.icon-plus:before {
  content: "";
}

.icon-minus:before {
  content: "";
}

.icon-glass:before {
  content: "";
}

.icon-tag:before {
  content: "";
}

.icon-bookmark:before {
  content: "";
}

.icon-flag:before {
  content: "";
}

.icon-thumbs-up:before {
  content: "";
}

.icon-forward:before {
  content: "";
}

.icon-pencil:before {
  content: "";
}

.icon-print:before {
  content: "";
}

.icon-comment:before {
  content: "";
}

.icon-chat:before {
  content: "";
}

.icon-bell:before {
  content: "";
}

.icon-location:before {
  content: "";
}

.icon-doc:before {
  content: "";
}

.icon-phone:before {
  content: "";
}

.icon-cog:before {
  content: "";
}

.icon-basket:before {
  content: "";
}

.icon-calendar:before {
  content: "";
}

.icon-clock:before {
  content: "";
}

.icon-down-dir:before {
  content: "";
}

.icon-up-dir:before {
  content: "";
}

.icon-left-dir:before {
  content: "";
}

.icon-right-dir:before {
  content: "";
}

.icon-down-open:before {
  content: "";
}

.icon-left-open:before {
  content: "";
}

.icon-right-open:before {
  content: "";
}

.icon-up-open:before {
  content: "";
}

.icon-right-hand:before {
  content: "";
}

.icon-left-hand:before {
  content: "";
}

.icon-up-hand:before {
  content: "";
}

.icon-award:before {
  content: "";
}

.icon-globe:before {
  content: "";
}

.icon-cloud:before {
  content: "";
}

.icon-leaf:before {
  content: "";
}

.icon-scissors:before {
  content: "";
}

.icon-briefcase:before {
  content: "";
}

.icon-credit-card:before {
  content: "";
}

.icon-road:before {
  content: "";
}

.icon-book:before {
  content: "";
}

.icon-asterisk:before {
  content: "";
}

.icon-gift:before {
  content: "";
}

.icon-key:before {
  content: "";
}

.icon-truck:before {
  content: "";
}

.icon-home:before {
  content: "";
}

.icon-align-left:before {
  content: "";
}

.icon-attention-circled:before {
  content: "";
}

.icon-resize-horizontal:before {
  content: "";
}

.icon-align-justify:before {
  content: "";
}

.icon-down-hand:before {
  content: "";
}

.icon-link-ext:before {
  content: "";
}

.icon-bookmark-empty:before {
  content: "";
}

.icon-phone-squared:before {
  content: "";
}

.icon-twitter:before {
  content: "";
}

.icon-facebook:before {
  content: "";
}

.icon-rss:before {
  content: "";
}

.icon-left-circled:before {
  content: "";
}

.icon-right-circled:before {
  content: "";
}

.icon-up-circled:before {
  content: "";
}

.icon-down-circled:before {
  content: "";
}

.icon-menu:before {
  content: "";
}

.icon-list-bullet:before {
  content: "";
}

.icon-table:before {
  content: "";
}

.icon-gplus:before {
  content: "";
}

.icon-mail-alt:before {
  content: "";
}

.icon-comment-empty:before {
  content: "";
}

.icon-chat-empty:before {
  content: "";
}

.icon-lightbulb:before {
  content: "";
}

.icon-suitcase:before {
  content: "";
}

.icon-bell-alt:before {
  content: "";
}

.icon-coffee:before {
  content: "";
}

.icon-food:before {
  content: "";
}

.icon-doc-text:before {
  content: "";
}

.icon-building:before {
  content: "";
}

.icon-hospital:before {
  content: "";
}

.icon-beer:before {
  content: "";
}

.icon-angle-double-left:before {
  content: "";
}

.icon-angle-double-right:before {
  content: "";
}

.icon-angle-double-up:before {
  content: "";
}

.icon-angle-double-down:before {
  content: "";
}

.icon-angle-left:before {
  content: "";
}

.icon-angle-right:before {
  content: "";
}

.icon-angle-up:before {
  content: "";
}

.icon-angle-down:before {
  content: "";
}

.icon-desktop:before {
  content: "";
}

.icon-laptop:before {
  content: "";
}

.icon-tablet:before {
  content: "";
}

.icon-reply:before {
  content: "";
}

.icon-folder-empty:before {
  content: "";
}

.icon-smile:before {
  content: "";
}

.icon-frown:before {
  content: "";
}

.icon-meh:before {
  content: "";
}

.icon-flag-empty:before {
  content: "";
}

.icon-reply-all:before {
  content: "";
}

.icon-direction:before {
  content: "";
}

.icon-calendar-empty:before {
  content: "";
}

.icon-angle-circled-left:before {
  content: "";
}

.icon-angle-circled-right:before {
  content: "";
}

.icon-angle-circled-up:before {
  content: "";
}

.icon-angle-circled-down:before {
  content: "";
}

.icon-ellipsis-vert:before {
  content: "";
}

.icon-link-ext-alt:before {
  content: "";
}

.icon-euro:before {
  content: "";
}

.icon-dollar:before {
  content: "";
}

.icon-yen:before {
  content: "";
}

.icon-youtube-squared:before {
  content: "";
}

.icon-youtube:before {
  content: "";
}

.icon-youtube-play:before {
  content: "";
}

.icon-instagram:before {
  content: "";
}

.icon-tumblr:before {
  content: "";
}

.icon-tumblr-squared:before {
  content: "";
}

.icon-down:before {
  content: "";
}

.icon-up:before {
  content: "";
}

.icon-left:before {
  content: "";
}

.icon-right:before {
  content: "";
}

.icon-female:before {
  content: "";
}

.icon-male:before {
  content: "";
}

.icon-moon:before {
  content: "";
}

.icon-google:before {
  content: "";
}

.icon-delicious:before {
  content: "";
}

.icon-fax:before {
  content: "";
}

.icon-building-filled:before {
  content: "";
}

.icon-child:before {
  content: "";
}

.icon-cab:before {
  content: "";
}

.icon-taxi:before {
  content: "";
}

.icon-file-pdf:before {
  content: "";
}

.icon-empire:before {
  content: "";
}

.icon-wechat:before {
  content: "";
}

.icon-share:before {
  content: "";
}

.icon-wifi:before {
  content: "";
}

.icon-copyright:before {
  content: "";
}

.icon-birthday:before {
  content: "";
}

.icon-bicycle:before {
  content: "";
}

.icon-bus:before {
  content: "";
}

.icon-diamond:before {
  content: "";
}

.icon-ship:before {
  content: "";
}

.icon-motorcycle:before {
  content: "";
}

.icon-neuter:before {
  content: "";
}

.icon-train:before {
  content: "";
}

.icon-subway:before {
  content: "";
}

.icon-get-pocket:before {
  content: "";
}

.icon-television:before {
  content: "";
}

.icon-map-pin:before {
  content: "";
}

.icon-shopping-bag:before {
  content: "";
}

.icon-shopping-basket:before {
  content: "";
}

.icon-envira:before {
  content: "";
}

.icon-volume-control-phone:before {
  content: "";
}

.icon-first-order:before {
  content: "";
}

.icon-snowflake-o:before {
  content: "";
}

.icon-twitter-squared:before {
  content: "";
}

.icon-facebook-squared:before {
  content: "";
}

.c_bb3322{
  color: #bb3322;
}
/* bg_parallax */
.bg_parallax {
  position: relative;
  padding-top: 100%;
}

.bg_parallax .info2 {
  bottom: 0;
  top: auto;
}

.img_parallax {
  clip: rect(0, auto, auto, 0);
  margin-bottom: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.img_parallax img {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  object-fit: cover;
  z-index: 0;
  transform: translateZ(0);
}

/* PARTS
 * ----------------------------------------------- */
/* PAGES
 * ----------------------------------------------- */
.txt {
  padding-left: 3.5%;
  padding-right: 3.5%;
  text-align: justify;
}

.img_shadow {
  box-shadow: 4px 4px 6px 5px rgba(0, 0, 0, 0.3);
}

.btn {
  margin: 0 10%;
}

#key {
  position: relative;
  line-height: 0;
}

.ltr {
  position: relative;
  display: inline-block;
}

.ltr:before {
  background: #f6f0e8;
  height: 0;
  position: absolute;
  top: 0;
  right: 100%;
  left: 0;
  z-index: 2;
  content: "";
  -webkit-transition: height 0.2s cubic-bezier(0.25, 0.1, 0.25, 1), right 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.2s, left 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) 1.3s;
  transition: height 0.2s cubic-bezier(0.25, 0.1, 0.25, 1), right 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.2s, left 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) 1.3s;
}

.ltr[style*="visible"]:before {
  height: 100%;
  right: 0;
  left: 100%;
}

.ltr[style*="visible"]>* {
  opacity: 1 !important;
}

.ltr>* {
  opacity: 0 !important;
  width: 100%;
  -webkit-transition: opacity 0.2s cubic-bezier(0.25, 0.1, 0.25, 1) 1.3s !important;
  transition: opacity 0.2s cubic-bezier(0.25, 0.1, 0.25, 1) 1.3s !important;
}
.oshirase02{
	width: 96%;
	background:#FFFFFF;
	color: #3A230B;
	margin: 20px auto 0 auto;
	padding: 10px 0;
}
.oshirase02 .waku{
	width: 98%;
	border: solid 1px #3A230B;
	margin: 0 auto;
}
.oshirase02 .waku .tit{
	text-align: center;
	font-size: 23px;
	font-family:"游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E";
	margin-top: 20px;
	letter-spacing: 1px;
}
.oshirase02 .waku .txtx{
	padding: 0 10px;
	line-height: 24px;
	margin: 15px 0 20px 0;
	font-size: 15px;
}
.oshirase02 .waku hr{
	margin: 0 15px;	
	background-color: #4F2D13;	
	border: none;
	height: 1px;
}
.oshirase02 .botan a{
	width: 96%;
	margin: 30px auto;
	padding: 15px 0;
	display: block;
	color: #fff;
text-shadow: 0px 0px 5px rgba(146,119,83,0.5);	
	text-align: center;
	text-decoration: none;
	font-size: 18px;
	background: #D3680B;
	border-bottom: 4px #3E1500 solid;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	box-sizing:border-box;
	font-weight: bold;
}