@charset "utf-8";
@import url("root.css");
/***************************************
-------------- TOP HEADER --------------
***************************************/

/*--------------------
topスライダー
---------------------*/
.sliderArea {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0px 25px;
  position: relative;
  z-index: -1;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .sliderArea {
    margin: 80px auto 0px;
    padding: 0 0px 25px;
  }
}
@media screen and (max-width: 599px) {
  .sliderArea {
    margin: 60px auto 0px;
    padding: 0 0px 25px;
  }
}

.sliderArea.w300 {
  max-width: 1175px;
}
.slick-slide {
  margin: 0 0px;
}
.slick-slide img {
  width: 100%;
  height: auto;
}
.slick-prev,
.slick-next {
  z-index: 1;
}
.slick-prev:before,
.slick-next:before {
  color: #000;
}
.slick-slide {
  transition: all ease-in-out 0.3s;
  opacity: 0.7;
}
.slick-active {
  opacity: 1;
}
.slick-current {
  opacity: 1;
}

.sliderArea .thumb .slick-slide img {
  padding: 0 3%;
}
.sliderArea .thumb .slick-slide {
  cursor: pointer;
}
.sliderArea .thumb .slick-slide:hover {
  opacity: 0.7;
}

.full-screen .slick-list {
  overflow: visible;
}
.full-screen.slider {
  max-width: 1175px;
  margin: 0 auto;
}
.slick-dotted.slick-slider {
  margin-bottom: 2em !important;
}

/*slick-dots*/
.full-screen .slick-dots {
  bottom: -33px;
}
.full-screen .slick-dots li {
  position: relative;
  display: inline-block;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.full-screen .slick-dots li button {
  font-size: 0;
  line-height: 0;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  text-indent: -9999px;
  display: block;
  margin: 0 5px;
  outline: 0;
  transition-duration: 0.3s;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #999999;
}
.full-screen .slick-dots li button:before {
  content: none;
}
.full-screen .slick-dots li button:hover,
.full-screen .slick-dots li.slick-active button {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #e6aa28;
}

.slick-slide a:hover img {
  transform: scale(1.01);
  transition: all 0.6s; /*表示の変化を0.3秒に指定*/
  opacity: 1 !important;
}

/***************************************
---------------- market price ----------
***************************************/

#market_price {
  display: block;
  width: 100%;
  position: relative;
  z-index: -1;
}

#market_price .container {
  padding: 30px 0 50px;
}
#market_price .notes {
  margin-top: 15px;
  text-align: center;
}

.market_price_box {
  display: block;
  width: 100%;
  border: 0px solid;
}

.market_price_box h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5px 10px 7px;
  margin-bottom: 1rem;
  color: var(--base-color01);
}

.market_price_box h3 span {
  font-size: 2rem;
  text-align: center;
}

.market_price_box h3 span br {
  display: none;
}

.market_price_box h3::before,
.market_price_box h3::after {
  display: inline-block;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 45px;
  height: 45px;
}

.market_price_box h3::before {
  background-image: url("../img/index/market_ticon_l.webp");
  margin-right: 5px;
}
.market_price_box h3::after {
  background-image: url("../img/index/market_ticon_r.webp");
  margin-left: 5px;
}

