/*************************************************
common-style
*************************************************/
* {
  box-sizing: border-box;
}

.ie_ObjectFit {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  font-family: "Zen Kaku Gothic Antique", YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  min-height: 100dvh;
}
@media screen and (max-width: 767px) {
  body {
    background-color: #f0c2b9;
  }
}

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

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

.container {
  position: relative;
  width: 100%;
  max-width: 39rem;
  margin: 0 auto;
  box-shadow: 0 0 8px rgba(144, 80, 49, 0.44);
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .container {
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 50rem;
    margin: 0 auto;
  }
}

.inner {
  width: 35rem;
  margin: 0 auto;
}

.img-box img {
  width: 100%;
}

img {
  vertical-align: middle;
}

p,
dt,
dd,
li {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
  color: #391706;
}

.u-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}

.u-pc-inlineblock {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .u-pc-inlineblock {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}

.u-sp-inlineblock {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp-inlineblock {
    display: inline-block;
  }
}

.u-sp-inline {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp-inline {
    display: inline;
  }
}

.u-align--center {
  text-align: center;
}

/*************************************************
header
*************************************************/
header {
  display: none;
  position: fixed;
  width: 100%;
  max-width: 50rem;
  padding: 2.2rem 0;
  background-color: #fff;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  header {
    display: block;
  }
}
header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  width: 7.5rem;
}

.hamberger-wrap {
  width: 4rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hamberger-wrap.is-ham-open .hambager .c-line:first-of-type {
  animation: line1-open var(--navTransition) forwards;
}
@media screen and (max-width: 767px) {
  .hamberger-wrap.is-ham-open .hambager .c-line:first-of-type {
    width: 3rem;
    left: 1rem;
  }
}
.hamberger-wrap.is-ham-open .hambager .c-line:nth-of-type(2) {
  animation: line2-open var(--navTransition) forwards;
}
.hamberger-wrap.is-ham-open .hambager .c-line:last-of-type {
  width: 4rem;
  animation: line3-open var(--navTransition) forwards;
}
@media screen and (max-width: 767px) {
  .hamberger-wrap.is-ham-open .hambager .c-line:last-of-type {
    width: 3rem;
  }
}

.hambager-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

:root {
  --navTransition: 0.4s;
}

.hambager {
  width: 4rem;
  height: 2rem;
  position: relative;
  display: block;
  cursor: pointer;
}
.hambager .c-line {
  height: 3px;
  background-color: #eeb9af;
  border-radius: 100vmax;
  position: absolute;
  left: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .hambager .c-line {
    width: 100%;
    background-color: #eeb9af;
  }
}
.hambager .c-line:first-of-type {
  top: 0;
  animation: line1 var(--navTransition) forwards;
}
.hambager .c-line:nth-of-type(2) {
  top: 50%;
  left: auto;
  animation: line2 var(--navTransition) forwards;
}
.hambager .c-line:last-of-type {
  width: 2.5rem;
  top: 100%;
  left: auto;
  animation: line3 var(--navTransition) forwards;
}

@keyframes line1 {
  0% {
    top: 50%;
    transform: rotate(45deg);
  }
  50% {
    transform: rotate(0);
    top: 50%;
  }
  100% {
    transform: rotate(0);
    top: 0;
  }
}
@keyframes line1-open {
  0% {
    transform: rotate(0);
    top: 0;
  }
  50% {
    transform: rotate(0);
    top: 50%;
  }
  100% {
    top: 50%;
    transform: rotate(45deg);
  }
}
@keyframes line2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes line2-open {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes line3 {
  0% {
    top: 50%;
    transform: rotate(-45deg);
  }
  50% {
    transform: rotate(0);
    top: 50%;
  }
  100% {
    transform: rotate(0);
    top: 100%;
  }
}
@keyframes line3-open {
  0% {
    transform: rotate(0);
    top: 100%;
  }
  50% {
    transform: rotate(0);
    top: 50%;
  }
  100% {
    top: 50%;
    transform: rotate(-45deg);
  }
}
.drawer-menu {
  position: fixed;
  top: 5rem;
  right: 0;
  width: 100%;
  height: 100svh;
  padding-top: 5rem;
  transform: translateX(100%);
  background: url(images/bg.png) no-repeat right/cover;
  background-color: #fff;
  overflow: scroll;
  z-index: 998;
  transition: all 0.3s;
}
.drawer-menu.is-drawermenu-open {
  transform: translateX(0);
}
.drawer-menu .inner {
  max-width: 33rem;
}
.drawer-menu .nav-area {
  margin-bottom: 4rem;
}
.drawer-menu .nav-area nav ul li a {
  position: relative;
  display: block;
  width: 100%;
  font-family: "bokutoh-ruika", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: #fff;
  padding: 1.2rem 0;
  text-shadow: 0 1px 4px rgba(144, 80, 49, 0.45);
}
.drawer-menu .nav-area nav ul li a::before {
  content: "";
  width: 8px;
  aspect-ratio: 1/1.73;
  background: url(images/icon-arrow.svg) no-repeat center/contain;
  filter: drop-shadow(0 1px 4px rgba(144, 80, 49, 0.45));
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 19rem;
}
.drawer-menu .contact .img-box {
  width: 15rem;
  margin: 0 auto 2rem;
}
.drawer-menu .contact .img-box img {
  filter: drop-shadow(6px 4px 4px rgba(0, 0, 0, 0.14));
}
.drawer-menu .contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 23rem;
  aspect-ratio: 1/0.2;
  font-size: 1.6rem;
  font-weight: 900;
  color: #e37f6c;
  background-color: #fff;
  border-radius: 100vmax;
  margin: 0 auto;
  box-shadow: 0 1px 4px rgba(144, 80, 49, 0.45);
}

/*************************************************
footer
*************************************************/
footer {
  position: sticky;
  top: 100%;
  padding: 2rem 0 1.5rem;
  background-color: #f0c2b9;
}
footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
footer p {
  color: #fff;
}

/*************************************************
top
*************************************************/
h2 {
  width: 100%;
  margin-bottom: 5rem;
}
h2 img {
  width: 100%;
}

.kv {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .kv {
    padding-top: 7rem;
  }
}
.kv .img-box {
  width: 100%;
}

#about {
  margin-top: -1px;
  padding: 3rem 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  #about {
    margin-top: -71px;
    padding: 10rem 0 3rem;
  }
}
#about p {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
#about p span {
  background: linear-gradient(transparent 60%, #fff8c7 40%);
}

