@charset "utf-8";

/**
 * ***************************************
 * ページ全体に関わるCSSの設定
 * ***************************************
 */
html *,
::before,
::after {
  box-sizing: border-box;
}
/* フォント */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400; /* Noto Sans JPのレギュラーウェイトを指定 */
}
/* おもな太字タグのフォントウェイト設定 */
h1, h2, h3, h4, h5, h6, th, strong {
  font-weight: 700;
}
/* ベースのリンクカラー */
a {
  color: #3B4043;
  text-decoration: none;
}

/* レスポンシブイメージと画像下スペース防止 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;/* 画像下のスペースを消す */
}

@media screen and (min-width: 768px){   
  .pc { display:inline; }
  .sp { display:none; }
}
@media screen and (max-width: 768px){   
  .pc { display:none; }
  .sp { display:inline; }
}

/**
 * ***************************************
 * ヘッダー
 * ***************************************
 *
 * ヘッダーコンテナ
 */
.page-header {
  background-color: #F8C52D;
}
@media (min-width: 768px) {
  .header-container {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1040px;
  }
}

/**
 * ---------------------------------------
 * ヘッダーモジュール
 */

/* ヘッダーロゴとモバイルナビボタン */
.sitetitle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .sitetitle {
    display: block;
    padding: 30px 0 0 0;
  }
}
/* ヘッダーロゴ */
.header-logo {
  margin: 0 auto;/* h1のデフォルト設定オフ */
  padding-left: 50px;
  font-size: 0;/* 画像上下の余白を消すためh1の設定オフ */
  line-height: 0;/* 画像上下の余白を消すためh1のサイズオフ */
}
.header-logo img {
  width: 180px;
}
@media (min-width: 768px) {
  .header-logo {
    padding: 0;
  }
  .header-logo img {
    width: 180px;
  }
}
/* モバイル向けボタン */
.navbtn {
  display: block;
  width: 60px;
  height: 60px;
  background-image: url(../images/nav-mobile-open.svg);
  background-repeat: no-repeat;
  background-position: center center;
}
.navbtn.close {
  background-image: url(../images/nav-mobile-close.svg);
}
@media (min-width: 768px) {
  .navbtn {
    display: none;
  }
}
/* ヘッダーナビゲーション */
.header-nav {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-nav.collapse {
  display: none;
}
.header-nav li a {
  display: block;
  padding: 20px 30px;
  border-top: 1px solid #d8d8d8;
  background: #efefef;
  color: #000;
  text-decoration: none;
  z-index: 1;
}
.header-nav li a:hover {
  background: #F39800;
}
@media (min-width: 768px) {
  /* PC向けレイアウト */
  .header-nav {
    display: flex !important;
    flex-direction: row;
    justify-content: flex-end;
  }
  .header-nav li a {
    padding: 6px 20px 2px 20px;
    border-top: none;
    border-bottom: 4px solid transparent;
    background: none;
  }
  .header-nav li a:hover {
    border-bottom: 4px solid #3C2A21;
    background: none;
  }
  .recruit-card{
    max-width: 500px;
  }
}

/**
 * ***************************************
 * パンくずリスト
 * ***************************************
 *
 * パンくずリストコンテナ
 */
.breadcrumb {
  display: none;/* モバイルで非表示 */
}
@media (min-width: 768px) {
  /* PCだけスタイル適用 */
  .breadcrumb {
    display: block;/* display:noneの解除 */
    background: #efefef;
  }
  .bc-container {
    margin: 0 auto;
    padding: 12px 20px;
    max-width: 1040px;
  }

  /**
   * ---------------------------------------
   * パンくずリストモジュール
   */
  .bc-nav {
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .bc-nav li {
    font-size: .75rem;
    color:  #747474;
  }
  .bc-nav li::after {
    padding: 0 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f054";
  }
  .bc-nav li:last-child::after {
    content: "";
  }
  .bc-nav li a {
    color:  #747474;
  }
  .bc-nav li a:hover {
    opacity: .8;
  }
}

/**
 * ***************************************
 * ページ下部
 * ***************************************
 *
 * ページ下部コンテナ
 */
.page-bottom {
  background-color: #FFF8E4;
}
.bottom-container {
  padding: 60px 4% 0 4%;
}
@media (min-width: 768px) {
  .bottom-container {
      margin: 0 auto;
      padding: 60px 20px 0 20px;
      max-width: 1040px;
  }
}

/**
 * ---------------------------------------
 * ページ下部モジュール
 */
/* 複数のバナーを並べる */
.banner {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
.banner div {
  margin-bottom: 20px;
  text-align: center;
}
.banner a:hover {
  opacity: .8;
}
@media (min-width: 768px) {
  .banner {
    flex-direction: row;
  }
  .banner div {
    margin: 0 10px;
  }
}
/* ボタンを横に並べる */
.followus {
  margin: 0 0 15px 0;
  font-family: 'Croissant One', cursive;
  font-weight: 400;
  font-size: 1.875rem;
  text-align: center;
}
.sns {
  display: flex;
  justify-content: center;
  margin-bottom :30px;
}
.sns div {
  margin: 0 10px;
}
.sns div a {
  display: block;
  width: 70px;
  height:70px;
  background: #3C2A21;
  border-radius: 50%;
  font-size: 30px;
  line-height: 70px;
  text-align:center;
  color: #ffffff;
}
.sns div a:hover {
  opacity: .8;
}
/* ページトップへ戻るボタン */
.gotop {
  text-align: center;
}
.gotop a {
  display: inline-block;
  padding: 1rem 4rem;
  background: #000000;
  border-radius: 20px 20px 0 0;
  font-size: 1.25rem;
  text-align:center;
  color: #ffffff;
  opacity: .6;
}
.gotop a:hover {
  opacity: .8;
}

/**
 * ***************************************
 * フッター
 * ***************************************
 *
 * フッターコンテナ
 */
.page-footer {
  background: linear-gradient(-135deg, #F7C100, #FFDB5B);
}
.footer-container {
  padding: 60px 4%;
}
@media (min-width: 768px) {
  .footer-container {
      max-width: 1040px;
      margin: 0 auto;
      padding: 60px 20px;
  }
}

/**
 * ---------------------------------------
 * フッターモジュール
 */
/* ロゴ */
.footer-logo {
  margin-bottom: 30px;
  text-align: center;
}
.footer-logo img {
  width: 200px;
}
/* フッターのナビゲーション① */
.footer-nav1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 30px 0;
  padding: 0;
  list-style: none;
}
.footer-nav1 li {
  margin: 0 0 2rem 0;
  font-size: .875rem;
}
.footer-nav1 li a {
  color:  #3C2A21;
  text-decoration: none;
}
.footer-nav1 li a:hover {
  color: #fff;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .footer-nav1 {
    flex-direction: row;
    justify-content: center;
  }
  .footer-nav1 li {
    margin: 0 1rem;
  }
}
/* ナビゲーション② その他リンク */
.footer-nav2 {
  display: flex;
  flex-flow: column;
  justify-content: left;
  margin: 0 0 40px 0; /* ulのデフォルト設定オフ */
  padding: 0; /* ulのデフォルト設定オフ */
  list-style: none; /* ulのデフォルト設定オフ */
}
.footer-nav2 li {
  margin: 0 .75rem 3px .75rem;
  font-size: 1rem;
  color: #3C2A21;
}
.footer-nav2 li a {
  color:  #d8d8d8;
  text-decoration: none;
}
.footer-nav2 li a:hover {
  color: #fff;
  text-decoration: underline;
}
/* コピーライト */
.copyright {
  font-size: .75rem;
  color:  #3C2A21 ;
  text-align: center;
}

/**
 * ***************************************
 * メインコンテナ
 * ***************************************
 */
/**
 * ***************************************
 * ［index.html］ホームページ
 * ***************************************
 */
/* ホーム - ヒーローコンテナ */
.hero-container {
  position: relative;
}
/* ホーム - メインコンテナ */
.home .page-main {
  background-color: #FFF8E4;
}
.home .main-container {
  padding: 60px 0%;
}
@media (min-width: 768px) {
.home .main-container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 60px 20px;
  }
}

/**
 * ---------------------------------------
 * ［index.html］ホームページ - モジュール
 */
/* ヒーロー画像 */

.hero-logo {
  width: 260px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-130px, -53px);
}
.hero-image {
  display: none;
}
.hero-image-sp {
  display: block;
}
@media (min-width: 768px) {
  .hero-image {
    display: block;
  }
  .hero-image-sp {
    display: none;
  }
  .hero-logo {
    width: 400px;
    transform: translate(-200px, -82px);
  }
}
/* キャッチフレーズ */
.home-lead {
  max-width: 90%;
  margin: 0 auto 60px auto;
  text-align: center;
}
.home-lead p {
  margin: 0;
  font-size: 1.25rem;
  line-height: 2;
}
@media (min-width: 768px) {
  .home-lead-image {
    max-width: 80%;
    margin: 5% auto 10%;
  }
}

