@charset "UTF-8";
/*==========================================
矢印 >
===========================================*/
/*==========================================
矢印 ▶
===========================================*/
/*==========================================
背景ストライプ   ($deg=0 平行)($deg=45deg 斜め)
===========================================*/
/*==========================================
Flexbox
===========================================*/
/*==========================================
上下左右中央揃え
===========================================*/
/*==========================================
上下中央揃え
===========================================*/
/*==========================================
before,after
===========================================*/
/*==========================================
最後の行のmargin-bottomを0にする
===========================================*/
/*==========================================
メインビジュアル(スライダー)
===========================================*/
/*==========================================
タイトル左右のボーダー
===========================================*/
/*==========================================
hover時に中央から外側に向けてのボーダー
===========================================*/
/*==========================================
カーテン
===========================================*/
/*==========================================
グラデーション
===========================================*/
/*-----------------------------
→方向
-----------------------------*/
/*-----------------------------
↓方向
-----------------------------*/
/*-----------------------------
斜め方向
-----------------------------*/
/*==========================================
iframe レスポンシブ　アスペクト比を保ちながら縦横を伸縮
===========================================*/
/*==========================================
画面幅3分割レイアウト
===========================================*/
/*==========================================
PC時のフォントに対するclamp()関数
===========================================*/
/*==========================================
100% から%を算出
===========================================*/
/*==========================================
縦書きの時に指定する
===========================================*/
/*==========================================
パンくずリスト
===========================================*/
div .bread {
  display: none;
}

/*==========================================
共通タイトル
===========================================*/
h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0.08em;
  font-style: italic;
}

.section-title {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-25);
  margin-bottom: 12%;
  text-align: center;
  line-height: 1.7;
  letter-spacing: 0.14em;
  position: relative;
}
.section-title small {
  display: block;
  font-size: var(--font-size-19);
}

.headline-title {
  color: var(--primary-color);
  font-size: var(--font-size-21);
  font-weight: var(--font-weight-bold);
  border-bottom: 1px solid var(--color-gray-semidark);
  margin-bottom: 4%;
  line-height: 1.6;
  padding-bottom: 2.5%;
}

/*==========================================
共通ブロック・要素
===========================================*/
.com-cont {
  text-align: left;
}
.com-cont p {
  margin-bottom: 8%;
  line-height: var(--body-line-height);
  letter-spacing: var(--body-letter-spacing);
}
.com-cont p:last-child {
  margin-bottom: 0;
}

#g-map h4 {
  font-size: var(--font-size-17);
  font-weight: var(--font-weight-bold);
  margin-bottom: 4%;
}
#g-map h4 span {
  padding-left: 5%;
}
#g-map .map {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
#g-map .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.com-address {
  font-size: var(--font-size-14);
}
.com-address .address__locate {
  margin-bottom: 7%;
}
.com-address .address__worktime .worktime__item {
  display: flex;
  align-items: center;
  width: fit-content;
}
.com-address .address__worktime .worktime__item dt {
  padding-right: 2vw;
  margin-right: 2vw;
  position: relative;
}
.com-address .address__worktime .worktime__item dt::after {
  position: absolute;
  content: "";
  inset: 0 0 0 auto;
  margin: auto 0;
  background: var(--color-white);
  height: 2.5vw;
  width: 1px;
}

.com-tel {
  line-height: 1.3;
  text-align: center;
}
.com-tel .tel__num {
  font-size: var(--font-size-27);
}
.com-tel .tel__num small {
  font-size: var(--font-size-18);
}
.com-tel .tel__txt {
  display: block;
}

.bg-white {
  background: url(../img/common/com-section_bg02.png) top center/100% no-repeat, var(--color-white);
  padding: 18% 0;
  color: var(--color-black);
}