@media screen and (max-width: 767px) {
  #point {
    margin-top: -7rem;
    padding-top: 7rem;
  }
}
#point h2 {
  margin-bottom: 0;
}
#point .bg-wrap {
  padding: 5rem 0;
  background-color: #eeb9af;
}
#point p {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 2;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
  margin-bottom: 4rem;
}
#point .box {
  box-shadow: 0 4px 6px rgba(227, 127, 108, 0.7);
  margin-bottom: 2rem;
  border-radius: 1rem;
}
#point .box:last-of-type {
  margin-bottom: 0;
}

#product {
  position: relative;
}
@media screen and (max-width: 767px) {
  #product {
    margin-top: -7rem;
    padding-top: 7rem;
  }
}
#product h2 {
  margin-bottom: 0;
}
#product .bg-wrap {
  background: linear-gradient(180deg, rgba(238, 185, 175, 0.3) 0%, rgba(255, 232, 228, 0.26) 120%);
  background-color: #fff;
  padding: 6rem 0 8rem;
}
#product dl {
  margin-bottom: 2.4rem;
}
#product dl:first-of-type dd, #product dl:nth-of-type(2) dd, #product dl:last-of-type dd {
  font-size: 1.6rem;
}
#product dl dt {
  width: 8rem;
  font-weight: 700;
  color: #905031;
  text-align: center;
  background-color: #fff8c7;
  margin-bottom: 1.5rem;
}
#product dl dd {
  margin-bottom: 2rem;
}
#product dl dd:last-of-type {
  margin-bottom: 0;
}
#product dl dd span {
  display: block;
  font-weight: 700;
  margin-bottom: 1rem;
}
#product dl dd .bunsekitchi {
  max-width: 30.8rem;
}
#product dl dd .kyujihouhou {
  margin-bottom: 2rem;
}
#product dl dd ul li {
  position: relative;
  line-height: 1.5;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
#product dl dd ul li:last-of-type {
  margin-bottom: 0;
}
#product dl dd ul li::before {
  position: absolute;
  top: 7px;
  left: 0;
  content: "";
  width: 1rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #391706;
}
#product .dog {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 17.4rem;
}

#contact {
  background-color: #fff;
  padding-bottom: 5rem;
}
#contact p {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 3.5rem;
}
#contact .btn-wrap {
  width: 25rem;
  margin: 0 auto;
}
#contact .btn-wrap a {
  width: 100%;
  aspect-ratio: 1/0.2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  background-color: #e37f6c;
  transition: all 0.3s;
}
#contact .btn-wrap a:hover {
  scale: 1.1;
}

.bg_pc {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: url(images/bg.png) no-repeat top right/cover;
  background-color: #fff;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .bg_pc {
    display: none;
  }
}
.bg_pc .bg-inner {
  position: relative;
  width: 90%;
  max-width: 120rem;
  height: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .bg_pc .bg-inner {
    max-width: 70rem;
  }
}
.bg_pc .logo {
  position: absolute;
  top: 7.7777777778vw;
  left: 0;
  width: 23rem;
}
@media screen and (max-width: 1023px) {
  .bg_pc .logo {
    top: 5rem;
  }
}
.bg_pc .navigation {
  position: absolute;
  bottom: 1.3888888889vw;
  left: 0;
}
@media screen and (max-width: 1023px) {
  .bg_pc .navigation {
    bottom: auto;
    top: 23rem;
  }
}
.bg_pc .navigation ul {
  margin-bottom: 4rem;
}
@media screen and (max-width: 1023px) {
  .bg_pc .navigation ul {
    margin-bottom: 2rem;
  }
}
.bg_pc .navigation ul li a {
  position: relative;
  display: block;
  width: 100%;
  font-family: "bokutoh-ruika", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: #fff;
  padding: 1.2rem 0;
  text-shadow: 0 1px 4px rgba(144, 80, 49, 0.45);
}
.bg_pc .navigation ul li a::before {
  content: "";
  width: 8px;
  aspect-ratio: 1/1.73;
  background: url(images/icon-arrow.svg) no-repeat center/contain;
  filter: drop-shadow(0 1px 4px rgba(144, 80, 49, 0.45));
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 17rem;
}
.bg_pc .navigation p {
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .bg_pc .navigation p {
    display: none;
  }
}
.bg_pc .contact {
  position: absolute;
  bottom: 3.8194444444vw;
  right: 0;
}
@media screen and (max-width: 1023px) {
  .bg_pc .contact {
    bottom: 4rem;
    right: auto;
    left: 0;
  }
}
.bg_pc .contact .img-box {
  width: 20rem;
  margin: 0 auto 4rem;
}
@media screen and (max-width: 1023px) {
  .bg_pc .contact .img-box {
    width: 15rem;
    margin-bottom: 2rem;
  }
}
.bg_pc .contact .img-box img {
  filter: drop-shadow(6px 4px 4px rgba(0, 0, 0, 0.14));
}
.bg_pc .contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 23rem;
  aspect-ratio: 1/0.2;
  font-size: 1.6rem;
  font-weight: 900;
  color: #e37f6c;
  background-color: #fff;
  border-radius: 100vmax;
  margin: 0 auto;
  box-shadow: 0 1px 4px rgba(144, 80, 49, 0.45);
  transition: all 0.3s;
}
.bg_pc .contact a:hover {
  scale: 1.1;
}