/* テキストと背景を組み合わせる */
.home .main-container h2 {
  display: grid;
  place-items: center;
  margin: 0 auto 30px auto;
  width: 135px;
  height: 40px;
}

/* クーポン */
.coupon_area {
  background: url(../images/coupon_bg.jpg);
  width: 100%;
  height: auto;
  background-size: cover;
  background-position: center center;
  margin: 30px 0 0 0;
  padding: 10px 0;
  text-align: center;
}
.coupon_area .coupon_title{
  margin: 3% auto 0% auto;
  width: 65%;
}
.coupon_area .coupon_ticket{
  margin:0 auto 3% auto;
  width: 75%;
}
.coupon_area .push_btn_area{
  margin: 0 auto;
  margin-top: 0%;
}

/* 新店舗オープン */
.open_area {
  width: 100%;
  margin: 0 auto;
}
.open_title_area {
  width: 60%;
  margin:30px auto;
  text-align: center;
}
@media (min-width: 768px) {
  .open_area {
    width: 100%;
    margin: 5% auto;
  }
  .open_title_area {
    width: 30%!important;
    margin:60px auto;
    text-align: center;
  }
}

/* ボタン共通設定 */
.btn03{
  /*影の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  text-align: center;
  background: transparent;
  background-color: #FECA2E;
border-radius: 25px;
border: solid 2px #333;
  outline: none;
  /*アニメーションの指定*/
  transition: all 0.2s ease;
}

