@charset "UTF-8";
/*	com-color
サイト内で主に使用する色の変数
------------------------------------ */
/*	使用フォント一覧
------------------------------------ */
/* Noto Sans Japanese */
/*	transition,hover
ホバー時のtransition秒数を統一、ホバーアクション
------------------------------------ */
/*	media-screen
画面サイズごとのcss設定に使用
------------------------------------ */
@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
/*	layout
その他パーツ
------------------------------------ */
/*	font-size
スマホ時にフォントサイズを自動で変更
※13px以下は文字が読めないためPC/SP同じサイズ
------------------------------------ */
/* =========================================

    main layout  all
    <main></main>箇所のcss

========================================= */
/*	com parts  PC
全ページ共通で使用したいパーツ
------------------------------------ */
.com-inner,
.bread-inner {
  width: 100%;
  max-width: 1080px;
  margin: auto;
}

.com-sub-inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 100px 0;
}

.com-tel {
  position: relative;
  padding-bottom: 15px;
  z-index: 1;
}
.com-tel-num {
  line-height: 1;
  letter-spacing: 0.1em;
  color: #261407;
  font-size: 26px;
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .com-tel-num {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
.com-tel-txt {
  letter-spacing: 0.1em;
  padding-right: 9px;
  color: #479fb4;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .com-tel-txt {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
.com-tel-svg {
  position: absolute;
  width: 250px;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  z-index: -1;
}

.com-ttl01 {
  text-align: center;
}
.com-ttl01-main {
  letter-spacing: 0.2em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 350;
  font-size: 35px;
  font-size: 3.5rem;
}
@media screen and (max-width: 767px) {
  .com-ttl01-main {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.com-ttl01-sub {
  letter-spacing: 0.25em;
  margin-top: 10px;
  color: #7e5438;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 350;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .com-ttl01-sub {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

.com-ttl02 {
  letter-spacing: 0.2em;
  text-align: center;
  padding-bottom: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 350;
  position: relative;
}
.com-ttl02::before {
  position: absolute;
  content: "";
}
.com-ttl02 {
  z-index: 1;
  font-size: 35px;
  font-size: 3.5rem;
}
@media screen and (max-width: 767px) {
  .com-ttl02 {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.com-ttl02::before {
  width: 2px;
  height: 15px;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  background-color: #261407;
  z-index: -1;
}

.com-ttl03 {
  width: 100%;
  letter-spacing: 0.2em;
  padding-left: 22px;
  padding-bottom: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 350;
  color: #5a3d29;
  border-bottom: 1px solid #d5beaf;
  position: relative;
}
.com-ttl03::before {
  position: absolute;
  content: "";
}
.com-ttl03 {
  z-index: 1;
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .com-ttl03 {
    font-size: 20px;
    font-size: 2rem;
  }
}
.com-ttl03::before {
  width: 2px;
  height: 24px;
  left: 0;
  top: 8px;
  background-color: #7e5438;
  z-index: -1;
}

.com-btn01 {
  width: 200px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.12em;
  color: #fff;
  background-image: linear-gradient(#7e5438 50%, #5a3d29 50%);
  position: relative;
}
.com-btn01::after {
  position: absolute;
  content: "";
}
.com-btn01 {
  z-index: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .com-btn01 {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.com-btn01::after {
  width: 10px;
  height: 2px;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  background-color: #fff;
  background-size: 100%;
  z-index: -1;
  transition: all 0.5s ease;
}
.com-btn01:hover::after {
  width: 15px;
}

.com-btn02 {
  width: 200px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #7e5438;
  background-color: #fff;
  position: relative;
}
.com-btn02::after {
  position: absolute;
  content: "";
}
.com-btn02 {
  z-index: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .com-btn02 {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.com-btn02::after {
  width: 10px;
  height: 2px;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  background-color: #7e5438;
  background-size: 100%;
  z-index: -1;
  transition: all 0.5s ease;
}
.com-btn02:hover::after {
  width: 15px;
}

.com-official {
  width: 116px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border: 1px solid #fff;
  position: relative;
}
.com-official::after {
  position: absolute;
  content: "";
}
.com-official {
  z-index: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .com-official {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.com-official::after {
  width: 5px;
  height: 2px;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  background-color: #fff;
  background-size: 100%;
  z-index: -1;
  transition: all 0.5s ease;
}
.com-official:hover::after {
  width: 10px;
}

.com-txt p:nth-of-type(n + 2) {
  margin-top: 37px;
}

.com-table01 {
  width: 100%;
  border-collapse: separate;
}
.com-table01 tr:last-of-type th {
  border-bottom: 1px solid #5a3d29;
}
.com-table01 tr:last-of-type td {
  border-bottom: 1px solid #5a3d29;
}
.com-table01 tr:nth-of-type(n + 2) th {
  border-top: 1px solid #fff;
}
.com-table01 th {
  white-space: pre-line;
  width: 200px;
  letter-spacing: 0.12em;
  line-height: 2;
  text-align: center;
  vertical-align: middle;
  padding: 14.5px 15px;
  color: #fff;
  background-color: #7e5438;
  border-top: 1px solid #5a3d29;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
}
.com-table01 td {
  white-space: pre-line;
  vertical-align: middle;
  letter-spacing: 0.12em;
  line-height: 2;
  padding: 14.5px 30px;
  color: #261407;
  background-color: #fff;
  border-top: 1px solid #5a3d29;
  border-right: 1px solid #5a3d29;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
}
.com-table01 a {
  color: #261407;
}

.com-table02 tr:first-of-type th {
  border-radius: 10px 0 0 0;
}
.com-table02 tr:first-of-type td {
  color: #5a3d29;
  background-color: #faf8f6;
}
.com-table02 tr:first-of-type td:last-of-type {
  border-radius: 0 10px 0 0;
}
.com-table02 tr:last-of-type th {
  border-radius: 0 0 0 10px;
  border-bottom: none;
}
.com-table02 tr:last-of-type td {
  border-bottom: none;
}
.com-table02 tr:last-of-type td:last-of-type {
  border-radius: 0 0 0 10px;
}
.com-table02 th {
  width: 142px;
  text-align: center;
  padding: 10px 10px;
  background-color: #f4f4f4;
  border-bottom: 1px solid #898989;
}
.com-table02 td {
  width: 142px;
  padding: 10px 10px;
  text-align: center;
  border-left: 1px solid #898989;
  border-bottom: 1px solid #898989;
}

.com-no-post {
  text-align: center;
  margin-top: 100px;
  font-size: 28px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .com-no-post {
    font-size: 21px;
    font-size: 2.1rem;
  }
}

.com-no-img {
  width: 90% !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
.com-no-img-bg {
  text-align: center;
  background-color: #ccc !important;
}

.com-main-color {
  color: #5a3d29;
}

.com-sub-color {
  color: #7e5438;
}

.clamp1 {
  overflow: hidden;
  display: -webkit-box; /* -webkitを使用するために必要 */
  -webkit-box-orient: vertical; /* 3点リーダー */
  -webkit-line-clamp: 1; /* 行数指定 */
}

.clamp2 {
  overflow: hidden;
  display: -webkit-box; /* -webkitを使用するために必要 */
  -webkit-box-orient: vertical; /* 3点リーダー */
  -webkit-line-clamp: 2; /* 行数指定 */
}

.clamp3 {
  overflow: hidden;
  display: -webkit-box; /* -webkitを使用するために必要 */
  -webkit-box-orient: vertical; /* 3点リーダー */
  -webkit-line-clamp: 3; /* 行数指定 */
}

.com-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  width: 100%;
}
.com-tag-list-item {
  letter-spacing: 0.12em;
  padding: 1px 8px;
  color: #7e5438;
  border: 1px solid #7e5438;
  font-size: 13px;
  font-size: 1.3rem;
}

.com-time {
  flex-shrink: 0;
  letter-spacing: 0.12em;
  padding-right: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .com-time {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.com-svg-txt {
  padding-left: 20px;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .com-svg-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.com-pre {
  white-space: pre-line;
}

/* =========================================
    top  PC
    top-message
========================================= */
#top-message .bg {
  background: url(/img/all/pt01.png) left top;
}
#top-message .inner {
  position: relative;
}
#top-message .inner::before {
  position: absolute;
  content: "";
}
#top-message .inner::after {
  position: absolute;
  content: "";
}
#top-message .inner {
  z-index: 1;
}
#top-message .inner::before {
  width: 214px;
  height: 140px;
  right: 0;
  top: 293px;
  background: url(/img/top/message-ila01.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
#top-message .inner::after {
  width: 263px;
  height: 145px;
  left: -5.2vw;
  bottom: 110px;
  background: url(/img/top/message-ila02.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
@media screen and (max-width: 1220px) {
  #top-message .inner::after {
    left: -5px;
  }
}
#top-message .wrap {
  margin-top: 52px;
}
#top-message .wrap-box {
  width: 100%;
}
#top-message .wrap-box:nth-of-type(n + 2) {
  margin-top: 60px;
}
#top-message .img {
  flex-shrink: 0;
}
#top-message .txt {
  line-height: 2.53;
}
#top-message .box {
  gap: 60px;
  margin-top: 60px;
}
#top-message .btn {
  width: 280px;
  height: 50px;
  letter-spacing: 0.12em;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  position: relative;
}
#top-message .btn::after {
  position: absolute;
  content: "";
}
#top-message .btn {
  z-index: 1;
  font-size: 15px;
}
#top-message .btn::after {
  width: 10px;
  height: 2px;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  background-color: #fff;
  background-size: 100%;
  z-index: -1;
  transition: all 0.5s ease;
}
#top-message .btn:hover::after {
  width: 15px;
}
#top-message .btn01 {
  background-image: linear-gradient(#479fb4 50%, #2690a9 50%);
}
#top-message .btn02 {
  background-image: linear-gradient(#da5734 50%, #c84421 50%);
}

/* =========================================
    top  PC
    top-img
========================================= */
#top-img .img {
  width: 100%;
}

/* =========================================
    top  PC
    top-banner
========================================= */
#top-banner .bg {
  background: url(/img/top/banner-bg.jpg) no-repeat center/cover;
}
#top-banner .inner {
  position: relative;
}
#top-banner .inner::before {
  position: absolute;
  content: "";
}
#top-banner .inner::after {
  position: absolute;
  content: "";
}
#top-banner .inner::before {
  width: 166px;
  height: 75px;
  left: 52px;
  top: 525px;
  background: url(/img/top/banner-ila01.png) no-repeat;
  background-size: 100%;
}
#top-banner .inner::after {
  width: 184px;
  height: 207px;
  bottom: 0;
  right: 50px;
  background: url(/img/top/banner-ila02.png) no-repeat;
  background-size: 100%;
}
#top-banner .wrap {
  width: 740px;
  padding: 50px 0 60px 115px;
  background-color: #7e5438;
  position: relative;
}
#top-banner .wrap::before {
  position: absolute;
  content: "";
}
#top-banner .wrap {
  z-index: 1;
}
#top-banner .wrap::before {
  width: 100%;
  height: 100%;
  top: -10px;
  left: -10px;
  border: 1px solid #d5beaf;
  background-size: 100%;
  z-index: -1;
}
#top-banner .wrap:first-of-type {
  margin-left: auto;
}
#top-banner .wrap:nth-of-type(n + 2) {
  margin-top: 120px;
  padding: 50px 0 60px 55px;
}
#top-banner .wrap:nth-of-type(n + 2)::before {
  left: 10px;
}
#top-banner .wrap-img01 {
  position: absolute;
  top: -50px;
  left: -340px;
  z-index: 5;
}
#top-banner .wrap-img02 {
  position: absolute;
  top: -50px;
  right: -340px;
  z-index: 5;
}
#top-banner .ttl {
  letter-spacing: 0.2em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 350;
  font-style: normal;
  color: #fff;
  font-size: 30px;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  #top-banner .ttl {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#top-banner .sub-ttl {
  letter-spacing: 0.2em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 350;
  font-style: normal;
  color: #d5beaf;
  position: relative;
}
#top-banner .sub-ttl::before {
  position: absolute;
  content: "";
}
#top-banner .sub-ttl {
  z-index: 1;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  #top-banner .sub-ttl {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
