@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #927866;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.05em;
  background: url(../img/bg.jpg) top center/500px;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.7;
  }
}

input,
textarea,
select,
button {
  border: none;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  font: inherit;
  color: inherit;
}
input:focus,
textarea:focus,
select:focus,
button:focus {
  outline: none;
}

input[type=text],
input[type=tel],
input[type=email],
textarea {
  border: 1px solid #dfceb6;
  background: #fff;
  width: 100%;
  border-radius: 5px;
  padding: 10px;
}

label {
  display: flex;
}

.wpcf7-list-item {
  margin-left: 0 !important;
}
.wpcf7-list-item:not(:last-child) {
  margin-right: 20px;
}

input[type=radio] + span {
  position: relative;
  display: flex;
  align-items: center;
}
input[type=radio] + span::before {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  margin-right: 5px;
  border: 1px solid #dfceb6;
  background: #fff;
}
input[type=radio]:checked + span::after {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background: #927866;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 4px;
}

table {
  border-collapse: collapse;
}

.wrapper {
  overflow: hidden;
  padding: 15px;
}

.inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

#kakomi {
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  border: 15px solid #f7dfaa;
  pointer-events: none;
  z-index: 100;
}

header h1 {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  filter: drop-shadow(-5px 0 10px rgba(0, 0, 0, 0.1));
}
header h1 a {
  background: #f7dfaa;
  padding: 40px 50px 50px 40px;
  border-radius: 0 0 100px 0;
  display: block;
}
header h1 a img {
  width: 100px;
}
header #global_menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 360px;
  height: 100vh;
  z-index: 110;
  transition: 0.8s;
  padding-left: 60px;
  transform: translateX(300px);
}
header #global_menu #menu_btn {
  width: 60px;
  height: 60px;
  border-radius: 50% 0 0 50%;
  cursor: pointer;
  background: #f7dfaa;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
}
header #global_menu #menu_btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #927866;
  left: 19px;
  transition: 0.3s;
  position: absolute;
}
header #global_menu #menu_btn span:nth-child(1) {
  top: calc(50% - 7px);
}
header #global_menu #menu_btn span:nth-child(2) {
  top: 50%;
}
header #global_menu #menu_btn span:nth-child(3) {
  top: calc(50% + 7px);
}
header #global_menu nav {
  background: #f7dfaa;
  height: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
  padding: 100px 0;
}
@media (max-height: 800px) {
  header #global_menu nav {
    justify-content: flex-start;
  }
}
header #global_menu nav ul li {
  text-align: center;
}
header #global_menu nav ul li a {
  font-size: 14px;
  color: #927866;
  font-weight: bold;
}
header #global_menu nav ul li a span {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
}
header #global_menu nav ul li:not(:last-child) {
  margin-bottom: 30px;
}
header #global_menu nav .sns {
  margin-top: 60px;
}
header #global_menu nav .sns .copy {
  text-align: center;
  margin-bottom: 10px;
  font-size: 14px;
  font-family: "Nunito", sans-serif;
  letter-spacing: 0.1em;
}
header #global_menu nav .sns ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}
header #global_menu nav .sns ul li img {
  width: 40px;
}
header #global_menu.open {
  transform: translateX(0);
}
header #global_menu.open #menu_btn span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}
header #global_menu.open #menu_btn span:nth-child(2) {
  opacity: 0;
}
header #global_menu.open #menu_btn span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg);
}

section {
  padding-top: 150px;
}
section .inner h2 {
  font-size: 14px;
  color: #927866;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}
section .inner h2 span {
  font-size: 22px;
  color: #dfceb6;
  letter-spacing: 0.2em;
  font-family: "Nunito", sans-serif;
  font-weight: bold;
  display: block;
}
section:last-of-type {
  padding-bottom: 150px;
}

#mv {
  height: 400px;
  padding: 0;
  background: url(../img/mv_bg.jpg) no-repeat center/cover;
  position: relative;
  z-index: 1;
  color: #fff;
}
#mv::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(146, 120, 102, 0.3);
  position: absolute;
  top: 0;
  left: 0;
}
#mv .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 2;
}
#mv .inner h2 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
#mv .inner h2 span {
  display: block;
  font-size: 20px;
  letter-spacing: 0.1em;
  font-family: "Nunito", sans-serif;
}
#mv + section {
  padding-top: 75px;
}

#intro .inner .catch {
  font-size: 18px;
  text-align: center;
  line-height: 2;
}