.market_price_box ul.price_list {
  width: 100% !important;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.market_price_box ul.price_list li {
  display: block;
  text-align: center;
  width: 32%;
  border-radius: 5px 5px 5px 5px;
  background: var(--base-color04);
  color: var(--base-color03);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 10px;
  border: 1px solid;
  padding: 12px 0 0;
}

.market_price_box ul.price_list li.gold {
  background-color: #d8af11;
  border-color: #d8af11;
}

.market_price_box ul.price_list li.silver {
  background-color: #bdbdbd;
  border-color: #bdbdbd;
}

.market_price_box ul.price_list li.pt {
  background-color: #98a2bc;
  border-color: #98a2bc;
}

.market_price_box ul.price_list li.pd {
  background-color: #8d8d8d;
  border-color: #8d8d8d;
}

.market_price_box ul.price_list li span.price {
  display: flex;
  justify-content: center !important;
  align-items: center;
  background: var(--base-color03);
  color: var(--base-color02);
  margin-top: 10px;
  padding: 15px 10px 18px;
  border-radius: 0 0 5px 5px;
  font-size: 1.5rem;
  font-weight: 600;
}

.market_price_box ul.price_list li span.price::after {
  content: "円";
  font-size: 70%;
  margin-top: 5px;
  margin-left: 5px;
}

.market_price_box ul.price_list li span.price::before {
  display: inline-block;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 46px;
  height: 46px;
  min-height: 34px;
  margin-right: 10px;
}

.market_price_box ul.price_list li.gold span.price::before {
  background-image: url("../img/i-gold.webp");
}

.market_price_box ul.price_list li.silver span.price::before {
  background-image: url("../img/i-silver.webp");
}

.market_price_box ul.price_list li.pt span.price::before {
  background-image: url("../img/i-pt.webp");
}

.market_price_box ul.price_list li.pd span.price::before {
  background-image: url("../img/i-pd.webp");
}

@media screen and (min-width: 1025px) {
  .market_price_box h3 span {
    font-size: 2.25rem;
    text-align: center;
  }

  .market_price_box ul.price_list li {
    width: 32%;
  }
  .market_price_box ul.price_list li {
    font-size: 1.25rem;
  }
  .market_price_box ul.price_list li span.price::before {
    width: 48px;
    height: 48px;
    margin-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .market_price_box ul.price_list li {
    display: block;
    width: 48% !important;
    border-radius: 5px;
    padding: 12px 0 0;
    margin-bottom: 3%;
  }
  #market_price .notes {
    margin-top: 10px;
  }
}

@media screen and (max-width: 599px) {
  #market_price .container {
    padding: 10px 0 30px;
  }
  .market_price_box h3::before,
  .market_price_box h3::after {
    width: 35px;
    height: 35px;
  }

  .market_price_box h3 span {
    font-size: 1.5rem;
  }
  .market_price_box ul.price_list li {
    width: 100% !important;
  }
}

@media screen and (max-width: 379px) {
  .market_price_box ul.price_list li {
    font-size: 1rem;
  }
  .market_price_box ul.price_list li span.price::before {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
  .market_price_box ul.price_list li span.price {
    font-size: 1.375rem;
  }
  .market_price_box h3 strong {
    display: block;
  }
}

/***************************************
---------------- chirashi_bnr_area ---------------
***************************************/

#chirashi_bnr_area {
  background-color: var(--base-color01);
}

#chirashi_bnr_area .container {
  padding: 0;
}

#chirashi_bnr_area .ad_box {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

#chirashi_bnr_area .ad_box li:nth-child(1) img {
  display: block;
  height: auto;
  margin: 0 auto 0;
}

#chirashi_bnr_area .ad_box li {
  width: 100%;
  max-width: 600px;
  margin: 1rem auto 0;
}

#chirashi_bnr_area .ad_box li:nth-child(1) {
  margin-bottom: 8%;
}

.ad_box li img {
  width: 100%;
  max-width: 600px;
}

@media screen and (min-width: 1025px) {
  #chirashi_bnr_area .container {
    padding: 0;
  }

  #chirashi_bnr_area .ad_box li:nth-child(1) {
    width: 43% !important;
    margin-bottom: 0rem !important;
  }
  #chirashi_bnr_area .ad_box li:nth-child(2) {
    width: 55% !important;
  }
}

@media screen and (max-width: 599px) {
  #chirashi_bnr_area .container {
    padding: 0;
  }
  #chirashi_bnr_area .ad_box li:nth-child(1) {
    margin-bottom: 10%;
  }
}
/*--------------------------------*/

.camp_info {
  position: relative;
  width: 100%;
  margin-left: auto;
}

.camp_info .inner {
  border-left: 2px solid var(--base-color04);
  border-right: 2px solid var(--base-color04);
  border-bottom: 2px solid var(--base-color04);
  background: var(--base-color04);
  border-radius: 5px;
  padding-top: 8%;
}