#top-banner .sub-ttl::before {
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  background-color: #d5beaf;
  background-size: 100%;
  z-index: -1;
}
#top-banner .sub-ttl span {
  padding-right: 28px;
  background-color: #7e5438;
}
#top-banner .txt {
  line-height: 2.53;
  letter-spacing: 0.12em;
  color: #fff;
  margin-top: 22px;
}
#top-banner .btn {
  margin-top: 30px;
}

/* =========================================
    top  PC
    top-app
========================================= */
#top-app .bg {
  background: url(/img/top/app-img.jpg) no-repeat center calc(100% - 120px), url(/img/all/pt01.png) left top;
}
#top-app .container {
  gap: 60px;
}
#top-app .wrap {
  width: 100%;
  max-width: 510px;
  text-align: center;
  padding: 45px 15px 40px;
  background-color: #fff;
}
#top-app .ttl {
  padding-bottom: 30px;
  position: relative;
}
#top-app .ttl::before {
  position: absolute;
  content: "";
}
#top-app .ttl {
  z-index: 1;
}
#top-app .ttl::before {
  width: 2px;
  height: 15px;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  background-color: #7e5438;
  background-size: 100%;
  z-index: -1;
}
#top-app .ttl-main {
  letter-spacing: 0.14em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 350;
  font-style: normal;
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  #top-app .ttl-main {
    font-size: 20px;
    font-size: 2rem;
  }
}
#top-app .ttl-sub {
  letter-spacing: 0.2em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 350;
  font-style: normal;
  margin-top: 5px;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  #top-app .ttl-sub {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#top-app .txt {
  line-height: 2.53;
  text-align: center;
  margin-top: 11px;
}
#top-app .uber {
  margin-top: 35px;
}
#top-app .instagram {
  width: 187px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.12em;
  margin: 35px auto 0;
  padding-left: 15px;
  color: #da5734;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  position: relative;
}
#top-app .instagram::before {
  position: absolute;
  content: "";
}
#top-app .instagram::after {
  position: absolute;
  content: "";
}
#top-app .instagram {
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  #top-app .instagram {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#top-app .instagram::before {
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  background: url(/img/all/instagram-ico.png) no-repeat;
  background-size: 100%;
}
#top-app .instagram::after {
  width: 10px;
  height: 4px;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  background: url(/img/all/instagram-arw.png) no-repeat;
  background-size: 100%;
  transition: all 0.3s ease;
}
#top-app .instagram:hover::after {
  transform: translate(3px, -50%);
}