.btn a {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #927866;
  min-width: 200px;
  height: 60px;
  padding: 0 30px;
  border-radius: 30px;
  position: relative;
}
.btn a::after {
  content: "";
  display: block;
  width: 40px;
  height: 20px;
  background: url(../img/arrow_brown.svg) no-repeat center right/76px;
  position: absolute;
  top: 50%;
  left: calc(100% - 15px);
  transform: translateY(-50%);
  transition: 0.3s;
}
.btn a:hover {
  opacity: 1;
  background: #dfceb6;
}
.btn a:hover::after {
  width: 50px;
}

.txt_link {
  color: #ffa503;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
}
.txt_link[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(../img/icon_blank.svg) no-repeat center/contain;
  margin-left: 6px;
  margin-top: 2px;
}

#map {
  width: 100%;
  height: 400px;
}

footer {
  background: #615247;
  color: #fff;
  padding: 100px 0 50px;
  position: relative;
}
footer::before {
  content: "";
  display: block;
  width: calc(100% + 30px);
  height: 1.26vw;
  background: url(../img/footer_before.svg) no-repeat center bottom/100%;
  position: absolute;
  bottom: 100%;
  left: -15px;
}
footer .inner .logo {
  text-align: center;
  margin-bottom: 60px;
}
footer .inner .logo img {
  width: 150px;
}
footer .inner .sns {
  margin-bottom: 60px;
}
footer .inner .sns .copy {
  text-align: center;
  margin-bottom: 10px;
  font-size: 14px;
  font-family: "Nunito", sans-serif;
  letter-spacing: 0.1em;
}
footer .inner .sns ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}
footer .inner .sns ul li img {
  width: 40px;
}
footer .inner .sns ul li:nth-child(3) img {
  width: 80px;
}
footer .inner nav ul {
  display: flex;
  justify-content: center;
  gap: 30px 60px;
}
footer .inner nav ul li {
  text-align: center;
}
footer .inner nav ul li a {
  font-size: 15px;
}
footer .inner nav ul li a span {
  margin-top: 5px;
  font-size: 12px;
  letter-spacing: 0.1em;
  display: block;
  font-family: "Nunito", sans-serif;
  color: #dfceb6;
}
footer .inner .copy {
  margin-top: 60px;
  font-size: 12px;
  text-align: center;
  color: #dfceb6;
  font-family: "Nunito", sans-serif;
}

@media (max-width: 1030px) {
  footer .inner nav {
    width: 600px;
    max-width: 100%;
    margin: 0 auto;
  }
  footer .inner nav ul {
    flex-wrap: wrap;
  }
}
@media (max-width: 900px) {
  section {
    padding-top: 120px;
  }
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .wrapper {
    padding: 10px;
  }
  #kakomi {
    border-width: 10px;
  }
  header h1 a {
    padding: 10px 25px 20px 15px;
    border-radius: 0 0 50px 0;
  }
  header h1 a img {
    width: 70px;
  }
  header #global_menu {
    transform: none;
    width: 100%;
    pointer-events: none;
  }
  header #global_menu #menu_btn {
    position: fixed;
    top: 15px;
    left: unset;
    right: 15px;
    transform: none;
    background: #927866;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    z-index: 2;
    pointer-events: all;
  }
  header #global_menu #menu_btn span {
    background: #fff;
    left: 14px;
  }
  header #global_menu nav {
    opacity: 0;
    transition: 0.8s;
    padding: 60px 0;
  }
  header #global_menu.open {
    pointer-events: all;
  }
  header #global_menu.open nav {
    opacity: 1;
  }
  section {
    padding-top: 70px;
  }
  section .inner h2 {
    font-size: 12px;
    margin-bottom: 30px;
  }
  section .inner h2 span {
    font-size: 18px;
  }
  section:last-of-type {
    padding-bottom: 70px;
  }
  #mv {
    height: 220px;
    padding-top: 60px;
  }
  #mv .inner h2 {
    font-size: 24px;
  }
  #mv + section {
    padding-top: 50px;
  }
  .btn a {
    height: 55px;
    font-size: 14px;
    padding: 0 30px 0 20px;
  }
  footer {
    padding: 40px 0 20px;
  }
  footer .inner .logo {
    margin-bottom: 40px;
  }
  footer .inner .logo img {
    width: 110px;
  }
  footer .inner .sns {
    margin-bottom: 40px;
  }
  footer .inner .sns .copy {
    font-size: 12px;
  }
  footer .inner .sns ul li img {
    width: 30px;
  }
  footer .inner nav {
    display: none;
  }
  footer .inner .copy {
    margin-top: 0;
  }
}
#top header h1 {
  display: none;
}
#top #top_mv {
  height: calc(100vh - 30px);
  position: relative;
  padding: 0;
}
#top #top_mv .mv_slider {
  height: 100%;
}
#top #top_mv .mv_slider .slick-track,
#top #top_mv .mv_slider .slick-list {
  height: 100%;
}
#top #top_mv .mv_slider .slide {
  height: 100%;
}
#top #top_mv .mv_slider .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top #top_mv .mv_logo {
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  z-index: 2;
  filter: none;
  text-align: center;
}
#top #top_mv .mv_logo img {
  width: 250px;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}
