@charset "UTF-8";
/*---------- ▼ cmn-tel ----------*/
.cmn-tel {
  line-height: 1;
  letter-spacing: 0.025em;
  font-family: 'alata', 'NotoSans', sans-serif;
}
@media screen and (min-width: 768px) {
  .cmn-tel {
    display: inline-block;
    font-size: 3.0rem;
    padding-left: 41px;
    background: url(../images/common/icon-tel.png) no-repeat left;
  }
}
@media screen and (max-width: 767px) {
  .cmn-tel {
    display: inline-flex;
    font-size: 2.4rem;
    align-items: center;
  }
  .cmn-tel::before {
    content: '\f095';
    margin-right: 10px;
    font-size: 0.8em;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
  }
}

/*---------- ▼ cmn-button ----------*/
.cmn-button {
  padding: 0 0 4px;
  color: #fff;
  text-align: center;
  background-color: #f9991d;
  position: relative;
}
.cmn-button::after {
  content: '';
  width: 100%;
  height: 100%;
  border: 1px solid #342b20;
  position: absolute;
  top: -5px;
  left: -5px;
}
.cmn-button:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .cmn-button {
    width: 184px;
  }
}
@media screen and (max-width: 767px) {
  .cmn-button {
    width: 35%;
    max-width: 184px;
    top: -5px;
    left: -5px;
  }
}