.com-button {
  width: fit-content;
  display: block;
  margin-left: auto;
  font-size: var(--font-size-17);
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  text-align: left;
  padding: 2vw 13vw 2vw 2vw;
  border-bottom: 1px solid;
  position: relative;
}
.com-button::after {
  position: absolute;
  content: "";
  width: 5vw;
  height: 1px;
  inset: auto -1vw 1.2vw auto;
  background: var(--primary-color);
  transform: rotate(40deg);
  z-index: 1;
}
.com-button:hover {
  background: var(--primary-color);
  color: var(--color-white);
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-tbl {
  text-align: left;
}
.com-tbl tr {
  display: block;
  padding: 6% 0;
}
.com-tbl tr th,
.com-tbl tr td {
  display: block;
}
.com-tbl tr th {
  margin-bottom: 4%;
}
.com-tbl tr td a[href^="tel:"],
.com-tbl tr td a[href^="mailto:"] {
  text-decoration: underline;
}

/*==============================================
ドロワーメニュー
==============================================*/
/*drawer btn 上下左右で設定可能
------------------------------------ */
.sp-menu-btn-wrp {
  top: 3vw;
  right: 3%;
  bottom: auto;
  left: auto;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sp-menu-btn-wrp .sp-menu-btn {
  width: 14.5vw;
  height: 14.5vw;
}
.sp-menu-btn-wrp .sp-menu-btn span {
  width: 70%;
  height: 2px;
  background: var(--primary-color);
}
.sp-menu-btn-wrp .sp-menu-btn .top {
  top: 4.5vw;
}
.sp-menu-btn-wrp .sp-menu-btn .middle {
  top: 0;
  bottom: 0;
}
.sp-menu-btn-wrp .sp-menu-btn .bottom {
  top: 9.5vw;
}

.sp-menu-btn.active .top {
  transform: translateY(2.5vw) translateX(0px) rotate(45deg);
}

.sp-menu-btn.active .bottom {
  transform: translateY(-2.75vw) translateX(0px) rotate(-45deg);
}

/*  drawer inbox
------------------------------------ */
#drawer-nav {
  padding: 15% 6% 15%;
  background: rgba(var(--color-black-rgb), 0.9);
}
#drawer-nav .drawer-logo {
  width: 40%;
  margin-bottom: 10%;
  text-align: left;
}
#drawer-nav nav {
  margin-bottom: 10%;
}
#drawer-nav nav .drawer-link {
  padding: 7% 0;
  text-align: center;
  border-bottom: 1px solid var(--color-gray);
  font-size: var(--font-size-20);
}
#drawer-nav nav .drawer-dropdown {
  padding: 3% 12% 3% 0;
}
#drawer-nav nav .drawer-dropdown span {
  display: block;
}
#drawer-nav nav .drawer-dropdown span:before, #drawer-nav nav .drawer-dropdown span:after {
  background: var(--color-black);
}
#drawer-nav nav .current {
  position: relative;
  text-decoration: underline;
}
#drawer-nav nav .current::before, #drawer-nav nav .current::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 3vw;
  height: 3vw;
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.3s;
  z-index: 1;
}
#drawer-nav nav .current::before {
  left: 0;
}
#drawer-nav nav .current::after {
  left: 3%;
}
#drawer-nav nav .current span:after {
  opacity: 0 !important;
}
#drawer-nav nav .drawer-dropdown-bx {
  margin: 3% 0;
  padding-left: 4%;
  box-sizing: border-box;
}
#drawer-nav nav .drawer-dropdown-bx > li > .drawer-link:before {
  border-left: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
}
#drawer-nav nav .drawer-dropdown-bx > li > .drawer-link span {
  padding: 0 0 0 5%;
}
#drawer-nav .drawer-contact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 5vw 6vw;
  margin-bottom: 8%;
}
#drawer-nav .drawer-subpage {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  font-size: var(--font-size-12);
  margin-top: 8%;
  gap: 4vw;
}
#drawer-nav .drawer-subpage-item a {
  text-decoration: underline;
}

/*==========================================
header
===========================================*/
#header {
  position: absolute;
  inset: 0 0 auto;
  padding: 6% 4% 0;
  z-index: 1001;
  background: url(../img/common/hd_bg.png) bottom center no-repeat;
}
#header .header__logo {
  width: 40%;
  line-height: 1;
}
#header .header__right {
  display: none;
}

/*==========================================
entrance
===========================================*/
#entrance__list .entrance__item {
  width: 100%;
}
#entrance__list .entrance__item-inner {
  width: 100%;
  height: 98vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
