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

/*==========================================
共通タイトル
===========================================*/
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-50);
  margin-bottom: 60px;
  text-align: center;
  line-height: 1.7;
  letter-spacing: 0.14em;
  position: relative;
}
.section-title small {
  display: block;
  font-size: var(--font-size-36);
}

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

/*==========================================
共通ブロック・要素
===========================================*/
.com-cont p {
  margin-bottom: 40px;
  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-18);
  font-weight: var(--font-weight-bold);
  margin-bottom: 5px;
}
#g-map h4 span {
  padding-left: 20px;
}
#g-map .map {
  height: 600px;
  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: 20px;
}
.com-address .address__worktime {
  width: -moz-fit-content;
  width: fit-content;
  gap: 5px 15px;
}
.com-address .address__worktime .worktime__item {
  width: -moz-fit-content;
  width: fit-content;
}
.com-address .address__worktime .worktime__item dt {
  padding-right: 7px;
  margin-right: 7px;
  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: 14px;
  width: 1px;
}

.com-tel {
  line-height: 1.3;
  text-align: center;
}
.com-tel .tel__num {
  font-size: var(--font-size-30);
}
.com-tel .tel__num small {
  font-size: var(--font-size-20);
}
.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: 150px 0 165px;
  color: var(--color-black);
}

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

/*==========================================
テーブルレイアウト
===========================================*/
.com-tbl tr {
  display: flex;
  padding: 20px 0;
}
.com-tbl tr th {
  padding: 15px 10px;
  width: 280px;
  vertical-align: top;
}
.com-tbl tr td {
  width: calc(100% - 280px);
  padding: 15px 20px;
}
.com-tbl tr td a[href^="mailto:"] {
  text-decoration: underline;
}

/*==========================================
パンくずリスト
===========================================*/
div .bread {
  font-size: var(--font-size-14);
  position: relative;
  z-index: 1;
}
div .bread .breadcrumbs {
  position: absolute;
  width: 1080px;
  margin: 0 auto;
  inset: 10px auto auto 0;
  gap: 10px 20px;
}
div .bread li {
  color: var(--primary-color);
  position: relative;
}
div .bread li:after {
  content: " > ";
  color: var(--color-gray);
  position: absolute;
  inset: 0 -15px 0 auto;
  margin: auto 0;
}
div .bread li:last-child:after {
  content: "";
}
div .bread li a {
  color: var(--color-gray);
}
div .bread li a:hover {
  text-decoration: underline;
}

/*==========================================
header
===========================================*/
#header {
  position: absolute;
  inset: 0 0 auto;
  padding: 20px 1.8229% 0;
  z-index: 1001;
  background: url(../img/common/hd_bg.png) bottom center no-repeat;
}
#header .header__right {
  width: -moz-fit-content;
  width: fit-content;
  gap: 20px 50px;
}
#header .header__contact {
  gap: 20px 50px;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (min-width: 768px) and (max-width: 1465px) {
  #home-page #header .header__right #nav {
    width: 100%;
    order: 3;
  }
}
/*==========================================
entrance
===========================================*/
#entrance__list .entrance__item {
  width: 50%;
}
#entrance__list .entrance__item-inner {
  width: 100%;
  height: 930px;
  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: 81.4583333333%;
  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-44);
  padding: 15px 0;
  letter-spacing: 0.14em;
}
#entrance__list .entrance__item-title .title-en {
  font-size: var(--font-size-34);
  color: var(--primary-color);
  padding: 25px 0;
  letter-spacing: 0.08em;
}