#top #top_mv .news_list {
  background: #f7dfaa;
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 50%;
  min-width: 500px;
  padding: 10px 40px;
  border-radius: 0 20px 20px 0;
}
#top #top_mv .news_list .news_item a {
  display: flex;
  align-items: center;
}
#top #top_mv .news_list .news_item a time {
  width: 120px;
  font-family: "Nunito", sans-serif;
}
#top #top_mv .news_list .news_item a .ttl {
  width: calc(100% - 120px);
  display: -webkit-box;
  overflow: hidden;
  white-space: normal;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
#top #top_mv .news_list .slick-arrow {
  font-size: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#top #top_mv .news_list .slick-arrow.slick-prev {
  left: 15px;
}
#top #top_mv .news_list .slick-arrow.slick-next {
  right: 15px;
}
#top #concept .inner .row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 100px;
}
#top #concept .inner .row .ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 250px;
  aspect-ratio: 1/1;
  background: url(../img/circle_brown.svg) no-repeat center/contain;
}
#top #concept .inner .row .ttl h2 {
  color: #fff;
  margin-bottom: 0;
}
#top #concept .inner .row .txt .main {
  margin-bottom: 30px;
}
#top #concept .inner .row .txt .main .jp {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}
#top #concept .inner .row .txt .main .fr {
  font-size: 18px;
  letter-spacing: 0.1em;
  font-family: "Nunito", sans-serif;
  font-weight: bold;
}
#top #concept .inner .row .txt .message p {
  line-height: 2.4;
}
#top #concept .inner .row .txt .btn {
  margin-top: 40px;
}
#top #menu .inner .desc {
  text-align: center;
  line-height: 2;
  margin-bottom: 40px;
}
#top #menu .inner .list {
  display: flex;
  justify-content: space-between;
}
#top #menu .inner .list .item {
  width: 30%;
}
#top #menu .inner .list .item .name {
  margin-top: 15px;
  font-size: 18px;
  text-align: center;
  font-weight: bold;
}
#top #menu .inner .btn {
  margin-top: 40px;
}
#top #menu .inner .btn a {
  margin: 0 auto;
}
#top #access .inner .row {
  display: flex;
  justify-content: space-between;
}
#top #access .inner .row #map {
  width: 50%;
}
#top #access .inner .row #map iframe {
  height: 100%;
}
#top #access .inner .row .txt {
  width: 46%;
}
#top #access .inner .row .txt .name {
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 20px;
}
#top #access .inner .row .txt .access {
  margin-bottom: 30px;
}
#top #access .inner .row .txt .access p {
  font-size: 14px;
}
#top #access .inner .row .txt .access p:not(:last-child) {
  margin-bottom: 5px;
}
#top #access .inner .row .txt table {
  width: 100%;
}
#top #access .inner .row .txt table tr {
  border-top: 1px dashed #927866;
}
#top #access .inner .row .txt table tr th {
  padding: 15px;
  text-align: left;
  font-size: 14px;
  line-height: 1.8;
  vertical-align: top;
}
#top #access .inner .row .txt table tr td {
  padding: 15px 15px 15px 0;
  font-size: 14px;
  line-height: 1.8;
}
#top #access .inner .row .txt table tr:last-child {
  border-bottom: 1px dashed #927866;
}
#top #access .inner .btn {
  margin-top: 40px;
}
#top #access .inner .btn a {
  margin: 0 auto;
}
#top #calendar .inner iframe {
  display: block;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 1030px) {
  #top #concept .inner .row {
    gap: 60px;
  }
}
@media (max-width: 900px) {
  #top #concept .inner .row {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  #top #concept .inner .row .txt {
    text-align: center;
  }
  #top #concept .inner .row .txt .btn a {
    margin: 0 auto;
  }
  #top #access .inner .row {
    flex-direction: column;
    gap: 40px;
  }
  #top #access .inner .row #map {
    width: 100%;
    order: 2;
  }
  #top #access .inner .row .txt {
    width: 100%;
    order: 1;
  }
}
@media (max-width: 768px) {
  #top #top_mv {
    height: auto;
    aspect-ratio: 1/1;
    margin-bottom: 77px;
  }
  #top #top_mv .mv_logo img {
    width: 180px;
  }
  #top #top_mv .news_list {
    width: calc(100% - 15px);
    min-width: auto;
    padding: 10px;
    border-radius: 0 35px 35px 0;
    bottom: unset;
    top: calc(100% + 15px);
  }
  #top #top_mv .news_list .news_item a {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  #top #top_mv .news_list .news_item a time {
    width: 100%;
    font-size: 12px;
  }
  #top #top_mv .news_list .news_item a .ttl {
    width: 100%;
    font-size: 14px;
  }
  #top #concept {
    padding-top: 40px;
  }
  #top #concept .inner .row {
    gap: 20px;
  }
  #top #concept .inner .row .ttl {
    width: 150px;
  }
  #top #concept .inner .row .txt .main {
    margin-bottom: 20px;
  }
  #top #concept .inner .row .txt .main .jp {
    font-size: 18px;
    margin-bottom: 7px;
  }
  #top #concept .inner .row .txt .main .fr {
    font-size: 14px;
  }
  #top #concept .inner .row .txt .message p {
    font-size: 14px;
    line-height: 2;
  }
  #top #concept .inner .row .txt .btn {
    margin-top: 30px;
  }
  #top #menu .inner .desc {
    font-size: 14px;
    margin-bottom: 30px;
  }
  #top #menu .inner .list {
    flex-direction: column;
    width: 350px;
    max-width: 100%;
    margin: 0 auto;
    gap: 20px;
  }
  #top #menu .inner .list .item {
    width: 200px;
  }
  #top #menu .inner .list .item .name {
    margin-top: 5px;
    font-size: 16px;
  }
  #top #menu .inner .list .item:nth-child(2n) {
    margin-right: 0;
    margin-left: auto;
  }
  #top #access .inner .row {
    gap: 30px;
  }
  #top #access .inner .row .txt .name {
    font-size: 16px;
    margin-bottom: 10px;
  }
  #top #access .inner .row .txt .access {
    margin-bottom: 20px;
  }
  #top #access .inner .row .txt table tr th {
    padding: 10px 15px 10px 0;
  }
  #top #access .inner .row .txt table tr td {
    padding: 10px 10px 10px 0;
  }
  #top #access .inner .btn {
    margin-top: 30px;
  }
  #top #calendar .inner iframe {
    height: 400px;
  }
}
#concept #passion .inner .row {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 40px;
}
#concept #passion .inner .row .txt {
  width: 410px;
}
#concept #passion .inner .row .txt .message {
  text-align: justify;
  line-height: 2;
}
#concept #passion .inner .row .txt .message .tb {
  display: none;
}
#concept #passion .inner .row .img_area {
  width: 240px;
}
#concept #passion .inner .row .img_area .img {
  background: #dfceb6;
  padding-top: 25px;
}
#concept #passion .inner .row .img_area .name {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
}
#concept #concept_sec .inner .row {
  display: flex;
  justify-content: center;
  gap: 60px;
}
#concept #concept_sec .inner .row .img {
  width: 400px;
}
#concept #concept_sec .inner .row .txt .main {
  margin-bottom: 30px;
}
#concept #concept_sec .inner .row .txt .main .jp {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}
#concept #concept_sec .inner .row .txt .main .fr {
  font-size: 18px;
  letter-spacing: 0.1em;
  font-family: "Nunito", sans-serif;
  font-weight: bold;
}
#concept #concept_sec .inner .row .txt .message p {
  line-height: 2;
}
#concept #concept_sec .inner .row .txt .message p:not(:last-child) {
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  #concept #passion .inner .row .txt {
    width: 58%;
  }
  #concept #passion .inner .row .img_area {
    width: 34%;
  }
  #concept #concept_sec .inner .row {
    gap: 40px;
  }
  #concept #concept_sec .inner .row .txt {
    flex-shrink: 0;
  }
  #concept #concept_sec .inner .row .txt .main .jp {
    font-size: 20px;
  }
  #concept #concept_sec .inner .row .txt .main .fr {
    font-size: 16px;
  }
  #concept #concept_sec .inner .row .txt .message .tb {
    display: block;
  }
}
@media (max-width: 768px) {
  #concept #passion .inner .row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px;
  }
  #concept #passion .inner .row .txt {
    width: 100%;
  }
  #concept #passion .inner .row .txt .message {
    font-size: 14px;
  }
  #concept #passion .inner .row .img_area {
    width: 240px;
    max-width: 100%;
  }
  #concept #concept_sec .inner .row {
    flex-direction: column;
    gap: 20px;
  }
  #concept #concept_sec .inner .row .img {
    width: 100%;
    order: 2;
  }
  #concept #concept_sec .inner .row .txt {
    order: 1;
    width: 100%;
  }
  #concept #concept_sec .inner .row .txt .main {
    text-align: center;
  }
  #concept #concept_sec .inner .row .txt .main .jp {
    font-size: 18px;
    margin-bottom: 5px;
  }
  #concept #concept_sec .inner .row .txt .main .fr {
    font-size: 14px;
  }
  #concept #concept_sec .inner .row .txt .message p {
    font-size: 13px;
  }
  #concept #concept_sec .inner .row .txt .message p .tb {
    display: none;
  }
}
#about-us #shop_info .inner .row {
  display: flex;
  justify-content: space-between;
}
#about-us #shop_info .inner .row .img {
  width: 46%;
}
#about-us #shop_info .inner .row .img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#about-us #shop_info .inner .row .txt {
  width: 50%;
}
#about-us #shop_info .inner .row .txt table {
  width: 100%;
}
#about-us #shop_info .inner .row .txt table tr {
  border-top: 1px dashed #927866;
}
#about-us #shop_info .inner .row .txt table tr th {
  padding: 15px;
  text-align: left;
  font-size: 14px;
  line-height: 1.8;
  vertical-align: top;
}
#about-us #shop_info .inner .row .txt table tr td {
  padding: 15px 15px 15px 0;
  font-size: 14px;
  line-height: 1.8;
}
#about-us #shop_info .inner .row .txt table tr:last-child {
  border-bottom: 1px dashed #927866;
}
#about-us #access .inner p {
  line-height: 1.8;
}
#about-us #access .inner #map {
  margin-top: 40px;
}
#about-us #gift .inner .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#about-us #gift .inner .row .txt {
  width: 50%;
}
#about-us #gift .inner .row .txt h3 {
  margin-bottom: 20px;
}
#about-us #gift .inner .row .txt p {
  line-height: 1.8;
}
#about-us #gift .inner .row .img {
  width: 46%;
  position: relative;
  z-index: 1;
}
#about-us #gift .inner .row .img::before {
  content: "";
  display: block;
  width: 90%;
  aspect-ratio: 1/1;
  background: url(../img/circle_pale_orange.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  z-index: -1;
}

