/*
  Theme Name:     pocha wp theme
  Description:    pocha wp site theme
  Version:        1.00
  Theme URI:
  Author:         r
  Author URI:
  Tags:           
*/


h1 {
    font-size: 1.7em !important;
    color: rgb(246, 11, 136);
    padding: 6px 5px;
    margin-bottom: 15px;
}

h2 {
    font-size: 1.7em !important;
    color: #9d9d9d;
    padding: 6px 0px;
    text-align: center;
    border-bottom: 1px solid #9d9d9d;
    margin:2em 0 !important;
}


table {
  margin: 20px auto;
  width: 100%;
}
.tbl-r02 th ,.tbl-r02 td {
      border: solid 1px #aba1a1;
} 

.tbl-r02 th {
  background: #dfdfdf;
  color: #fff;
  padding: 15px;
  margin: 2px;
  width: 20%;
}
.tbl-r02 td {
  background: #fefefe;
  padding: 15px;
  margin: 2px;
  width: 80%;
}


.logo a {
  font-size: 1.4em;
  font-weight: bold;
  display: inline-block;
  background: linear-gradient(45deg, #FA8BFF 16%, #2BD2FF 57%, #2BFF88 90%);
  background: -webkit-linear-gradient(45deg, #FA8BFF 16%, #2BD2FF 57%, #2BFF88 90%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientEffect 2.5s infinite alternate;
}

@keyframes gradientEffect {
  from {
    background-position: left
  }

  to {
    background-position: right
  }
}

/*店舗情報*/

.sns a {
  font-size: 2.4em;
  display: inline-block;
  background: linear-gradient(45deg, #FA8BFF 16%, #2BD2FF 57%, #2BFF88 90%);
  background: -webkit-linear-gradient(45deg, #FA8BFF 16%, #2BD2FF 57%, #2BFF88 90%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientEffect 2.5s infinite alternate;
}

@keyframes gradientEffect {
  from {
    background-position: left
  }

  to {
    background-position: right
  }
}


.img-box,.img-box-cast {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 300px;
}

.img-box::before,.img-box-cast::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.img-box img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: contain;
  object-position: 0 0;
}
.img-box-cast img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: 0 0;
}


@media screen and (max-width: 640px) {
  .last td:last-child {
    width: 100%;
  }
  .tbl-r02 {
    width: 80%;
  }
  .tbl-r02 th,
  .tbl-r02 td {
    border-bottom: none;
    display: block;
    width: 100%;
  }
}

.job-title {
    background: #333;
    color: #fff;
    padding: 10px
}
.job-title h1 {
    font-size: 1.5em;
}

.single-job ul {
    list-style: none;
    padding: 0;
}
.single-job li {
    width: 30%;
    padding: 10px;
    text-align: center;
    border: 1px solid #bda9a9;
    border-radius: 4px;
    margin: 4px;
    display: inline-block;
    
}

@media screen and (max-width: 800px) {
    .single-job li {
        width: 100%;
    }
}

/*検索フォーム*/

.search p {
    background: #eee;
    padding: 2px 10px;
    
}

/* CSSコード */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background: #fff;
}

.logo {
  font-size: 24px;
}

/* ここから下がハンバーガーメニューに関するCSS */

/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;
  /* 重なり順を一番上にする */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked~.drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked~.drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked~.drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #fff;
  transition: .5s;
}

/* メニュー黒ポチを消す */
.nav_list {
  list-style: none;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked~.nav_content {
  left: 0;
  /* メニューを画面に入れる */
}


/* Contact Form7 */

.contact7 {
  max-width: 100%;
  box-sizing: border-box;
}

.contact7 dd {
  margin: 0 0 30px 0;
  background-color:
}

.contact7 dt {
  font-weight: normal;
}

/* 必須マーク */
.contact7 .must {
  background: #FF1A00;
}

/* 任意マーク */
.contact7 .optional {
  background: #999;
}

.contact7 .must,
.contact7 .optional {
  color: #FFF;
  border-radius: 3px;
  font-size: 10px;
  margin-left: 10px;
  padding: 5px 10px;
  letter-spacing: 2px;
}

.btn_contact7 {
  text-align: center;
}

.btn_contact7 input {
  width: 70%;
  background-color: #005513;
  color: #FFF;
  font-size: 1.1em;
  font-weight: bold;
  letter-spacing: 0.2em;
  border: 1px solid #005513;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}

.btn_contact7 input:hover {
  background-color: #FFF;
  color: #005513;
}

@media screen and (min-width: 768px) {
  .contact7 dt {
    float: left;
    clear: left;
    width: 35%;
    padding: 5px 10px 5px 0;
  }

  .contact7 dd {
    margin-left: 35%;
  }

  .btn_contact7 input {
    width: 70%;
    background-color: #005513;
    color: #FFF;
    font-size: 1.1em;
    font-weight: bold;
    letter-spacing: 0.2em;
    border: 1px solid #005513;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
  }

  .btn_contact7 input:hover {
    background-color: #FFF;
    color: #005513;
  }
}