@charset "utf-8";

/****************************************
基本
****************************************/
html,
body {
  min-height: 100vh;
}

body {
  font-size: 1.6rem;
  font-family: 'Noto Sans Japanese', sans-serif;
  color: #DDD;
  letter-spacing: 1px;
  line-height: 1.8;
  user-select: none;
  background-color: #000;
  overflow-wrap: break-all;
}

.wrap {
  width: 90%;
  padding: 50px 0 150px;
  margin: auto;
  position: relative;
}

h1 {
  color: #B2A073;
  text-align: center;
  margin-bottom: 30px;
  padding-right: 100px;
  padding-left: 100px;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.4;

  & span {
    display: block;
    font-size: 2.8rem;
  }
}

h2 {
  font-size: 2.2rem;
  font-weight: 600;
  width: 100%;
  display: flex;
  align-items: center;

  &:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #333;
  }

  &:after {
    margin-left: 10px;
  }

  &:not(:first-of-type) {
    margin-top: 30px;
  }
}

.loadingText {
  text-align: center;
  margin-top: 50px;
  font-size: 1.8rem;
  font-weight: 500;
}

.loadingImg {
  position: absolute;
  top: 150px;
  right: 0;
  left: 0;
  width: 100px;
  margin: auto;
}

.notFoundText {
  margin: 30px 0;
  text-align: center;
}

.goHomeBtn {
  text-align: center;
  display: block;
  margin: auto;
  font-size: 1.8rem;
  border: 1px solid #DDD;
  border-radius: 50px;
  width: fit-content;
  padding: 10px 30px;
  line-height: 1;
  font-weight: 500;

  & i {
    margin-right: 5px;
  }
}

::placeholder {
  color: #DDD;
  letter-spacing: 1px;
}

.pcObj {
  display: block;
}

.spObj {
  display: none;
}

.spPtObj {
  display: none;
}

@media only screen and (max-width: 768px) {
  .wrap {
    padding-top: 30px;
  }

  h1 {
    margin-bottom: 20px;
    padding-right: 0;
    padding-left: 0;
  }

  h2 {
    border-bottom: none;
  }

  .telLink a,
  .telLink a:visited,
  .telLink a:hover {
    color: #333;
  }

  .telLink a {
    text-decoration: underline;
  }

  .pcObj {
    display: none;
  }

  .spObj {
    display: block;
  }
}

@media only screen and (max-width: 768px) and (orientation : portrait) {
  .spPtObj {
    display: block;
  }
}

/****************************************
ヘッダ
****************************************/
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #000;
  padding: 30px 50px;
  z-index: 200;
  box-shadow: 0 0 10px rgba(0255, 255, 255, 0.3);
}

.headerLogo {
  max-width: 250px;
  display: block;
  line-height: 1;
}

@media only screen and (max-width: 768px) {
  header {
    padding: 15px 5%;
  }
}

/**********言語選択**********/
.gt_switcher {
  position: absolute;
  top: 25px;
  right: 80px;
  font-family: 'Noto Sans Japanese', sans-serif !important;

  & a {
    & img {
      opacity: 1 !important;
    }
  }
}

.gt_selected a {
  padding: 5px !important;
}

@media only screen and (max-width: 768px) {
  .gt_switcher {
    position: static;
    margin-top: 10px;
  }
}

/****************************************
コンテンツ
****************************************/
.ctsWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 70px;

  & > li {
    position: relative;

    &:first-child {
      margin-top: 10px;
      width: 230px;
    }

    &:last-child {
      width: calc(100% - 280px);
    }
  }
}

.leftCtsWrap {
  position: sticky;
  top: 120px;
}

@media only screen and (max-width: 768px) {
  .ctsWrap {
    flex-direction: column-reverse;

    & > li {
      &:first-child {
        width: 100%;
        margin-top: 50px;
      }

      &:last-child {
        width: 100%;
      }
    }
  }

  .leftCtsWrap {
    position: relative;
    top: 0;
  }
}