/* =========================================
    top  PC
    top-news
========================================= */
#top-news .bg {
  position: relative;
}
#top-news .bg::before {
  position: absolute;
  content: "";
}
#top-news .bg {
  z-index: 1;
}
#top-news .bg::before {
  width: 100%;
  height: 50%;
  top: 0;
  left: 0;
  background-color: #faf8f6;
  z-index: -1;
}
#top-news .list {
  width: 100%;
  margin-top: 45px;
  gap: 60px;
}
#top-news .list-item {
  flex-basis: calc((100% - 120px) / 3);
  max-width: calc((100% - 120px) / 3);
}
#top-news .list-link {
  width: 100%;
  color: #261407;
}
#top-news .list-link:hover .list-img img {
  transform: scale(1.05);
}
#top-news .list-img {
  width: 100%;
  height: 200px;
}
#top-news .list-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top-news .list-img {
  margin-bottom: 20px;
  overflow: hidden;
}
#top-news .list-img img {
  transition: all 0.5s ease;
}
#top-news .com-tag-list {
  margin-bottom: 10px;
}
#top-news .com-time {
  position: relative;
}
#top-news .com-time::after {
  position: absolute;
  content: "";
}
#top-news .com-time {
  z-index: 1;
}
#top-news .com-time::after {
  content: "/";
  transform: translateY(-50%);
  top: 50%;
  right: 8px;
  background-size: 100%;
  z-index: -1;
}
#top-news .btn {
  margin: 55px auto 0;
}

/* =========================================

    sub layout  PC
    下層ページのPC時css
		sub-pc

========================================= */
/* =========================================
    sub  PC
    sub-beans
========================================= */
#sub-choose .bg {
  background: url(/img/all/pt01.png) left top;
}
#sub-choose .list {
  gap: 55px 70px;
  margin-top: 60px;
}
#sub-choose .list-item {
  flex-basis: calc((100% - 70px) / 2);
  max-width: calc((100% - 70px) / 2);
}
#sub-choose .list-img {
  display: block;
  text-align: center;
  margin: 0 auto;
}
#sub-choose .list-ttl {
  letter-spacing: 0.2em;
  text-align: center;
  margin-top: 20px;
  padding-bottom: 25px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 350;
  font-style: normal;
  background: url(/img/all/ttl-deco.png) no-repeat center bottom;
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  #sub-choose .list-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}
#sub-choose .list-txt {
  letter-spacing: 0.12em;
  line-height: 2.53;
  margin-top: 20px;
}
#sub-choose .com-tag-list {
  justify-content: center;
  padding-top: 30px;
}
#sub-choose .com-tag-list-item {
  letter-spacing: 0.12em;
  padding: 4px 7px;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  #sub-choose .com-tag-list-item {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