/*==========================================
nav
===========================================*/
#nav .nav__list {
  gap: 15px 25px;
}
#nav .nav__list .nav__item {
  font-size: var(--font-size-14);
}
#nav .nav__list .nav__item a {
  color: var(--color-white);
  padding-bottom: 3px;
  display: block;
  position: relative;
}
#nav .nav__list .nav__item a:before {
  content: "";
  width: 0;
  left: 50%;
  bottom: 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--color-white);
  position: absolute;
  display: block;
}
#nav .nav__list .nav__item a:after {
  content: "";
  width: 0;
  right: 50%;
  bottom: 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--color-white);
  position: absolute;
  display: block;
}
#nav .nav__list .nav__item a:hover {
  color: var(--color-white);
}
#nav .nav__list .nav__item a:hover:before {
  width: 50%;
  border-bottom: 1px solid var(--color-white);
}
#nav .nav__list .nav__item a:hover:after {
  width: 50%;
  border-bottom: 1px solid var(--color-white);
}
#nav .nav__list .nav__item.current a {
  border-bottom: 1px solid;
}
#nav .nav__list .nav__item.current a::before, #nav .nav__list .nav__item.current a::after {
  border-bottom: none;
}
#nav .nav__list .nav__item.current a:hover::before, #nav .nav__list .nav__item.current a:hover::after {
  border-bottom: none;
}

/*==========================================
mv
===========================================*/
#home-mv {
  position: relative;
  height: 930px;
}
#home-mv #mv__slider {
  height: 930px;
  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 {
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*==========================================
index.php
===========================================*/
/* home-about
------------------------*/
#home-about {
  padding: 160px 0 130px;
  background: url(../img/top/about_bg.jpg) center/cover no-repeat;
}
#home-about .about__content {
  width: 580px;
}
#home-about .about__img {
  margin-left: -100px;
}

/* home-order
------------------------*/
#home-order {
  background: url(../img/top/order-top_bg.png) top -550px center/100% no-repeat, var(--color-white);
  padding-bottom: 35px;
}
#home-order .order__section-lead {
  margin-bottom: 100px;
  text-align: center;
  font-size: var(--font-size-18);
}
#home-order .order__step {
  position: relative;
  padding: 85px 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: 83.3333333333%;
  min-width: 1200px;
  height: calc(100% - 100px);
  top: 0;
}
#home-order .order__step::after {
  width: 82.2916666667%;
  min-width: 1180px;
  height: calc(100% - 100px);
  top: 10px;
}
#home-order .step__lead {
  margin-bottom: 0;
}
#home-order .step__title {
  font-size: var(--font-size-42);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.14em;
  margin-bottom: 20px;
  text-align: center;
}
#home-order .step__item {
  padding: 160px 0 0 0;
  height: 750px;
}
#home-order .step__item:not(:first-child) {
  margin-top: -430px;
}
#home-order .step__item .inbox {
  z-index: 1;
}
#home-order .step__item .inbox::before {
  content: "step" counter(number, decimal-leading-zero);
  font-size: 17.8rem;
  color: rgba(var(--color-gray-mid-dark-rgb), 0.12);
  position: absolute;
  line-height: 1;
  z-index: -1;
}
#home-order .step__item-inner {
  width: 675px;
}
#home-order .step__item:nth-child(odd) {
  -webkit-clip-path: polygon(0 0, 100% 34%, 100% 100%, 0 66%);
          clip-path: polygon(0 0, 100% 34%, 100% 100%, 0 66%);
  background: var(--color-gray);
}
#home-order .step__item:nth-child(odd) .inbox::before {
  top: -53px;
  right: 0;
  transform: rotate(8deg);
}
#home-order .step__item:nth-child(even) {
  -webkit-clip-path: polygon(0 34%, 100% 0, 100% 66%, 0 100%);
          clip-path: polygon(0 34%, 100% 0, 100% 66%, 0 100%);
  background: var(--color-gray-mid);
}
#home-order .step__item:nth-child(even) .inbox::before {
  top: -53px;
  left: 0;
  transform: rotate(-8deg);
}
#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: 10px;
  margin-bottom: 45px;
}
#home-order .step__item-title span {
  display: block;
}
#home-order .step__item-title .title-num {
  font-size: var(--font-size-24);
  color: var(--accent-color);
}
#home-order .step__item-title .title-q {
  font-size: var(--font-size-34);
}
#home-order .step__item-title .title-q small {
  font-size: var(--font-size-28);
}