/**********アップデート日**********/
.updateText {
  position: absolute;
  top: 0;
  right: 0;
  width: fit-content;
  text-align: center;
  line-height: 1.6;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 5px 10px;
  border: 1px solid #666;

  & span {
    font-size: 1rem;
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  .updateText {
    position: static;
    margin: -10px auto 30px;

    & span {
      display: inline;

      &:after {
        content: "："
      }
    }
  }
}

/**********複数ボトルリンク**********/
.multipleItemLink {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  align-items: center;
  margin-top: -20px;

  & li {
    margin: 5px 2px 0;

    & a {
      line-height: 1;
      display: block;
      width: fit-content;
      background-color: #9C8853;
      border-radius: 50px;
      padding: 5px 10px 5px 15px;
      font-size: 1.4rem;
    }
  }
}

/**********インフォメーション**********/
.dataInfoCts,
.topicsCts {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
  border-bottom: 2px solid #333;
  padding-bottom: 30px;

  & dt {
    margin-top: 20px;

    & img {
      object-fit: cover;
      object-position: center;
      aspect-ratio: 1.6 / 1;
    }
  }

  & dd {
    margin-top: 15px;
    margin-left: 20px;
  }
}

.dataInfoCts {
  & dt {
    width: 400px;
  }

  & dd {
    width: calc(100% - 420px);
  }
}

.dataInfoCts {
  line-height: 1.6;
}

.dataInfoTable {

  & th,
  td {
    vertical-align: top;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: left;
  }

  & th {
    white-space: nowrap;
    width: 10px;
    font-weight: 500;
    padding-right: 15px;
  }
}

.mapLink {
  & i {
    color: #B2A073;
  }
}

.siteLinkBtn {
  display: block;
  border: 1px solid #DDD;
  font-size: 1.2rem;
  line-height: 1.4;
  padding: 5px 15px 5px 20px;
  text-align: center;
  margin-top: 10px;
  border-radius: 50px;
  width: fit-content;

  & i {
    margin-left: 5px;
  }
}

/**********トピックス**********/
.topicsCts {
  padding-bottom: 25px;

  & dt {
    width: 300px;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  & dd {
    width: calc(100% - 320px);

    & p {
      padding-bottom: 5px;
      word-break: break-all;

      &.topicsTtl {
        font-size: 1.8rem;
        font-weight: 600;
        color: #B2A073;

        &:not(:first-child) {
          margin-top: 15px;
        }
      }
    }
  }
}

@media only screen and (max-width: 768px) {

  .dataInfoCts,
  .topicsCts {
    & dt {
      width: 100%;
      height: auto;
      margin-top: 5px;
    }

    & dd {
      width: 100%;
      margin-top: 5px;
      margin-left: 0;
    }
  }

  .topicsCts {
    & dt:not(:first-child) {
      margin-top: 30px;
    }
  }

  .dataInfoTable {

    & th,
    td {
      display: block;
      padding-top: 0;
      padding-bottom: 0;
    }

    & th {
      font-weight: 600;
      padding-right: 0;
      padding-top: 5px;

      &:before {
        content: "●";
      }
    }

    & td {
      padding-left: 1.5em;
    }
  }

  .siteLinkBtn {
    margin: 15px auto 0;
  }
}

/**********ボトル**********/
.bottlePageInfo {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 1.4rem;
  line-height: 1;
  color: #B2A073;

  & span {
    font-size: 1.8rem;
  }
}

.bottleWrap {
  margin-top: -130px;
  padding-top: 130px;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  justify-content: center;

  & li {
    border: 2px outset #B2A073;

    & a {
      position: relative;
      padding: 15px;
      display: block;
    }
  }
}

.bottleCts {
  display: flex;
  align-items: center;
  justify-content: space-between;

  & dt {
    width: 25%;

    & img {
      object-fit: cover;
      object-position: center;
      height: auto;
      aspect-ratio: 2 / 5;
    }
  }

  & dd {
    width: 70%;
    hyphens: auto;
    text-align: left;
    font-weight: 600;
    line-height: 1.6;
    color: #B2A073;
  }
}

.dayText,
.categoryText {
  position: absolute;
  font-size: 1.2rem;
  right: 15px;
}

.dayText {
  top: 15px;
  line-height: 1;
  font-weight: 500;
}

.categoryText {
  bottom: 10px;
}

.bottleDetailCts {
  & dt {
    width: 50%;
    margin: auto;

    & img {
      object-fit: cover;
      object-position: center;
      height: auto;
    }
  }

  & dd {
    font-weight: 600;
    line-height: 1.5;
    margin: auto;
  }
}

.bottleDetailTable {
  & caption {
    font-weight: 600;
    font-size: 2rem;
    margin: 20px 0;
    color: #B2A073;
  }

  & tr {
    border-top: 1px solid #333;
  }

  & th,
  td {
    vertical-align: top;
    text-align: left;
    font-size: 1.4rem;
    padding: 10px 0;
  }

  & th {
    font-weight: 500;
    width: 10px;
    white-space: nowrap;
    text-align: right;

    &:after {
      content: "："
    }
  }

  & td {
    font-weight: 400;
    padding-left: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .bottleWrap {
    gap: 20px;
  }
}

/**********ページネーション**********/
.pageNation {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;

  & li {
    margin: 2px;

    & a {
      display: block;
      font-size: 1.4rem;
      width: fit-content;
      border: 1px solid #666;
      line-height: 15px;
      text-align: center;
      padding: 5px 10px;

      &:hover,
      &.active {
        opacity: 1;
        background-color: #9C8853;
        border: 1px solid #9C8853;
      }
    }
  }
}

/**********ページナビゲーション**********/
.pageNavi {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;

  & a {
    width: fit-content;
    background-color: #9C8853;
    text-align: center;
    padding: 5px 15px;
    line-height: 1.4;
    font-size: 1.4rem;
    border-radius: 50px;

    &:first-child {
      & i {
        margin-right: 5px;
      }
    }

    &:last-child {
      & i {
        margin-left: 5px;
      }
    }
  }
}

/**********検索**********/
.searchCts {
  & dt {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    line-height: 1.4;

    &:before,
    &:after {
      content: "";
      height: 1px;
      flex-grow: 1;
      background-color: #666;
    }

    &:before {
      margin-right: 10px;
    }

    &:after {
      margin-left: 10px;
    }
  }

  & dd {
    margin-top: 10px;

    ::placeholder {
      color: #666;
      font-size: 1.4rem;
    }
  }
}

.searchList {
  margin-top: 15px;

  & > li {
    margin-bottom: 10px;
  }
}

#secondSelect,
#thirdSelect,
#searchBtn {
  display: none;
}

@media only screen and (max-width: 768px) {
  .searchCts {
    border: 1px solid #666;
    padding: 20px 25px;
  }
}

/*フリーワード検索*/
.searchForm {
  padding: 0 40px 0 10px;
  border-radius: 50px;
  overflow: hidden;
  line-height: 1.4;
  background-color: #000;
  background-color: #333;
  position: relative;

  & input {
    color: #FFF;
    background-color: #333;
  }

  & button {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    color: #DDD;
    outline: none;
    font-size: 1.6rem;
  }
}

.searchBtn {
  background-color: #B2A073;
  padding: 10px 20px;
  color: #FFF;
  font-size: 1.6rem;
  border-radius: 50px;
  margin: auto;
  display: block;
  width: fit-content;
  line-height: 1.2;
}

.searchWordText {
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.6;
  font-weight: 500;
  border-top: 1px dotted #666;
  border-bottom: 1px dotted #666;
  padding: 5px 0;

  & span {
    font-size: 2rem;
    color: #B2A073;
    font-weight: 600;
  }
}

.searchHighlight {
  background: linear-gradient(transparent 60%, #8b2e37 60%);
}

.searchText {
  font-size: 1.8rem;
  text-align: center;
}

/****************************************
バナー
****************************************/
.bannerList {
  display: flex;
  flex-wrap: wrap;

  & li {
    width: 13%;
    margin-top: 5px;
    min-width: 150px;

    &:not(:nth-child(7n)) {
      margin-right: 1.5%;
    }

    &:nth-child(n+8) {
      margin-top: 1.5%;
    }
  }
}

@media only screen and (max-width: 768px) {
  .bannerList {
    justify-content: space-between;

    & li {
      width: 48%;
      margin-top: 15px;

      &:not(:nth-child(7n)) {
        margin-right: 0;
      }

      &:nth-child(n+8) {
        margin-top: 15px;
      }
    }
  }
}

/****************************************
フォームパーツ
****************************************/
input,
select {
  font-family: 'Noto Sans Japanese', sans-serif;
  display: block;
  border: none;
  padding: 10px 5px;
  width: 100%;
  letter-spacing: 1px;
  font-size: 1.6rem;

  &:focus {
    outline: 0;
  }
}

button {
  cursor: pointer;
  font-family: 'Noto Sans Japanese', sans-serif;
  border: none;
  background: none;
  outline: none;
  transition: 0.2s linear;
  letter-spacing: 1px;
  width: fit-content;
  line-height: 1;

  &:hover {
    opacity: 0.6;
  }
}

.selectLabel {
  position: relative;
  display: inline-block;
  width: 100%;

  &:after {
    content: "\f0dd";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 45%;
    right: 10px;
    transform: translateY(-50%);
    color: #AAA;
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    z-index: 2;
    line-height: 1;
  }
}

select {
  padding: 10px;
  color: inherit;
  width: 100%;
  cursor: pointer;
  position: relative;
  display: inline-block;
  appearance: none;
  background: transparent;
  z-index: 1;
  font-weight: 500;
  border: 1px solid #AAA;
  background-color: #000;
}

/****************************************
ナビゲーション
****************************************/ :root {
  --spWidth: 280px;
}

.naviWrap {
  position: fixed;
  z-index: 300;
  top: 0;
  width: var(--spWidth);
  height: 100%;
  padding: 30px;
  -webkit-overflow-scrolling: touch;
  font-weight: 500;
  right: 0;
  background-color: #000;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;

  &::-webkit-scrollbar {
    display: none;
  }
}

.navi {
  padding-bottom: 30px;
  line-height: 1;

  & > li {
    &:first-child {
      padding-bottom: 20px;

      & p {
        margin-top: 20px;
        display: flex;
        align-items: center;
        font-size: 1.4rem;
        color: #B2A073;

        &:before,
        &:after {
          content: "";
          height: 1px;
          flex-grow: 1;
          background-color: #B2A073;
        }

        &:before {
          margin-right: 10px;
        }

        &:after {
          margin-left: 10px;
        }

        & span {
          margin: 0 5px;
          font-weight: 600;
          font-size: 1.6rem;
        }
      }
    }

    &:not(:first-child) {
      border-top: 1px solid #333;

      & a {
        padding: 15px 0;

        &.naviFavorite {
          margin-top: 15px;
          background-color: #9C8853;
          color: #FFF;
          text-align: center;
          line-height: 1.4;

          & i {
            display: none;
          }
        }

        &.naviAbout {
          background: none;
          border: 1px solid #9C8853;
          color: #B2A073;
          margin-top: 15px;
          text-align: center;

          & i {
            display: none;
          }
        }

        & i {
          position: absolute;
          right: 0;
        }
      }
    }

    &:nth-child(n+2) {
      margin-top: 5px;
    }

    &:nth-last-child(-n+2) {
      border: none;
    }
  }

  & a {
    &.current {
      color: #B2A073;
    }

    &.disabledLink {
      pointer-events: none;
      opacity: 0.5;
      cursor: default;
    }
  }

  & li:not(:has(.subNavi)),
  & .subNavi {
    & a {
      &.current {
        opacity: 1;
        cursor: default;

        & i {
          display: none;
        }
      }
    }
  }
}

.subNavi {
  & li {
    padding-left: 10px;
    border-top: 1px dotted #333;

    & a {
      font-size: 1.4rem;
      font-weight: 500;
    }
  }
}

.drawerMenuBtn {
  position: fixed;
  top: 2px;
  right: 0;
  z-index: 350;
  width: 60px;
  transition: .2s linear;
  cursor: pointer;
  padding: 35px 20px 30px 0;

  &:hover {
    opacity: 0.6;
  }
}

.drawerMenuBtnBar {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #FFF;

  &:before,
  &:after {
    position: absolute;
    top: -13px;
    width: 100%;
    height: 2px;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    background-color: #FFF;
    content: ' ';
  }

  &:after {
    top: 13px;
  }
}

.drawerMenu-open {
  .drawerMenuBtnBar {
    background-color: transparent;

    &:before,
    &:after {
      top: 0;
    }

    &:before {
      transform: rotate(45deg);
    }

    &:after {
      transform: rotate(-45deg);
    }
  }
}

.drawerMenu-overlay {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.drawerMenu-open {
  & .drawerMenu-overlay {
    display: block;
  }
}

.drawerMenuRight {
  & nav {
    right: calc(-1 * var(--spWidth));
    transition: right .6s cubic-bezier(.19, 1, .22, 1)
  }

  &.drawerMenu-open {
    & nav {
      right: 0;
    }

    & .drawerMenuBtn {
      right: var(--spWidth);
    }
  }
}

@media only screen and (max-width: 768px) {
  .drawerMenuBtn {
    top: 5px;
  }
}

/****************************************
アコーディオン
****************************************/
.acoWrap {
  & li {
    position: relative;

    & a {
      position: relative;
      display: block;

      & i {
        transition: 0.2s linear;
        position: absolute;
      }
    }
  }
}

/****************************************
モーダル
****************************************/
html.modal-is-locked {
  overflow: hidden;
}

.modal,
[data-modal-id] {
  display: none;
}

.modal-overlay,
.modal-wrapper {
  backface-visibility: hidden;
}

.modal,
.modal-wrapper:after {
  vertical-align: middle;
}

.modal-overlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  background-color: rgba(50, 50, 50, 0.9);
}

.modal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
  cursor: pointer !important;
}

.modal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

.modal {
  position: relative;
  outline: none;
  text-size-adjust: 100%;
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background-color: #000;
  cursor: default;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
  color: #DDD;
}

.modal-is-initialized {
  display: inline-block;
}

.modal-bg.modal-is-opening,
.modal-bg.modal-is-opened {
  filter: blur(3px);
}

.modal-overlay.modal-is-opening,
.modal-overlay.modal-is-closing,
.modal.modal-is-opening,
.modal.modal-is-closing {
  animation-fill-mode: forwards;
}

.modal-overlay.modal-is-opening {
  animation: modal-overlay-opening-keyframes 0.3s;
}

.modal-overlay.modal-is-closing {
  animation: modal-overlay-closing-keyframes 0.3s;
}

.modal.modal-is-opening {
  animation: modal-opening-keyframes 0.3s;
}

.modal.modal-is-closing {
  animation: modal-closing-keyframes 0.3s;
}

.modalClose {
  position: absolute;
  top: 10px;
  right: 15px;
  font-weight: 100;
  font-size: 4rem;
  cursor: pointer;
  transition: .2s linear;
  line-height: 1;
  color: #FFF;
}

.modalBtnList {
  display: flex;
  justify-content: space-between;
  margin: 40px 0 20px;
  align-items: center;

  & li {
    line-height: 1;
    width: 33.3%;

    &:first-child {
      text-align: left;

      & a {
        & i {
          margin-right: 5px;
        }
      }
    }

    &:nth-child(2) {
      & a {
        background-color: #FFF;
        color: #333;
        display: block;
        width: fit-content;
        padding: 10px 30px;
        border-radius: 50px;
        font-weight: 900;
        margin: auto;
      }
    }

    &:not(:nth-child(2)) {
      & a {
        border: 1px solid #AAA;
        padding: 5px 20px;
        border-radius: 50px;
      }
    }

    &:last-child {
      text-align: right;

      & a {
        & i {
          margin-left: 5px;
        }
      }
    }
  }
}

.prevNextBtnNone {
  display: none;
}

@media only screen and (max-width: 768px) {
  .modal {
    width: 100%;
    padding: 40px 5%;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
}

/****************************************
アニメーション
****************************************/
@keyframes modal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

@keyframes modal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }

  to {
    transform: scale(0.95);
    opacity: 0;
  }
}

@keyframes modal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes modal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }

  80% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeout {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/****************************************
フッタ
****************************************/
#goTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 5;

  & a {
    display: block;
    color: #FFF;
    font-size: 1.8rem;
    background-color: #9C8853;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    width: 50px;
    height: 50px;
  }
}

.copyRight {
  text-align: center;
  color: #FFF;
  font-size: 1.2rem;
  padding: 10px;
  border-top: 1px dotted #333;
}

body > footer {
  position: sticky;
  top: 100vh;
}