#sub-beans .bg {
  background-color: #faf8f6;
}
#sub-beans .note {
  text-align: center;
  letter-spacing: 0.12em;
  margin-top: 55px;
}
#sub-beans .list {
  margin-top: 45px;
}
#sub-beans .list-item {
  width: 100%;
  padding: 40px 50px 45px;
  background-color: #fff;
}
#sub-beans .list-item:nth-of-type(n + 2) {
  margin-top: 50px;
}
#sub-beans .list-fee {
  text-align: right;
  letter-spacing: 0.2em;
  margin-top: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 350;
  font-style: normal;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  #sub-beans .list-fee {
    font-size: 19px;
    font-size: 1.9rem;
  }
}
#sub-beans .list-img {
  flex-shrink: 0;
}
#sub-beans .list-wrap {
  gap: 50px;
  margin-top: 25px;
}
#sub-beans .list-img {
  width: 320px;
  height: 300px;
}
#sub-beans .list-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#sub-beans .list-txt {
  line-height: 2.53;
  margin-top: 25px;
}
#sub-beans .table {
  width: 100%;
  border-collapse: separate;
}
#sub-beans .table tr:last-of-type th {
  border-bottom: 1px solid #5a3d29;
}
#sub-beans .table tr:last-of-type td {
  border-bottom: 1px solid #5a3d29;
}
#sub-beans .table th {
  white-space: pre-line;
  width: 200px;
  text-align: center;
  vertical-align: middle;
  padding: 15px 15px;
  background-color: #ece2dc;
  border-top: 1px solid #5a3d29;
  border-left: 1px solid #5a3d29;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 350;
  font-style: normal;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  #sub-beans .table th {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
#sub-beans .table td {
  min-width: 410px;
  white-space: pre-line;
  vertical-align: middle;
  padding: 14px 30px;
  color: #261407;
  background-color: #fff;
  border: 1px solid #5a3d29;
  border-bottom: none;
}
#sub-beans .table a {
  color: #261407;
}

/* =========================================
    sub  PC
    sub-space
========================================= */
#sub-space .bg {
  background: url(/img/all/pt01.png) left top;
}
#sub-space .inner {
  position: relative;
}
#sub-space .inner::before {
  position: absolute;
  content: "";
}
#sub-space .inner {
  z-index: 1;
}
#sub-space .inner::before {
  width: 215px;
  height: 118px;
  top: 120px;
  right: -5.2vw;
  background: url(/img/space/space-deco01.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
@media screen and (max-width: 1250px) {
  #sub-space .inner::before {
    right: 5px;
  }
}
#sub-space .list {
  margin-top: 110px;
}
#sub-space .list-item {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  padding: 38px 50px 38px 110px;
  background-color: #fff;
  position: relative;
}
#sub-space .list-item:nth-of-type(n + 2) {
  margin-top: 110px;
}
#sub-space .list-item:nth-of-type(2) {
  margin-left: unset;
  padding: 38px 110px 38px 50px;
}
#sub-space .list-ttl {
  letter-spacing: 0.2em;
  padding-bottom: 25px;
  color: #7e5438;
  background: url(/img/all/ttl-deco.png) no-repeat left bottom;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 350;
  font-style: normal;
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  #sub-space .list-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}
#sub-space .list-num {
  letter-spacing: 0.25em;
  margin-top: 25px;
  color: #7e5438;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  #sub-space .list-num {
    font-size: 19px;
    font-size: 1.9rem;
  }
}
#sub-space .list-txt {
  line-height: 2.53;
  margin-top: 10px;
}
#sub-space .img01 {
  position: absolute;
  width: 340px;
  height: 240px;
  top: -50px;
  left: -280px;
}
#sub-space .img01 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#sub-space .img02 {
  position: absolute;
  width: 340px;
  height: 240px;
  top: -50px;
  right: -280px;
}
#sub-space .img02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#sub-child .bg {
  position: relative;
}
#sub-child .bg::before {
  position: absolute;
  content: "";
}
#sub-child .bg {
  z-index: 1;
}
#sub-child .bg::before {
  width: 100%;
  height: 76.7%;
  top: 0;
  left: 0;
  background-color: #faf8f6;
  z-index: -1;
}
#sub-child .inner {
  position: relative;
}
#sub-child .inner::before {
  position: absolute;
  content: "";
}
#sub-child .inner {
  z-index: 1;
}
#sub-child .inner::before {
  width: 214px;
  height: 140px;
  top: 90px;
  left: -5.2vw;
  background: url(/img/space/child-deco.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
@media screen and (max-width: 1250px) {
  #sub-child .inner::before {
    left: 5px;
  }
}
#sub-child .list {
  margin-top: 70px;
  padding-left: 10px;
  gap: 60px 55px;
}
#sub-child .list-item {
  flex-basis: calc((100% - 110px) / 3);
  max-width: calc((100% - 110px) / 3);
  padding: 30px;
  background-color: #7e5438;
  position: relative;
}
#sub-child .list-item::before {
  position: absolute;
  content: "";
}
#sub-child .list-item {
  z-index: 1;
}
#sub-child .list-item::before {
  width: 100%;
  height: 100%;
  top: -10px;
  left: -10px;
  border: 1px solid #d5beaf;
  z-index: -1;
}
#sub-child .list-ttl {
  text-align: center;
  letter-spacing: 0.2em;
  padding-bottom: 25px;
  color: #fff;
  background: url(/img/all/ttl-deco02.png) no-repeat center bottom;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 350;
  font-style: normal;
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  #sub-child .list-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}
#sub-child .list-txt {
  letter-spacing: 0.12em;
  line-height: 2.53;
  margin-top: 20px;
  color: #fff;
}