.camp_info h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: transparent;
  color: var(--base-color03);
  margin-top: -7%;
  position: absolute;
}
a:hover .camp_info h3 img {
  opacity: 1 !important; /*--IE,FF対応--*/
  filter: alpha(opacity=100) !important;
  -ms-filter: "alpha( opacity=100) ";
}

@media screen and (min-width: 1025px) {
  .camp_info h3 {
    margin-top: -36px;
  }
}

.camp_info h3 {
  font-size: 1.75rem !important;
}

.camp_info h3 img {
  max-width: 600px;
  margin: 0 auto 0;
}

.camp_info p.more_txt {
  font-size: 1rem;
  padding: 0.5rem 0.5rem 0.5rem;
  color: var(--base-color01);
  font-weight: 500;
  position: absolute;
  bottom: 5px;
  right: 10px;
}

.camp_info p.more_txt::after {
  font-family: "Font Awesome 5 Free";
  content: "\f101";
  font-weight: 600;
  margin-left: 5px;
}

.camp_info dl {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.camp_info dl dt {
  width: 53%;
  order: 1;
  padding: 8px;
}

.camp_info dl dt img {
  display: block;
  max-width: 100%;
  aspect-ratio: 4/2.45;
  object-fit: cover;
  border: 0px solid #ccc;
  margin-bottom: 0rem;
  overflow: hidden;
}

.camp_info dl dd {
  position: relative;
  width: 46%;
  order: 2;
  padding: 10px 10px 0 0;
}

.camp_info dl dd p.camp_txt {
  font-size: 120% !important;
  font-weight: 700;
  line-height: 160%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media screen and (max-width: 599px) {
  .camp_info dl dd p.camp_txt {
    font-size: 17px !important;
  }
}

@media screen and (max-width: 479px) {
  .camp_info h3 {
    font-size: 1.375rem !important;
  }
  .camp_info dl {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
  .camp_info dl dt {
    width: 100%;
    order: 1;
    padding: 8px 8px 8px 8px;
  }
  .camp_info dl dt img {
    display: block;
    max-width: 100%;
    height: auto;
    aspect-ratio: 4/2.4;
  }
  .camp_info dl dd {
    width: 100%;
    order: 2;
    padding: 8px 8px 8px 8px;
  }

  .camp_info p.more_txt {
    font-size: 1rem;
    padding: 10px 10px 5px;
    text-align: center;
    color: var(--base-color04);
    font-weight: 500;
    position: static;
  }
}

/***************************************
--------------- GREETING ---------------
***************************************/
#top_greeting {
  background-image: url("../img/index/greeting_bg.webp");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

#top_greeting .container {
  padding-bottom: 50px;
}

#top_greeting p {
  font-size: 108% !important;
  line-height: 200%;
  padding-top: 0;
  color: var(--base-color02);
  margin-bottom: 1.5rem;
}

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

@media screen and (max-width: 599px) {
  #top_greeting p {
    font-size: 17px !important;
    line-height: 180%;
    padding-top: 0;
    margin-bottom: 1rem;
  }

  #top_greeting .container {
    padding-bottom: 30px;
  }
}

/*--------------------------------------*/
#top_greeting .flex_txt {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 3%;
}

#top_greeting .flex_txt .img_box {
  width: 48% !important;
  text-align: center;
}

#top_greeting .flex_txt .txt_box {
  width: 49% !important;
}
@media screen and (max-width: 768px) {
  #top_greeting .flex_txt {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }

  #top_greeting .flex_txt .img_box {
    width: 100% !important;
  }

  #top_greeting .flex_txt .txt_box {
    width: 100% !important;
  }
  #top_greeting .flex_txt div:not(:last-of-type) {
    margin-bottom: 20px;
  }
}