/*hoverをした後のボタンの形状*/
.btn03:hover{
border-color:transparent;	
}

/*ボタンの中のテキスト*/
.btn03 span {
position: relative;
font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1rem;
z-index: 2;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
  /*テキストの形状*/
display: block;
  padding: 10px 30px;
background:#fff;
border-radius: 25px;
color:#333;
  /*アニメーションの指定*/
  transition: all 0.3s ease;
}

/*== 右下に押し込まれる（立体が平面に） */

/*影の設定*/
.pushright:before {
  content: "";
  /*絶対配置で影の位置を決める*/
  position: absolute;
z-index: -1;
  top: 4px;
  left: 4px;
  /*影の形状*/
  width: 100%;
  height: 100%;
border-radius: 25px;
  background-color: #333;
}

/*hoverの際にX・Y軸に4pxずらす*/
.pushright:hover span {
background-color: #333;
color: #fff;
transform: translate(4px, 4px);
}


@media (min-width: 768px) {
  .coupon_area {
    height: 700px;
    margin-bottom: 0px;
  }
}

/* カテゴリー選択 */
.search_area {
  background: url(../images/search_bg.jpg);
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center center;
  margin: 0 0 30px 0;
  padding: 10px 0;
}
.search_area h3 {
  margin-bottom: 10px;
  line-height: 1;
  text-align: center;
  color: #3C2A21;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 2rem;
}
.search_area .furigana {
  margin-bottom: 0px;
  line-height: 1;
  text-align: center;
  color: #F39800;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1rem;
}
.search_area .search_copy {
  width: 50%;
  margin: 5% auto 10%;
  text-align: center;
}
.search_area .gengo_selectbox_area {
  text-align: center;
}
.search_area .gengo_selectbox_area .gengo_selectbox{
  padding: 2% 5%;
  background-color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
}
:focus {
  outline: none;
}
@media (min-width: 768px) {
  .search_area {
    height: 500px;
    margin-bottom: 50px;
  }
  .search_area h3 {
    margin-bottom: 10px;
    line-height: 1;
    font-size: 2.5rem;
  }
  .search_area .furigana {
    margin-bottom: 0px;
    line-height: 1;
    text-align: center;
    font-size: 1.5rem;
  }
  .search_area .search_copy {
    width: 30%;
  }
  .search_area .gengo_selectbox_area .gengo_selectbox{
    padding: 1% 3%;
    font-size: 1.2rem;
  }
}