/* =========================================
    sub  PC
    sub-menu
========================================= */
#sub-menu .bg {
  background: url(/img/all/pt01.png) left top;
}
#sub-menu .list {
  margin-top: 60px;
}
#sub-menu .list-item {
  width: 100%;
  gap: 50px;
  padding: 40px 50px 50px;
  background-color: #fff;
}
#sub-menu .list-img {
  width: 320px;
  height: 300px;
  flex-shrink: 0;
  margin-top: 7px;
}
#sub-menu .list-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#sub-menu .list-wrap {
  width: 100%;
}
#sub-menu .list-num {
  text-align: right;
  letter-spacing: 0.2em;
  margin-top: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 350;
  font-style: normal;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  #sub-menu .list-num {
    font-size: 19px;
    font-size: 1.9rem;
  }
}
#sub-menu .list-txt {
  line-height: 2.53;
  margin-top: 15px;
}

#sub-goods .bg {
  background-color: #faf8f6;
}
#sub-goods .note {
  max-width: 467px;
  margin: 55px auto 0;
}
#sub-goods .note-txt {
  letter-spacing: 0.12em;
  padding-left: 25px;
  position: relative;
}
#sub-goods .note-txt::before {
  position: absolute;
  content: "";
}
#sub-goods .note-txt {
  z-index: 1;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  #sub-goods .note-txt {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
#sub-goods .note-txt::before {
  width: 10px;
  height: 10px;
  top: 10px;
  left: 0;
  background-color: #d5beaf;
  border-radius: 50%;
  z-index: -1;
}
#sub-goods .note-color {
  color: #da5734;
}
#sub-goods .list {
  width: 100%;
  flex-wrap: wrap;
  gap: 60px;
  margin-top: 55px;
}
#sub-goods .list-item {
  flex-basis: calc((100% - 120px) / 3);
  max-width: calc((100% - 120px) / 3);
}
#sub-goods .list-img {
  width: 100%;
  height: 220px;
}
#sub-goods .list-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#sub-goods .list-ttl {
  margin-top: 25px;
  padding-left: 15px;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  #sub-goods .list-ttl {
    font-size: 19px;
    font-size: 1.9rem;
  }
}
#sub-goods .list-ttl::before {
  height: 20px;
  top: 7px;
}
#sub-goods .list-fee {
  text-align: right;
  margin-top: 15px;
  letter-spacing: 0.2em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 350;
  font-style: normal;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  #sub-goods .list-fee {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
#sub-goods .list-txt {
  line-height: 2.53;
  margin-top: 15px;
}

/* =========================================
    sub  PC
    sub-shop
========================================= */
#sub-greeting .bg {
  background: url(/img/all/pt01.png) left top;
}
#sub-greeting .inner {
  position: relative;
}
#sub-greeting .inner::after {
  position: absolute;
  content: "";
}
#sub-greeting .inner {
  z-index: 1;
}
#sub-greeting .inner::after {
  width: 166px;
  height: 75px;
  bottom: 120px;
  right: 0;
  background: url(/img/shop/greeting-deco02.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
#sub-greeting .wrap {
  gap: 60px;
  margin-top: 60px;
}
#sub-greeting .img {
  width: 400px;
  height: 480px;
  flex-shrink: 0;
  position: relative;
}
#sub-greeting .img::after {
  position: absolute;
  content: "";
}
#sub-greeting .img {
  z-index: 1;
}
#sub-greeting .img::after {
  width: 101px;
  height: 155px;
  top: 24px;
  right: 0;
  background: url(/img/shop/greeting-deco01.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
#sub-greeting .img-top {
  position: relative;
  z-index: 5;
}
#sub-greeting .img-btm {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
#sub-greeting .txt {
  line-height: 2.53;
  letter-spacing: 0.12em;
}
#sub-greeting .name {
  letter-spacing: 0.2em;
  margin-top: 35px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 350;
  font-style: normal;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  #sub-greeting .name {
    font-size: 19px;
    font-size: 1.9rem;
  }
}

#sub-shop .bg {
  position: relative;
}
#sub-shop .bg::before {
  position: absolute;
  content: "";
}
#sub-shop .bg {
  z-index: 1;
}
#sub-shop .bg::before {
  width: 100%;
  height: 80.8%;
  top: 0;
  left: 0;
  background-color: #faf8f6;
  z-index: -1;
}
#sub-shop .table {
  margin-top: 50px;
}
#sub-shop .map {
  width: 100%;
  height: 400px;
  margin-top: 70px;
}
#sub-shop .map iframe {
  width: 100% !important;
  height: 100% !important;
  border: none;
}

/* =========================================
    sub  PC
    sub-contact  お問い合わせフォーム テンプレ
		他ページのtableなどデザインを併用する
========================================= */
#sub-contact .bg {
  background: url(/img/all/pt01.png) left top;
}
#sub-contact .privacy {
  color: #5a3d29;
  border-bottom: 1px solid #5a3d29;
}

#contact-form .com-table01 {
  white-space: unset;
}
#contact-form .com-btn01 {
  display: flex;
  justify-content: center;
  margin: 50px auto 0;
  transition: all 0.5s ease;
}
#contact-form .com-btn01::after {
  display: none;
}
#contact-form .com-btn01:hover {
  transform: scale(0.95);
}

.contact-form-table {
  margin: 50px auto 0;
  width: 100%;
  max-width: 1080px;
  table-layout: fixed;
}
.contact-form-table th {
  width: 350px;
  padding: 15px;
  white-space: unset;
}
.contact-form-table td {
  padding: 15px;
  white-space: unset;
}
.contact-form-table td input {
  height: 25px;
  line-height: 25px;
  border: none;
  background-color: #f5f5f5;
}
.contact-form-table td textarea {
  border: none;
  background-color: #f5f5f5;
  resize: none;
}
.contact-form-table .sp-sm {
  font-size: 16px;
}