#entrance__list .entrance__item-inner:hover {
  opacity: 0.85;
}
#entrance__list .entrance__item-inner:hover .entrance__item-title {
  background: var(--color-black);
}
#entrance__list .entrance__item.entrance__item--ofc .entrance__item-inner {
  background: url(../img/entrance/ent-ofc_bg.jpg) center/cover no-repeat;
}
#entrance__list .entrance__item.entrance__item--global .entrance__item-inner {
  background: url(../img/entrance/ent-global_bg.jpg) center/cover no-repeat;
}
#entrance__list .entrance__item-title {
  width: 85%;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--color-gray-dark);
  background: rgba(var(--color-black-rgb), 0.7);
  transition: all 0.3s;
}
#entrance__list .entrance__item-title span {
  display: block;
}
#entrance__list .entrance__item-title .title-ja {
  border-bottom: 1px solid var(--color-gray-dark);
  font-size: var(--font-size-26);
  padding: 5% 0;
  letter-spacing: 0.14em;
}
#entrance__list .entrance__item-title .title-en {
  font-size: var(--font-size-20);
  color: var(--primary-color);
  padding: 6% 0;
  letter-spacing: 0.08em;
}

/*==========================================
mv
===========================================*/
#home-mv {
  position: relative;
  height: 110vw;
}
#home-mv #mv__slider {
  height: 110vw;
  position: relative;
}
#home-mv #mv__slider li {
  height: 100%;
}
#home-mv #mv__slider li:nth-child(1) {
  background: url(../img/top/mv/slide01.jpg) center no-repeat;
  background-size: cover;
}
#home-mv #mv__slider li:nth-child(2) {
  background: url(../img/top/mv/slide02.jpg) center no-repeat;
  background-size: cover;
}
#home-mv #mv__slider li:nth-child(3) {
  background: url(../img/top/mv/slide03.jpg) center no-repeat;
  background-size: cover;
}
#home-mv #mv__slider li:nth-child(4) {
  background: url(../img/top/mv/slide04.jpg) center no-repeat;
  background-size: cover;
}
#home-mv .bx-wrapper {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
#home-mv .bx-viewport {
  overflow: visible !important;
  margin: auto;
  text-align: center;
}
#home-mv .bx-pager {
  display: none;
}
#home-mv .mv__catch {
  width: 85%;
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*==========================================
index.php
===========================================*/
/* home-about
------------------------*/
#home-about {
  padding: 18% 0;
  background: url(../img/top/about_bg.jpg) center/cover no-repeat;
}
#home-about .about__img {
  margin-bottom: 8%;
}

/* home-order
------------------------*/
#home-order .order__title {
  padding: 0 8% 15%;
}
#home-order .order__section-lead {
  padding: 0 8%;
  margin-bottom: 12%;
}
#home-order .order__step {
  position: relative;
  padding: 12% 0 0;
}
#home-order .order__step::before, #home-order .order__step::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  border: 1px solid var(--color-gray-semidark);
}
#home-order .order__step::before {
  width: 84%;
  height: calc(100% - 5vw);
  top: 0;
}
#home-order .order__step::after {
  width: 80%;
  height: calc(100% - 5vw);
  top: 10px;
}
#home-order .step__lead {
  padding: 0 13%;
  margin-bottom: 0;
}
#home-order .step__title {
  font-size: var(--font-size-25);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.14em;
  margin-bottom: 5%;
  text-align: center;
}
#home-order .step__item {
  padding: 20vw 0 0 0;
  height: 91vw;
}
#home-order .step__item:not(:first-child) {
  margin-top: -15vw;
}
#home-order .step__item .inbox {
  padding: 0 13%;
  z-index: 1;
}
#home-order .step__item .inbox::before {
  content: "step" counter(number, decimal-leading-zero);
  font-size: var(--font-size-50);
  color: rgba(var(--color-gray-mid-dark-rgb), 0.12);
  position: absolute;
  line-height: 1;
  z-index: -1;
  top: -5vw;
}
#home-order .step__item:nth-child(odd) {
  clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 80%);
  background: var(--color-gray);
}
#home-order .step__item:nth-child(odd) .inbox::before {
  right: 0;
  transform: rotate(15deg);
}
#home-order .step__item:nth-child(even) {
  clip-path: polygon(0 20%, 100% 0, 100% 80%, 0 100%);
  background: var(--color-gray-mid);
}
#home-order .step__item:nth-child(even) .inbox::before {
  left: 0;
  transform: rotate(-15deg);
}
#home-order .step__item:nth-child(even) .step__item-inner {
  margin-left: auto;
}
#home-order .step__item-title {
  font-weight: var(--font-weight-bold);
  border-bottom: 1px solid var(--color-gray-semidark);
  padding-bottom: 2%;
  margin-bottom: 4%;
}
#home-order .step__item-title span {
  display: block;
}
#home-order .step__item-title .title-num {
  font-size: var(--font-size-18);
  color: var(--accent-color);
}
#home-order .step__item-title .title-q {
  font-size: var(--font-size-24);
}
#home-order .step__item-title .title-q small {
  font-size: var(--font-size-20);
}