/* カード型レイアウト */
.home-latest {
  margin: 0 5% 60px;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(100px, auto);
  column-gap: 10px;
  row-gap: 30px;
}
@media (min-width: 768px) {
  .home-latest {
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
  }
}
/* それぞれのカードの中身 */
.latest-item {
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, .2);
  background: #fff;
}
.latest-item:hover {
  opacity: .5;
}
@media (min-width: 768px) {

}
.latest-image img {
  margin: 10px;
  width: 95%;
  text-align: center !important;
}

.latest-text {
  margin-bottom: 10px;
  padding: 0 10px;
}
@media (min-width: 768px) {
  .latest-text {
    padding: 0 10px;
  }
  .latest-image img {
    margin: 10px;
    width: 94%;
    text-align: center !important;
  }
}
.latest-text h4 {
  margin: 0 0 10px 0;
  font-size: 1.3rem;
  line-height: 1.5;
}
.latest-text h3 {
  margin: 0 0 10px 0;
  font-size: 1.6rem;
  line-height: 1.5;
}
.latest-text p {
  margin: 0 0 40px 0;
  font-size: 1.1rem;
  line-height: 1.5;
}
.latest-text h3 a {
  color: #000000 !important;
  text-decoration: none;
}
@media (min-width: 768px) {
  .latest-text h4 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    line-height: 1.5;
  }
  .latest-text h3 {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .latest-text p {
    margin: 0 0 40px 0;
    font-size: 1rem;
    line-height: 1.5;
  }
  .latest-text h3 a {
    color: #000000 !important;
    text-decoration: none;
  }
}

/* ホーム 共通のタグ */
.home-tag {
  margin-bottom: 1rem;
  margin-top: 1rem;
  text-align: right;
}
.home-tag span {
  margin: 0 3px 3px 0;
  padding: 2px 10px;
  background-color: #F58FAD;
  border-radius: 100px;
  font-size: 1rem;
  color: #000;
}
.home-tag02 {
  margin-bottom: 1rem;
  margin-top: 1rem;
  text-align: right;
}
.home-tag02 span {
  margin: 0 3px 3px 0;
  padding: 2px 10px;
  background-color: #8DD87B;
  border-radius: 100px;
  font-size: 1rem;
  color: #000;
}

/* ホーム 共通の場所情報 */
.home-info {
  display: flex;
  font-size: .75rem;
}
.home-info span::before {
  padding-right: 5px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #73cbd6;
  content: "\f3c5";
}
/* メディアオブジェクト */
.home-popular {
  margin: 0 0 60px 0;
  border-top: 1px solid #d8d8d8;
}
.home-popular a {
  display: block;
  color: #000000;
  text-decoration: none;
}
.home-popular a:hover {
  opacity: .5;
}
.popular-item {
  display: flex;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid #d8d8d8;
}
.popular-photo {
  flex: 0 0 30%;
  margin-right: 15px;
  position: relative;
}
.ranking {
  display: block;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 5px;
  left: 5px;
  background: url(../images/ranking-bg.svg);
  background-size: 35px 35px;
  border-radius: 50%;
  font-family: 'Croissant One', cursive;
  font-size: 16px;
  line-height: 35px;
  text-align: center;
  color: #000;
}
@media (min-width: 768px) {
  .ranking {
    width: 70px;
    height: 70px;
    top: 10px;
    left: 10px;
    background-size: 70px 70px;
    font-size: 30px;
    line-height: 70px;
  }
}
.popular-text {
  flex: 1 1 auto;
}
.popular-text h3 {
  margin: 0 0 10px 0;
  font-size: 1rem;
  line-height: 1.5;
}
.popular-text p {
  margin: 0 0 10px 0;
  display: none;/* モバイルで非表示 */
}
@media (min-width: 768px) {
  .popular-text h3 {
    font-size: 1.25rem;
  }
  .popular-text p {
    display: block;
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

/* テーブル形のリスト（ニュース） */
.news-container h2 {
  margin: 0 0 30px 0;
  font-family: 'Croissant One', cursive;
  font-weight: 400;
  font-size: 1.875rem;
}
@media (min-width: 768px) {
  .news-container h2 {
    max-width: 700px;
    margin: 0 auto 30px auto;
  }
}
.home-news {
  padding: 20px;
  background: #ffffff;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .home-news {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
  }
}
.home-news dl {
  display: flex;
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid #d8d8d8;
}
.home-news dl:last-child {
  border-bottom: 1px solid #d8d8d8;
}
.home-news dt {
  margin: 0 20px 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
}
.home-news dd {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}
.home-news dd a {
  color: #73cbd6;
  text-decoration: none;
}
.home-news dd a:hover {
  opacity: .5;
}

/**
 * ***************************************
 * ［post.html］記事ページ - メインコンテナ
 * ***************************************
 */
 .post .page-main {
  background-color: #FFF8E4;
 }
 .post .main-container {
  padding: 80px auto 0 auto;
  border: 0px solid #f00;
}
@media (min-width: 768px) {
  .post .main-container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0px 20px 0 20px;
  }
}

