@charset "utf-8";
/*定数設定*/
@import url("root.css");
/*grid*/
@import url("lib/grid.css");
/*normalize*/
@import url("lib/reset.css");
/*各種初期設定*/
@import url("parts/base.css");
/*hxタグ*/
@import url("parts/title.css");
/*ヘッダ*/
@import url("parts/header.css");
/*フッタ*/
@import url("parts/footer.css");
/*カラムレイアウト設定*/
@import url("parts/layout.css");
/*投稿一覧ページャー*/
@import url("parts/pagenation.css");
/*各種汎用クラス*/
@import url("parts/util.css");

/*-----*ブレイクポイントルール*-----*/
/* スマートフォン：max-width:599px */
@media ( max-width: 599px ) {
}

/* タブレット：min-width:600px */
@media ( min-width: 600px ) {
}

/* PC：min-width:1025px */
@media ( min-width: 1025px ) {
}

/***************************************
-------------- WEB FONT --------------
***************************************/
.gf-oswald {
  font-family: 'Oswald', sans-serif;
}

/***************************************
-------------- STORE INFO --------------
***************************************/

/***************************************
-------------- NEWS LIST --------------
***************************************/

.news-lists {
  font-size: clamp(1.6rem, 1.6vw, 1.8rem);
}

@media ( max-width: 599px ) {
  .news-lists {
  }
}

.news-lists dt {
  padding: .5em .5em 0;
}

@media ( max-width: 599px ) {
  .news-lists dt {
    border-bottom: none;
    padding: 0.5em 0.5em 0;
  }
}

.news-lists dt .category_badge {
  color: #fff;
  background: #910005;
  margin-left: 8px;
  padding: 4px 5px;
  line-height: 1;
  font-size: 1.4rem;
}

.news-lists dt i {
  display: inline-block;
  margin-right: 10px;
}

.news-lists dd {
  border-bottom: var(--base-color01) solid 1px;
  padding: 0.5em;
}

.side_info .news-lists {
  display: grid;
  grid-template-columns: 1fr;
}

.side_info .news-lists dt {
  border-bottom: none;
  padding-bottom: 0;
}

/***************カテゴリタグカラー設定****************/
.post_heading {
  display: flex;
  gap: 10px;
}

.post_heading > * {
  margin: 0;
}

.c-categoryTag {
  display: inline-block;
  font-size: 1.4rem;
  text-align: center;
  border-radius: 5px;
  color: #fff;
  background: var(--base-color01);
  padding: 0 10px;
}

.c-categoryTag .category-news {
  background: var(--base-color01);
}

.c-categoryTag .category-recruit {
  background: var(--base-color01);
}

.c-categoryTag .category-other {
  background: var(--base-color01);
}

/***************************************
-------------- ITEM LIST --------------
***************************************/

.item_list .col-3 > a {
  display: block;
  position: relative;
  height: 0;
  padding-top: 70%;
}

.item_list .col-3 > a > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item_list .cat {
}

.item_list .date {
  margin: 0;
}
.item_list .date i {
  color: #910005;
  margin-right: 5px;
}

/***************************************
-------------- GOOGLE MAP --------------
***************************************/

#store_info .gmap {
  width: 100%;
  margin: auto;
}

#store_info .gmap iframe {
  width: 100%;
  height: 400px;
  vertical-align: bottom;
}
@media ( max-width : 599px ) {
  #store_info .gmap iframe {
    height: 260px;
  }
}

/***************************************
-------------- PAGE TOP --------------
***************************************/

#page_top a {
  position: fixed;
  z-index: 99;
  bottom: 0;

  background: url(../img/totop.png) no-repeat center center /cover;
  width: 59px;
  height: 60px;
}

#page_top a::before {
}

#page_top a span {
}

#side {
  position: fixed;
  right: 0;
  top: 100px;
}

#side ul li + li {
  margin-top: 20px;
}

@media screen and (max-width: 599px) {
  #page_top a {
    bottom: 40px;
  }

  #side {
    position: fixed;
    right: 0;
    bottom: 0;
    top: auto;
    z-index: 1;
  }

  #side ul {
    display: flex;
    align-items: center;
  }

  #side ul li + li {
    margin: 0;
  }
}