/* home-link
------------------------*/
#home-link {
  padding: 0 8% 10%;
  background: var(--color-white);
}
#home-link .link__item {
  margin-bottom: 8%;
}
#home-link .link__item:last-child {
  margin-bottom: 0;
}
#home-link .link__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 65vw;
  position: relative;
}
#home-link .link__item a::before {
  position: absolute;
  content: "";
  inset: 0;
  margin: auto;
  border: 1px solid;
  width: calc(100% - 4vw);
  height: calc(100% - 4vw);
  z-index: 1;
}
#home-link .link__item a:hover::before {
  width: 100%;
  height: 100%;
}
#home-link .link__item.link__item--jp-whiskey a {
  background: url(../img/top/jp-whiskey_bg.jpg) center/cover no-repeat;
}
#home-link .link__item.link__item--craft-gin a {
  background: url(../img/top/craft-gin_bg.jpg) center/cover no-repeat;
}
#home-link .link__item.link__item--cocktail a {
  background: url(../img/top/cocktail_bg.jpg) center/cover no-repeat;
}
#home-link .link__item .link__item-title {
  font-size: var(--font-size-27);
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
  letter-spacing: 0.14em;
}

/* home-info
------------------------*/
#home-info {
  padding: 18% 0;
  background: url(../img/top/info_bg.jpg) center/cover no-repeat;
}
#home-info .inbox {
  position: relative;
}
#home-info .info__img--front {
  margin-bottom: 8%;
}
#home-info .info__content {
  margin-bottom: 12%;
}

/* home-news
------------------------*/
#home-news {
  padding: 18% 0;
  background: var(--color-white);
  color: var(--color-black);
}
#home-news .news__title {
  position: relative;
  z-index: 1;
}
#home-news .news__title .title-en {
  position: absolute;
  z-index: -1;
  font-size: var(--font-size-50);
  color: var(--color-gray-mid);
  line-height: 1;
  letter-spacing: 0;
  inset: -6vw 0 auto 0;
  font-weight: var(--font-weight-regular);
}
#home-news .news__post-list .news__post {
  border-bottom: 1px solid var(--color-gray-mid);
}
#home-news .news__post-list .news__post a {
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  flex-wrap: wrap;
  align-items: baseline;
  padding: 6% 0;
}
#home-news .news__post-list .news__post a:hover {
  background: var(--color-gray);
}
#home-news .news__post-list .news__post time,
#home-news .news__post-list .news__post .category-label {
  color: var(--accent-color);
  font-size: var(--font-size-14);
}
#home-news .news__post-list .news__post time {
  width: 24vw;
}
#home-news .news__post-list .news__post .category-label {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 24vw);
}
#home-news .news__post-list .news__post .category-label li {
  padding: 0 2vw;
  position: relative;
}
#home-news .news__post-list .news__post .category-label li::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 2.5vw;
  margin: auto 0;
  inset: 0 auto 0 0;
  background: var(--accent-color);
}
#home-news .news__post-list .news__post .news__post-title {
  width: 100%;
  font-size: var(--font-size-15);
  color: var(--color-black);
  font-style: normal;
  color: var(--color-gray-dark);
  margin-top: 2%;
}
#home-news .news__button {
  margin-top: 15%;
}

/*==========================================
footer
===========================================*/
#footer .inbox {
  padding: 15% 8% 16%;
}
#footer .footer__left .footer__logo {
  display: block;
  width: 50%;
  margin: 0 auto 8%;
}
#footer .footer__left .footer__address {
  margin-bottom: 10%;
}
#footer .footer__right .footer__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5vw 6vw;
  margin-bottom: 15%;
}
#footer .footer__right .footer__nav .nav__item {
  text-align: right;
  font-size: var(--font-size-14);
  margin-bottom: 5%;
}
#footer .footer__right .footer__nav .nav__item:last-child {
  margin-bottom: 0;
}
#footer .footer__right .footer__nav .nav__item a:hover {
  text-decoration: underline;
}

#copyright {
  word-break: normal;
  text-align: center;
  margin-top: 10%;
}
#copyright small {
  font-size: var(--font-size-10);
}
#copyright a {
  text-decoration: underline;
}