/*---------- ▼ cmn-link ----------*/
[class*="cmn-link"] {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  margin: auto;
  background: url(../images/common/pattern01.png) repeat center;
}
[class*="cmn-link"] span {
  display: block;
  color: #fff;
  position: relative;
}
[class*="cmn-link"] span::after {
  content: '';
  width: 11px;
  height: 11px;
  border-top: 3px solid;
  border-right: 3px solid;
  position: absolute;
  top: 50%;
  right: -65px;
  transform: translateY(-50%) rotate(45deg);
}
[class*="cmn-link"]:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  [class*="cmn-link"] {
    width: 370px;
    height: 90px;
  }
}
@media screen and (max-width: 767px) {
  [class*="cmn-link"] {
    width: 70%;
    height: 60px;
  }
  [class*="cmn-link"] span::after {
    right: -15px;
  }
}
.cmn-linkTwitter {
  position: relative;
}
.cmn-linkTwitter::before {
  content: '';
  width: 53px;
  height: 53px;
  background: url(../images/common/icon-twitter.png) no-repeat left/contain;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .cmn-linkTwitter::before {
    width: 29.44444px;
    height: 29.44444px;
    left: 10px;
  }
  .cmn-linkTwitter img {
    height: 17px;
    margin-left: 25px;
  }
}
.cmn-linkShop {
  position: relative;
  z-index: 10;
}
.cmn-linkShop::before {
  content: '';
  width: 100%;
  height: 100%;
  margin: auto;
  background: url(../images/common/pattern01.png) repeat center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.cmn-linkShop::after {
  content: '';
  width: 59px;
  height: 61px;
  background: url(../images/common/cmn-shop_deco.png) no-repeat center/contain;
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .cmn-linkShop::after {
    width: 39.33333px;
    height: 40.66667px;
    top: -10px;
    right: -10px;
  }
  .cmn-linkShop img {
    height: 40px;
  }
}

/*  ▼ table
------------------------------------- */
table {
  border: 1px solid #342b20;
}
table th {
  color: #fff;
  text-align: left;
  background-color: #f9991d;
}
@media screen and (min-width: 768px) {
  table tr:not(:last-child) {
    border-bottom: 1px solid #342b20;
  }
  table th {
    width: 160px;
    padding: 15px 20px;
    border-right: 1px solid #342b20;
  }
  table td {
    padding: 15px 25px;
  }
}
@media screen and (max-width: 767px) {
  table th {
    display: block;
    padding: 5px 10px;
  }
  table td {
    display: block;
    padding: 5px 10px;
  }
}

/*  ▼ sideNav
------------------------------------- */
.sideNav {
  position: fixed;
  right: 0;
  bottom: 50px;
  z-index: 500;
}
.sideNav a {
  width: auto;
}
.sideNav a:hover {
  opacity: 0.7;
}

/*  ▼ modal
------------------------------------- */
.modal {
  align-items: stretch;
  text-align: left;
}
.modal-card {
  height: 100%;
  padding: 15px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.5s;
}
.modal-card:hover {
  transform: translate(5px, -5px);
}
.modal-card:hover .modal-cardFig::after {
  opacity: 1;
}
.modal-card:hover .modal-cardFig img {
  transform: scale(1.05);
}
.modal-content {
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3000;
}
.modal-contentColumn {
  overflow-y: auto;
  background-color: #fff;
}
.modal-contentTitle {
  border-bottom: 2px dashed;
}
.modal-contentFig {
  height: auto;
  text-align: center;
}
@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, .modal-cardFig_image, .modal-contentFig_image {
    object-fit: none;
  }
}
@media screen and (min-width: 768px) {
  .modal {
    justify-content: flex-start;
  }
  .modal-content {
    top: 0;
  }
  .modal-contentColumn {
    width: 1080px;
    height: 70vh;
    padding: 50px 150px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .modal-contentFig {
    margin: 0 0 20px;
  }
  .modal-contentFig img {
    width: 100%;
    height: auto;
    object-position: center;
  }
  .modal-contentTitle {
    padding: 0 0 10px;
    margin: 0 0 8px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .modal-contentColumn {
    width: 90%;
    height: 70vh;
    padding: 20px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .modal-contentFig {
    margin: 0 0 10px;
    text-align: center;
  }
  .modal-contentTitle {
    padding: 0 0 10px;
    margin: 0 0 10px;
    font-size: 1.6rem;
  }
  .modal-content p {
    line-height: 1.8;
  }
}

/*  ▼ news
------------------------------------- */
.news-list {
  overflow: hidden;
}
.news-list li {
  line-height: 1;
  margin: 0 0 6px;
  border-left: 6px solid #f9991d;
  background-color: #e4f5f8;
  transition: all 0.5s;
}
.news-list li:hover {
  transform: translateX(10px);
}
.news-list a:hover {
  opacity: 0.7;
}
.news-list time {
  color: #f9991d;
}
.news-list span {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .news-list a {
    padding: 10px 20px;
  }
  .news-list span {
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .news-list a {
    padding: 10px;
  }
  .news-list span {
    margin-left: 10px;
  }
}
.newsUnder-title {
  margin: 0 0 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .newsUnder {
    padding: 100px 0;
  }
}
.newsDetail-body {
  min-height: 40vh;
  border-top: 2px solid #342b20;
  border-bottom: 2px solid #342b20;
}
.newsDetail-body a {
  display: inline-block !important;
  text-decoration: underline;
}
.newsDetail time {
  display: block;
  margin: 0 0 1em;
}
@media screen and (min-width: 768px) {
  .newsDetail {
    padding: 100px 0;
  }
  .newsDetail-title {
    margin: 0 0 25px;
    font-size: 2.4rem;
  }
  .newsDetail-body {
    padding: 30px 15px;
  }
}
@media screen and (max-width: 767px) {
  .newsDetail {
    padding: 50px 0 60px;
  }
  .newsDetail-title {
    margin: 0 0 20px;
    font-size: 1.8rem;
  }
  .newsDetail-body {
    padding: 20px 15px;
  }
}

/*  ▼ postView
------------------------------------- */
.postView {
  width: 100%;
  margin-top: 30px;
  line-height: 2;
  position: relative;
}
.postView-prev {
  margin-right: auto;
}
.postView-next {
  margin-left: auto;
}
.postView-home {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .postView {
    text-align: center;
    font-size: 1.3rem;
  }
}

/*  ▼ pagenation
------------------------------------- */
.pagenation {
  display: flex;
  justify-content: center;
  width: 100%;
  line-height: 1.5;
}
.pagenation li {
  background-color: #ccc;
}
.pagenation li:not(:last-child) {
  margin-right: 10px;
}
.pagenation li:not(.current):hover {
  opacity: 0.7;
}
.pagenation li.current {
  color: #fff;
  background-color: #745f45;
}
.pagenation a {
  padding: 5px 10px;
  text-decoration: underline;
}
.pagenation span {
  display: block;
  padding: 5px 10px;
}
@media screen and (min-width: 768px) {
  .pagenation {
    margin: 50px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .pagenation {
    margin: 30px 0 0;
  }
}

/*  ▼ breadcrumbs
------------------------------------- */
.breadcrumbs {
  background-color: #fff;
}
.breadcrumbs-wrap {
  justify-content: flex-start;
}
.breadcrumbs li {
  list-style: none;
  overflow: hidden;
  font-size: 1.4rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
}
.breadcrumbs li:last-child {
  flex: 1 1 0%;
}
.breadcrumbs li:not(:last-child)::before {
  content: ' ';
  display: block;
  margin: auto;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
}
.breadcrumbs a {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .breadcrumbs {
    padding: 7px 0;
    margin: 40px 0 0;
  }
  .breadcrumbs li:not(:last-child) {
    padding-right: 30px;
  }
  .breadcrumbs li:not(:last-child)::before {
    width: 8px;
    height: 8px;
    right: 13px;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    padding: 8px 0;
    font-size: 1.2rem;
  }
  .breadcrumbs li:not(:last-child) {
    padding-right: 22px;
  }
  .breadcrumbs li:not(:last-child)::before {
    width: 7px;
    height: 7px;
    right: 10px;
  }
  .breadcrumbs a {
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