/*--------------------------------------*/
.flex_txt {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.flex_txt .img_box {
  width: 32.5%;
  text-align: center;
}

.flex_txt .txt_box {
  width: 65%;
}
@media screen and (max-width: 768px) {
  .flex_txt {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }

  .flex_txt .img_box {
    width: 100%;
  }

  .flex_txt .txt_box {
    width: 100%;
  }
  .flex_txt div:not(:last-of-type) {
    margin-bottom: 20px;
  }
}

/***************************************
--------------- campaign ---------------
***************************************/
#campaign {
  background-image: url("../img/campaign_bg.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto;
  background-color: #deb005;
}

#campaign .container {
  padding-bottom: 70px;
}
@media screen and (max-width: 768px) {
  #campaign .container {
    padding-bottom: 50px;
  }
}
/***************************************
--------------- GREETING ---------------
***************************************/
#parking {
  background: var(--base-bgcolor03);
}

#parking .flex_txt .img_box {
  width: 38.5%;
  order: 2;
}

#parking .flex_txt .txt_box {
  width: 60%;
  order: 1;
}
#parking .flex_txt .txt_box ul {
  margin-bottom: 20px;
}
#parking .flex_txt .txt_box li {
  font-size: 150%;
}
#parking .flex_txt .txt_box li:not(:last-of-type) {
  padding-bottom: 10px;
}
#parking .flex_txt .txt_box li::before {
  content: "・";
}
#parking .flex_txt .txt_box img {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #parking .flex_txt .img_box {
    width: 100%;
    order: 1;
  }

  #parking .flex_txt .txt_box {
    width: 100%;
    order: 2;
  }
  #parking .flex_txt .img_box img {
    display: block;
    width: 100%;
    max-width: 480px;
    height: auto;
    margin: 0 auto 0;
  }
  #parking .flex_txt .txt_box li {
    font-size: 110%;
  }
}

/***************************************
--------------- CHIRASHI ---------------
***************************************/

#chirashi {
  background: var(--base-color03);
}

#chirashi h2 {
  width: 61.67%;
  margin: 0 auto 50px;
}

.chirashi_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
}
.chirashi_img {
  width: 45%;
}
@media screen and (max-width: 768px) {
  #chirashi h2 {
    width: 80%;
    margin-bottom: var(--sp-container_space);
  }
}

/***************************************
---------------- assessment ----------------
***************************************/

#assessment {
  border-top: 3px solid;
}

#assessment h2 {
  border-bottom: 1;
}

#assessment .txt_area {
  display: block;
  width: 100%;
}

#assessment .txt_area h3 {
  color: var(--sub-color01);
  font-size: 1.5rem;
  line-height: 160%;
  margin: 1rem auto 1rem;
}

#assessment .txt_area p {
  font-size: 108% !important;
  line-height: 200%;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  #assessment .txt_area h3 br {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  #assessment .txt_area h3 {
    color: var(--sub-color01);
    font-size: 1.25rem;
    line-height: 140%;
    margin: 1rem auto 1rem;
  }

  #assessment .txt_area p {
    font-size: 100% !important;
    line-height: 180%;
    font-weight: 400;
  }
}

/***************************************
---------------- ITEMS ----------------
***************************************/

.home #items {
  background-image: url("../img/index/item_bg.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-color: var(--base-color04);
  border-top: 10px solid var(--base-color01);
}

.itemsBox_wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
}

.itemsBox {
  width: 33.333%;
  margin-bottom: 5px;
}

.itemsBox a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 6px;
}

.items_img {
  display: block;
  width: 100%;
  height: auto;
  padding: 0px;
  border: 0px solid;
  background: var(--base-color03);
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.25));
  margin-bottom: 10px;
}

.items_txt {
  width: 100%;
}

.items_txt h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem !important;
  line-height: 100%;
  color: var(--base-color02);
  text-align: left;
  margin-bottom: 5px;
  padding: 5px 5px;
}

/*
.items_txt h3::after{
	display: block;
 font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-weight: 600;
	 color: var(--base-color01);

}*/

.items_txt p {
  font-size: 2rem;
  color: var(--base-color03);
  text-align: justify;
}

.items_btn {
  width: 100%;
}