/*==========================================
sv
===========================================*/
.lower-sv {
  height: 60vw;
  position: relative;
}
.lower-sv .sv__title {
  width: 85%;
  margin: 0 auto;
  position: absolute;
  inset: auto 0 15%;
  font-size: var(--font-size-24);
  letter-spacing: 0.14em;
  border: 1px solid var(--color-gray-dark);
  background: rgba(var(--color-black-rgb), 0.7);
  text-align: center;
  padding: 4% 3%;
}

#jp-whiskey-sv {
  background: url(../img/sv/jp-whiskey-sv_bg.jpg) center/cover no-repeat;
}

#craft-gin-sv {
  background: url(../img/sv/craft-gin-sv_bg.jpg) center/cover no-repeat;
}

#cocktail-sv {
  background: url(../img/sv/cocktail-sv_bg.jpg) center/cover no-repeat;
}

#master-sv {
  background: url(../img/sv/master-sv_bg.jpg) center/cover no-repeat;
}

#info-sv {
  background: url(../img/sv/info-sv_bg.jpg) center/cover no-repeat;
}

#news-sv {
  background: url(../img/sv/news-sv_bg.jpg) center/cover no-repeat;
}

#contact-sv {
  background: url(../img/sv/contact-sv_bg.jpg) center/cover no-repeat;
}

#complete-sv {
  background: url(../img/sv/complete-sv_bg.jpg) center/cover no-repeat;
}

#privacy-sv {
  background: url(../img/sv/privacy-sv_bg.jpg) center/cover no-repeat;
}

#site-sv {
  background: url(../img/sv/site-sv_bg.jpg) center/cover no-repeat;
}

#e404-sv {
  background: url(../img/sv/e404-sv_bg.jpg) center/cover no-repeat;
}

/*==========================================
下層共通スタイル
===========================================*/
.bg-black {
  padding: 18% 0;
  background: url(../img/common/com-section_bg01.png) top center/100% no-repeat, var(--color-black);
}

/* c-kodawari__section
------------------------*/
.c-kodawari__section .kodawari__title {
  font-size: var(--font-size-22);
}
.c-kodawari__section .c-kodawari__list .kodawari__item {
  margin-bottom: 12%;
}
.c-kodawari__section .c-kodawari__list .kodawari__item:last-child {
  margin-bottom: 0;
}
.c-kodawari__section .c-kodawari__list .kodawari__item-img {
  width: 100%;
  height: 55vw;
}
.c-kodawari__section .c-kodawari__list .kodawari__item-img::before {
  position: absolute;
  content: "";
  inset: 0;
  margin: auto;
  border: 1px solid var(--color-white);
  width: calc(100% - 3vw);
  height: calc(100% - 3vw);
}
.c-kodawari__section .c-kodawari__list .kodawari__item-title {
  padding: 5% 0;
}