@media (max-width: 900px) {
  #about-us #shop_info .inner .row {
    flex-direction: column;
    gap: 30px;
  }
  #about-us #shop_info .inner .row .txt {
    width: 100%;
    order: 1;
  }
  #about-us #shop_info .inner .row .img {
    width: 100%;
    order: 2;
  }
  #about-us #shop_info .inner .row .img img {
    height: auto;
  }
  #about-us #gift .inner h2 {
    margin-bottom: 60px;
  }
  #about-us #gift .inner .row {
    flex-direction: column;
    gap: 60px;
  }
  #about-us #gift .inner .row .txt {
    width: 100%;
    order: 2;
  }
  #about-us #gift .inner .row .img {
    width: 400px;
    max-width: 100%;
    order: 1;
  }
}
@media (max-width: 768px) {
  #about-us #shop_info .inner .row .txt table tr th {
    padding: 10px 15px 10px 0;
    width: 105px;
  }
  #about-us #shop_info .inner .row .txt table tr td {
    padding: 10px 0;
  }
  #about-us #access .inner p {
    font-size: 14px;
  }
  #about-us #gift .inner h2 {
    margin-bottom: 50px;
  }
  #about-us #gift .inner .row {
    gap: 40px;
  }
  #about-us #gift .inner .row .txt h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  #about-us #gift .inner .row .txt p {
    font-size: 14px;
  }
}
#menu .page_row {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
#menu .page_row #menu_nav {
  padding-top: 100px;
  width: 20%;
}
#menu .page_row #menu_nav ul li a {
  opacity: 0.4;
  display: block;
  font-weight: bold;
  text-align: center;
  font-size: 14px;
}
#menu .page_row #menu_nav ul li a span {
  font-size: 20px;
  color: #dfceb6;
  letter-spacing: 0.15em;
  font-family: "Nunito", sans-serif;
  font-weight: bold;
  display: block;
}
#menu .page_row #menu_nav ul li a:hover {
  opacity: 1;
}
#menu .page_row #menu_nav ul li:not(:last-child) {
  margin-bottom: 60px;
}
#menu .page_row #menu_nav ul li.current a {
  opacity: 1;
}
#menu .page_row .content {
  width: 75%;
}
#menu .page_row .content .menu_list {
  padding-top: 100px;
}
#menu .page_row .content .menu_list .inner {
  width: 100%;
}
#menu .page_row .content .menu_list .inner .ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 250px;
  aspect-ratio: 1/1;
  background: url(../img/circle_brown.svg) no-repeat center/contain;
  margin: 0 auto 60px;
}
#menu .page_row .content .menu_list .inner .ttl h2 {
  color: #fff;
  margin-bottom: 0;
}
#menu .page_row .content .menu_list .inner .ttl h2 span {
  font-size: 20px;
}
#menu .page_row .content .menu_list .inner .group h3 {
  font-size: 20px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
}
#menu .page_row .content .menu_list .inner .group h3::before, #menu .page_row .content .menu_list .inner .group h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: #dfceb6;
}
#menu .page_row .content .menu_list .inner .group h3 span {
  font-size: 14px;
  display: block;
  color: #dfceb6;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