.items_btn a {
  display: block;
  width: 45%;
  height: auto;
  margin: auto;
  padding: 15px 0;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--sub-color02);
  background: var(--base-color03);
  text-align: center;
  border-radius: 10px;
  border: double 6px var(--sub-color02);
  transition: 0.7s;
}

.items_btn a:hover {
  color: var(--sub-color02);
  background: var(--sub-color03);
  border: double 6px var(--sub-color02);
}

@media screen and (min-width: 1025px) {
  .itemsBox_wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
  }
  .itemsBox {
    width: 25%;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 599px) {
  .itemsBox {
    width: 48%;
    margin-bottom: var(--sp-container_space);
  }
  .itemsBox a {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 5px;
  }
  .items_img {
    width: 100%;
  }
  .items_txt {
    width: 100%;
  }
  .items_txt h3 {
    font-size: 1rem !important;
  }
  .items_txt p {
    font-size: var(--sp-fontsize_p);
    line-height: 1.5;
  }
  .itemsBox {
    width: 50%;
    margin-bottom: 0px;
  }
}

@media screen and (max-width: 479px) {
  .items_txt h3 {
    /*font-size: 17px !important;*/
  }
}

/***************************************
--------------- PURCHASE ---------------
***************************************/
#trip_purchase {
  background-image: url("../img/index/purchase_bg.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

#trip_purchase .flex_box {
  padding: 0 0px;
}

#trip_purchase .flex_box li {
  display: flex;
  flex-direction: column;
  margin-bottom: 3%;
  background: var(--base-color04);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}
#trip_purchase .flex_box li:last-child {
  margin-bottom: 0px;
}

#trip_purchase .flex_box li div.txt_links {
  margin-top: auto;
  justify-content: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

#trip_purchase .flex_box li div.txt_links span {
  display: flex;
  align-items: center;
  width: 100%;
  color: var(--base-color03);
  padding: 10px 20px;
  font-size: 1.125rem;
  font-weight: 600;
  position: relative;
}
#trip_purchase .flex_box li div.txt_links span::after {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 600;
  position: absolute;
  right: 15px;
}

#trip_purchase .flex_box h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 3px;
  padding: 5px;
}

#trip_purchase .flex_box h3 img {
  display: block;
  width: 100%;
  max-width: 310px;
  margin: -4% auto 0px;
}

#trip_purchase .flex_box p {
  line-height: 1.5;
  text-align: justify;
  /*txt_linkがあるとき　margin-bottom: 20px;*/
  color: var(--base-color02);
  padding: 10px 10px 25px;
}

#trip_purchase .flex_box img {
  display: block;
  max-width: 490px;
  height: auto;
}
@media screen and (min-width: 1025px) {
  #trip_purchase {
    background-size: cover;
  }

  #trip_purchase .flex_box li {
    margin-bottom: 0px;
  }
}

@media screen and (max-width: 768px) {
  #trip_purchase .flex_box .txt_links {
    justify-content: center;
  }
  #trip_purchase .flex_box {
    max-width: 490px;
  }

  #trip_purchase .flex_box p {
    font-size: 16px !important;
    text-align: justify;
  }
}
@media screen and (max-width: 599px) {
  #trip_purchase .flex_box h3 img {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: -4% auto 0px;
  }

  #trip_purchase .flex_box li div.txt_links span {
    padding: 8px 15px;
    font-size: 1rem;
  }

  #trip_purchase .flex_box p {
    font-size: 14px !important;
    text-align: justify;
  }
}

#trip_purchase .wide_img_box {
  margin-top: 40px;
}
#trip_purchase .wide_img_box li {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  border: 3px solid var(--sub-color05);
}
/***************************************
-------------- TELEPHONE --------------
***************************************/

#telephone {
  background-image: url(../img/tile_gld.webp);
  background-repeat: repeat;
}
#telephone .sub_ttl {
  font-size: 3.2rem;
}
#telephone .sub_catch {
  font-size: 9rem;
}