/* c-lineup__section
------------------------*/
.c-lineup__section .c-lineup__category-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 3vw;
  margin-bottom: 13%;
}
.c-lineup__section .c-lineup__category-list .category__item {
  position: relative;
}
.c-lineup__section .c-lineup__category-list .category__item::before, .c-lineup__section .c-lineup__category-list .category__item::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto 0;
  background: var(--primary-color);
  width: 1px;
  height: 4vw;
}
.c-lineup__section .c-lineup__category-list .category__item::before {
  left: 0;
}
.c-lineup__section .c-lineup__category-list .category__item::after {
  right: 0;
}
.c-lineup__section .c-lineup__category-list .category__item:not(:last-child)::after {
  opacity: 0;
}
.c-lineup__section .c-lineup__category-list .category__item a {
  padding: 0 6vw;
  display: block;
  color: var(--primary-color);
  font-size: var(--font-size-17);
  font-weight: var(--font-weight-bold);
}
.c-lineup__section .c-lineup__category-list .category__item a:hover {
  background: var(--primary-color);
  color: var(--color-white);
}
.c-lineup__section .c-lineup__category-list .category__item.current a {
  background: var(--primary-color);
  color: var(--color-white);
}
.c-lineup__section .c-lineup__category-map {
  width: 100%;
  margin: 0 auto 20%;
  height: 88vw;
  background: url(../img/jp-whiskey/lineup-map_ill.png) center/100% no-repeat;
  position: relative;
}
.c-lineup__section .c-lineup__category-map .category__region {
  position: absolute;
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-bold);
  border: 1px solid;
  padding: 1vw 1.5vw;
  text-align: center;
  transition: all 0.3s ease;
}
.c-lineup__section .c-lineup__category-map .category__region:hover {
  cursor: pointer;
  color: var(--color-white);
}
.c-lineup__section .c-lineup__category-map .category__region.hokkaido_tohoku {
  background: var(--color-white);
  color: var(--color-blue);
  inset: 23vw 5% auto auto;
}
.c-lineup__section .c-lineup__category-map .category__region.hokkaido_tohoku:hover {
  background: var(--color-blue);
  color: var(--color-white);
}
.c-lineup__section .c-lineup__category-map .category__region.kanto {
  background: var(--color-white);
  color: var(--color-green);
  inset: 50vw 20% auto auto;
}
.c-lineup__section .c-lineup__category-map .category__region.kanto:hover {
  background: var(--color-green);
  color: var(--color-white);
}
.c-lineup__section .c-lineup__category-map .category__region.hokuriku_chubu {
  background: var(--color-white);
  color: var(--color-light-green);
  inset: 39vw 38% auto auto;
}
.c-lineup__section .c-lineup__category-map .category__region.hokuriku_chubu:hover {
  background: var(--color-light-green);
  color: var(--color-white);
}
.c-lineup__section .c-lineup__category-map .category__region.kansai {
  background: var(--color-white);
  color: var(--color-yellow);
  inset: auto 48% 15% auto;
}
.c-lineup__section .c-lineup__category-map .category__region.kansai:hover {
  background: var(--color-yellow);
  color: var(--color-white);
}
.c-lineup__section .c-lineup__category-map .category__region.chugoku_shikoku {
  background: var(--color-white);
  color: var(--color-orange);
  inset: auto auto 23vw 5%;
}
.c-lineup__section .c-lineup__category-map .category__region.chugoku_shikoku:hover {
  background: var(--color-orange);
  color: var(--color-white);
}
.c-lineup__section .c-lineup__category-map .category__region.kyushu_okinawa {
  background: var(--color-white);
  color: var(--color-pink);
  inset: auto auto 5vw 0;
}
.c-lineup__section .c-lineup__category-map .category__region.kyushu_okinawa:hover {
  background: var(--color-pink);
  color: var(--color-white);
}
.c-lineup__section .c-lineup__category-map .prefecture__popup {
  width: 100%;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10;
  z-index: 1001;
}
.c-lineup__section .c-lineup__category-map .prefecture__popup.active {
  display: block;
}
.c-lineup__section .c-lineup__category-map .prefecture__popup .prefecture__list {
  background: var(--color-white);
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--primary-color);
}
.c-lineup__section .c-lineup__category-map .prefecture__popup .prefecture__list .prefecture__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px solid var(--primary-color);
}
.c-lineup__section .c-lineup__category-map .prefecture__popup .prefecture__list .prefecture__item:nth-child(2n+1):nth-last-child(-n+2), .c-lineup__section .c-lineup__category-map .prefecture__popup .prefecture__list .prefecture__item:nth-child(2n+1):nth-last-child(-n+2) ~ .prefecture__item {
  border-bottom: none;
}
.c-lineup__section .c-lineup__category-map .prefecture__popup .prefecture__list .prefecture__item:not(:nth-child(even)) {
  border-right: 1px solid var(--primary-color);
}
.c-lineup__section .c-lineup__category-map .prefecture__popup .prefecture__list .prefecture__item a {
  padding: 4vw 0;
  display: block;
  font-size: var(--font-size-15);
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
}
.c-lineup__section .c-lineup__category-map .prefecture__popup .prefecture__list .prefecture__item a:hover {
  opacity: 1;
  background: var(--primary-color);
  color: var(--color-white);
}
.c-lineup__section .c-lineup__category-map .prefecture__popup .prefecture__list .prefecture__item a small {
  font-size: var(--font-size-14);
}
.c-lineup__section .c-lineup__list {
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  flex-wrap: wrap;
  gap: 7vw 4%;
}
.c-lineup__section .c-lineup__list .lineup__item {
  width: 48%;
  padding-bottom: 5%;
  border-bottom: 1px solid var(--color-gray-semidark);
}
.c-lineup__section .c-lineup__list .lineup__item .lineup__item-img {
  width: 100%;
  height: 38vw;
  margin-bottom: 5%;
}
.c-lineup__section .c-lineup__list .lineup__item .lineup__item-category {
  display: flex;
  flex-wrap: wrap;
  gap: 2vw 0;
  margin-bottom: 4%;
}
.c-lineup__section .c-lineup__list .lineup__item .lineup__item-category li {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-bold);
  position: relative;
  padding: 0 4vw;
  color: var(--accent-color);
}
.c-lineup__section .c-lineup__list .lineup__item .lineup__item-category li::before, .c-lineup__section .c-lineup__list .lineup__item .lineup__item-category li::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto 0;
  background: var(--accent-color);
  width: 1px;
  height: 3vw;
}
.c-lineup__section .c-lineup__list .lineup__item .lineup__item-category li::before {
  left: 0;
}
.c-lineup__section .c-lineup__list .lineup__item .lineup__item-category li::after {
  right: 0;
}
.c-lineup__section .c-lineup__list .lineup__item .lineup__item-category li:not(:last-child)::after {
  opacity: 0;
}
.c-lineup__section .c-lineup__list .lineup__item .lineup__item-name {
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
}