#menu .page_row .content .menu_list .inner .group .list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 3.5%;
}
#menu .page_row .content .menu_list .inner .group .list .item {
  width: 31%;
}
#menu .page_row .content .menu_list .inner .group .list .item .img {
  position: relative;
}
#menu .page_row .content .menu_list .inner .group .list .item .img img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 60px 0 60px 0;
}
#menu .page_row .content .menu_list .inner .group .list .item .img span {
  background: #ffa503;
  color: #fff;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: bold;
  position: absolute;
  top: 15px;
  right: -5px;
}
#menu .page_row .content .menu_list .inner .group .list .item .img span.winter {
  background: #8bacdc;
}
#menu .page_row .content .menu_list .inner .group .list .item .name {
  margin-top: 15px;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}
#menu .page_row .content .menu_list .inner .group .list .item .desc {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.8;
}
#menu .page_row .content .menu_list .inner .group:not(:last-child) {
  margin-bottom: 60px;
}
#menu .page_row .content .menu_list .inner .group.birthday .list > .item {
  width: 65%;
}
#menu .page_row .content .menu_list .inner .group.birthday .list .birthdaycake_row {
  width: 31%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#menu .page_row .content .menu_list .inner .group.birthday .list .birthdaycake_row .item {
  width: 100%;
}
#menu .page_row .content .menu_list:not(:last-child) {
  padding-bottom: 100px;
  border-bottom: 2px dashed #dfceb6;
}
#menu .page_row .content .menu_list#special .inner .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
#menu .page_row .content .menu_list#special .inner .row .img_area {
  width: 45%;
}
#menu .page_row .content .menu_list#special .inner .row .img_area .name {
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
  font-size: 18px;
}
#menu .page_row .content .menu_list#special .inner .row .txt {
  width: 50%;
}
#menu .page_row .content .menu_list#special .inner .row .txt p {
  line-height: 1.8;
}

