@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
/* PC
----------------------------------*/
/* SP
----------------------------------*/
/* sp_nav */
#nav-toggle {
  display: block;
  position: fixed;
  top: 20px;
  right: 40px;
  height: 60px;
  cursor: pointer;
  padding: 12px;
  border-radius: 0 0 0 10px;
  mix-blend-mode: difference;
}
#nav-toggle > div {
  position: relative;
  width: 35px;
}
#nav-toggle > div > p {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 25px;
  font-size: 11px;
  text-align: center;
  color: #fff;
}
#nav-toggle span {
  width: 100%;
  height: 1px;
  left: 0;
  display: block;
  background: #fff;
  position: absolute;
  transition: transform 0.6s ease-in-out, top 0.5s ease;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 10px;
}
#nav-toggle span:nth-child(3) {
  top: 20px;
}
#nav-toggle:hover span:nth-child(1) {
  top: 0px;
}
#nav-toggle:hover span:nth-child(3) {
  top: 20px;
}

.open #nav-toggle span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 15px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
}

#nav-toggle {
  z-index: 1000;
}

#sp-nav {
  color: #302f2e;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  text-align: center;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  overflow-y: scroll;
  background: #fefefe;
}
#sp-nav::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26134/bg-01.png) no-repeat center/cover;
  overflow: hidden;
  opacity: 0.5;
  z-index: -1;
}
#sp-nav::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #8c7401;
  opacity: 0.2;
  z-index: -2;
}
#sp-nav a {
  display: block;
  color: #302f2e;
  text-decoration: none;
  padding: 10px;
  transition: color 0.4s ease;
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.6;
}
#sp-nav a img {
  width: 25px;
  margin-right: 8px;
}
#sp-nav a span {
  display: block;
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #8c7401;
}
#sp-nav a:hover {
  opacity: 0.7;
}
#sp-nav .dropdown {
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 8px;
}
#sp-nav .dropdown .dropdown-li {
  width: 32%;
  margin-bottom: 5px;
  transition: none;
}
#sp-nav .dropdown .dropdown-li.type1 {
  width: 66%;
}
#sp-nav .dropdown .dropdown-li a {
  font-size: 12px;
  letter-spacing: 0;
  padding: 3px 0;
  background: #faf8f5;
  display: blcok;
  color: #302f2e;
  height: 100%;
  line-height: 1.5;
}
#sp-nav ul {
  list-style: none;
}
#sp-nav ul li {
  opacity: 0;
  transform: translateX(200px);
  transition: transform 0.3s ease, opacity 0.2s ease;
}
#sp-nav ul li.accent a {
  background: #fff;
  color: #8c7401;
  border-radius: 5px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}
#sp-nav ul li.accent a b {
  font-size: 1.1rem;
  font-family: "Noto Sans JP", "YakuHanJP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
#sp-nav ul li:nth-child(2) {
  transition-delay: 0.1s;
}
#sp-nav ul li:nth-child(3) {
  transition-delay: 0.2s;
}
#sp-nav ul li:nth-child(4) {
  transition-delay: 0.3s;
}
#sp-nav ul li:nth-child(5) {
  transition-delay: 0.4s;
}
#sp-nav ul li:nth-child(6) {
  transition-delay: 0.5s;
}
#sp-nav ul li:nth-child(7) {
  transition-delay: 0.6s;
}
#sp-nav ul li:nth-child(8) {
  transition-delay: 0.7s;
}
#sp-nav #sp-logo {
  margin-bottom: 20px;
}
#sp-nav #sp-logo img {
  width: 100px;
  animation: r4 30s steps(60) infinite;
}

/* open */
.open {
  overflow: hidden;
}
.open #sp-nav {
  visibility: visible;
  opacity: 1;
}
.open #sp-nav li {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s ease, opacity 0.9s ease;
}