/*==========================================
master
===========================================*/
/* master-greeting
------------------------*/
#master-greeting {
  position: relative;
}
#master-greeting .inbox {
  position: relative;
}
#master-greeting .greeting__content {
  margin-bottom: 15%;
}
#master-greeting .greeting__content .name {
  text-align: right;
}
#master-greeting .greeting__img--back {
  width: 84%;
  margin: 0 auto;
}
#master-greeting .greeting__img--front {
  margin-bottom: 8%;
}
#master-greeting .greeting__histroy {
  background: var(--color-white);
  margin-bottom: 8%;
}
#master-greeting .greeting__histroy .histroy__title {
  padding: 7% 0 5%;
  color: var(--primary-color);
  font-size: var(--font-size-23);
  font-weight: var(--font-weight-bold);
  text-align: center;
}
#master-greeting .greeting__histroy .history__item {
  padding: 6% 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  border-bottom: 1px solid var(--color-gray-semidark);
}
#master-greeting .greeting__histroy .history__item:first-child {
  border-top: 1px solid var(--color-gray-semidark);
}
#master-greeting .greeting__histroy .history__item dt {
  width: 31%;
  color: var(--accent-color);
  font-size: var(--font-size-18);
  padding: 0 3%;
  text-align: right;
}
#master-greeting .greeting__histroy .history__item dd {
  width: 67%;
  padding: 0 4%;
  color: var(--color-black);
}

/* master-cosmos
------------------------*/
#master-cosmos .cosmos__logo {
  width: 80%;
  text-align: center;
  margin: 0 auto 10%;
}
#master-cosmos .cosmos__title span {
  color: var(--color-red);
}
#master-cosmos .cosmos__content {
  background: var(--color-red-thin);
  padding: 12% 5%;
  position: relative;
}
#master-cosmos .cosmos__content .cosmos__content-gallery {
  margin-top: 8%;
}
#master-cosmos .cosmos__content .cosmos__content-gallery .gallery__item--back {
  margin-bottom: 8%;
}
#master-cosmos .cosmos__btn-list {
  margin-top: 15%;
}
#master-cosmos .cosmos__btn-list .cosmos__btn-item {
  margin-bottom: 7%;
}
#master-cosmos .cosmos__btn-list .cosmos__btn-item:last-child {
  margin-bottom: 0;
}
#master-cosmos .cosmos__btn-list .cosmos__btn-item .com-button {
  width: 56%;
}

/*==========================================
info
===========================================*/
/* info-gallery
------------------------*/
#info-gallery .gallery__list .gallery__item {
  width: 90%;
  margin: 0 auto 8%;
  height: 58vw;
}
#info-gallery .gallery__list .gallery__item:last-child {
  margin-bottom: 0;
}

/* info-shop
------------------------*/
#info-shop {
  background: var(--color-white);
  color: var(--color-black);
}
#info-shop .shop__table {
  margin-bottom: 15%;
}

/*==========================================
一覧ぺージ用カテゴリ(セレクトボックス)
===========================================*/
.global-select {
  width: 64%;
  margin: 0 0 23% auto;
}
.global-select select {
  padding: 6% 10% 6% 6%;
}