/***************************************
-------------- タブ式コンテンツ -----------
***************************************/

.tabAllWrap .tab {
  width: 100%;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.tabAllWrap .tab .tab__button a {
  display: block;
  position: relative;
  text-align: center;
  text-decoration: none;
  background: white;
  padding: 1.2em 1em;
  font-weight: bold;
  transition: .3s;
}

@media (max-width: 599px) {
  .tabAllWrap .tab .tab__button a {
    padding: .5em 1em;
    height: 4em;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.tabAllWrap .tab .tab__button a:hover {
  background: var(--base-color01);
  color: white;
}

.tabAllWrap .tab .tab__button.active a {
  background: var(--base-color01);
  color: white;
}

/***************************************
------------ コンテンツスライダー ----------
***************************************/
.parts_content_slider .slider_wrapper {
  margin-left: -10px;
  margin-right: -10px;
  position: relative;
}

.parts_content_slider .slick-slide {
  padding: 0 10px;
}

.parts_content_slider .slick-arrow {
  width: 40px;
  height: 40px;
  background: var(--base-color01);
  position: absolute;
  z-index: 10;
  top: 31%;
  margin: auto;
  cursor: pointer;
  transform: translate(0);
}

.parts_content_slider .slick-arrow:before{
  content: none;
}

@media (min-width: 600px) and (max-width: 1220px ) {
  .parts_content_slider .slick-arrow {
    top: 9vw;
  }
}

@media ( max-width: 599px ) {
  .parts_content_slider .slick-arrow {
    top: 30vw;
  }
}

.parts_content_slider .slick-arrow.slick-prev {
  left: 10px;
  background: url(../img/arrow_bk.svg) no-repeat center;
  transform: scale(-1, 1);
}

.parts_content_slider .slick-arrow.slick-next {
  right: 10px;
  background: url(../img/arrow_bk.svg) no-repeat center;
}

/***************************************
------------- 共通 BTN ------------
***************************************/
.common_btn {
  width: min(93%, 750px);
  margin: 20px auto 0;
  border-radius: 80px;
  color: var(--base-color01);
  background: #ffcc00;
  border: 2px solid #ffcc00;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.common_btn a {
  width: 100%;
  padding: 16px 0;
  font-size: min(3.5vw, 3.5rem);
  font-weight: bold;
  line-height: 1;
  text-align: center;
  position: relative;
  transition: 0.5s;
}

.common_btn a:after {
  content: "";
  display: block;
  width: 20px;
  height: 24px;
  background: url(../../img/arrow_br.svg) no-repeat center /contain;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}

.common_btn:hover {
  background: var(--base-color01);
  color: #fff;
  border-radius: 80px;
  border: 2px solid #fff;
  box-sizing: border-box;
}

.common_btn a:hover:after {
  background: url(../../img/arrow_wh.svg) no-repeat;
}

@media screen and (max-width: 599px) {
  .common_btn {
    width: 90%;
    margin: 10px auto 0;
  }

  .common_btn a {
    padding: 10px;
    font-size: clamp(2rem, 4.75vw, 2.4rem);
  }

  .common_btn a::after {
    width: 12px;
    height: 20px;
  }
}

.button {
  font-size: clamp(1.6rem, 1.6vw, 2rem);
  font-weight: 500;
  color: #fff;
  background: var(--base-color01);
  max-width: 400px;
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 0.4em;
  position: relative;
  transition: 0.2s;
}

.button::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transition: 0.2s;
}

.button:hover {
  opacity: 0.8;
}

.button:hover::after {
  transform: translateX(5px) rotate(45deg);
}

.button.small {
  font-size: 1.8rem;
  padding: 0.2em;
  max-width: 200px;
  width: 100%;
}

.button.small:after {
  right: 8px;
  width: 10px;
  height: 5px;
  border: 5px solid transparent;
  border-left: 10px solid #fff;
}

.button.small:hover::after {
  right: 5px;
}

.button.color {
  background: var(--base-color03);
}

figure {
  margin: 0;
}

/*******注意書き********/
.tips_wrap {
  display: block;
  width: 100%;
  background: #fffee5 !important;
  padding: 5px;
}

.tips {
  width: 100%;
  padding: clamp(15px,4%,30px) clamp(20px,6%,40px);
  border: 4px double var(--base-color01);
}

.tips li {
  font-size: 18px;
  margin-left: 20px;
  line-height: 2;
}

.tips li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--base-color01);
  margin-right: 10px;
  margin-left: -20px;
}
@media ( max-width : 599px ) {
  .tips li::before {
    transform: translateY(-2px);
  }
}