.select {
  display: inline-block;
  position: relative;
  border: 1px solid #eee;
  position: relative;
}
.select::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  transform: translateY(-50%);
  top: 50%;
  right: 20px;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 5px solid #eee;
  border-bottom: 0;
}
.select-list {
  width: 200px;
  padding: 11px 15px;
  border: none;
  cursor: pointer;
}

.privacy-check {
  font-size: 15px;
}

.required-mark {
  letter-spacing: 0.04em;
  color: #4aafa3;
  background-color: unset;
  font-size: 12px;
  font-size: 1.2rem;
}

.contact-recaptcha-wrap {
  width: 304px;
  margin: 50px auto 0;
}

.contact-submits-wrap {
  margin-top: 25px;
}
.contact-submits-wrap .back-btn::before {
  display: none;
}

/*==================================================
 入力フィールド
================================================== */
select,
textarea,
input[type=tel],
input[type=text],
input[type=email],
input[type=url] {
  width: 100%;
  max-width: 100%;
  padding: 15px;
  font-size: 16px;
  border: 1px solid #dfdfdf;
  border-radius: 2px;
  box-shadow: 0 1px 1px rgba(150, 150, 150, 0.1) inset;
  box-sizing: border-box;
}

select {
  padding: 7px 15px;
}

textarea {
  width: 100%;
  resize: vertical;
}

/* ボタン
-------------------------------------------------- */
input[type=button],
input[type=submit],
button {
  border: none;
  -webkit-appearance: none;
  /* Safariにのみ適用するスタイル */
}
@supports (-webkit-touch-callout: none) {
  input[type=button],
  input[type=submit],
  button {
    border-radius: 0;
  }
}
input[type=button],
input[type=submit],
button {
  transition: all 0.3s ease;
}

input[type=button]:hover,
input[type=submit]:hover {
  opacity: 0.8;
  cursor: pointer;
}

input[type=button][disabled],
input[type=submit][disabled] {
  opacity: 0.4;
  pointer-events: none;
}

/* チェックボックス・ラジオボタン
-------------------------------------------------- */
input[type=radio],
input[type=checkbox] {
  display: inline-block;
  margin-right: 6px;
}

input[type=radio] + label,
input[type=checkbox] + label {
  position: relative;
  display: inline-block;
  line-height: 30px;
  cursor: pointer;
}

input[type=radio],
input[type=checkbox] {
  display: none;
}

input[type=radio] + label,
input[type=checkbox] + label {
  padding: 0 0 0 24px;
}

input[type=radio] + label::before,
input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  box-sizing: border-box;
  display: block;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  background: #fff;
}

input[type=radio] + label::before {
  border: 2px solid #ccc;
  border-radius: 30px;
}

input[type=checkbox] + label::before {
  border: 2px solid #ccc;
}

input[type=radio]:checked + label::after,
input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 50%;
  box-sizing: border-box;
  display: block;
}

input[type=radio]:checked + label::after {
  left: 5px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #ff900e;
  border-radius: 8px;
}

input[type=checkbox]:checked + label::after {
  left: 3px;
  width: 16px;
  height: 8px;
  margin-top: -8px;
  border-left: 3px solid #ff900e;
  border-bottom: 3px solid #ff900e;
  transform: rotate(-45deg);
}

input[type=checkbox] {
  display: none; /* デフォルトチェックボックスを完全に非表示 */
}

/*==================================================
	テーブル
================================================== */
/* スマホ表示時にはテーブルを縦向きにする */
@media screen and (max-width: 768px) {
  .contact-form-table,
  .contact-form-table tbody,
  .contact-form-table tr,
  .contact-form-table th,
  .contact-form-table td {
    width: auto;
    display: block;
  }
}
/* ご住所だけ2段なのでマージンを開ける */
input[name="items[address]"] {
  margin-top: 8px;
}

/* 「不正な送信です」「時間を空けて再度送信ください」などのセキュリティエラー文 */
.sec-error-text {
  line-height: 1.5em;
  margin-top: 50px;
  padding: 40px 10px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  background: #ff900e;
}