#telephone .sub_ttl,
#telephone .sub_catch {
  width: 100%;
  padding: 10px 0;
  line-height: 1.25;
  font-weight: bold;
  color: var(--base-color03);
  background: var(--sub-color02);
  text-align: center;
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  -moz-font-feature-settings: "palt";
}
#telephone .sub_ttl span {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.25;
  color: var(--sub-color03);
}
.tel_box {
  width: 100%;
  padding: 30px;
  background: var(--base-color03);
}

.seiyu,
.tenma {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.seiyu {
  padding-bottom: 25px;
  border-bottom: solid 2px var(--sub-color02);
}
.tenma {
  padding-top: 25px;
}
.storeLogo {
  width: 20%;
  margin: auto;
}
#telephone .tel_number {
  width: auto;
  margin-right: 30px;
}
#telephone .tel_number a {
  color: var(--sub-color02);
  font-size: 7.6rem;
  font-weight: bold;
  line-height: 1;
}
#telephone .tel_number a::before {
  content: "";
  display: inline-block;
  background-image: url(../img/icon_tel.svg);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
  width: 77px;
  height: 60px;
  margin-right: 10px;
}
#telephone .tel_number p {
  font-size: 2rem;
  color: var(--sub-color02);
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  -moz-font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  #telephone .sub_ttl,
  #telephone .sub_ttl span {
    font-size: min(5.5vw, 3rem);
  }
  .storeLogo {
    width: 40%;
    margin-bottom: var(--sp-space);
  }
  #telephone .tel_number {
    width: 100%;
    margin: auto;
    text-align: center;
  }
  #telephone .tel_number a {
    font-size: min(10vw, 6rem);
  }
  #telephone .tel_number a::before {
    width: 10vw;
    height: 7vw;
    margin-right: min(1vw, 10px);
  }
  .tel_box {
    padding: var(--sp-space);
  }
  #telephone .sub_catch {
    font-size: min(7vw, 3.5rem);
  }
  #telephone .tel_number p {
    font-size: var(--sp-fontsize_p);
  }
}
/***************************************
------------- ACHIEVEMENT -------------
***************************************/

#achievement {
  background-image: url("../img/index/achievement_bg.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-color: var(--base-color04);
}

.achievement_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  margin-top: 0px;
  gap: 15px;
}
.achievement_box {
  width: 32.333%;
  margin-bottom: 20px;
  background: var(--base-color03);
}
.achievement_box img {
  aspect-ratio: 4/2.5;
  object-fit: cover;
  border: 0px solid #ccc;
  margin-bottom: 0rem;
}
.achievement_txt {
  padding: 0 0% 5%;
}
.achievement_txt .date {
  display: block;
  text-align: right;
  line-height: 1;
  margin-top: auto;
  margin-right: 10px;
}
/*
.achievement_txt .date::before {
	display: inline-block;
	font-family: "Font Awesome 6 Free";
	content: "\f073";
	font-weight: 600;
	margin-right: 5px;
	margin-top: -3px;
}*/

.achievement_txt .category {
  display: block;
  text-align: center;
  font-size: 108% !important;
  font-weight: 700;
  line-height: 1;
  margin: 0px 0 10px;
  padding: 12px 10px 10px;
  color: var(--base-color01);
  background-color: var(--base-color04);
}

.achievement_txt .text {
  clear: both;
  text-align: justify;
  font-size: 1rem;
  /*-----*/
  padding: 0 15px 0;
  max-height: 80px;
  min-height: 80px;
  overflow-y: auto;
  margin-bottom: 20px;
}

.achievement_btn {
  width: 100%;
  margin-top: 50px;
}
.achievement_btn a {
  display: block;
  width: 45%;
  height: auto;
  margin: auto;
  padding: 15px 0;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--base-color03);
  background: var(--sub-color02);
  text-align: center;
  border-radius: 10px;
  border: double 6px var(--base-color03);
  transition: 0.7s;
}
.achievement_btn a:hover {
  color: var(--sub-color02);
  background: var(--sub-color03);
  border: double 6px var(--sub-color02);
}
@media screen and (max-width: 768px) {
  .achievement_wrap {
    margin-top: 0;
  }
  .achievement_box {
    width: 48%;
    margin-bottom: calc(var(--sp-container_space) * 0.8);
  }
  .achievement_txt .text,
  .achievement_txt .category {
    font-size: 0.875rem !important;
  }
  .achievement_btn {
    margin-top: 0;
  }
  .achievement_btn a {
    width: 90%;
    font-size: var(--sp-fontsize_btn);
  }
}