/* home-link
------------------------*/
#home-link .link__item {
  width: 33.33333%;
  width: -webkit-calc(100% / 3);
  width: 33.3333333333%;
}
#home-link .link__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 440px;
  position: relative;
}
#home-link .link__item a::before {
  position: absolute;
  content: "";
  inset: 0;
  margin: auto;
  border: 1px solid;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  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: clamp(3rem, 2.2vw, 4.2rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
  letter-spacing: 0.14em;
}

/* home-info
------------------------*/
#home-info {
  padding: 150px 0 165px;
  background: url(../img/top/info_bg.jpg) center/cover no-repeat;
}
#home-info .inbox {
  position: relative;
}
#home-info .info__content {
  width: 580px;
}
#home-info .info__img--back {
  margin-right: -100px;
}
#home-info .info__img--front {
  position: absolute;
  inset: auto -40px 0 auto;
}

/* home-news
------------------------*/
#home-news {
  padding: 145px 0 150px;
  background: var(--color-white);
  color: var(--color-black);
}
#home-news .inbox {
  position: relative;
}
#home-news .news__title {
  position: relative;
  z-index: 1;
}
#home-news .news__title .title-en {
  position: absolute;
  z-index: -1;
  font-size: clamp(12rem, 10.07vw, 19.4rem);
  color: var(--color-gray-mid);
  min-width: 490px;
  height: 190px;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0;
  inset: -115px auto auto -290px;
  font-weight: var(--font-weight-regular);
  display: flex;
  align-items: flex-end;
  justify-content: end;
}
#home-news .news__post-list {
  width: 785px;
  min-height: 300px;
}
#home-news .news__post-list .news__post {
  border-bottom: 1px solid var(--color-gray-mid);
}
#home-news .news__post-list .news__post a {
  padding: 20px 0;
}
#home-news .news__post-list .news__post a:hover {
  background: var(--color-gray);
  padding: 20px 10px;
}
#home-news .news__post-list .news__post:last-child {
  border-bottom: none;
}
#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: 95px;
}
#home-news .news__post-list .news__post .category-label {
  width: calc(100% - 95px);
}
#home-news .news__post-list .news__post .category-label li {
  padding: 0 7px;
  position: relative;
}
#home-news .news__post-list .news__post .category-label li::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 14px;
  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-16);
  color: var(--color-black);
  font-style: normal;
  color: var(--color-gray-dark);
  margin-top: 5px;
}
#home-news .news__button {
  position: absolute;
  inset: auto auto 20px 0;
}

/*==========================================
footer
===========================================*/
#footer .inbox {
  padding: 85px 0 90px;
  width: 69.0104166667%;
  min-width: 1080px;
}
#footer .footer__left {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 460px;
}
#footer .footer__left .footer__logo {
  display: inline-block;
  margin-bottom: 35px;
}
#footer .footer__left .address__locate {
  margin-bottom: 50px;
}
#footer .footer__right {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 705px;
}
#footer .footer__right .footer__contact {
  gap: 25px 40px;
  margin-bottom: 40px;
}
#footer .footer__right .footer__nav {
  gap: 10px 25px;
}
#footer .footer__right .footer__nav .nav__item {
  font-size: var(--font-size-14);
}
#footer .footer__right .footer__nav .nav__item a:hover {
  text-decoration: underline;
}

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

/*==========================================
sv
===========================================*/
.lower-sv {
  height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lower-sv .sv__title {
  width: 842px;
  margin: 0 auto;
  font-size: var(--font-size-44);
  letter-spacing: 0.14em;
  border: 1px solid var(--color-gray-dark);
  background: rgba(var(--color-black-rgb), 0.7);
  text-align: center;
  padding: 40px 15px;
}

#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: 150px 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-44);
}
.c-kodawari__section .c-kodawari__list {
  gap: 80px 40px;
}
.c-kodawari__section .c-kodawari__list .kodawari__item {
  width: 520px;
}
.c-kodawari__section .c-kodawari__list .kodawari__item-img {
  width: 100%;
  height: 336px;
}
.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% - 20px);
  height: calc(100% - 20px);
}
.c-kodawari__section .c-kodawari__list .kodawari__item-title {
  padding: 25px 0;
}