@media (max-width: 900px) {
  #menu .page_row .content .menu_list .inner .group .list {
    gap: 40px 4%;
  }
  #menu .page_row .content .menu_list .inner .group .list .item {
    width: 48%;
  }
}
@media (max-width: 768px) {
  #menu .page_row {
    flex-direction: column;
  }
  #menu .page_row #menu_nav {
    width: 100%;
    padding: 50px 0;
  }
  #menu .page_row #menu_nav .ttl {
    display: block;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 18px;
  }
  #menu .page_row #menu_nav ul li a {
    opacity: 1;
    font-size: 12px;
  }
  #menu .page_row #menu_nav ul li a span {
    font-size: 18px;
  }
  #menu .page_row #menu_nav ul li:not(:last-child) {
    margin-bottom: 30px;
  }
  #menu .page_row .content {
    width: 100%;
  }
  #menu .page_row .content .menu_list {
    padding-top: 50px;
  }
  #menu .page_row .content .menu_list .inner .ttl {
    width: 190px;
    margin-bottom: 30px;
  }
  #menu .page_row .content .menu_list .inner .ttl h2 {
    font-size: 12px;
  }
  #menu .page_row .content .menu_list .inner .ttl h2 span {
    font-size: 16px;
  }
  #menu .page_row .content .menu_list .inner .group h3 {
    font-size: 18px;
    margin-bottom: 40px;
  }
  #menu .page_row .content .menu_list .inner .group .list {
    gap: 30px 4%;
  }
  #menu .page_row .content .menu_list .inner .group .list .item .img img {
    border-radius: 40px 0 40px 0;
  }
  #menu .page_row .content .menu_list .inner .group .list .item .img span {
    padding: 3px 10px;
    top: 8px;
    font-size: 12px;
  }
  #menu .page_row .content .menu_list .inner .group .list .item .name {
    margin-top: 10px;
    font-size: 16px;
  }
  #menu .page_row .content .menu_list .inner .group .list .item .desc {
    margin-top: 8px;
    font-size: 13px;
  }
  #menu .page_row .content .menu_list .inner .group:not(:last-child) {
    margin-bottom: 40px;
  }
  #menu .page_row .content .menu_list .inner .group.birthdaycake_row {
    gap: 10px;
  }
  #menu .page_row .content .menu_list .inner .group.birthdaycake_row .item .img img {
    border-radius: 20px 0 20px 0;
  }
  #menu .page_row .content .menu_list:not(:last-child) {
    padding-bottom: 50px;
  }
  #menu .page_row .content .menu_list#fresh {
    border-top: 2px dashed #dfceb6;
  }
  #menu .page_row .content .menu_list#special .inner .row {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  #menu .page_row .content .menu_list#special .inner .row .txt {
    width: 100%;
    order: 1;
  }
  #menu .page_row .content .menu_list#special .inner .row .txt p {
    font-size: 14px;
  }
  #menu .page_row .content .menu_list#special .inner .row .img_area {
    width: 100%;
    order: 2;
  }
  #menu .page_row .content .menu_list#special .inner .row .img_area .name {
    font-size: 16px;
  }
}
#news .page_row {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  width: 90%;
  padding-top: 75px;
  margin: 0 auto;
}
#news .page_row .content {
  width: 75%;
}
#news .page_row .content #news_list {
  padding-top: 0;
}
#news .page_row .content #news_list .inner {
  width: 100%;
}
#news .page_row .content #news_list .inner .news_list .news_item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#news .page_row .content #news_list .inner .news_list .news_item a .img {
  width: 250px;
  overflow: hidden;
}
#news .page_row .content #news_list .inner .news_list .news_item a .img img {
  aspect-ratio: 3/2;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