.sec-error-link {
  margin-top: 30px;
  text-align: center;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .sec-error-text {
    padding: 30px 10px;
    font-size: 4vw;
  }
  .sec-error-link {
    font-size: 5vw;
  }
}
/* 「任意」「必須」マーク */
.optional-mark,
.required-mark {
  margin-top: 5px;
  padding: 2px 10px;
  color: #fff;
  float: right;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .optional-mark,
  .required-mark {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.optional-mark {
  background: #3498db;
}

.required-mark {
  background: #ff900e;
}

/* 「~が入力されていません」などの未記入エラー文 */
.error-text {
  margin: 0 0 4px;
  color: #ff900e;
}

/* 送信・確認ボタン */
.contact-submits-wrap {
  text-align: center;
}

/* プライバシーポリシー */
.inline-privacy-policy {
  height: 350px;
  margin: 16px 0;
  border: 1px solid #dfdfdf;
  background: #fff;
}

.inline-privacy-policy-inner {
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  display: inline-block;
}

.inline-privacy-policy iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/*==================================================
	日付選択フォーム
================================================== */
.date-list {
  padding-left: inherit;
}

.date-list li {
  list-style: none;
  margin-bottom: 15px;
}

.date-list li p {
  margin-bottom: 5px;
}

/*==================================================
	画像アップロードフォーム
================================================== */
.upload-item-wrap {
  font-size: 13px;
  overflow: hidden;
}

.upload-item-wrap input[type=file] {
  display: none;
}

/* アップされた画像のサムネイル */
.upload-item-wrap .thumb {
  width: 220px;
  height: 220px;
  margin: 0 8px 0 0;
  position: relative;
  overflow: hidden;
  float: left;
}

.upload-item-wrap .thumb img {
  max-width: none;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

/*選択・削除ボタン  */
.upload-item-wrap .ancion-btn-wrap {
  margin-top: 10px;
  float: left;
}

.upload-item-wrap .ancion-btn {
  margin: 0 0 8px;
  width: 110px;
  line-height: 35px;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  background: #e6e6e6;
  display: block;
}

.upload-item-wrap .select-file {
  background: #2ecc71;
}

.upload-item-wrap .deselect-file {
  background: #ff900e;
}

.upload-item-wrap .ancion-btn:hover {
  cursor: pointer;
}

/*添付ファイルの注意文  */
.upload-notice {
  margin-top: 10px;
  font-size: 0.8em;
}

/* =========================================
			top  PC
			top-privacy
========================================= */
.privacy-inner {
  padding-top: 30px;
}
.privacy-ttl {
  margin: 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #5a3d29;
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .privacy-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}
.privacy .inline-privacy-policy-inner {
  margin-top: 14px;
  box-sizing: border-box;
  border: 1px solid #5a3d29;
  background-color: #fff;
}
.privacy iframe {
  width: 100%;
  height: 265px;
}
.privacy-box:nth-of-type(n + 2) {
  margin-top: 35px;
}
.privacy-box p:first-of-type {
  margin-top: 10px;
}
.privacy-box input {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.privacy-box label {
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .privacy-box label {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.privacy-box-img {
  margin-top: 15px;
}
.privacy-box-btn {
  width: 250px;
  height: 60px;
  margin-top: 46px;
  line-height: 60px;
  letter-spacing: 0.2em;
  color: #faf8f6;
  background-color: #7e5438;
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .privacy-box-btn {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.privacy-box-btn::before {
  position: absolute;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  top: 27px;
  right: 30px;
  transform: rotate(45deg);
  border-top: 1px solid #faf8f6;
  border-right: 1px solid #faf8f6;
}

.privacy-box .list-item {
  position: relative;
  padding-left: 15px;
}
.privacy-box .list-item::before {
  position: absolute;
  content: "・";
  left: 0;
}

/* =========================================
    sub  PC
    news テンプレ
========================================= */
#sub-news .bg {
  background: url(/img/all/pt01.png) left top;
}
#sub-news .tag-list {
  flex-wrap: wrap;
}
#sub-news .current {
  border-bottom: none;
}
#sub-news .com-ttl03 {
  line-height: 1.8;
  padding-bottom: 10px;
}
#sub-news .com-ttl03::before {
  top: 10px;
}
#sub-news .container {
  margin-top: 50px;
}
#sub-news .com-news-post-item:nth-of-type(n + 2) {
  margin-top: 50px;
}
#sub-news .com-news-post-link {
  display: block;
  padding: 50px 30px;
  color: #261407;
  background-color: #faf8f6;
  position: relative;
}
#sub-news .com-news-post-link::before {
  position: absolute;
  content: "";
}
#sub-news .com-news-post-link {
  z-index: 1;
}
#sub-news .com-news-post-link::before {
  width: 100%;
  height: 100%;
  top: -10px;
  left: -10px;
  border: 1px solid #d5beaf;
  z-index: -1;
  transition: all 0.5s ease;
}
#sub-news .com-news-post-link:hover::before {
  transform: translate(10px, 10px);
}
#sub-news .com-news-post-con {
  width: 100%;
}
#sub-news .com-news-post-con-sm {
  max-width: 725px;
}
@media screen and (max-width: 767px) {
  #sub-news .com-news-post-link {
    padding: 5%;
  }
  #sub-news .com-news-post-img {
    width: 25%;
  }
  #sub-news .com-news-post-con-sm {
    width: 68%;
  }
}
#sub-news .detail .com-news-post-link {
  padding: 15px;
}
#sub-news .detail .com-news-post-img {
  margin: 0 auto 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #sub-news .detail .com-news-post-img {
    width: 100%;
  }
}
#sub-news .news-post article:nth-of-type(n + 2) {
  border-top: 1px solid #f0f0f0;
}
#sub-news .news-post article:nth-of-type(n + 2) a {
  padding-top: 23px;
}
#sub-news .news-post-link {
  display: block;
  padding-bottom: 17px;
  position: relative;
  left: 0;
}
@media screen and (min-width: 768px) {
  #sub-news .news-post-link:hover {
    left: 5px;
  }
}
#sub-news .news-post-txt {
  margin-top: 15px;
}
#sub-news .news-post-flex {
  margin-top: 15px;
}
#sub-news .news-post-time {
  display: inline-block;
  flex-shrink: 0;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-right: 5px;
  padding-top: 9px;
  color: #939393;
  position: relative;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  #sub-news .news-post-time {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
#sub-news .news-post-tag {
  display: flex;
  margin-left: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
  border-left: 1px solid #7e5438;
  line-height: 1.6;
}
#sub-news .news-post-tag-txt {
  padding: 0 15px;
  border-right: 1px solid #7e5438;
  text-align: center;
  color: #7e5438;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #sub-news .news-post-tag-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#sub-news .news-post-ttl {
  width: 100%;
  letter-spacing: 0.1em;
  color: #261407;
  line-height: 2;
  transition: all 0.3s ease;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  #sub-news .news-post-ttl {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

/* =========================================
    sub  PC
    detail
========================================= */
#news-detail .bg {
  background: url(/img/all/pt01.png) left top;
}
#news-detail .com-news-post-con {
  padding: 35px 35px 45px;
  background-color: #faf8f6;
  position: relative;
}
#news-detail .com-news-post-con::before {
  position: absolute;
  content: "";
}
#news-detail .com-news-post-con {
  z-index: 1;
}
#news-detail .com-news-post-con::before {
  width: 100%;
  height: 100%;
  top: -10px;
  left: -10px;
  border: 1px solid #d5beaf;
  z-index: -1;
  transition: all 0.5s ease;
}

/* =========================================
  タグテンプレート
========================================= */
.tag-select-box {
  position: relative;
  width: 40%;
  margin: 20px 0 20px auto;
  max-width: 230px;
  background-color: #fff;
}
.tag-select-box::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #7e5438;
  pointer-events: none;
}
.tag-select-box #tag-select {
  width: 100%;
  padding: 5% 20% 5% 5%;
  box-sizing: border-box;
  font-size: 1.2rem;
  margin-left: auto;
  display: block;
  border: none;
  border-bottom: 2px solid #7e5438;
  cursor: pointer;
  border-radius: 0;
  background: none;
  color: #5a3d29;
  font-weight: 700;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.tag-select-box #tag-select option {
  padding: 10px;
  cursor: pointer;
  box-sizing: border-box;
  color: #000;
}

/* =========================================
  タグセレクト
	ボタンテンプレート
========================================= */
#tag-btn-list {
  margin-top: 35px;
  padding: 28px 30px 35px;
  background-color: #faf8f6;
  position: relative;
}
#tag-btn-list::before {
  position: absolute;
  content: "";
}
#tag-btn-list {
  z-index: 1;
}
#tag-btn-list::before {
  width: 100%;
  height: 100%;
  top: -10px;
  left: -10px;
  border: 1px solid #d5beaf;
  z-index: -1;
}
#tag-btn-list .tag-txt {
  flex-shrink: 0;
  margin-top: 5px;
  margin-right: 40px;
  color: #261407;
}
#tag-btn-list .tag-list {
  width: 100%;
  flex-wrap: wrap;
  gap: 10px;
}
#tag-btn-list .tag-list-link {
  min-width: 110px;
  text-align: center;
  padding: 5px 30px;
  color: #fff;
  background-color: #5a3d29;
}
#tag-btn-list .tag-current {
  color: #5a3d29;
  background-color: #fff;
  border: 1px solid #5a3d29;
}

/*	pagenation  PC
------------------------------------ */
.pagenation {
  display: flex;
  margin: 50px auto 0;
  justify-content: center;
  align-items: center;
}
.pagenation li {
  display: inline-block;
  width: 42px;
  height: 42px;
  text-align: center;
  background: #fff;
  letter-spacing: 0.05em;
  line-height: 40px;
  position: relative;
}
.pagenation li:nth-of-type(n + 2) {
  margin-left: 15px;
}
.pagenation li {
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .pagenation li {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.pagenation a,
.pagenation span {
  display: block;
}
.pagenation a {
  color: #5a3d29;
}
.pagenation .current-page {
  color: #fff;
  background: #5a3d29;
  pointer-events: none;
}
.pagenation .next-li,
.pagenation .back-li {
  background: none;
  border: none;
}
.pagenation .back-arrow,
.pagenation .next-arrow {
  display: block;
  height: 100%;
}
.pagenation-arrow {
  width: 100%;
  height: 100%;
}
.pagenation-arrow::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.pagenation-arrow.next {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7.5px 0 7.5px 15px;
  border-color: transparent transparent transparent #5a3d29;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.pagenation-arrow.back {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7.5px 15px 7.5px 0;
  border-color: transparent #5a3d29 transparent transparent;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

/*	detail pagenation  PC
------------------------------------ */
.pagenation-inner {
  width: 100%;
  max-width: 360px;
  margin: 50px auto 0;
}

.data-nav {
  position: relative;
  text-align: center;
}
.data-nav a {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  transition: all 0.3s ease;
}
.data-nav a:hover {
  opacity: 0.7;
}
.data-nav .next a,
.data-nav .back a {
  background: none !important;
}

.to-works-btn {
  width: 100%;
  max-width: 120px;
  background: #5a3d29;
  text-align: center;
  letter-spacing: 0.05em;
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .to-works-btn {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

.arrow-btn {
  width: 50px;
  position: absolute;
  bottom: 0;
}
.arrow-btn::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  margin: auto;
  color: #fff;
  background: #5a3d29;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .arrow-btn::before {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

.back-btn {
  left: 0;
}
.back-btn::before {
  content: "←";
}

.next-btn {
  right: 0;
}
.next-btn::before {
  content: "→";
}

/* =========================================
    sub  PC
    sub-site
========================================= */
#sub-site .bg {
  background: url(/img/all/pt01.png) left top;
}
#sub-site .list {
  width: 90%;
  margin: 50px auto 0;
}
#sub-site .list-link {
  width: 100%;
  border-bottom: 1px solid #5a3d29;
  color: #261407;
  display: block;
  padding: 15px 30px;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 767px) {
  #sub-site .list-link {
    padding: 12px 25px;
  }
}
#sub-site .list-link::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 9px solid #5a3d29;
  border-right: 0;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 5px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  #sub-site .list-link::before {
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #5a3d29;
  }
}
@media screen and (min-width: 768px) {
  #sub-site .list-link:hover::before {
    left: 10px;
  }
}

/* =========================================
    sub  PC
    sub-complete
========================================= */
#sub-complete .bg {
  background: url(/img/all/pt01.png) left top;
}
#sub-complete .container-box {
  text-align: center;
  margin-top: 50px;
}
#sub-complete .link {
  margin: 50px auto 0;
}

/* =========================================
    sub  PC
    sub-privacy
========================================= */
#sub-privacy .bg {
  background: url(/img/all/pt01.png) left top;
}
#sub-privacy .wrap {
  margin-top: 50px;
}

/* =========================================
    sub  PC
    404 error
========================================= */
#sub-error .bg {
  background: url(/img/all/pt01.png) left top;
}
#sub-error .ttl {
  text-align: center;
}
#sub-error .txt {
  width: 100%;
  text-align: center;
  margin: 50px auto 0;
}
#sub-error .link {
  text-decoration: underline;
  color: #5a3d29;
}