/* c-lineup__section
------------------------*/
.c-lineup__section .c-lineup__category-list {
  gap: 15px 0;
  margin-bottom: 90px;
}
.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: 24px;
}
.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 55px;
  display: block;
  color: var(--primary-color);
  font-size: var(--font-size-24);
  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: 788px;
  margin: 0 auto 100px;
  height: 803px;
  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-18);
  font-weight: var(--font-weight-bold);
  width: 180px;
  border: 1px solid;
  padding: 5px;
  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: 245px 70px 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: 475px 105px 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: 435px 305px 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 295px 160px 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 220px 70px;
}
.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 90px -75px;
}
.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: 750px;
  display: none;
  position: absolute;
  top: 50%;
  left: 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);
  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: 20px 0;
  display: block;
  font-size: var(--font-size-24);
  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 {
  gap: 60px 30px;
}
.c-lineup__section .c-lineup__list .lineup__item {
  width: 340px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-gray-semidark);
}
.c-lineup__section .c-lineup__list .lineup__item .lineup__item-img {
  width: 100%;
  height: 340px;
  margin-bottom: 25px;
}
.c-lineup__section .c-lineup__list .lineup__item .lineup__item-category {
  gap: 10px 0;
  margin-bottom: 10px;
}
.c-lineup__section .c-lineup__list .lineup__item .lineup__item-category li {
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-bold);
  position: relative;
  padding: 0 15px;
  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: 15px;
}
.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-24);
  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__img {
  position: absolute;
}
#master-greeting .greeting__content {
  width: 570px;
  margin-left: auto;
  min-height: 555px;
}
#master-greeting .greeting__img--front {
  inset: 450px auto auto -110px;
  z-index: 1;
}
#master-greeting .greeting__img--back {
  inset: 165px auto auto 0;
  text-align: right;
  width: 45%;
}
#master-greeting .greeting__histroy {
  margin-top: 260px;
  background: var(--color-white);
}
#master-greeting .greeting__histroy .histroy__title {
  padding: 50px 0 35px;
  color: var(--primary-color);
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-bold);
  text-align: center;
}
#master-greeting .greeting__histroy .history__item {
  padding: 20px 0 25px;
  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: 165px;
  color: var(--accent-color);
  font-size: var(--font-size-20);
  padding: 0 15px;
  text-align: right;
}
#master-greeting .greeting__histroy .history__item dd {
  width: calc(100% - 165px);
  padding: 0 80px 0 15px;
  color: var(--color-black);
}

/* master-cosmos
------------------------*/
#master-cosmos .inbox {
  width: clamp(1100px, 66.666%, 1280px);
}
#master-cosmos .cosmos__logo {
  text-align: center;
  margin-bottom: 75px;
}
#master-cosmos .cosmos__title span {
  color: var(--color-red);
}
#master-cosmos .cosmos__content {
  background: var(--color-red-thin);
  padding: 65px 7.8125% 80px;
  position: relative;
}
#master-cosmos .cosmos__content .com-txt {
  width: 475px;
}
#master-cosmos .cosmos__content .cosmos__content-gallery {
  position: absolute;
  inset: 0 4.6875% auto auto;
  height: 100%;
  width: 42.96875%;
}
#master-cosmos .cosmos__content .cosmos__content-gallery .gallery__item {
  position: absolute;
}
#master-cosmos .cosmos__content .cosmos__content-gallery .gallery__item--back {
  width: 88.5454545455%;
  inset: -15% 0 auto auto;
}
#master-cosmos .cosmos__content .cosmos__content-gallery .gallery__item--front {
  width: 64.7272727273%;
  inset: auto auto -16% 0;
}
#master-cosmos .cosmos__btn-list {
  gap: 15px 45px;
  margin-top: 160px;
}

/*==========================================
info
===========================================*/
/* info-gallery
------------------------*/
#info-gallery .gallery__list {
  gap: 30px;
}
#info-gallery .gallery__list .gallery__item {
  width: 340px;
  height: 280px;
}

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

/*==========================================
一覧ぺージ用カテゴリ(セレクトボックス)
===========================================*/
.global-select {
  width: 300px;
  margin: 0 0 45px auto;
}
.global-select select {
  padding: 15px 37px 15px 15px;
}

/*==========================================
news
===========================================*/
.column__wrap .column__post-list .column__post a {
  padding: 45px 0;
}
.column__wrap .column__post-list .column__meta-area time {
  width: 95px;
}
.column__wrap .column__post-list .column__meta-area time,
.column__wrap .column__post-list .column__meta-area .category-label {
  font-size: var(--font-size-14);
}
.column__wrap .column__post-list .column__meta-area .category-label {
  width: calc(100% - 115px);
  gap: 5px;
}
.column__wrap .column__post-list .column__meta-area .category-label li {
  padding: 2px 10px;
}
.column__wrap .column__post-list .column__meta-area .column__title {
  font-size: var(--font-size-23);
  margin: 10px 0;
}
.column__wrap .column__post-list .more-btn {
  width: 125px;
  font-size: var(--font-size-14);
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-sizing: border-box;
  padding: 5px 0;
  display: block;
  color: var(--color-white);
  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: 210px;
  height: 200px;
}
.column__wrap .column__post-list .column__post:has(.column__thumb) .column__thumb .img-eff {
  width: 100%;
  height: 100%;
  transition-duration: 0.3s;
}
.column__wrap .column__post-list .column__post:has(.column__thumb) .column__meta-area {
  width: 820px;
}

/*----------------------------------
詳細ページのカテゴリー表示(タイトル下部)
----------------------------------*/
.single-meta {
  margin-bottom: 20px;
}
.single-meta time {
  font-size: var(--font-size-14);
  width: 95px;
  padding: 3px 0;
}
.single-meta .category-label {
  width: calc(100% - 95px);
  font-size: var(--font-size-14);
  gap: 5px;
  margin-left: 10px;
}
.single-meta .category-label li a {
  padding: 3px 10px;
}

/*==========================================
contact
===========================================*/
#contact .contact__form {
  width: 980px;
  margin: 0 auto 55px;
}
#contact .contact__form tr th {
  margin-bottom: 20px;
}
#contact .contact__form tr th .required {
  padding: 3px;
  margin-left: 10px;
  vertical-align: baseline;
  font-size: var(--font-size-12);
}
#contact .contact__form tr td .label-list {
  gap: 15px;
}
#contact .contact__form tr.privacy-check th {
  text-align: center;
}
#contact .contact__form .form-field {
  padding: 20px 15px;
}
#contact .contact__form .contact__select {
  width: 200px;
}
#contact .contact__form .contact__select::after {
  inset: 0 16px 0 auto;
  width: 8px;
  height: 8px;
}
#contact .contact__form .contact__select select {
  padding: 15px 30px 15px 10px;
}
#contact .contact__form #pc01,
#contact .contact__form #pc02 {
  width: 150px;
}
#contact .contact__form #address {
  margin-top: 15px;
}
#contact .contact__form #date1,
#contact .contact__form #date2,
#contact .contact__form #date3 {
  width: 300px;
}
#contact .contact__form textarea {
  height: 260px;
}
#contact .contact__form .upload-item-wrap .thumb {
  width: 200px;
  margin-right: 25px;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap {
  width: 130px;
}
#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 input[type=button],
#contact input[type=submit],
#contact .contact__submits-wrap button {
  height: 75px;
}
#contact .contact__submits-wrap {
  gap: 35px;
}
#contact .contact__submits-wrap .check-btn {
  width: 304px;
}
#contact .contact__submits-wrap .back-btn {
  width: 270px;
}
#contact .contact__submits-wrap .send-btn {
  width: 240px;
}

/*==========================================
privacy
===========================================*/
#privacy .privacy__content {
  margin-bottom: 70px;
}
#privacy .privacy__content:last-child {
  margin-bottom: 0;
}
#privacy .privacy__content p {
  margin-bottom: 30px;
}
#privacy .privacy__content p:last-child {
  margin-bottom: 0;
}
#privacy .privacy__content ul {
  margin-top: 30px;
}

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

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