#news .page_row .content #news_list .inner .news_list .news_item a .txt {
  width: calc(100% - 290px);
}
#news .page_row .content #news_list .inner .news_list .news_item a .txt time {
  display: block;
  font-family: "Nunito", sans-serif;
  margin-bottom: 5px;
  font-size: 14px;
}
#news .page_row .content #news_list .inner .news_list .news_item a .txt .ttl {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}
#news .page_row .content #news_list .inner .news_list .news_item a .txt .article {
  font-size: 14px;
  line-height: 1.8;
}
#news .page_row .content #news_list .inner .news_list .news_item a:hover .img img {
  transform: scale(1.1);
}
#news .page_row .content #news_list .inner .news_list .news_item:not(:last-child) {
  margin-bottom: 40px;
}
#news .page_row .content #news_single {
  padding-top: 0;
}
#news .page_row .content #news_single .inner {
  width: 100%;
}
#news .page_row .content #news_single .inner time {
  display: block;
  margin-bottom: 10px;
  font-family: "Nunito", sans-serif;
  font-size: 18px;
}
#news .page_row .content #news_single .inner h2 {
  text-align: left;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 40px;
}
#news .page_row .content #news_single .inner .img {
  text-align: center;
  margin-bottom: 40px;
}
#news .page_row .content #news_single .inner .article p {
  line-height: 1.8;
}
#news .page_row .content #news_single .inner .article p:not(:last-child) {
  margin-bottom: 20px;
}
#news .page_row .content #news_single .inner .btn {
  margin-top: 100px;
}
#news .page_row .content #news_single .inner .btn a {
  margin: 0 auto;
}
#news .page_row aside {
  width: 20%;
}
#news .page_row aside h2 {
  font-size: 20px;
  margin-bottom: 30px;
}
#news .page_row aside ul li {
  display: flex;
}
#news .page_row aside ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
}
#news .page_row aside ul li a::before {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background: #927866;
}
#news .page_row aside ul li:not(:last-child) {
  margin-bottom: 10px;
}

