@charset "UTF-8";
/* CSS Document */
/*------------------------------------------------------------

common

------------------------------------------------------------*/
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400; }
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold; }
body {
  font-family: Roboto, 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  counter-reset: item;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal; }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
a {
  text-decoration: none; }

.flex {
  display: flex; }

.left {
  width: 30%; }

.right {
  width: 70%; }

.wht {
  color: #fff; }

.red {
  color: #ff6347; }

.bold {
  font-weight: bold; }

.bg-wht {
  background: #fff; }

.bg-tan {
  background: url("../img/bg1.png"), rgba(245, 236, 220, 0.7);
  background-attachment: fixed;
  background-size: cover; }

.bg-pk {
  background: rgba(255, 230, 233, 0.3); }

.bg-pk2 {
  background: url("../img/bg1.png"), rgba(255, 230, 233, 0.7);
  background-attachment: fixed;
  background-size: cover; }

.bg-order {
  background: url("../img/bg3.png"), rgba(255, 255, 255, 0.1);
  background-attachment: fixed;
  background-size: cover; }

.boxShadow {
  box-shadow: 0 1px 2px #ccc;
  transition: .3s; }

.spbr {
  display: none; }
  @media screen and (max-width: 480px) {
    .spbr {
      display: block; } }

.right-nav {
  position: fixed;
  right: 0;
  top: 40%;
  border-radius: 5px 0 0 5px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 1px 1px 1px #ccc; }
  @media screen and (max-width: 1024px) {
    .right-nav {
      display: none !important; } }

.sns-txt {
  text-align: center;
  padding: 5px 0;
  color: #fff;
  font-size: .8em;
  line-height: 1.3em;
  font-weight: bold;
  background: #855e4f;
  border-radius: 5px 0 0 0; }

.r-btn {
  padding: 10px;
  box-sizing: border-box; }
  .r-btn img {
    max-width: 60px; }
    .r-btn img:hover {
      opacity: .7;
      transition: .3s; }

#page_top {
  width: 100px;
  height: 60px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #f4b3c2;
  opacity: 0.6;
  z-index: 99; }
  @media screen and (max-width: 480px) {
    #page_top {
      right: 10px;
      bottom: 10px;
      width: 60px;
      height: 60px;
      border-radius: 50%; } }
  #page_top a {
    position: relative;
    display: block;
    width: 100px;
    height: 60px;
    text-decoration: none; }
    @media screen and (max-width: 480px) {
      #page_top a {
        width: 60px;
        height: 60px;
        border-radius: 50%; } }
  #page_top a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f102';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -25px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center; }
    @media screen and (max-width: 480px) {
      #page_top a::before {
        content: none; } }
  #page_top a::after {
    content: 'PAGE TOP';
    font-size: 13px;
    color: #fff;
    position: absolute;
    top: 30px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center; }
    @media screen and (max-width: 480px) {
      #page_top a::after {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: '\f102';
        font-size: 25px;
        margin: 0;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%); } }

footer {
  text-align: center;
  background: #855e4f;
  padding: 80px 0 40px 0; }
  @media screen and (max-width: 480px) {
    footer {
      padding: 60px 0 30px 0; } }
  footer small {
    color: #fff; }
    @media screen and (max-width: 480px) {
      footer small {
        font-size: .8em; } }

/*------------------------------------------------------------

contents

------------------------------------------------------------*/
.logo {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%); }
  @media screen and (max-width: 480px) {
    .logo {
      top: 60%;
      width: 100%; } }

.logo-image {
  width: 300px;
  margin-bottom: 20px; }
  @media screen and (max-width: 480px) {
    .logo-image {
      display: none; } }
  .logo-image img {
    width: 100%; }

.logo-txt {
  text-align: center; }
  .logo-txt p {
    font-size: 1.8em;
    font-weight: bold;
    color: #fff;
    line-height: 1.6em;
    text-shadow: 1px 1px 3px #000; }
    @media screen and (max-width: 1024px) {
      .logo-txt p {
        font-size: 1.5em; } }
    @media screen and (max-width: 480px) {
      .logo-txt p {
        font-size: 1em; } }

.topnav {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #855e4f;
  z-index: 99;
  padding: 10px 0;
  transition: .3s; }
  @media screen and (max-width: 1024px) {
    .topnav {
      display: none; } }

.bgColor {
  background: rgba(133, 94, 79, 0.8);
  padding: 0;
  transition: .3s; }

.nav-boader {
  position: absolute;
  width: 100%;
  height: 10px;
  top: 10px;
  left: 0;
  background: url("../img/boader.png");
  background-size: contain;
  background-repeat: repeat-x; }

.nav-boader-bottom {
  position: absolute;
  width: 100%;
  height: 10px;
  bottom: 10px;
  left: 0;
  background: url("../img/boader.png");
  background-size: contain;
  background-repeat: repeat-x; }

.borderNone {
  height: 0;
  background: none;
  transition: .3s; }

.gnav {
  position: relative;
  display: flex;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  box-sizing: border-box; }
  .gnav li a {
    position: relative;
    color: #fff;
    font-weight: bold;
    display: inline-block;
    padding: 40px 20px; }
  .gnav li a:hover {
    color: #f4b3c2;
    transition: .3s; }
  .gnav .pink-circle {
    color: #f4b3c2; }
  .gnav li a:hover::after {
    width: 100%; }
  .gnav li:hover .navsmall {
    opacity: 1; }

@media screen and (max-width: 1024px) {
  li.pc-nav {
    display: none; } }

.logo-btn {
  margin-right: auto; }
  .logo-btn a {
    padding: 10px 30px !important;
    content: none !important; }
  .logo-btn a::after {
    content: none !important; }

.sp-logo {
  display: none; }
  @media screen and (max-width: 1024px) {
    .sp-logo {
      display: block;
      background: #855e4f;
      padding: 20px;
      text-align: center; } }
  .sp-logo img {
    max-width: 200px; }

nav.globalMenuSp {
  display: none; }
  @media screen and (max-width: 1024px) {
    nav.globalMenuSp {
      display: block;
      position: fixed;
      z-index: 100;
      top: 0;
      left: 0;
      /*background: #fff;*/
      color: #000;
      text-align: center;
      transform: translateY(-100%);
      transition: all 0.6s;
      width: 100%;
      height: 100%; }
      nav.globalMenuSp ul {
        background: #fff;
        /*background: -webkit-linear-gradient(-45deg, #fa709a 0%, #fbb0c9 100%);*/
        background-size: cover;
        margin: 0 auto;
        padding: 50px 0;
        width: 100%;
        height: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box; }
        nav.globalMenuSp ul li {
          font-size: 1.1em;
          list-style-type: none;
          padding: 0;
          width: 100%;
          /*border-bottom: 1px dotted #fff;*/ }
          nav.globalMenuSp ul li:last-child {
            padding-bottom: 0;
            border-bottom: none; }
          nav.globalMenuSp ul li a {
            display: block;
            color: #855e4f;
            font-weight: bold;
            padding: 1em 0;
            font-size: 1.1em;
            border-bottom: dotted 1px #ccc; }
            nav.globalMenuSp ul li a:hover {
              background: rgba(245, 245, 245, 0.8); }
      nav.globalMenuSp.nav_active {
        transform: translateY(0%); } }

.navToggle {
  display: none; }
  @media screen and (max-width: 1024px) {
    .navToggle {
      display: block;
      position: fixed;
      right: 5px;
      top: 5px;
      width: 60px;
      height: 60px;
      cursor: pointer;
      z-index: 101;
      text-align: center;
      border-radius: 5px; }
      .navToggle span {
        display: block;
        position: absolute;
        width: 47px;
        border-bottom: solid 4px #f4b3c2;
        -webkit-transition: .35s ease-in-out;
        -moz-transition: .35s ease-in-out;
        transition: .35s ease-in-out;
        left: 6px; }
        .navToggle span:nth-child(1) {
          top: 9px; }
        .navToggle span:nth-child(2) {
          top: 23px; }
        .navToggle span:nth-child(3) {
          top: 37px; }
        .navToggle span:nth-child(4) {
          border: none;
          color: #f4b3c2;
          font-size: 11px;
          font-weight: bold;
          top: 45px; }
      .navToggle.nav_active span {
        box-shadow: none;
        text-shadow: none; }
        .navToggle.nav_active span:nth-child(1) {
          top: 22px;
          left: 6px;
          -webkit-transform: rotate(-45deg);
          -moz-transform: rotate(-45deg);
          transform: rotate(-45deg); }
        .navToggle.nav_active span:nth-child(2), .navToggle.nav_active span:nth-child(3) {
          top: 22px;
          -webkit-transform: rotate(45deg);
          -moz-transform: rotate(45deg);
          transform: rotate(45deg); } }

.sp-sns {
  text-align: center;
  padding-top: 20px;
  font-weight: bold;
  color: #855e4f; }

.sp-sns-flex {
  display: flex;
  justify-content: center;
  padding: 20px 0 !important; }

.sp-sns-box {
  width: 32%;
  box-sizing: border-box; }
  .sp-sns-box img {
    width: 100%;
    max-width: 100px; }
    @media screen and (max-width: 480px) {
      .sp-sns-box img {
        max-width: 80px; } }
    .sp-sns-box img:hover {
      opacity: .8;
      transition: .3s; }
  .sp-sns-box a {
    display: inline-block !important;
    padding: 0 !important;
    border-bottom: none !important; }
    .sp-sns-box a:hover {
      background: none !important; }

.top-image {
  position: relative;
  height: 100vh; }
  @media screen and (max-width: 1024px) {
    .top-image {
      height: 60vh; } }
  @media screen and (max-width: 480px) {
    .top-image {
      height: 50vh; } }

.contents-area {
  padding: 100px 0; }
  @media screen and (max-width: 1024px) {
    .contents-area {
      padding: 50px 10px;
      box-sizing: border-box; } }

.ttl-area {
  text-align: center;
  margin-bottom: 50px; }
  .ttl-area h2 {
    line-height: 1.5em; }
    @media screen and (max-width: 480px) {
      .ttl-area h2 {
        font-size: 1.5em; } }

.ttl-circle {
  position: relative;
  display: inline-block;
  font-size: 2em;
  letter-spacing: 5px;
  text-indent: 5px;
  font-weight: bold;
  color: #855e4f;
  text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
  padding: 30px 0;
  z-index: 2; }
  @media screen and (max-width: 480px) {
    .ttl-circle {
      font-size: 1.5em; } }
  .ttl-circle::before {
    content: "";
    position: absolute;
    background: url(../img/circle.png);
    width: 100%;
    max-width: 2em;
    height: 100%;
    max-height: 2em;
    top: 50%;
    left: -13px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: -1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center; }
    @media screen and (max-width: 480px) {
      .ttl-circle::before {
        max-width: 3em;
        max-height: 3em;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%); } }

.top-txt {
  text-align: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto; }
  @media screen and (max-width: 480px) {
    .top-txt {
      text-align: left; } }
  .top-txt p {
    font-size: 1.1em;
    line-height: 1.6em;
    margin-bottom: 1.5em; }
    @media screen and (max-width: 480px) {
      .top-txt p {
        font-size: 1em;
        margin-bottom: .5em; } }

.shop-name {
  margin-top: 50px; }

.shop-br {
  display: none; }
  @media screen and (max-width: 480px) {
    .shop-br {
      display: block; } }

.txt-box {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 10px;
  background: url("../img/bg2.png"), white;
  background-size: cover;
  box-shadow: 10px 10px 0 #ccc; }
  @media screen and (max-width: 1024px) {
    .txt-box {
      flex-wrap: wrap;
      padding: 20px; } }

.txt-box-inner {
  width: 70%; }
  @media screen and (max-width: 1024px) {
    .txt-box-inner {
      width: 100%; } }
  .txt-box-inner p {
    line-height: 1.8em; }

.txt-box-inner2 {
  width: 25%;
  text-align: center; }
  @media screen and (max-width: 1024px) {
    .txt-box-inner2 {
      display: none; } }
  .txt-box-inner2 img {
    width: 100%;
    max-width: 300px; }

.estimate-margin {
  margin-bottom: 15px; }

.estimate {
  font-size: 1.5em;
  font-weight: bold;
  background: linear-gradient(transparent 70%, #a7d6ff 70%);
  margin-right: 10px; }
  @media screen and (max-width: 480px) {
    .estimate {
      display: block;
      font-size: 1.2em;
      margin-bottom: 20px; } }

.estimate-r {
  display: inline-block;
  font-size: 1.5em;
  color: #fff;
  font-weight: bold;
  background: #ff6347;
  padding: 10px 20px;
  border-radius: 10px;
  margin-left: 20px; }
  @media screen and (max-width: 480px) {
    .estimate-r {
      font-size: 1.2em;
      margin-left: 0; } }

.place {
  padding: 5px 0;
  font-size: 1.5em;
  font-weight: bold;
  text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px, 4px 4px 0 #ccc; }
  @media screen and (max-width: 480px) {
    .place {
      font-size: 1.2em; } }

.info-tel {
  font-size: 2em;
  font-weight: bold;
  text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px, 4px 4px 0 #ccc;
  margin-bottom: 30px; }
  @media screen and (max-width: 480px) {
    .info-tel {
      font-size: 1.5em; } }

.line-ttl {
  text-align: center;
  margin: 10px 0;
  padding: 10px;
  font-size: 1.5em;
  font-weight: bold;
  color: #fff;
  background: #00b900;
  border-radius: 10px;
  box-sizing: border-box; }

.line-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center; }

.line-box {
  padding: 10px;
  box-sizing: border-box; }

.strong {
  font-size: 1.3em;
  font-weight: bold;
  margin: 0 3px; }

.flow {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  margin-bottom: 50px; }
  .flow h3 {
    font-size: 1.4em;
    display: inline-block;
    padding: 10px 20px;
    font-weight: bold;
    color: #fff;
    background: #855e4f;
    border-radius: 50px; }
  .flow p {
    line-height: 1.6em; }

.l-ttl {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center; }

.l-txt {
  width: 100%;
  padding: 30px 20px;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 5px 5px 0 #ccc;
  margin-bottom: 20px;
  box-sizing: border-box; }

.lr-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px; }
  @media screen and (max-width: 480px) {
    .lr-flex {
      flex-wrap: wrap; } }

.l-txt2 {
  width: 70%;
  padding: 30px 20px;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 5px 5px 0 #ccc;
  box-sizing: border-box; }
  @media screen and (max-width: 480px) {
    .l-txt2 {
      width: 100%;
      margin-bottom: 20px; } }

.r-img {
  width: 25%;
  box-sizing: border-box; }
  @media screen and (max-width: 480px) {
    .r-img {
      width: 100%; } }
  .r-img img {
    width: 100%; }

.arrow {
  width: 100%;
  text-align: center;
  font-size: 2em;
  color: #f4b3c2; }

.shop-box {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 50px auto;
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 5px 5px 0 #ccc;
  box-sizing: border-box; }
  @media screen and (max-width: 480px) {
    .shop-box {
      padding: 10px; } }

.shop-info {
  width: 100%; }
  @media screen and (max-width: 480px) {
    .shop-info tr {
      display: flex;
      flex-wrap: wrap; } }
  .shop-info th {
    padding: 20px;
    border-bottom: dotted 1px #ccc;
    font-weight: bold;
    line-height: 1.6em; }
    @media screen and (max-width: 480px) {
      .shop-info th {
        width: 100%;
        padding: 20px 5px;
        border-bottom: none;
        background: #f5f5f5; } }
  .shop-info td {
    padding: 20px;
    border-bottom: dotted 1px #ccc;
    line-height: 1.6em; }
    @media screen and (max-width: 480px) {
      .shop-info td {
        width: 100%;
        padding: 20px 5px; } }

.pickup-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto; }
  @media screen and (max-width: 480px) {
    .pickup-flex {
      flex-wrap: wrap;
      margin-bottom: 50px; } }

@media screen and (max-width: 480px) {
  .flex-reverse {
    flex-direction: column-reverse; } }

.pickup {
  width: 50%;
  padding: 20px;
  box-sizing: border-box; }
  @media screen and (max-width: 480px) {
    .pickup {
      width: 100%; } }
  .pickup h3 {
    font-weight: bold;
    font-size: 1.5em;
    color: #855e4f;
    margin-bottom: 10px;
    padding: 5px;
    border-bottom: dotted 1px #ccc; }
    @media screen and (max-width: 480px) {
      .pickup h3 {
        font-size: 1.2em; } }
  .pickup p {
    line-height: 1.6em; }

.pickup-image {
  width: 50%; }
  @media screen and (max-width: 480px) {
    .pickup-image {
      width: 100%; } }
  .pickup-image img {
    width: 100%; }

.maker-txt {
  text-align: center; }
  .maker-txt p {
    font-size: 1.2em;
    line-height: 1.6em; }

.maker-flex {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box; }
  .maker-flex li {
    width: 20%;
    padding: 10px;
    box-sizing: border-box; }
    @media screen and (max-width: 480px) {
      .maker-flex li {
        width: 50%; } }
    .maker-flex li img {
      width: 100%; }