.tips_red {
  background: #c80000 !important;
}
.tips_red .tips {
  border-color: #fff;
}
.tips_red .tips li:before {
  background: #fff;
}
.tips_red li {
  color: #fff;
}

/*
20240917 btn_insta
*/

.btn_insta { margin-bottom: min(6%, 70px);}

.btn_insta a {
  display: block;
  width: 90%; max-width: 1000px;
  margin-right: auto; margin-bottom: 10px; margin-left: auto;
  border-radius: 16px;
  padding: 4px;
  background: linear-gradient(135deg, rgba(90,0,255,1) 0%, rgba(255,0,168,1) 25%, rgba(255,0,72,1) 50%, rgba(255,138,0,1) 75%, rgba(255,204,0,1) 100%);
  transition: all .5s ease;
  box-shadow: 1px 3px 5px rgba(0, 0, 0, .3);
}

.btn_insta a:hover { opacity: 0.7;}

.btn_insta_contents {
  border-radius: 12px;
  padding: 8px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}
.btn_insta_contents span {
  width: 100%;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: min(4.2vw, 2.8rem);
}
.btn_insta_contents span::before{
  content: "";
  display: block;
  width: min(15%,80px);
  height: auto;
  margin: 0 min(3vw,30px) 0;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: url(../img/insta_icon.png) no-repeat top left / contain;
}
/* PC */
@media only screen and (min-width: 1025px) {
  .btn_insta a img { width: 115px; height: auto;}

  .btn_insta_contents { position: relative;}

  .btn_insta_contents::after {
    content: '';
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid #333;
    position: absolute; right: 160px; top: 50%;
    transform: translateY(-50%);
  }
}

/* TB */
@media only screen and (min-width: 600px) and (max-width: 1024.98px) {
  .btn_insta a img { display: none;}
}

/* SP */
@media only screen and (max-width: 599.98px) {

  .btn_insta a { border-radius: 10px;}

  .btn_insta_contents {
    background-size: 14vw;
    border-radius: 8px;
  }

  .btn_insta a img { display: none;}

}

/*
20240917 btn_insta
*/

.btn_x { margin-bottom: min(6%, 70px);}

.btn_x a {
  display: block;
  width: 90%; max-width: 1000px;
  margin-right: auto; margin-bottom: 10px; margin-left: auto;
  border-radius: 16px;
  padding: 4px;
  background: #000;
  transition: all .5s ease;
  box-shadow: 1px 3px 5px rgba(0, 0, 0, .3);
}

.btn_x a:hover { opacity: 0.7;}

.btn_x_contents {
  border-radius: 12px;
  padding: 8px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}
.btn_x_contents span {
  width: 100%;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: min(4.2vw, 2.8rem);
}
.btn_x_contents span::before{
  content: "";
  display: block;
  width: min(12%,60px);
  height: auto;
  margin: 0 min(4vw,40px) 0;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: url(../img/x_icon.png) no-repeat top left / contain;
}
/* PC */
@media only screen and (min-width: 1025px) {
  .btn_x a img { width: 115px; height: auto;}

  .btn_x_contents { position: relative;}

  .btn_x_contents::after {
    content: '';
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid #333;
    position: absolute; right: 160px; top: 50%;
    transform: translateY(-50%);
  }
}

/* TB */
@media only screen and (min-width: 600px) and (max-width: 1024.98px) {
  .btn_x a img { display: none;}
}

/* SP */
@media only screen and (max-width: 599.98px) {

  .btn_x a {
    border-radius: 10px;
    padding: 3px;
  }

  .btn_x_contents {
    background-size: 14vw;
    border-radius: 8px;
  }

  .btn_x a img { display: none;}

}