/**
 * ---------------------------------------
 * ［post.html］記事ページ - モジュール
 */

/**
 * ---------------------------------------
 * ポストヘッダー
 */
.post-header {
  margin-bottom: 20px;
}

.post-headerimage img{
  width: 100%;
}
.swiper-container {
  max-width: 100%;
  margin: 0px 0;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
@media (max-width: 768px) {
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50% !important;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 1);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
}

/* お店ロゴ */
.post-info {
  margin:20px 20px 15px 20px;
  text-align: right;
}
.post-info img {
  width: 65px;
}
.post-header h1 {
  margin: 0 20px 20px 20px;/* h1のデフォルト設定オフ */
  font-size: 1.875rem;
  line-height: 1.5;
  color: #3C2A21;
}
.post-header h1 .txt_s{
  font-size: 1.65rem!important;
}
.post-header .ruby{
  font-size: 1.4rem;
  line-height: 1.5;
  color: #3C2A21;
}
.post-header h1 .recruit_title{
  width: 60%;
  margin: 40px auto;
}
.post-header h2 {
  margin: 0 20px 10px 20px;/* h2のデフォルト設定オフ */
  font-size: 1.4rem;
  line-height: 1.5;
  color: #3C2A21;
}
/* タグ */
.post-tag {
  margin:0 20px 5px 20px;
  font-size: 1rem;
  line-height: 2;
}
.post-tag span {
  margin: 0 3px 0 0;
  padding: 2px 10px;
  border: 1px solid #3C2A21;
  border-radius: 100px;
  color: #3C2A21;
  text-decoration: none;
}

/**
 * ---------------------------------------
 * ポストコンテンツ
 */
.post-contents {
  margin: 0 20px 0px 20px;
}
@media (min-width: 768px) {
  .post-contents {
    max-width: 900px;
    margin: 0 auto 60px auto;
  }
}
/* post-contentsの1つ目の要素の上マージンを0にする */
.post-contents > *:first-child {
  margin-top: 0;
}
/* p */
.post-contents p {
  margin: 30px 0;
  line-height: 1.9;
  text-align: justify;
}
.post-contents h3 {
  margin-bottom: 10px;
  line-height: 1;
  text-align: center;
  color: #3C2A21;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 2rem;
}
.post-contents .furigana {
  margin-bottom: 0px;
  line-height: 1;
  text-align: center;
  color: #F39800;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1rem;
}
.post-contents .shop_info_table{
  margin: 30px auto 50px;
}
.row_table{
  width: 100%;
}
.row_table,
.row_table td,
.row_table th {
  border: none;
  border-collapse: collapse;
  text-align: center;
  color: #3C2A21;
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
}
.row_table th {
  background: #f5f6f8;
  padding: 10px 0px;
  display: block;
}
.row_table td {
  background: #fff;
  padding:15px 0px;
  display: block;
}
.row_table td a{
  color: #F39800;
}
.row_table td p{
  color: #3C2A21;
  text-align: center;
  padding: 0;
  margin:5px 0;
}

