@charset "UTF-8";

/* ヘッダー */
.header {
  width: 100%;
  height: 60px;
  background: rgba(247, 244, 244, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding-left: 30px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  transition: all .3s;
}
.header .flex_inn {
  height: 60px;
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  width: 80px;
  margin-right: 20px;
}
.header .list {
  gap: 20px;
  margin-left: auto;
  margin-right: 20px;
}
.header .item > a {
  line-height: 60px;
  font-size: 12px;
  display: block;
  transition: all .3s;
  position: relative;
}
.header .item:hover > a {
  color: var(--color2);
}
.header .item > a svg {
  margin-left: 10px;
}
.header .hd_child_item_box {
  display: none;
}
.header .hd_childlist {
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 20px;
  background: rgba(255, 255, 255, .94);
  position: absolute;
  top: 60px;
  left: 0;
  padding: 40px 80px;
}
.header .hd_childitem {
  width: 100%;
  max-width: 180px;
  box-sizing: border-box;
}
.header .hd_childitem .pict {
  box-shadow: 0 1px 5px rgba(0, 0, 0, .1);
  margin-bottom: 10px;
}
.header .hd_childitem .pict img {
  width: 100%;
}
.header .hd_childitem .txt {
  transition: all .3s;
}
.header .hd_childitem a:hover .txt {
  color: var(--color2);
}
.header .hd_childitem .txt span {
  color: var(--color5);
  margin-left: 1em;
}
.header .btn {
  height: 60px;
  background-color: var(--color2);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  transition: all .3s;
}
.header .btn:hover {
  background-color: var(--color1);
}
.header .btn a {
  display: block;
  transition: all .3s;
}
.header .btn:hover a {
  color: var(--color2);
}
.header .btn svg {
  margin-right: 10px;
}
.header .btn span {
  font-size: 10px;
  display: block;
}
.header_nav,
.burger_btn {
  display: none;
}
@media screen and (max-width:1280px) {
  .header {
    height: 45px;
    padding-left: 20px;
  }
  .header .flex_inn {
    height: 45px;
  }
  .header .logo {
    width: 55px;
  }
  .header .list {
    display: none;
  }
  .header .btn {
    height: 45px;
    padding: 0 10px;
    margin-left: auto;
  }
  .header .btn a {
    font-size: 13px;
  }
  .header_nav,
  .burger_btn {
    display: block;
  }
  .burger_btn {
    width: 75px;
    height: 45px;
    border: none;
    background-color: #c6b78f;
    position: relative;
  }
  .burger_btn::after {
    content: "MENU";
    width: 100%;
    font-size: 10px;
    font-weight: 700;
    color: var(--color1);
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    transition: all .3s;
  }
  .burger_btn.close::after {
    content: "CLOSE";
  }
  .bar {
    width: 25px;
    height: 3px;
    background-color: var(--color1);
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all .3s;
  }
  .bar_top {
    top: 8px;
  }
  .bar_mid {
    top: 33%;
  }
  .bar_bottom {
    bottom: 20px;
  }
  .burger_btn.close .bar_top {
    transform: translate(-50%, 7px) rotate(45deg);
  }
  .burger_btn.close .bar_mid {
    opacity: 0;
  }
  .burger_btn.close .bar_bottom {
    transform: translate(-50%, -7px) rotate(-45deg);
  }
  .nav_wrapper {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 45px;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity .5s ease, visibility .5s ease;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3;
  }
  .nav_wrapper.fade {
    opacity: 1;
    visibility: visible;
  }
  .header_nav {
    width: 100%;
    max-width: 380px;
    height: 100%;
    background: rgba(47, 43, 41, .95);
    box-sizing: border-box;
    padding: 20px 20px 180px;
    overflow-y: scroll;
    margin-left: auto;
    z-index: 2;
  }
  .header_nav .nav_item {
    position: relative;
  }
  .header_nav .nav_item svg {
    font-size: 14px;
    color: #fff;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
  }
  .header_nav .nav_item > a {
    font-size: 14px;
    color: #fff;
    padding: 15px;
    display: block;
  }
  .header_nav .nav_item > a.accordion {
    position: relative;
  }
  .header_nav .nav_item > a.accordion::before,
  .header_nav .nav_item > a.accordion::after {
    content: "";
    width: 10px;
    height: 1px;
    position: absolute;
    top: 50%;
    right: 20px;
    background: #fff;
    transition: all .3s ease-in-out;
  }
  .header_nav .nav_item > a.accordion::before {
    transform: rotate(90deg);
  }
  .header_nav .nav_item > a.accordion.open::before {
    transform: rotate(180deg);
  }
  .header_nav .nav_item > a.accordion.open::after {
    opacity: 0;
  }
  .header_nav .childlist {
    display: none;
  }
  .header_nav .childnav {
    margin-bottom: 20px;
  }
  .header_nav .childnav:last-child {
    margin-bottom: 0;
  }
  .header_nav .childnav a {
    font-size: 14px;
    color: #fff;
    padding-left: 30px;
    display: block;
  }
  .header_nav .childnav a span {
    color: var(--color5);
    margin-left: 1em;
  }
}

/* フッター */
.footer {
  background-color: var(--color4);
  padding: 60px 0 30px;
}
.footer .flex_inn {
  justify-content: space-between;
}
.footer .nav {
  margin-right: 30px;
}
.footer .box .item {
  margin-bottom: 10px;
}
.footer .box .item:last-child {
  margin-bottom: 0;
}
.footer .box a {
  font-size: 12px;
  letter-spacing: .1em;
  transition: all .3s;
}
.footer .box a:hover {
  opacity: .5;
}
.footer .box span {
  color: var(--color5);
  margin-left: 1em;
}
.footer .box svg {
  margin-left: 1em;
}
.copyright {
  font-size: 12px;
  color: #C2AAAA;
  margin-top: 60px;
}
@media screen and (max-width:768px) {
  .footer {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .footer .flex_inn {
    display: block;
  }
  .footer .logo {
    text-align: center;
    margin-bottom: 40px;
  }
  .footer .box {
    justify-content: center;
  }
  .footer .listbox.flex {
    display: block;
    border-right: solid 1px var(--color1);
    padding-right: 40px;
    margin-right: 40px;
  }
  .footer .nav {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media screen and (min-width:769px) {
  .footer .listbox.flex {
    border-right: solid 1px var(--color1);
    padding-right: 60px;
    margin-right: 60px;
    position: relative;
  }
}

/* キャンペーンバナー */
.flbnrbox {
  width: 100%;
  max-width: 400px;
  background-color: #fff;
  position: fixed;
  right: 20px;
  bottom: 20px;
  transition: all .3s ease;
}
.flbnrbox img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.flbnrbox.is-hidden {
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width:768px) {
  .flbnrbox {
    width: 95%;
    bottom: 10px;
    right: 50%;
    transform: translateX(50%);
    -webkit-transform: translateX(50%);
  }
}

/* セクションタイトル */
.sectitlebox {
  margin-bottom: 30px;
}
.sectitlebox .sectitle {
  font-size: 28px;
  color: var(--color2);
}
.sectitlebox .sectxt {
  font-size: 16px;
  line-height: 2;
  margin-top: 20px;
}
@media screen and (max-width:768px) {
  .sectitlebox .sectitle {
    font-size: 20px;
  }
  .sectitlebox .sectxt {
    font-size: 14px;
  }
}

/* コンバージョン */
.conversion .box {
  border: solid 6px #E8E1CE;
  background-color: #fff;
  padding: 50px 60px;
}
.conversion .txt {
  font-size: 16px;
  line-height: 2;
}
.conversion .txt a {
  color: var(--color2);
  text-decoration: underline;
}
.conversion .comment {
  font-size: 14px;
  color: var(--color2);
  margin-top: 20px;
}
.conversion .list {
  gap: 20px;
  margin-top: 50px;
}
.conversion .item {
  width: calc((100% - 40px)/3);
  border-radius: 10px;
  background-color: var(--color2);
  box-shadow: 0 5px 0 #A79B7D;
  box-sizing: border-box;
  transition: all .3s;
}
.conversion .item:hover {
  box-shadow: 0px 0px 0px #A79B7D;
  transform: translate(0, 5px);
}
.conversion .item a {
  width: 100%;
  height: 100%;
  color: #fff;
  padding: 20px;
  display: block;
}
.conversion .item .itemtxt {
  font-size: 18px;
  margin-top: 10px;
}
.conversion .item .itemtxt span {
  font-size: 12px;
  display: block;
}
@media screen and (max-width:768px) {
  .conversion .box {
    padding: 20px;
  }
  .conversion .txt {
    font-size: 14px;
  }
  .conversion .comment {
    font-size: 12px;
  }
  .conversion .list {
    flex-wrap: wrap;
    margin-top: 20px;
  }
  .conversion .item {
    width: 100%;
  }
  .conversion .item a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
  }
  .conversion .item .icon {
    width: 50px;
    min-width: 50px;
    box-sizing: border-box;
  }
  .conversion .item .itemtxt {
    margin: 0;
  }
  .conversion .item .itemtxt span {
    display: inline-block;
  }
}

/* ページタイトル */
.pagetitlebox {
  background-image: url(../img/common/img_page-title.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 80px 0;
}
.pagetitlebox .title {
  font-size: 32px;
}
.pagetitlebox .icon {
  line-height: 1;
  margin: 30px 0;
}
.pagetitlebox .sub {
  font-size: 18px;
}
.pagetitlebox .sub span {
  color: var(--color5);
  margin-left: 1em;
}
.pagetitlebox .txt {
  font-size: 12px;
  font-weight: 400;
}
@media screen and (max-width:768px) {
  .pagetitlebox .title {
    font-size: 28px;
  }
  .pagetitlebox .icon {
    margin: 20px 0;
  }
  .pagetitlebox .sub {
    font-size: 16px;
  }
}

/*　パンくず　*/
.breadcrumbs {
  width: 95%;
  font-size: 12px;
  line-height: 1.5;
  position: absolute;
  top: 80px;
  left: 35px;
}
.breadcrumbs span:hover a {
  text-decoration: underline;
}
.breadcrumbs span a span:after {
  content: "\e5cc";
  font-family: 'Material Icons';
  display: inline-block;
  position: relative;
  top: 2px;
  margin: 0 5px;
}
@media screen and (max-width:768px) {
  .breadcrumbs {
    top: 60px;
    left: 10px;
  }
}

/* ページメイン */
.pagemain {
  margin-top: -50px;
}

/* コーナータイトル */
.page_sectitlebox {
  margin-bottom: 50px;
}
.page_sectitlebox .title {
  font-size: 26px;
}
.page_sectitlebox .icon {
  line-height: 1;
  margin-top: 15px;
}
@media screen and (max-width:768px) {
  .page_sectitlebox {
    margin-bottom: 30px;
  }
  .page_sectitlebox .title {
    font-size: 18px;
  }
  .page_sectitlebox .icon {
    margin-top: 10px;
  }
  .page_sectitlebox .icon img {
    width: 120px;
  }
}

/* 流れ */
.flowarea {
  margin: 50px 0;
}
.flowarea .inn {
  height: 500px;
  border: solid 1px #dbdbdb;
  border-radius: 15px;
  padding: 30px 50px 80px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  transition: all .3s;
}
.flowarea .inn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 70%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
.flowarea .title {
  font-size: 26px;
  color: var(--color2);
  margin-bottom: 15px;
}
.flowarea .txt {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 30px;
}
.flowarea .flowitem,
.flowarea .flex_inn {
  gap: 20px;
}
.flowarea .flowitem {
  margin-bottom: 40px;
}
.flowarea .flowitem:last-child {
  margin-bottom: 0;
}
.flowarea .num {
  position: relative;
}
.flowarea .num span {
  width: 38px;
  min-width: 38px;
  height: 38px;
  line-height: 38px;
  color: #fff;
  border-radius: 50%;
  background-color: var(--color2);
  display: block;
  position: relative;
}
.flowarea .num::before {
  content: "";
  width: 6px;
  height: 96%;
  background-image: url(../img/common/flow-dot.svg);
  background-repeat: repeat-y;
  background-position: center bottom;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.flowarea .num::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../img/common/flow-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.flowarea .flowitem:last-child .num::before,
.flowarea .flowitem:last-child .num::after {
  content: none;
}
.flowarea .boxtitle {
  font-size: 18px;
  color: var(--color2);
  margin-bottom: 20px;
}
.flowarea .boxtxt {
  font-size: 14px;
  letter-spacing: .1em;
  text-align: justify;
  line-height: 2;
}
.flowarea .pict {
  width: 250px;
  min-width: 250px;
  box-sizing: border-box;
}
.flowarea .unit_btn {
  font-size: 12px;
  color: #4681E0;
  cursor: pointer;
  background: none;
  border: none;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateY(0) translateX(-50%);
  -webkit-transform: translateY(0) translateX(-50%);
  z-index: 2;
}
@media screen and (max-width:768px) {
  .flowarea .inn {
    padding: 30px 20px 80px;
  }
  .flowarea .title {
    font-size: 18px;
  }
  .flowarea .txt {
    font-size: 14px;
  }
  .flowarea .flex_inn {
    flex-wrap: wrap;
    gap: 20px;
  }
  .flowarea .txtbox {
    width: 100%;
    box-sizing: border-box;
  }
  .flowarea .boxtitle {
    margin-bottom: 10px;
  }
  .flowarea .pict {
    width: 100%;
    min-width: 100%;
  }
  .flowarea .pict img {
    width: 100%;
  }
}

/* トレーニングエリア */
.training_box {
  border: solid 6px #E8E1CE;
  background-color: #fff;
  padding: 50px 60px;
}
.training_box .title {
  font-size: 22px;
  color: var(--color2);
  margin-bottom: 20px;
}
.training_box .title span {
  font-size: 18px;
  display: block;
}
.training_box .txt {
  font-size: 16px;
  line-height: 2;
  text-align: justify;
}
.training_box .txt a {
  color: var(--color2);
  text-decoration: underline;
}
.training_box .price {
  font-size: 20px;
  margin-top: 10px;
}
.training_box .price span {
  font-size: 36px;
}
.training_box .order {
  font-size: 14px;
  border: solid 1px var(--color1);
  padding: 10px;
  margin: 20px 0;
}
.training_box .comment {
  font-size: 14px;
  color: var(--color2);
}
@media screen and (max-width:768px) {
  .training_box {
    padding: 30px 20px;
  }
  .training_box .title {
    font-size: 24px;
  }
  .training_box .txt {
    font-size: 14px;
  }
  .training_box .price {
    font-size: 16px;
  }
  .training_box .price span {
    font-size: 28px;
  }
  .training_box .comment {
    font-size: 12px;
  }
}

/* サイドバー */
.sidebar {
  width: 250px;
  min-width: 250px;
  border: solid 6px #E8E1CE;
  background-color: #fff;
  padding: 30px 20px;
  box-sizing: border-box;
}
.sidebar .title {
  font-size: 14px;
  border-bottom: solid 1px #DED6CB;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.sidebar .item {
  border-bottom: dotted 1px #DED6CB;
  padding-bottom: 15px;
  margin-bottom: 10px;
}
.sidebar .item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.sidebar .item a {
  color: var(--color2);
  text-align: justify;
}
.sidebar .item a:hover {
  text-decoration: underline;
}
@media screen and (max-width:768px) {
  .sidebar {
    width: 100%;
    min-width: 100%;
  }
}

/* 店舗一覧エリア */
.shoplistbox {
  border: solid 6px #E8E1CE;
  background-color: #fff;
  padding: 50px 60px;
}
.shoplistbox .txt {
  margin-bottom: 30px;
}
.shoplistbox .txt a {
  font-size: 18px;
  transition: all .3s;
}
.shoplistbox .txt a:hover {
  color: var(--color2);
}
.shoplistbox .txt svg {
  margin-left: 1em;
}
.shoplistbox .navlist {
  flex-wrap: wrap;
  gap: 15px 20px;
}
.shoplistbox .navitem {
  width: calc((100% - 60px)/4);
  box-sizing: border-box;
}
.shoplistbox .navitem a {
  font-size: 16px;
  transition: all .3s;
}
.shoplistbox .navitem a:hover {
  color: var(--color2);
}
.shoplistbox .navitem svg {
  margin-right: 1em;
}
.shoplistbox .navitem span {
  color: var(--color5);
  margin-left: 1em;
}
@media screen and (max-width:768px) {
  .shoplistbox {
    padding: 30px 20px;
  }
  .shoplistbox .navlist {
    gap: 10px;
    padding: 0 1em;
  }
  .shoplistbox .navitem {
    width: 100%;
  }
  .shoplistbox .navitem a {
    font-size: 14px;
  }
}

/* ank */
.ank {
  padding-top: 60px;
  margin-top: -60px;
  margin-bottom: 20px;
}
.ank:last-child {
  margin-bottom: 0;
}
@media screen and (max-width:1280px) {
  .ank {
    padding-top: 45px;
    margin-top: -45px;
  }
}

/* フォーム */
.form_container {
  border: solid 6px #E8E1CE;
  background-color: #fff;
  padding: 50px 60px;
}
.form_container .box {
  font-size: 14px;
  align-items: center;
  margin-bottom: 30px;
}
.form_container .form-title {
  width: 240px;
  min-width: 240px;
  box-sizing: border-box;
}
.form_container .form-required {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  border-radius: 5px;
  background-color: #e44e4e;
  padding: 3px 10px 5px;
  margin-right: 10px;
  display: inline-block;
}
.form_container .box input,
.form_container .box select,
.form_container .box textarea {
  font-size: 16px;
  line-height: 1.2;
  color: var(--color1);
  border: none;
  border-radius: 5px;
  background-color: #f0f0f0;
  padding: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form_container .box input[type="date"] {
  height: 40px;
}
.form_container .daybox input[type="date"] {
  margin-right: 10px;
}
.form_container .box select {
  background-image: url(../img/common/arrow_bl_ud.svg);
  background-repeat: no-repeat;
  background-size: 12px 7px;
  background-position: right 13px bottom 15px;
  padding-right: 35px;
}
.form_container .wpcf7-list-item {
  margin: 0 !important;
}
.form_container .wpcf7-list-item.first {
  display: block;
  margin-bottom: 20px !important;
}
.form_container input[type=radio]:checked,
.form_container input[type=checkbox]:checked {
  background-color: var(--color1);
}
.form_container .btn input {
  width: 100%;
  max-width: 150px;
  height: 100%;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border: none;
  border-radius: 10px;
  background-color: var(--color2);
  box-shadow: 0 5px 0 #A79B7D;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding: 15px;
  margin: 0 auto;
  transition: all .3s;
  display: block;
}
.form_container .btn input:hover {
  box-shadow: 0px 0px 0px #A79B7D;
  transform: translate(0, 5px);
}
@media screen and (max-width:768px) {
  .form_container {
    padding: 30px 20px;
  }
  .form_container .box {
    display: block;
    margin-bottom: 20px;
  }
  .form_container .form-title {
    width: 100%;
    min-width: 100px;
    margin-bottom: 10px;
  }
  .form_container .box input[type="text"],
  .form_container .box input[type="email"],
  .form_container .box input[type="tel"],
  .form_container .box input[type="date"],
  .form_container .box select,
  .form_container .box textarea {
    width: 100%;
    box-sizing: border-box;
  }
  .form_container .daybox input[type="date"] {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/* テーブル */
.table {
  width: 100%;
  box-sizing: border-box;
}
.table tr th,
.table tr td {
  font-size: 14px;
  text-align: justify;
  vertical-align: middle;
  line-height: 2;
  border: solid 1px #dedede;
  background-color: #f7f7f7;
  padding: 10px 20px;
}
.table tr th {
  width: 230px;
  min-width: 230px;
  text-align: left;
  color: #fff;
  background-color: var(--color2);
}
@media screen and (max-width:768px) {
  .table tr {
    display: block;
    margin-bottom: 10px;
  }
  .table tr:last-child {
    margin-bottom: 0;
  }
  .table tr th,
  .table tr td {
    line-height: 1.75;
    border: none;
    display: block;
  }
  .table tr th {
    width: 100%;
    min-width: 100%;
  }
}

/* スタッフボックス */
.staffbox {
  border: solid 6px #E8E1CE;
  background-color: #fff;
  padding: 30px 40px;
  margin-bottom: 20px;
  position: relative;
}
.staffbox:last-child {
  margin-bottom: 0;
}
.staffbox .name {
  font-size: 24px;
  margin-bottom: 35px;
}
.staffbox .flex_inn {
  align-items: flex-start;
  gap: 40px;
  border-bottom: solid 1px #f0f0f0;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.staffbox .txtbox {
  width: 100%;
  box-sizing: border-box;
}
.staffbox .txtbox .title {
  font-size: 18px;
  margin-bottom: 10px;
}
.staffbox .childbox {
  margin-bottom: 30px;
}
.staffbox .childbox:last-child {
  margin-bottom: 0;
}
.staffbox .childbox .childtxt {
  text-align: justify;
  line-height: 2;
}
.staffbox .pict {
  width: 300px;
  min-width: 300px;
  box-sizing: border-box;
}
.staffbox .txt {
  font-size: 14px;
  line-height: 2;
  text-align: justify;
}
.staffbox .icon {
  position: absolute;
  top: 20px;
  right: 30px;
}
.staffbox .icon a {
  font-size: 45px;
  line-height: 1;
  color: #E8E1CE;
  transition: all .3s;
}
.staffbox .icon a:hover {
  color: var(--color2);
}
@media screen and (max-width:768px) {
  .staffbox {
    padding: 30px 20px;
  }
  .staffbox .name {
    font-size: 20px;
    margin-bottom: 25px;
  }
  .staffbox .name span.post {
    display: block;
  }
  .staffbox .flex_inn {
    flex-wrap: wrap;
  }
  .staffbox .txtbox .title {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .staffbox .childbox {
    margin-bottom: 20px;
  }
  .staffbox .childbox .childtxt {
    font-size: 14px;
  }
  .staffbox .pict {
    width: 100%;
    min-width: 100%;
  }
  .staffbox .icon {
    top: 10px;
    right: 20px;
  }
}

/* ショップボックス */
.shopbox {
  border: solid 6px #E8E1CE;
  background-color: #fff;
  padding: 50px 60px;
}
.shopbox .name {
  margin-bottom: 20px;
}
.shopbox .name a {
  font-size: 18px;
  transition: all .3s;
}
.shopbox .name a span {
  color: var(--color5);
  margin-left: 1em;
}
.shopbox .name a:hover {
  color: var(--color2);
}
.shopbox .name a svg {
  margin-left: 1em;
}
.shopbox .flex_inn {
  align-items: flex-start;
  gap: 20px;
}
.shopbox .txtbox {
  width: 380px;
  min-width: 380px;
  box-sizing: border-box;
}
.shopboxtable {
  width: 100%;
  box-sizing: border-box;
}
.shopboxtable td {
  text-align: justify;
  padding-bottom: 15px;
}
.shopboxtable td:first-child {
  width: 80px;
  min-width: 80px;
}
.shopbox .txtbox .icon {
  width: 120px;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.shopbox .txtbox .txt {
  flex-wrap: wrap;
  gap: 5px;
}
.shopbox .txtbox .txt span {
  font-size: 12px;
  color: #fff;
  border-radius: 5px;
  background-color: var(--color1);
  padding: 5px 15px;
  display: block;
}
.shopbox .pict {
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width:768px) {
  .shopbox {
    padding: 30px 20px;
  }
  .shopbox .flex_inn {
    flex-wrap: wrap;
    gap: 40px;
  }
  .shopbox .txtbox {
    width: 100%;
    min-width: 100%;
  }
  .shopboxtable tr:nth-child(2) {
    border-top: 3px dotted #dbdbdb;
    border-bottom: 3px dotted #dbdbdb;
  }
  .shopboxtable tr:nth-child(2) td,
  .shopboxtable tr:last-child td {
    padding-top: 15px;
  }
}

/* 一覧ページャー */
.wp-pagenavi {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.wp-pagenavi a,
.wp-pagenavi span,
.wp-pagenavi span.current {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 17px;
  font-weight: 700;
  color: #908575;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #E8E1CE;
  border-radius: 5px;
  transition: all .3s;
}
.wp-pagenavi span.current {
  color: #fff;
  background-color: #E8E1CE;
}
.wp-pagenavi a:hover,
.wp-pagenavi span:hover {
  color: #fff;
  background-color: #E8E1CE;
}
@media screen and (max-width:768px) {
  .wp-pagenavi {
    justify-content: center;
  }
}

/*　シングルページページャー　*/
.post-navigation {
	font-size: 14px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.post-navigation a {
  display: inline-block;
  transition: all .3s;
}
.post-navigation a:hover {
  color: var(--color2);
}
.post-navigation .list {
	margin: 0 4rem;
}
@media screen and (max-width:768px) {
  .post-navigation {
    font-size: 12px;
    margin: 40px 0;
  }
}