#sp_btn {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  background: #8c7401;
  border-top: 1px solid #faf8f5;
}
#sp_btn ul {
  display: flex;
  justify-content: center;
  max-width: 100%;
  padding-bottom: 15px;
  margin: 0 auto;
  padding: 0px 60px 0px 0px;
}
#sp_btn ul li {
  width: 51.333%;
  border-right: 1px solid #faf8f5;
}
#sp_btn ul li:first-child {
  border-left: 1px solid #faf8f5;
}
#sp_btn ul li a {
  display: block;
  padding: 10px 0;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.6;
}
#sp_btn ul li a span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 896px) {
  body {
    font-size: 1.4rem;
  }
  .bnr li {
    width: 100%;
    float: none;
  }
  .fleft0,
  .fleft1,
  .fleft2,
  .fright0,
  .fright1,
  .fright2 {
    display: block;
    float: none;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
  /* navi */
  #header_nav {
    display: none;
  }
  #flash {
    width: 100%;
    height: auto;
  }
  /* footer_navi */
  .footer_navi {
    display: none;
  }
  /* nav-toggle */
  #nav-toggle {
    top: 10px;
    right: 10px;
  }
  /* footer */
  /* contents */
  .single,
  .single03 {
    max-width: initial;
    width: 95%;
    padding: 60px 0;
  }
  .single0 {
    padding: 60px 0;
  }
  .single02 {
    padding: 60px 0;
    width: calc(100% - 10px);
  }
  .single.type2,
  .single02.type2,
  .single03.type2 {
    padding: 60px 0 0;
  }
  .breadcrumb_box .breadcrumb {
    width: 95%;
  }
  #container {
    z-index: 900;
  }
  .rsingle,
  .lsingle {
    float: none;
    width: 100%;
  }
  /* single */
  .lsingle,
  .rsingle {
    float: none;
    width: 100%;
  }
}
@media screen and (max-width: 639px) {
  html {
    font-size: 3.125vw;
  }
  body {
    font-size: 1.2rem;
  }
  #nav-toggle {
    right: 5px;
    top: 5px;
  }
  .tbl_scroll {
    padding-bottom: 10px;
    overflow: auto;
    white-space: nowrap;
  }
  .tbl_scroll::-webkit-scrollbar {
    height: 5px;
  }
  .tbl_scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .tbl_scroll::-webkit-scrollbar-thumb {
    background: #bcbcbc;
  }
  .tbl_scroll::-webkit-scrollbar-piece {
    background: #eee;
  }
  .tbl_scroll::-webkit-scrollbar-piece:start {
    background: #eee;
  }
  .pcbr {
    display: none;
  }
  /* visual */
  .visual .inner .ballon_parent {
    width: 100%;
  }
  .visual .inner .ballon_parent li img {
    width: 45%;
  }
  /* footer */
  #l-footer {
    text-align: center;
  }
  #l-footer .inner .copyright {
    text-align: center;
    font-size: 0.8rem;
    font-weight: normal;
  }
  .lsingle {
    margin-bottom: 20px;
  }
  /* mtitle */
  /* snip */
  .snip_parent {
    padding: 40px 0;
  }
  .snip_parent .snip figcaption > div.two h3 {
    font-size: 1.6rem;
  }
  .snip_parent .snip figcaption > div.two h3 span {
    font-size: 1.2rem;
  }
  /* ggmap */
  .ggmap {
    position: relative;
    padding-bottom: 46.25%;
    height: 0;
    overflow: hidden;
  }
  .gallery_ul li {
    float: none;
    width: 100%;
    margin: 0 0 15px 0;
  }
  .gallery_ul li:nth-child(3n) {
    margin: 0 0 15px 0;
  }
  .gallery_ul li:last-child {
    margin: 0;
  }
  .gallery_ul li a {
    height: auto;
  }
  /* pickup */
  .pickup .detail_box {
    padding: 10px;
  }
  .pickup .detail_box .bnr_tel {
    width: 95%;
    box-sizing: border-box;
  }
  /* page_title_box */
  .page_title_box .page_title {
    font-size: 2.4rem;
    letter-spacing: 0.1rem;
  }
  /* form */
  .form {
    width: 100%;
  }
  .form dl {
    margin: 10px 0;
  }
  .form dl dt {
    float: none;
    width: 100%;
    padding-top: 15px;
  }
  .form dl dd {
    width: 100%;
    padding-left: 0;
    padding-bottom: 15px;
    padding-top: 10px;
    line-height: 20px;
  }
  .form dl dd:last-child {
    border-bottom: 0px;
    margin-bottom: 0px;
  }
  .form .textarea,
  .form textarea {
    width: 100%;
  }
  .form .textarea02 {
    width: 43.5%;
  }
  .form button {
    width: 95%;
  }
  /* sp_menu */
  .btn__box {
    width: 100%;
    -webkit-perspective: 200px;
    perspective: 200px;
  }
  .btn__box a {
    width: 100%;
  }
  .btn__box:after {
    width: 100%;
    width: 100%;
  }
}/*# sourceMappingURL=smartphone.css.map */