.recommend_area{
  margin: 5% auto;
  text-align: center;
 }
 .shop_floor_map_area{
  margin: 5% auto;
  text-align: center;
 }

/**
 * ---------------------------------------
 * リクルートコンテンツ
 */
 .recruit-contents {
  margin: 0 20px 0px 20px;
  padding-bottom: 50px;
  display: flex; /* flexbox */
	flex-wrap: wrap; /* 折返し指定 */
	gap: 6px 4px; /* 余白 */
}
@media (min-width: 768px) {
  .recruit-contents {
    max-width: 900px;
    margin: 0 auto 0px auto;
  }
}
.recruit-card {
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  margin-bottom: 50px;;
  box-shadow: 0 0 8px rgba(0, 0, 0, .16);
  position: relative;
}
.recruit-card .shop_img{
  margin: 0 auto;
  padding: 20px 0 0 0;
  background-color: #fff;
  border-radius: 1em;
}
.recruit-card .floor_tag02{
  font-size: 1rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  margin:10px 10px 0px 0px;
  padding:5px;
  background-color: #F58FAD;
  width: 40%;
  border-radius: 20px;
  text-align: center;
}
.recruit-card .floor_tag03{
  font-size: 1rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  margin:10px 10px 0px 0px;
  padding:5px;
  background-color: #8DD87B;
  width: 40%;
  border-radius: 20px;
  text-align: center;
}
.recruit-card .floor_tag03a{
  font-size: 1rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  margin:10px 10px 0px 0px;
  padding:5px;
  background-color: #8DD87B;
  width: 50%;
  border-radius: 20px;
  text-align: center;
}
.recruit-card .main_title{
  font-size: 1.7rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 2rem;
}
.recruit-card .sub_title{
  font-size: 1.2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  margin-bottom: 0px;
}
.recruit-card .title_txt{
  font-size: 1.2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  margin-bottom: 0px;
}
.recruit-card .copy_txt{
  font-size: 1.2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  margin-top: 10px;
  line-height: 2rem;
  margin-bottom: 30px;
  padding-bottom: 5px;
  border-bottom: 1px dotted #000;
  text-indent: -1em;
  padding-left: 2em;
}
.recruit-card .copy_txt02{
  font-size: 1.2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  margin-bottom: 10px;
  margin-top: 10px;
  line-height: 1.6rem;
  text-indent: -1em;
  padding-left: 2em;
}



/**
 * ---------------------------------------
 * ポストフッター
 */
.post-footer {
  margin: 0 0 60px 0;
}
@media (min-width: 768px) {
  .post-footer {
    max-width: 600px;
    margin: 0 auto 60px auto;
  }
}
.post-footer h2 {
  display: inline-block;
  margin: 0;/*h2のデフォルト設定をオフ*/
  padding: 10px 30px;
  background: #000;
  border-radius: 10px 10px 0 0;
  font-family: 'Croissant One', cursive;
  font-weight: 400;
  font-size: 1.25rem;
  color: #fff;
}
.profile {
  display: flex;
  padding: 1rem;
  border: 1px solid #000;
}
.pr-photo {
  flex: 0 0 100px;
  margin-right: 1rem;
}
.pr-photo img {
  border-radius: 50%;
}
.pr-text {
  flex: 1 1 auto;
}
.pr-text p {
  margin: 0;
  line-height: 1.9;
}

/**
 * ***************************************
 *  クーポンページ
 * ***************************************
 */
.coupon-headerimage{
  background: url(../images/coupon_bg.jpg);
  width: 100%;
  background-size: cover;
  background-position: center center;
  margin: 0 0 0 0;
  padding: 10px 0;
  text-align: center;
}
.coupon-headerimage .coupon_title{
  margin: 3% auto 0% auto;
  width: 65%;
}
.coupon-headerimage .coupon_ticket{
  margin:0 auto 3% auto;
  width: 75%;
}
.coupon-contents{
  width: 90%;
  margin: 5% auto;
}
.coupon-contents .attention_txt_area{
  width: 80%;
  margin: 0 auto 5% auto;
  background-color: #f00;
  text-align: center;
  padding: 3%;
}
.coupon-contents .attention_txt_area_02{
  width: 60%;
  margin: 20% auto;
  background-color: #F8C611;
  text-align: center;
  padding: 3%;
}
.coupon-contents .attention_txt_area .attention_txt{
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 10% auto;
}
.coupon-contents .attention_txt_area_02 .attention_txt{
  color: #3C2A21;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 20% auto;
}


.coupon-contents .annotation_txt_area{
  width: 90%;
  margin: 0 auto 2% auto;
  text-align: left;
  padding: 0%;
}
.coupon-contents .annotation_txt_area ul, ol {
  background: #fcfcfc;/*背景色*/
  padding: 0.5em 0.5em 0.5em 2em;/*ボックス内の余白*/
  border: solid 3px gray;/*線の種類 太さ 色*/
}
.coupon-contents .annotation_txt_area ul li, ol li {
  line-height: 1.5; /*文の行高*/
  padding: 0.5em 0; /*前後の文との余白*/
  font-size: 0.8rem;
  font-feature-settings: "palt";
}
.coupon-contents h2{
  color: #f00;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.6rem;
  text-align: center;
}
.coupon-contents h2 .black{
  color: #000;
}
@media (max-width: 768px) {
  .coupon-contents .coupon-card_area .coupon_img{
    width: 100%;
  }  
}

/*--------------------------------------
  カード型_01
--------------------------------------*/
.l-wrapper_01 {
  margin: 1rem auto;
  width: 90%;
}

.card_01 {
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, .16);
  color: #212121;
  text-decoration: none;
  padding-bottom: 2%;
  border-radius: 10px;
  margin-bottom: 30px;
}

.card__header_03 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  background-color: #8DD87B;
  border-radius: 10px 10px 0 0;
}
.card__header_02 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  background-color: #F58FAD;
  border-radius: 10px 10px 0 0;
}
.card__sub_title {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  order: 1;
  margin-bottom: 0;
  text-decoration: none;
}
.card__title {
  padding: 0 1.5rem;
  font-size: 1.6rem;
  order: 2;
  margin-bottom: 0;
  font-weight: bold;
  text-decoration: none;
}
.card__place_txt {
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  order: 3;
  margin-bottom: 20px;
  text-decoration: none;
  text-align: right;
}
.card__body_01 {
  padding: 0 1.5rem;
}

.card__text_01 {
  font-size: .8rem;
  text-align:center;
  text-decoration: none;
	padding-bottom: 0;
}

.card__text2_01 {
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color:#f00;
  text-align: center;
  line-height: 1.8rem;
  font-feature-settings: "palt";
}
.card__text2_02 {
  font-size: 1rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color:#f00;
  text-align: center;
  line-height: 1.6rem;
  font-feature-settings: "palt";
}
.deadline {
  margin: 10px auto 5px auto;
  font-size: 1.2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color:#000;
  text-align: center;
  line-height: 1.6rem;
  font-feature-settings: "palt";
}
.deadline .deadline_date {
  margin-left: 10px;
  font-size: 1.4rem;
}



/**
 * ***************************************
 * ［sidebar-post.html］サイドバーあり記事ページ - メインコンテナ
 * ***************************************
 */
.sidebar-post .main-container {
  padding: 80px 4% 0 4%;
  background: url(../images/post-bg.svg) repeat-x;
  background-position: 0 10px;
}
@media (min-width: 768px) {
  .sidebar-post .main-container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 80px 20px 0 20px;
  }
}
/* 2カラムレイアウトのコントロール */
@media (min-width: 768px) {
  .columns {
    display: grid;
    grid-template-columns: 1fr 290px;
    grid-gap: 40px;
  }
}

/**
 * ---------------------------------------
 * ［sidebar-post.html］記事ページ - モジュール
 */
/* カードとバッジ */
.side-popular {
  margin-bottom: 60px;
  border: 1px solid #000;
}
.side-popular a {
  display: block;
  position: relative;

  color: #000;
  text-decoration: none;
}
.side-popular a:hover {
  opacity: .5;
}
.side-popular h2 {
  display: grid;
  place-items: center;

  position: absolute;
  top: 5px;
  left: 5px;
  margin: 0;
  width: 80px;
  height: 80px;

  background: url(../images/side-titleshape.svg) no-repeat;
  color: #ffffff;
  font-family: 'Croissant One', cursive;
  font-weight: 400;
  font-size: .75rem;
}
.side-popular p {
  margin: 0;
  padding: 1rem;
  font-size: .875rem;
  line-height: 1.5;
}
/* 記事一覧のリスト */
.side-latest {
  margin-bottom: 60px;
}
.side-latest h2 {
  margin: 0 0 10px 0;
  font-family: 'Croissant One', cursive;
  font-weight: 400;
  font-size: 1.25rem;
}
.side-latest ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.side-latest li {
  display: grid;
  grid-template-columns: 80px 1fr;
  column-gap: 10px;
  align-items: center;
  margin-bottom: 1rem;
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 1rem;
}
.side-latest img {
  border-radius: 50%;
}
.side-latest p {
  margin: 0;
  font-size: .75rem;
  line-height: 1.5;
}
.side-latest li a {
  color: #000;
  text-decoration: none;
}
.side-latest li a:hover {
  opacity: .5;
}
/* 複数の要素で構成されるボックス */
.side-book {
  margin-bottom: 60px;
}
.side-book h2 {
  margin: 0 0 20px 0;
  padding: 5px;
  text-align: center;
  font-family: 'Croissant One', cursive;
  font-weight: 400;
  font-size: 1.25rem;
  background: #000;
  color: #fff;
}
.book-info {
  display: grid;
  grid-template-columns: 80px 1fr;
  column-gap: 10px;
}
.book-image {
  grid-row: 1/3;
}
.book-text {
  font-size: .875rem;
  line-height: 1.5;
}
.book-text p {
  margin: 0;
}
.buy {
  align-self: end;
  justify-self: start;
}
.buy button {
  padding: .5rem 3rem;
  border-radius: 100px;
  border: none;
  background: #000;
  color: #fff;
}
.buy button:hover {
  opacity: .5;
}

/**
 * ***************************************
 * ［form.html］フォームページ
 * ***************************************
 */
/* フォーム - キャッチフレーズコンテナ */
.apply .campaign-container {
  margin: 0 auto;
  padding: 60px 4%;
  max-width: 1040px;
  background-image: url(../images/form-title-bg1.svg), url(../images/form-title-bg2.svg);
  background-position: left top 10px, right top 10px;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .apply .campaign-container {
    padding: 60px 20px;
  }
}
/* フォーム - フォームコンテナ */
.apply .form-container {
  margin: 0 auto;
  padding: 0 4% 30px 4%;
  max-width: 640px;
}
@media (min-width: 768px) {
  .apply .form-container {
    padding: 0 20px 30px 20px;
  }
}

/**
 * ---------------------------------------
 * ［form.html］フォームページ - モジュール
 */
/* 見出しとテキスト */
.apply-title {
  margin: 0 0 60px 0;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.5;
}
.apply-title span {
  font-size: 1.875rem;
  font-family: 'Croissant One', cursive;
  font-weight: 400;
}
.apply-lead {
  margin: 0;
  line-height: 1.9;
}

/* 入力フォームのフォントサイズを大きくする */
input, textarea, label {
  font-size: 16px;
}
/* テキストフィールドとメールアドレスフィールド */
.form p {
  margin: 0 0 30px 0;
  line-height: 1.9;
}
.required {
  margin-left: 10px;
  font-size: .875rem;
  color: #73cbd6;
}
input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #747474;
}
/* メニューリスト */
select {
  -webkit-appearance: none;

  border: 1px solid #d8d8d8;
  padding: 4px 2rem 4px 4px;
  border-radius: 4px;
  background: url(../images/caret-down.svg) no-repeat;
  background-position: right 6px center;
  background-size: 12px 12px;
  font-size: 16px;
}
/* メッセージ（テキストエリア） */
textarea {
  width: 100%;
  height: 6rem;
  padding: 10px;
  border: 1px solid #747474;
  line-height: 1.5;
}
/* チェックボックス */
input[type="checkbox"] {
  margin-right: 10px;
}
/* 送信ボタン */
.form-button {
  margin-bottom: 0;
  text-align: center;
}
input[type="submit"] {
  padding: 20px 30px;
  background-color: #000;
  border: none;
  border-radius: 40px;
  color: #fff;
}
input[type="submit"]:hover {
  opacity: .5;
}