/*==========================================
news
===========================================*/
.column__wrap .column__post-list .column__post a {
  padding: 14% 0;
}
.column__wrap .column__post-list .column__post:first-child a {
  padding-top: 0;
}
.column__wrap .column__post-list .column__meta-area {
  margin-bottom: 4%;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  flex-wrap: wrap;
  align-items: baseline;
}
.column__wrap .column__post-list .column__meta-area time {
  width: 18vw;
  font-size: var(--font-size-11);
}
.column__wrap .column__post-list .column__meta-area .category-label {
  width: calc(100% - 21vw);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1vw 1.5vw;
}
.column__wrap .column__post-list .column__meta-area .category-label li {
  padding: 0 0.75vw;
  font-size: var(--font-size-11);
}
.column__wrap .column__post-list .column__meta-area .column__title {
  font-size: var(--font-size-16);
  margin: 3% 0;
}
.column__wrap .column__post-list .column__meta-area .column__body {
  font-size: var(--font-size-13);
}
.column__wrap .column__post-list .more-btn {
  width: 45%;
  font-size: 3.2vw;
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-sizing: border-box;
  padding: 3% 2%;
  display: block;
  color: var(--color-white);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.column__wrap .column__post-list .column__post:has(.column__thumb) a {
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
}
.column__wrap .column__post-list .column__post:has(.column__thumb) .column__thumb {
  width: 40%;
  height: 33vw;
}
.column__wrap .column__post-list .column__post:has(.column__thumb) .column__meta-area {
  width: 55%;
}

/*----------------------------------
詳細ページのカテゴリー表示(タイトル下部)
----------------------------------*/
.single-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 10%;
}
.single-meta time {
  font-size: var(--font-size-13);
  width: 27%;
  font-weight: normal;
  padding: 0.5vw 0;
}
.single-meta .category-label {
  display: flex;
  width: 70%;
  flex-wrap: wrap;
  align-items: center;
  gap: 1vw;
}
.single-meta .category-label li {
  font-size: var(--font-size-13);
}
.single-meta .category-label li a {
  padding: 0 1vw;
}

/*==========================================
contact
===========================================*/
#contact .contact__form {
  margin-bottom: 15%;
}
#contact .contact__form tr th .required {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%); /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  right: 10px;
  background: var(--color-white);
  padding: 3px;
  font-size: var(--font-size-12);
}
#contact .contact__form tr td {
  padding: 3% 0;
}
#contact .contact__form tr td .label-list li {
  margin-bottom: 5%;
}
#contact .contact__form tr td .label-list li:last-child {
  margin-bottom: 0;
}
#contact .contact__form tr td textarea {
  height: 37vw;
}
#contact .contact__form tr.privacy-check th {
  text-align: left;
}
#contact .contact__form .form-field {
  padding: 3%;
}
#contact .contact__form .contact__select {
  width: 50%;
  position: relative;
}
#contact .contact__form .contact__select::after {
  inset: 0 5% 0 auto;
  width: 1.5vw;
  height: 1.5vw;
}
#contact .contact__form .contact__select select {
  padding: 6% 7% 6% 4%;
}
#contact .contact__form #pc01,
#contact .contact__form #pc02 {
  width: 95px;
}
#contact .contact__form #date1,
#contact .contact__form #date2,
#contact .contact__form #date3 {
  width: 73%;
}
#contact .contact__form #address {
  margin-top: 15px;
}
#contact .contact__form .upload-item-wrap .select-img-wrap {
  display: flex;
  justify-content: space-between;
}
#contact .contact__form .upload-item-wrap .thumb {
  width: 45%;
  margin-right: 25px;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap {
  width: 50%;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap .ancion-btn,
#contact .contact__form .upload-item-wrap .ancion-btn-wrap .upload-button {
  font-size: var(--font-size-13);
}
#contact .contact__submits-wrap {
  margin-top: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5vw;
}
#contact .contact__submits-wrap .check-btn {
  width: 75%;
}
#contact .contact__submits-wrap .back-btn {
  width: 52%;
}
#contact .contact__submits-wrap .send-btn {
  width: 40%;
}
#contact input[type=button],
#contact input[type=submit],
#contact .contact-submits-wrap button {
  padding: 6% 2%;
}
#contact input[type=submit],
#contact select {
  -webkit-appearance: none;
}

/*==========================================
privacy
===========================================*/
#privacy .privacy__content {
  margin-bottom: 15%;
  text-align: left;
}
#privacy .privacy__content:last-child {
  margin-bottom: 0;
}
#privacy .privacy__content p {
  margin-bottom: 8%;
}
#privacy .privacy__content p:last-child {
  margin-bottom: 0;
}
#privacy .privacy__content ul {
  margin-top: 8%;
}

/*==========================================
site
===========================================*/
#site-map .nav__item a {
  padding: 4% 0 4% 8%;
}

/*==========================================
プライバシーポリシー(LPフレーム時)
===========================================*/