@media (max-width: 1000px) {
  #news .page_row {
    flex-direction: column;
    gap: 80px;
    padding-bottom: 150px;
  }
  #news .page_row .content {
    width: 100%;
  }
  #news .page_row .content #news_list {
    padding-bottom: 0;
  }
  #news .page_row aside {
    border-top: 2px dashed #dfceb6;
    width: 100%;
    padding-top: 80px;
  }
}
@media (max-width: 768px) {
  #news .page_row {
    padding: 50px 0 70px;
    gap: 50px;
  }
  #news .page_row .content #news_list .inner .news_list .news_item {
    position: relative;
  }
  #news .page_row .content #news_list .inner .news_list .news_item a {
    flex-direction: column;
    gap: 15px;
  }
  #news .page_row .content #news_list .inner .news_list .news_item a .img {
    width: 100%;
    order: 2;
    position: relative;
  }
  #news .page_row .content #news_list .inner .news_list .news_item a .img::after {
    content: "本文を読む";
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #615247;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 10px 3px;
  }
  #news .page_row .content #news_list .inner .news_list .news_item a .txt {
    width: 100%;
    order: 1;
  }
  #news .page_row .content #news_list .inner .news_list .news_item a .txt .ttl {
    font-size: 16px;
    margin-bottom: 0;
  }
  #news .page_row .content #news_list .inner .news_list .news_item a .txt .article {
    display: none;
  }
  #news .page_row .content #news_list .inner .news_list .news_item:not(:last-child) {
    margin-bottom: 60px;
  }
  #news .page_row .content #news_list .inner .news_list .news_item:not(:last-child)::after {
    content: "";
    display: block;
    width: 100px;
    height: 1px;
    background: #dfceb6;
    position: absolute;
    top: calc(100% + 30px);
    left: 50%;
    transform: translateX(-50%);
  }
  #news .page_row .content #news_single .inner time {
    font-size: 14px;
  }
  #news .page_row .content #news_single .inner h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  #news .page_row .content #news_single .inner .img {
    margin-bottom: 20px;
  }
  #news .page_row .content #news_single .inner .article p {
    font-size: 14px;
  }
  #news .page_row .content #news_single .inner .btn {
    margin-top: 50px;
  }
  #news .page_row aside {
    padding-top: 30px;
  }
  #news .page_row aside h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
#links #links_list .inner ul li {
  text-align: center;
}
#links #links_list .inner ul li a {
  font-size: 18px;
}
#links #links_list .inner ul li:not(:last-child) {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  #links #links_list .inner ul li a {
    font-size: 14px;
  }
  #links #links_list .inner ul li:not(:last-child) {
    margin-bottom: 20px;
  }
}
#contact #contact_form .inner {
  max-width: 700px;
}
#contact #contact_form .inner .intro {
  text-align: center;
  margin-bottom: 60px;
}
#contact #contact_form .inner dl dt {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-bottom: 10px;
}
#contact #contact_form .inner dl dt span {
  background: #ffa503;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  padding: 2px 8px 3px;
  border-radius: 3px;
  margin-left: 20px;
}
#contact #contact_form .inner dl dd:not(:last-child) {
  margin-bottom: 30px;
}
#contact #contact_form .inner .btn {
  margin-top: 30px;
}
#contact #contact_form .inner .btn input[type=submit] {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #927866;
  min-width: 200px;
  height: 60px;
  padding: 0 30px;
  border-radius: 30px;
  margin: 0 auto;
  transition: 0.3s;
  background: none;
  cursor: pointer;
  font-size: 18px;
  letter-spacing: 0.1em;
}
#contact #contact_form .inner .btn input[type=submit]:hover {
  opacity: 1;
  background: #dfceb6;
}

@media (max-width: 768px) {
  #contact #contact_form .inner .intro {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 40px;
  }
  #contact #contact_form .inner dl dt {
    font-size: 14px;
  }
  #contact #contact_form .inner dl dt span {
    margin-left: 15px;
  }
  #contact #contact_form .inner dl dd {
    font-size: 14px;
  }
  #contact #contact_form .inner .btn input[type=submit] {
    height: 55px;
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */