@charset "UTF-8";
/*	com-color
サイト内で主に使用する色の変数
------------------------------------ */
/*	使用フォント一覧
------------------------------------ */
/* Noto Serif Japanese */
/* Oswald */
/* Shippori Mincho B1 */
/* Shippori Mincho B1 */
/* Roboto Slab */
/*	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: 150px 0;
}

.com-tel {
  position: relative;
  padding-bottom: 13px;
  z-index: 1;
}
.com-tel-num {
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  font-family: "Roboto Slab", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .com-tel-num {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
.com-tel-txt {
  padding-right: 5px;
  font-family: "Roboto Slab", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .com-tel-txt {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.com-tel-svg {
  position: absolute;
  width: 195px;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.com-ttl01 {
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 70px;
  font-size: 7rem;
}
@media screen and (max-width: 767px) {
  .com-ttl01 {
    font-size: 35px;
    font-size: 3.5rem;
  }
}

.com-ttl02 {
  letter-spacing: 0.2em;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 40px;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .com-ttl02 {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.com-ttl03 {
  letter-spacing: 0.05em;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .com-ttl03 {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.com-btn01 {
  width: 290px;
  text-align: center;
  letter-spacing: 0.2em;
  padding: 16px 15px;
  color: #ccb15d;
  border: 1px solid #c8bc95;
  position: relative;
  font-family: "Roboto Slab", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
.com-btn01::after {
  position: absolute;
  content: "";
}
@media screen and (max-width: 767px) {
  .com-btn01 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.com-btn01::after {
  width: 9px;
  height: 9px;
  right: 6px;
  bottom: 6px;
  background: url(/img/all/arw.png) no-repeat;
  background-size: 100%;
  transition: all 0.3s ease;
}
.com-btn01:hover::after {
  transform: translate(2px, 2px);
}

.com-btn02 {
  letter-spacing: 0.2em;
  padding-left: 60px;
  color: #ccb15d;
  position: relative;
  font-family: "Roboto Slab", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
.com-btn02::before {
  position: absolute;
  content: "";
}
.com-btn02::after {
  position: absolute;
  content: "";
}
@media screen and (max-width: 767px) {
  .com-btn02 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.com-btn02::before {
  width: 40px;
  height: 1px;
  left: 0;
  top: 50%;
  background: #ccb15d;
  transform: translateY(-50%) scaleX(1);
  transform-origin: right center;
  transition: transform 1s;
}
.com-btn02::after {
  width: 40px;
  height: 1px;
  left: 0;
  transform: translateY(-50%);
  top: 50%;
  background: #ccb15d;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s;
}
.com-btn02:hover::before {
  opacity: 1;
  transform: translateY(-50%) scaleX(0);
  transition: transform 0.5s;
}
.com-btn02:hover::after {
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
  transition: transform 1s;
}

.com-line {
  width: 305px;
  text-align: center;
  letter-spacing: 0.2em;
  padding: 16px 15px;
  color: #ccb15d;
  border: 1px solid #c8bc95;
  position: relative;
  font-family: "Roboto Slab", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  font-size: 1.6rem;
}
.com-line::before {
  position: absolute;
  content: "";
}
.com-line::after {
  position: absolute;
  content: "";
}
@media screen and (max-width: 767px) {
  .com-line {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.com-line::before {
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  top: 50%;
  left: 23px;
  background: url(/img/all/line-ico.png) no-repeat center/100%;
}
.com-line::after {
  width: 9px;
  height: 9px;
  right: 6px;
  bottom: 6px;
  background: url(/img/all/arw.png) no-repeat;
  background-size: 100%;
  transition: all 0.3s ease;
}
.com-line:hover::after {
  transform: translate(2px, 2px);
}

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

.com-table01 {
  width: 100%;
  border-collapse: separate;
}
.com-table01 th {
  white-space: pre-line;
  width: 154px;
  letter-spacing: 0.05em;
  line-height: 2;
  padding: 11.5px 10px 11.5px 0;
  color: #ccb15d;
  border-bottom: 1px solid #c8bc95;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .com-table01 th {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.com-table01 td {
  white-space: pre-line;
  vertical-align: middle;
  letter-spacing: 0.05em;
  line-height: 2;
  padding: 11.5px 10px 11.5px 0;
  color: #fff;
  border-bottom: 1px solid #f7f7f7;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .com-table01 td {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.com-table01 a {
  color: #fff;
}

.com-table02 tr:first-of-type th {
  border-radius: 10px 0 0 0;
}
.com-table02 tr:first-of-type td {
  color: #ccb15d;
  background-color: #000;
}
.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: #ccb15d;
}

.com-sub-color {
  color: #c8bc95;
}

.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 15px;
  width: 100%;
}
.com-tag-list-item {
  letter-spacing: 0.05em;
  padding-left: 9px;
  color: #fff;
  position: relative;
  font-size: 14px;
  font-size: 1.4rem;
}
.com-tag-list-item::before {
  position: absolute;
  content: "";
}
@media screen and (max-width: 767px) {
  .com-tag-list-item {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.com-tag-list-item::before {
  content: "#";
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  color: #ccb15d;
}

.com-time {
  flex-shrink: 0;
  padding-right: 20px;
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .com-time {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.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-news
========================================= */
.main {
  position: relative;
}

#top-news {
  position: absolute;
  width: 100%;
  transform: translateX(-50%);
  left: 50%;
  top: -120px;
  z-index: 10;
}
#top-news .bg {
  background-color: rgba(0, 0, 0, 0.7);
  border-top: 1px solid rgba(247, 247, 247, 0.3);
  border-bottom: 1px solid rgba(247, 247, 247, 0.3);
}
#top-news .container {
  width: 100%;
  height: 120px;
}
#top-news .container-box {
  width: 190px;
  flex-shrink: 0;
  position: relative;
}
#top-news .ttl {
  letter-spacing: 0.05em;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 40px;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  #top-news .ttl {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#top-news .list {
  width: 100%;
}
#top-news .list-link {
  width: 100%;
  padding: 10px 0;
  color: #fff;
}
#top-news .btn {
  padding-left: 50px;
  font-size: 12px;
  font-size: 1.2rem;
}
#top-news .btn::before, #top-news .btn::after {
  width: 35px;
}

/* =========================================
    top  PC
    top-about
========================================= */
#top-about .bg {
  background: url(/img/top/greeting-bg.png) no-repeat center calc(100% - 284px);
  overflow: hidden;
}
@media screen and (min-width: 1921px) {
  #top-about .bg {
    background: url(/img/top/greeting-bg.png) no-repeat center calc(100% - 115px)/120%;
  }
}
@media screen and (min-width: 2250px) {
  #top-about .bg {
    background: url(/img/top/greeting-bg.png) no-repeat center calc(100% + 50px)/120%;
  }
}
#top-about .container {
  width: 100%;
}
#top-about .container-box {
  width: 100%;
  height: 350px;
  position: relative;
}
@media screen and (min-width: 1921px) {
  #top-about .container-box {
    height: 18.22vw;
  }
}
#top-about .container-box-top {
  background: url(/img/top/about-bg01.png) no-repeat center/cover;
}
#top-about .container-box-center {
  background: url(/img/top/about-bg02.jpg) no-repeat center/cover;
}
#top-about .container-btm {
  width: 100%;
  height: 703px;
  margin-top: 107px;
  padding-top: 285px;
  position: relative;
  background: url(/img/top/about-bg03.png) no-repeat center/cover;
}
@media screen and (min-width: 1921px) {
  #top-about .container-btm {
    height: 36.6vw;
    padding-top: 14.8vw;
  }
}
#top-about .primary {
  position: absolute;
  bottom: -30px;
  z-index: 5;
}
#top-about .primary-txt {
  letter-spacing: 0.2em;
  color: #ccb15d;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  #top-about .primary-txt {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
#top-about .primary-ttl {
  letter-spacing: 0.05em;
  margin-top: 5px;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 40px;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  #top-about .primary-ttl {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#top-about .primary-left {
  left: calc(50% - 540px);
}
#top-about .primary-right {
  text-align: right;
  right: calc(50% - 540px);
}
#top-about .ttl {
  max-width: 1080px;
  margin: 0 auto;
}
#top-about .ttl-sub {
  display: inline-block;
  line-height: 1.28;
  letter-spacing: 0.05em;
  color: #f7f7f7;
  position: relative;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 70px;
  font-size: 7rem;
}
#top-about .ttl-sub::before {
  position: absolute;
  content: "";
}
@media screen and (max-width: 767px) {
  #top-about .ttl-sub {
    font-size: 35px;
    font-size: 3.5rem;
  }
}
#top-about .ttl-sub::before {
  width: 65px;
  height: 103px;
  top: -21px;
  right: 8px;
  background: url(/img/top/about-ttl-deco.png) no-repeat;
  background-size: 100%;
}
#top-about .ttl-main {
  letter-spacing: 0.07em;
  margin-top: 20px;
  color: #ccb15d;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  #top-about .ttl-main {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#top-about .wrap {
  width: 100%;
  max-width: 1080px;
  margin: 75px auto 0;
  padding-top: 110px;
  position: relative;
}
#top-about .wrap::after {
  position: absolute;
  content: "";
  width: 135px;
  height: 190px;
  right: 17px;
  bottom: -130px;
  background: url(/img/top/greeting-deco.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
#top-about .img {
  position: absolute;
  top: 0;
  left: -100px;
}
#top-about .box {
  width: 100%;
  max-width: 510px;
  margin-left: auto;
}
#top-about .box-ttl {
  letter-spacing: 0.2em;
  line-height: 1.875;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  #top-about .box-ttl {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#top-about .txt {
  line-height: 3.25;
  letter-spacing: 0.2em;
  margin-top: 60px;
}
#top-about .btn {
  margin-top: 50px;
}

/* =========================================
    top  PC
    top-menu
========================================= */
#top-menu .bg {
  background: url(/img/top/menu-bg.jpg) no-repeat center/cover;
}
#top-menu .list {
  gap: 50px 120px;
  margin-top: 95px;
}
#top-menu .list-item {
  width: 280px;
  text-align: right;
  position: relative;
}
#top-menu .list-ttl {
  position: absolute;
  letter-spacing: 0.05em;
  top: -35px;
  right: -26px;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 40px;
}
@media screen and (max-width: 1150px) {
  #top-menu .list-ttl {
    right: -10px;
  }
}
#top-menu .list-img {
  width: 100%;
}
#top-menu .list-txt {
  min-height: 95px;
  line-height: 2.125;
  text-align: left;
  letter-spacing: 0.1em;
  margin-top: 15px;
}
#top-menu .list-btn {
  margin-top: 30px;
}

/* =========================================
    top  PC
    top-access
========================================= */
#top-access .img {
  width: 100%;
  height: 600px;
  background: url(/img/top/access-img.jpg) no-repeat right center/cover;
}
@media screen and (max-width: 1250px) {
  #top-access .img {
    background: url(/img/top/access-img.jpg) no-repeat calc(100% + 150px) center/cover;
  }
}
#top-access .wrap {
  width: 100%;
  gap: 110px;
}
#top-access .map {
  width: 920px;
  height: 780px;
}
#top-access .map iframe {
  width: 100% !important;
  height: 100% !important;
  border: none;
}
@media screen and (min-width: 1921px) {
  #top-access .map {
    width: 47.9vw;
  }
}
#top-access .box {
  width: 470px;
  flex-shrink: 0;
}
#top-access .ttl {
  text-align: left;
}
#top-access .table {
  margin-top: 50px;
}
#top-access .btn {
  margin-top: 62px;
}

/* =========================================
    top  PC
    top-reserve
========================================= */
#top-reserve .bg {
  background: url(/img/top/reserve-bg.jpg) no-repeat center/cover;
}
#top-reserve .container {
  gap: 260px;
  position: relative;
}
#top-reserve .container::before {
  position: absolute;
  content: "";
}
#top-reserve .container::before {
  width: 1px;
  height: 250px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background-color: #fff;
}
#top-reserve .ttl {
  text-align: left;
}
#top-reserve .sub-ttl {
  letter-spacing: 0.07em;
  margin-top: 20px;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  #top-reserve .sub-ttl {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#top-reserve .txt {
  line-height: 2.125;
  letter-spacing: 0.1em;
  margin-top: 55px;
}
#top-reserve .com-tel {
  padding-bottom: 20px;
}
#top-reserve .com-tel-num {
  font-size: 40px;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  #top-reserve .com-tel-num {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#top-reserve .com-tel-txt {
  font-size: 30px;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  #top-reserve .com-tel-txt {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#top-reserve .com-tel-svg {
  width: 250px;
}
#top-reserve .btn {
  margin-top: 40px;
}

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

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

========================================= */
/* =========================================
    sub  PC
    sub-about
========================================= */
#sub-message .bg {
  background: url(/img/about/message-bg.png) no-repeat top center;
}
@media screen and (min-width: 1921px) {
  #sub-message .bg {
    background: url(/img/about/message-bg.png) no-repeat top center/100%;
  }
}
#sub-message .inner {
  background: url(/img/about/message-deco.png) no-repeat right calc(100% - 168px);
  position: relative;
}
#sub-message .inner::before {
  position: absolute;
  content: "";
}
#sub-message .inner::after {
  position: absolute;
  content: "";
}
#sub-message .inner::before {
  width: 240px;
  height: 316px;
  left: -5.2vw;
  bottom: 5.2vw;
  background: url(/img/about/message-img02.jpg) no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1250px) {
  #sub-message .inner::before {
    left: -10px;
  }
}
#sub-message .inner::after {
  width: 199px;
  height: 170px;
  right: -5.2vw;
  top: 160px;
  background: url(/img/about/message-img01.jpg) no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1250px) {
  #sub-message .inner::after {
    right: -10px;
  }
}
#sub-message .container {
  position: relative;
}
#sub-message .ttl {
  position: absolute;
  letter-spacing: 0.05em;
  transform: translateX(-50%);
  left: 50%;
  top: -105px;
  color: rgba(255, 255, 255, 0.06);
  font-size: 120px;
  font-size: 12rem;
}
@media screen and (max-width: 767px) {
  #sub-message .ttl {
    font-size: 62px;
    font-size: 6.2rem;
  }
}
#sub-message .txt {
  text-align: center;
  line-height: 2.875;
  letter-spacing: 0.2em;
  margin-top: 75px;
}

#sub-reason .bg {
  position: relative;
  overflow: hidden;
  background-color: #000;
  z-index: 1;
}
#sub-reason .bg-img {
  width: 100%;
  height: 360px;
  background: url(/img/about/reason-bg-top.jpg) no-repeat center top;
}
@media screen and (min-width: 1921px) {
  #sub-reason .bg-img {
    height: 18.75vw;
    background: url(/img/about/reason-bg-top.jpg) no-repeat center top/100%;
  }
}
#sub-reason .ttl {
  position: absolute;
  writing-mode: vertical-rl;
  line-height: 2;
  top: 135px;
  right: calc(50% - 370px);
}
@media screen and (min-width: 1921px) {
  #sub-reason .ttl {
    top: 7vw;
  }
}
#sub-reason .list-item {
  width: 100%;
  height: 408px;
  position: relative;
}
#sub-reason .list-item:nth-of-type(2) {
  margin-top: 95px;
}
#sub-reason .list-item:nth-of-type(2) .list-wrap {
  margin-left: unset;
  margin-right: auto;
}
#sub-reason .list-item:nth-of-type(2) .list-top::before {
  right: unset;
  left: 0;
}
#sub-reason .list-item:nth-of-type(2) .list-img {
  left: unset;
  right: -100px;
}
#sub-reason .list-wrap {
  width: 465px;
  margin-left: auto;
  padding-top: 75px;
}
#sub-reason .list-top {
  gap: 20px;
  padding-bottom: 22px;
  position: relative;
}
#sub-reason .list-top::before {
  position: absolute;
  content: "";
}
#sub-reason .list-top::before {
  width: 540px;
  height: 1px;
  bottom: 0;
  right: 0;
  background: linear-gradient(to right, #ccb15d 0px, #ccb15d 130px, #808080 130px, #808080 540px);
  background-size: 100%;
}
#sub-reason .list-num {
  letter-spacing: 0.05em;
  line-height: 1;
  flex-shrink: 0;
  color: #ccb15d;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 60px;
  font-size: 6rem;
}
@media screen and (max-width: 767px) {
  #sub-reason .list-num {
    font-size: 30px;
    font-size: 3rem;
  }
}
#sub-reason .list-ttl {
  line-height: 1.875;
  letter-spacing: 0.2em;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  #sub-reason .list-ttl {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#sub-reason .list-img {
  position: absolute;
  left: -100px;
  top: 0;
  z-index: -1;
}
#sub-reason .list-txt {
  line-height: 2.125;
  margin-top: 65px;
}

#sub-commitment .bg {
  background: url(/img/about/commitment-bg.png) no-repeat right top/100%, url(/img/about/commitment-bg-btm.png) no-repeat center bottom;
  overflow: hidden;
}
@media screen and (min-width: 1921px) {
  #sub-commitment .bg {
    background: url(/img/about/commitment-bg.png) no-repeat right top/100%, url(/img/about/commitment-bg-btm.png) no-repeat center bottom/100%;
  }
}
#sub-commitment .list {
  margin-top: 90px;
}
#sub-commitment .list-item {
  position: relative;
  width: 100%;
}
#sub-commitment .list-item:nth-of-type(2) {
  margin-top: 172px;
}
#sub-commitment .list-item:nth-of-type(2) .list-box {
  max-width: unset;
  padding-left: 60px;
}
#sub-commitment .list-item:nth-of-type(2) .list-num {
  top: 5px;
}
#sub-commitment .list-item:nth-of-type(2) .list-ttl {
  padding-left: 5px;
}
#sub-commitment .list-item:nth-of-type(2) .list-img {
  position: absolute;
  top: 0;
  right: -100px;
  z-index: 0;
}
#sub-commitment .list-item:nth-of-type(3) {
  margin-top: 100px;
}
#sub-commitment .list-item:nth-of-type(3) .list-box {
  padding-left: 60px;
  margin-left: auto;
}
#sub-commitment .list-item:nth-of-type(3) .list-num {
  left: 505px;
  top: 5px;
}
#sub-commitment .list-item:nth-of-type(3) .list-ttl {
  padding-left: 5px;
}
#sub-commitment .list-item:nth-of-type(3) .list-img {
  position: absolute;
  top: 0;
  left: -100px;
  z-index: 0;
}
#sub-commitment .list-num {
  position: absolute;
  line-height: 1;
  letter-spacing: 0.16em;
  top: -35px;
  left: 2px;
  color: rgba(204, 177, 93, 0.15);
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 60px;
  font-size: 6rem;
}
@media screen and (max-width: 767px) {
  #sub-commitment .list-num {
    font-size: 30px;
    font-size: 3rem;
  }
}
#sub-commitment .list-num::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  bottom: 2px;
  left: -3px;
  background-color: rgba(204, 177, 93, 0.5);
}
#sub-commitment .list-ttl {
  letter-spacing: 0.16em;
  padding-left: 68px;
  color: #ccb15d;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 28px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  #sub-commitment .list-ttl {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
#sub-commitment .list-wrap {
  gap: 90px;
  margin-top: 35px;
}
#sub-commitment .list-wrap-item {
  width: 300px;
}
#sub-commitment .list-wrap-item:first-of-type {
  margin-top: 100px;
}
#sub-commitment .list-wrap-item:nth-of-type(2) {
  margin-top: 50px;
}
#sub-commitment .list-wrap-img {
  width: 100%;
}
#sub-commitment .list-wrap-ttl {
  line-height: 1.818;
  letter-spacing: 0.1em;
  margin-top: 30px;
  font-size: 22px;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  #sub-commitment .list-wrap-ttl {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
#sub-commitment .list-wrap-txt {
  letter-spacing: 0.1em;
  line-height: 2.125;
  margin-top: 15px;
}
#sub-commitment .list-box {
  width: 100%;
  max-width: 575px;
  height: 408px;
  padding-top: 40px;
}
#sub-commitment .list-txt {
  line-height: 2.125;
  letter-spacing: 0.1em;
  margin-top: 50px;
}
#sub-commitment .banner {
  width: 100%;
  margin-top: 60px;
  position: relative;
}
#sub-commitment .banner::before {
  position: absolute;
  content: "";
}
#sub-commitment .banner::after {
  position: absolute;
  content: "";
}
#sub-commitment .banner::before {
  width: 136px;
  height: 111px;
  left: 15px;
  bottom: 0;
  background: url(/img/about/banner-deco01.png) no-repeat;
  background-size: 100%;
}
#sub-commitment .banner::after {
  width: 70px;
  height: 139px;
  right: 77px;
  bottom: 0;
  background: url(/img/about/banner-deco02.png) no-repeat;
  background-size: 100%;
}
#sub-commitment .banner-link {
  width: 700px;
  height: 130px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: end;
  background: url(/img/about/banner-bg.png) no-repeat left center, #000;
  border: 1px solid rgba(204, 177, 93, 0.4);
  position: relative;
}
#sub-commitment .banner-link::after {
  position: absolute;
  content: "";
}
#sub-commitment .banner-link::after {
  width: 9px;
  height: 9px;
  bottom: 10px;
  right: 10px;
  background: url(/img/all/arw.png) no-repeat;
  background-size: 100%;
  transition: all 0.3s ease;
}
#sub-commitment .banner-link:hover::after {
  transform: translate(2px, 2px);
}
#sub-commitment .banner-wrap {
  padding-right: 35px;
}
#sub-commitment .banner-ttl {
  letter-spacing: 0.1em;
  line-height: 1.7;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  #sub-commitment .banner-ttl {
    font-size: 19px;
    font-size: 1.9rem;
  }
}
#sub-commitment .banner-ttl-lg {
  font-size: 26px;
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  #sub-commitment .banner-ttl-lg {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
#sub-commitment .banner-txt {
  letter-spacing: 0.1em;
  line-height: 2.125;
}
#sub-commitment .btn {
  margin-top: 55px;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

#sub-private .bg {
  overflow: hidden;
  position: relative;
}
#sub-private .inner {
  position: relative;
  z-index: 1;
}
#sub-private .inner::after {
  position: absolute;
  content: "";
}
#sub-private .inner::after {
  width: 186px;
  height: 229px;
  bottom: 3.5vw;
  right: -7.7vw;
  background: url(/img/about/private-deco.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
@media screen and (max-width: 1300px) {
  #sub-private .inner::after {
    bottom: 5px;
    right: -10px;
  }
}
#sub-private .wrap {
  width: 100%;
  max-width: 540px;
  margin-left: auto;
}
#sub-private .ttl {
  line-height: 1.5;
  letter-spacing: 0.2em;
}
#sub-private .txt {
  letter-spacing: 0.2em;
  line-height: 2.875;
  margin-top: 60px;
}
#sub-private .img {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: calc(50% - 960px);
}
@media screen and (max-width: 1250px) {
  #sub-private .img {
    left: calc(50% - 910px);
  }
}

/* =========================================
    sub  PC
    sub-cocktail
========================================= */
#sub-cocktail .bg {
  background: url(/img/cocktail/cocktail-bg.png) no-repeat center top;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1921px) {
  #sub-cocktail .bg {
    background: url(/img/cocktail/cocktail-bg.png) no-repeat center top/100%;
  }
}
#sub-cocktail .container {
  position: relative;
}
#sub-cocktail .container::after {
  position: absolute;
  content: "";
}
#sub-cocktail .container::after {
  width: 141px;
  height: 241px;
  top: 0;
  right: 34px;
  background: url(/img/cocktail/cocktail-deco.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
#sub-cocktail .ttl {
  text-align: center;
}
#sub-cocktail .txt {
  text-align: center;
  line-height: 2.875;
  margin-top: 40px;
}
#sub-cocktail .btn-list {
  margin-top: 70px;
}
#sub-cocktail .btn-list-link {
  letter-spacing: 0.1em;
  padding: 30px 65px 30px 75px;
  background: url(/img/cocktail/cocktail-check.png) no-repeat left center;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-style: normal;
  position: relative;
  font-size: 22px;
  font-size: 2.2rem;
}
#sub-cocktail .btn-list-link::after {
  position: absolute;
  content: "";
}
@media screen and (max-width: 767px) {
  #sub-cocktail .btn-list-link {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
#sub-cocktail .btn-list-link::after {
  width: 39px;
  height: 6px;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  background: url(/img/cocktail/cocktail-arw.png) no-repeat;
  background-size: 100%;
  transition: all 0.3s ease;
}
#sub-cocktail .btn-list-link:hover::after {
  transform: translate(3px, -50%);
}
#sub-cocktail .btn-list-link-lg {
  color: #ccb15d;
  font-size: 30px;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  #sub-cocktail .btn-list-link-lg {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#sub-cocktail .wrap {
  margin-top: 65px;
}
#sub-cocktail .wrap-box {
  width: 100%;
  padding-top: 100px;
}
#sub-cocktail .wrap-box:first-of-type .wrap-list {
  gap: 90px;
}
#sub-cocktail .wrap-box:first-of-type .wrap-list-item {
  flex-basis: calc((100% - 180px) / 3);
  max-width: calc((100% - 180px) / 3);
}
#sub-cocktail .wrap-ttl {
  text-align: center;
  letter-spacing: 0.2em;
  padding: 12px 10px;
  border-top: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  position: relative;
  font-size: 30px;
  font-size: 3rem;
}
#sub-cocktail .wrap-ttl::after {
  position: absolute;
  content: "";
}
@media screen and (max-width: 767px) {
  #sub-cocktail .wrap-ttl {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#sub-cocktail .wrap-ttl::after {
  width: 15px;
  height: 11px;
  transform: translateX(-50%);
  left: 50%;
  bottom: -12px;
  background: url(/img/cocktail/cocktail-ttl-deco.png) no-repeat;
  background-size: 100%;
}
#sub-cocktail .wrap-ttl-lg {
  font-size: 40px;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  #sub-cocktail .wrap-ttl-lg {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
#sub-cocktail .wrap-list {
  flex-wrap: wrap;
  gap: 80px;
  margin-top: 60px;
}
#sub-cocktail .wrap-list-item {
  flex-basis: calc((100% - 80px) / 2);
  max-width: calc((100% - 80px) / 2);
  padding: 35px 15px 50px;
  background-color: rgba(0, 0, 0, 0.4);
}
#sub-cocktail .wrap-list-ttl {
  text-align: center;
  letter-spacing: 0.1em;
  color: #ccb15d;
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  #sub-cocktail .wrap-list-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}
#sub-cocktail .wrap-list-ttl-sm {
  letter-spacing: 0.1em;
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  #sub-cocktail .wrap-list-ttl-sm {
    font-size: 19px;
    font-size: 1.9rem;
  }
}
#sub-cocktail .wrap-list-txt {
  text-align: center;
  letter-spacing: 0.1em;
  margin-top: 5px;
  color: #fff;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  #sub-cocktail .wrap-list-txt {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#sub-cocktail .list {
  margin-top: 28px;
  padding: 0 15px;
}
#sub-cocktail .list-item {
  letter-spacing: 0.2em;
  padding-bottom: 15px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  #sub-cocktail .list-item {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#sub-cocktail .list-item:nth-of-type(n + 2) {
  margin-top: 15px;
}

#sub-cocktail-menu .bg {
  background: url(/img/cocktail/menu-bg.jpg) no-repeat center top, url(/img/all/pt01.png) left top;
}
#sub-cocktail-menu .ttl {
  text-align: center;
}
#sub-cocktail-menu .note {
  text-align: center;
  margin-top: 40px;
  letter-spacing: 0.2em;
}
#sub-cocktail-menu .list {
  gap: 55px 80px;
  margin-top: 130px;
}
#sub-cocktail-menu .list-item {
  width: 100%;
  max-width: 500px;
}
#sub-cocktail-menu .list-ttl {
  text-align: center;
  letter-spacing: 0.2em;
  padding: 11px 10px;
  color: #000;
  background-color: #fff;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  #sub-cocktail-menu .list-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}
#sub-cocktail-menu .list-txt {
  line-height: 2.4;
  letter-spacing: 0.2em;
  margin-top: 60px;
  padding-bottom: 20px;
  color: #fff;
  border-bottom: 1px solid #fff;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  #sub-cocktail-menu .list-txt {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#sub-cocktail-menu .list-fee {
  letter-spacing: 0.2em;
  text-align: right;
  margin-top: 17px;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  #sub-cocktail-menu .list-fee {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

/* =========================================
    sub  PC
    sub-drink
========================================= */
#sub-drink .bg {
  background: url(/img/drink/top-menu-bg.png) no-repeat top center;
}
@media screen and (min-width: 1921px) {
  #sub-drink .bg {
    background: url(/img/drink/top-menu-bg.png) no-repeat top center/100%;
  }
}
#sub-drink .ttl {
  text-align: center;
}
#sub-drink .wrap {
  gap: 60px;
  margin-top: 65px;
}
#sub-drink .wrap-img {
  width: 510px;
}
#sub-drink .wrap-ttl {
  letter-spacing: 0.2em;
  text-align: center;
  margin-top: 30px;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 26px;
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  #sub-drink .wrap-ttl {
    font-size: 21px;
    font-size: 2.1rem;
  }
}

#sub-drink-menu .bg {
  background: url(/img/drink/menu-bg.jpg) no-repeat center top, url(/img/all/pt01.png) left top;
}
#sub-drink-menu .ttl {
  text-align: center;
}
#sub-drink-menu .note {
  text-align: center;
  margin-top: 40px;
  letter-spacing: 0.2em;
}
#sub-drink-menu .list {
  margin-top: 140px;
}
#sub-drink-menu .list-item {
  width: 100%;
}
#sub-drink-menu .list-item:nth-of-type(n + 2) {
  margin-top: 80px;
}
#sub-drink-menu .list-ttl {
  text-align: center;
  letter-spacing: 0.2em;
  padding: 11px 10px;
  color: #000;
  background-color: #fff;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  #sub-drink-menu .list-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}
#sub-drink-menu .menu {
  width: 100%;
  gap: 0 80px;
  margin-top: 28px;
}
#sub-drink-menu .menu-item {
  width: 100%;
  max-width: 500px;
  gap: 30px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
#sub-drink-menu .menu-ttl {
  letter-spacing: 0.2em;
  line-height: 2;
  color: #fff;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  #sub-drink-menu .menu-ttl {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#sub-drink-menu .menu-fee {
  letter-spacing: 0.2em;
  line-height: 2;
  flex-shrink: 0;
  color: #fff;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  #sub-drink-menu .menu-fee {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

/* =========================================
    sub  PC
    sub-food
========================================= */
#sub-food .bg {
  background: url(/img/food/food-menu-bg.jpg) no-repeat center top, url(/img/all/pt01.png) left top;
}
#sub-food .ttl {
  text-align: center;
}
#sub-food .note {
  text-align: center;
  margin-top: 40px;
  letter-spacing: 0.2em;
}
#sub-food .list {
  margin-top: 120px;
}
#sub-food .list-item {
  width: 100%;
}
#sub-food .list-item:nth-of-type(n + 2) {
  margin-top: 80px;
}
#sub-food .menu {
  width: 100%;
  gap: 0 80px;
}
#sub-food .menu-item {
  width: 100%;
  max-width: 500px;
  gap: 30px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
#sub-food .menu-ttl {
  letter-spacing: 0.2em;
  line-height: 2;
  color: #fff;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  #sub-food .menu-ttl {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
#sub-food .menu-fee {
  letter-spacing: 0.2em;
  line-height: 2;
  flex-shrink: 0;
  color: #fff;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  #sub-food .menu-fee {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

/* =========================================
    sub  PC
    sub-access
========================================= */
#sub-access .ttl {
  letter-spacing: 0.1em;
}
#sub-access .wrap {
  margin-top: 70px;
}
#sub-access .wrap-box {
  position: relative;
  width: 100%;
}
#sub-access .wrap-box:nth-of-type(n + 2) {
  margin-top: 130px;
}
#sub-access .wrap-primary {
  position: absolute;
  line-height: 1;
  letter-spacing: 0.16em;
  left: 0;
  top: -35px;
  color: rgba(204, 177, 93, 0.15);
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 60px;
  font-size: 6rem;
}
@media screen and (max-width: 767px) {
  #sub-access .wrap-primary {
    font-size: 30px;
    font-size: 3rem;
  }
}
#sub-access .wrap-ttl {
  letter-spacing: 0.16em;
  padding-left: 65px;
  color: #fff;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-style: normal;
  position: relative;
  font-size: 28px;
  font-size: 2.8rem;
}
#sub-access .wrap-ttl::before {
  position: absolute;
  content: "";
}
@media screen and (max-width: 767px) {
  #sub-access .wrap-ttl {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
#sub-access .wrap-ttl::before {
  width: 40px;
  height: 1px;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  background: rgba(204, 177, 93, 0.5);
  background-size: 100%;
}
#sub-access .list {
  flex-wrap: wrap;
  gap: 60px;
  margin-top: 50px;
}
#sub-access .list-item {
  flex-basis: calc((100% - 120px) / 3);
  max-width: calc((100% - 120px) / 3);
  height: 320px;
}
#sub-access .list-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#sub-shop .bg {
  background: url(/img/access/shop-bg.jpg) no-repeat center top/cover;
}
#sub-shop .ttl {
  text-align: center;
}
#sub-shop .table {
  width: 100%;
  max-width: 815px;
  margin: 45px auto 0;
}

#sub-map .map {
  width: 100%;
  height: 420px;
}
#sub-map .map iframe {
  width: 100% !important;
  height: 100% !important;
  border: none;
}

/* =========================================
    sub  PC
    sub-contact  お問い合わせフォーム テンプレ
		他ページのtableなどデザインを併用する
========================================= */
#sub-method .txt {
  line-height: 2;
  text-align: center;
  margin-top: 55px;
}
#sub-method .wrap {
  width: 100%;
  max-width: 800px;
  height: 130px;
  margin: 75px auto 0;
  padding-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  border-radius: 5px;
  position: relative;
}
#sub-method .wrap::before {
  position: absolute;
  content: "";
}
#sub-method .wrap::before {
  width: 2px;
  height: 60px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background-color: #ccb15d;
}
#sub-method .work {
  width: 340px;
  margin-left: 80px;
}

#sub-contact .privacy {
  color: #ccb15d;
  border-bottom: 1px solid #ccb15d;
}

#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にのみ適用するスタイル */
  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 #ccb15d;
  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 #ccb15d;
  background-color: #fff;
}
.privacy iframe {
  width: 100%;
  height: 265px;
}
.privacy-box {
  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: #000;
  background-color: #c8bc95;
  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 #000;
  border-right: 1px solid #000;
}

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

/* =========================================
    sub  PC
    news テンプレ
========================================= */
#sub-news .ttl {
  text-align: center;
}
#sub-news .tag-list {
  flex-wrap: wrap;
}
#sub-news .current {
  border-bottom: none;
}
#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: #f7f7f7;
  background-color: rgba(0, 0, 0, 0.5);
}
#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 #c8bc95;
  line-height: 1.6;
}
#sub-news .news-post-tag-txt {
  padding: 0 15px;
  border-right: 1px solid #c8bc95;
  text-align: center;
  color: #c8bc95;
  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: #f7f7f7;
  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 .com-news-post-con {
  padding: 35px;
  background-color: rgba(0, 0, 0, 0.5);
}

/* =========================================
  タグテンプレート
========================================= */
.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 #c8bc95;
  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 #c8bc95;
  cursor: pointer;
  border-radius: 0;
  background: none;
  color: #ccb15d;
  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;
  background-color: rgba(0, 0, 0, 0.5);
}
#tag-btn-list .tag-txt {
  flex-shrink: 0;
  margin-top: 5px;
  margin-right: 40px;
  color: #f7f7f7;
}
#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: #ccb15d;
}
#tag-btn-list .tag-current {
  color: #ccb15d;
  background-color: #fff;
}

/*	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;
  font-size: 16px;
  font-size: 1.6rem;
}
.pagenation li:nth-of-type(n + 2) {
  margin-left: 15px;
}
@media screen and (max-width: 767px) {
  .pagenation li {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.pagenation a,
.pagenation span {
  display: block;
}
.pagenation a {
  color: #ccb15d;
}
.pagenation .current-page {
  color: #fff;
  background: #ccb15d;
  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 #ccb15d;
  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 #ccb15d 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: #ccb15d;
  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: #ccb15d;
  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 .ttl {
  text-align: center;
}
#sub-site .list {
  width: 90%;
  margin: 50px auto 0;
}
#sub-site .list-link {
  width: 100%;
  border-bottom: 1px solid #ccb15d;
  color: #f7f7f7;
  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 #ccb15d;
  border-right: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  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 #ccb15d;
  }
}
@media screen and (min-width: 768px) {
  #sub-site .list-link:hover::before {
    left: 10px;
  }
}

/* =========================================
    sub  PC
    sub-complete
========================================= */
#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-color: rgba(0, 0, 0, 0.5);
}
#sub-privacy .ttl {
  text-align: center;
}
#sub-privacy .com-ttl03 {
  padding-bottom: 5px;
  border-bottom: 2px solid #fff;
}

/* =========================================
    sub  PC
    404 error
========================================= */
#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: #ccb15d;
}