@media screen and (max-width: 599px) {
}
/***************************************
----------------- INFO -----------------
***************************************/

#info {
  /*background: url("../img/pt01.webp") repeat;*/
}

#info .container {
  /*margin-bottom: 0 !important;
	padding-bottom: 0 !important;*/
}

#info h2 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--base-color03);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  border-bottom: 1px solid var(--base-color01);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0;
  padding: 12px 15px 0px 0;
  margin-bottom: 0 !important;
  border-radius: 5px 5px 0px 0px;
  position: relative;
}

#info .news h2 {
  background-color: var(--base-color01);
}

#info .column h2 {
  background-color: var(--base-color01);
}

#info h2 span {
  color: var(--base-color01);
  background-color: var(--base-color04);
  margin-right: 0px;
  letter-spacing: -1px;
  font-weight: 400;
  padding: 0 10px 0;
  border-radius: 35px;
  margin-bottom: 12px;
}

#info h2 span::before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 600;
  margin-right: 5px;
  font-size: 80%;
  margin-top: -3px;
}

#info h2 span a {
  color: var(--base-color01);
}

#info h2 img {
  display: block;
  width: 50%;
  max-width: 245px;
  margin-left: 0;
  margin-top: -50px;
}

.info_box {
  width: 100%;
  margin: 0px auto 0;
  padding: 0px 15px 30px;
  border: solid 1px var(--base-color01);
  border-top: 0;
  background: var(--base-color03);
  display: flex;
  flex-wrap: wrap;
  border-radius: 0 0 5px 5px;
}

.info_box dl {
  width: 100%;
  padding-bottom: 15px;
  display: flex;
  flex-flow: column wrap;
  justify-content: flex-start;
  padding-top: 15px;
}

.info_box dl:not(:first-of-type) {
  border-top: solid 1px #cccccc;
}

/*
.info_box dl:not(:first-of-type) {
    padding-top: 15px;
}*/

.info_box dl dt {
  width: min(40%, 130px);
  margin-right: 2%;
  color: var(--base-color01) !important;
}

.info_box dl dt::before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  content: "\f073";
  font-weight: 600;
  margin-right: 5px;
  margin-top: -3px;
}

.info_box dl dd {
  width: 100%;
}

.info_box dl dd h3 {
  font-size: 1.125rem !important;
  color: var(--base-color02);
  line-height: 160%;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}

.info_box dl dt,
.info_box dl dd a {
  font-size: 16px;
  color: var(--base-color02);
}

.info_box dl dd a:hover {
  text-decoration: underline;
}

.info_btn {
  width: 100%;
  margin-top: 30px;
}

.info_box dl dd p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 1025px) {
  #info h2 {
    font-size: 1.5rem;
  }
  #info h2 img {
    display: block;
    width: 50%;
    max-width: 180px;
    margin-left: 0;
    margin-top: -30px;
    margin-bottom: 0;
  }
  .info_box {
    margin-top: 0;
  }
  .info_box dl {
    width: 100%;
    padding-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .info_box dl dt,
  .info_box dl dd {
    width: 100%;
  }
}

@media screen and (max-width: 599px) {
  #info h2 {
    font-size: 1.375rem;
  }
  #info h2 span {
    font-size: 0.875rem;
  }
  .info_box dl dt {
    margin-bottom: 5px;
    font-size: 0.875rem !important;
  }
  .info_box dl dd a {
  }
  .info_box dl dd h3 {
    font-size: 17px !important;
  }
  #info h2 span {
    display: none;
  }
  #info h2 span a {
    font-size: 0.875rem !important;
  }
}

/***************************************
-------------- FAQ --------------
***************************************/

#faq {
}

.home #faq {
  background: url("../img/pt02.webp") repeat;
}

#faq h2 {
  color: var(--base-color03);
  border: none;
  margin-bottom: 1%;
}

#faq .qa_box {
  list-style: none;
  width: 100%;
  margin: 0 auto;
  padding-top: 0px;
}

#faq .qa_box article {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  background-color: transparent;
  width: 96%;
  margin: 0 auto 1rem;
}

#faq .qa_box article:last-child::after {
  content: "";
}

#faq .qa_box dl {
  padding: 10px;
  background-color: rgba(255, 255, 255, 1);
  border: 3px solid var(--base-color01);
  border-radius: 5px;
}

#faq .qa_box dt {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--base-color02);
  line-height: 110%;
  padding: 0rem 2.5rem 0 0px;
  margin-bottom: 0rem;
  transition: all 0.5s ease;
}

#faq .qa_box dt {
  font-weight: bold !important;
}

.win #faq .qa_box dt {
}

#faq .qa_box dt span::before,
#faq .qa_box dt span::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: var(--base-color01);
}

#faq .qa_box dt span::before {
  top: 48%;
  right: 15px;
  transform: rotate(0deg);
}

#faq .qa_box dt span::after {
  top: 48%;
  right: 15px;
  transform: rotate(90deg);
}

#faq .qa_box dt.close span::before {
  transform: rotate(45deg);
}

#faq .qa_box dt.close span::after {
  transform: rotate(-45deg);
}

#faq .qa_box dt::before,
#faq .qa_box dd div::before {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border-radius: 5px;
  height: 50px;
  width: 50px;
  min-width: 50px;
  line-height: 100%;
  font-weight: 600 !important;
  margin-right: 15px;
  padding: 5px 5px 5px;
}

#faq .qa_box dt::before {
  content: "Q";
  color: var(--base-color03);
  background-color: var(--base-color01);
}

#faq .qa_box dd div::before {
  content: "A";
  color: var(--base-color01);
  background-color: var(--base-color04);
}

#faq .qa_box dd.box {
  display: none;
  border: 0px solid #e93719;
  margin: 1rem 0 0 0;
  padding: 10px 0;
  border-top: 2px solid var(--base-color01);
}

#faq .qa_box dd div {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}

.qa_txt_links {
  padding-top: 3px;
}

.qa_txt_links a {
  background-color: var(--sub-color03);
  padding: 3px;
}

.qa_txt_links a::after {
  content: "》";
  margin-left: 3px;
}

@media only screen and (min-width: 1025px) {
}

@media only screen and (max-width: 768px) {
  #faq .qa_box dt {
    font-size: 1.25rem;
  }
  #faq .qa_box dt::before,
  #faq .qa_box dd div::before {
    margin-right: 5px;
    height: 40px;
    width: 40px;
    min-width: 40px;
    font-size: 1.5rem;
  }
  #faq .qa_box dl {
    padding: 0.25rem;
  }
  #faq .qa_box dd.box {
    margin: 0.5rem 0 0 0;
    padding: 0.75rem 0.75rem 0.5rem 0rem;
    font-size: 17px;
  }
}

@media only screen and (max-width: 599px) {
  #faq .qa_box dt {
    font-size: 1.125rem;
  }
  #faq .qa_box dt span::before,
  #faq .qa_box dt span::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 2px;
    background-color: var(--base-color01);
  }
  #faq .qa_box dt span::before {
    top: 48%;
    right: 10px;
    transform: rotate(0deg);
  }
  #faq .qa_box dt span::after {
    top: 48%;
    right: 10px;
    transform: rotate(90deg);
  }
}

/*
20240423
*/
#chirashi_bnr_area .ad_box li:empty {
  display: none;
}
#chirashi_bnr_area .ad_box {
  width: 100%;
}
#chirashi_bnr_area .ad_box li {
  margin: min(calc(1rem + 50px), calc(1rem + 3vw)) auto min(60px, 4vw);
}
