@charset "UTF-8";
/*
Theme Name:CMS
Description:CMS
Author:CMS Version:1.0
*/
/* CSS Document */
html {
  font-size: 62.5%;
  /*16px × 62.5%=10px*/
}

body {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1.6em;
  color: #40200c;
  font-feature-settings: "palt";
  letter-spacing: 0.025rem;
  background-image: url(img/common/bg.jpg);
  margin: auto;
}

::-moz-selection {
  background: #a78349;
}

::selection {
  background: #a78349;
}

.sp_non {
  display: inline;
}

.pc_non, .sp_br, .tab_pc_non, .tab_br {
  display: none;
}

/*-------------------------
common/animation
-------------------------*/
/*アニメーション要素のスタイル*/
#link {
  padding-top: 100px;
  margin-top: -100px;
}

.animation {
  opacity: 0;
  visibility: hidden;
  transition: 2.5s;
  transform: translateY(30px);
}

/*アニメーション要素までスクロールした時のスタイル*/
.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/*スクロール*/
#woman, #man, #voice {
  padding-top: 150px;
  margin-top: -150px;
}

/*-------------------------
common/pagetop
-------------------------*/
#page-top {
  z-index: 800;
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  bottom: 100px;
  background: #000;
  opacity: 0.9;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(255, 163, 44, 0.9); /* 光彩の設定 */
  transition: 1s;
}

#page-top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#page-top a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  content: "\f106";
  font-size: 25px;
  color: #40200c;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  transition: 1s;
}

#page-top:hover {
  box-shadow: 0 0 15px rgba(255, 215, 163, 0.9); /* 光彩の設定 */
}
#page-top:hover a::before {
  color: #a79a22;
}

/*-------------------------
common/header
-------------------------*/
#header {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 900;
  top: 0;
  left: 0;
  width: 100vw;
  height: 142px;
  background: #000;
  background-image: url(img/common/header_bg.jpg);
  background-repeat: no-repeat;
  transition: all 0.2s ease;
}
#header .header_logo h1 {
  position: absolute;
  width: 278px;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
#header .header_logo h1 img {
  width: 278px;
  height: auto;
  transition: 0.5s;
}
#header .header_logo h1 img:hover {
  filter: brightness(200%);
}
#header .header_logo .post_add {
  position: absolute;
  top: 14px;
  right: 48px;
  color: #b99d61;
}
#header .header_logo .post_add .address {
  font-size: 1.5rem;
  line-height: 2.1rem;
}
#header .header_logo .post_add .address span {
  font-size: 1.3rem;
}
#header .header_logo .post_add .add_in {
  margin-top: 8px;
}
#header .header_logo .post_add .add_in .tel_box {
  fill: #b99d61;
  font-size: 2.5rem;
  font-weight: 700;
}
#header .header_logo .post_add .add_in .tel_box svg {
  height: 20px;
  width: auto;
  margin-right: 16px;
}
#header .header_top_out {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 30px;
  width: 100vw;
}
#header .header_top_out .gnavi .gnavi_menu {
  background: linear-gradient(#e0d593, #a78349);
}
#header .header_top_out .gnavi .gnavi_menu .header-dropmenu {
  width: 100vw;
  display: flex;
  justify-content: center; /*中央寄せ*/
  margin: 0 auto;
  padding: 0;
}
#header .header_top_out .gnavi .gnavi_menu .header-dropmenu .menu_text {
  font-weight: 500;
  height: 30px;
}
#header .header_top_out .gnavi .gnavi_menu .header-dropmenu .menu_text a, #header .header_top_out .gnavi .gnavi_menu .header-dropmenu .menu_text p {
  font-size: 1.4rem;
  font-weight: 700;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: #000000;
  transition: 0.5s;
}
#header .header_top_out .gnavi .gnavi_menu .header-dropmenu .menu_text a:hover, #header .header_top_out .gnavi .gnavi_menu .header-dropmenu .menu_text p:hover {
  height: 30px;
  color: #ffc400;
  background: rgba(54, 43, 24, 0.4666666667);
}

/*-------------------------
アコーディオン
-------------------------*/
ul.header-dropmenu {
  list-style: none;
  display: table;
  table-layout: fixed;
}

ul.header-dropmenu > li {
  position: relative;
  display: table-cell;
  vertical-align: middle;
}

ul.header-dropmenu li a {
  display: block;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
  transition: 0.5s;
}

ul.header-dropmenu li ul {
  visibility: hidden;
  opacity: 0;
  width: 100%;
  list-style: none;
  position: absolute;
  top: 100%;
  left: -1px;
  margin: 0;
  padding: 0;
  border-top: none;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(-10px); /* 初めは上に10px移動 */
}

ul.header-dropmenu li:hover ul {
  visibility: visible;
  opacity: 1;
  transform: translateY(0); /* ホバー時に元の位置に戻す */
}

ul.header-dropmenu li ul li a {
  background: #000;
  transition: all 0.5s ease;
  color: #e0d593 !important;
  border-bottom: solid 2px #a07134;
  border-left: solid 2px #a07134;
  border-right: solid 2px #a07134;
}

.menu_text_in a {
  font-size: 1.2rem !important;
  padding: 0 8px !important;
}

ul.header-dropmenu > li:hover {
  border-bottom: none;
}

/*-------------------------
common/各ページ見出し
-------------------------*/
.headline {
  margin-top: 142px;
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: solid 2px #bca064;
  background-repeat: no-repeat;
  background-size: cover;
}
.headline .headline_box {
  text-align: center;
}
.headline .headline_box h2 {
  font-family: "Allura", cursive;
  color: #fff;
  margin: 92px 0;
  font-size: 5rem;
  text-shadow: 0 0 15px #ffa42c; /* 光彩の設定 */
  position: relative;
  display: inline;
}
.headline .headline_box .heading {
  font-family: "Noto Serif JP", serif;
  font-size: 1.3rem;
  color: #ecbc74;
  text-shadow: 0 0 15px #ffa42c; /* 光彩の設定 */
}

/*-------------------------
common/footer
-------------------------*/
footer {
  background-color: #000;
  padding-top: 32px;
}
footer .footer_box_out {
  max-width: 1005px;
  width: 100%;
  margin: auto;
  color: #fff;
  display: flex;
  justify-content: space-between;
}
footer .footer_box_out .footer_box table tr {
  font-size: 1.3rem;
}
footer .footer_box_out .footer_box table tr th {
  width: 78px;
  text-align: left;
}
footer .footer_box_out .footer_box table tr th p {
  position: relative;
  padding: 10px 0;
}
footer .footer_box_out .footer_box table tr th p::before {
  position: absolute;
  top: 9px;
  left: -14px;
  padding-right: 2px;
  content: url(img/common/dot.png);
}
footer .footer_box_out .footer_box table tr td .name {
  font-size: 1.9rem;
}
footer .footer_box_out .footer_box table tr td a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  background: linear-gradient(#e0d593, #a78349);
  padding: 0 20px;
  border-radius: 20px;
  transition: 0.5s;
}
footer .footer_box_out .footer_box table tr td a svg {
  height: 1.4rem;
  margin-right: 8px;
}
footer .footer_box_out .footer_box table tr td a:hover {
  filter: brightness(200%);
}
footer .gnavi_menu {
  max-width: 500px;
  width: 100%;
  margin-top: 32px;
}
footer .gnavi_menu p {
  font-size: 1.2rem;
  color: #dda55d;
  margin-bottom: 16px;
}
footer .gnavi_menu .drop_menu {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
footer .gnavi_menu .drop_menu .menu_text a {
  color: #fff;
  transition: 0.5s;
  font-size: 1.3rem;
}
footer .gnavi_menu .drop_menu .menu_text a:before {
  content: "＞";
  color: #e2a95f;
}
footer .gnavi_menu .drop_menu .menu_text a:hover {
  color: #ebff92;
}
footer .footer_footer {
  margin-top: 32px;
  background: url("img/common/footer.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer .footer_footer p {
  line-height: 3rem;
  font-weight: 700;
}
footer .footer_footer small a {
  font-size: 1.1rem;
  color: #000;
  transition: 0.5s;
}
footer .footer_footer small a:hover {
  color: #fff174;
}

/*----------------------*/
/*-------------------------
top:hero
-------------------------*/
.hero {
  margin-top: 142px;
}
.hero img {
  width: 100%;
  height: auto;
}

/*-------------------------
top:common
-------------------------*/
.top-common_box {
  text-align: center;
}
.top-common_box h2 {
  font-family: "Allura", cursive;
  color: #fff;
  margin: 92px 0;
  font-size: 4.5rem;
  text-shadow: 0 0 15px #ffa42c; /* 光彩の設定 */
  position: relative;
  display: inline;
}
.top-common_box h2::before {
  position: absolute;
  content: "";
  width: 178px;
  height: 28px;
  background: url(img/top/h2_before.png) no-repeat;
  top: 16px;
  left: -198px;
}
.top-common_box h2::after {
  position: absolute;
  content: "";
  width: 178px;
  height: 28px;
  background: url(img/top/h2_after.png) no-repeat;
  top: 16px;
  right: -198px;
}
.top-common_box .heading {
  margin-top: 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.7rem;
  color: #fff;
  text-shadow: 0 0 15px #ffa42c; /* 光彩の設定 */
}

/*-------------------------
top:news
-------------------------*/
.news_box_out {
  text-align: center;
}
.news_box_out h2 {
  font-family: "Allura", cursive;
  color: #fff;
  margin-top: 92px;
  font-size: 4rem;
  text-shadow: 0 0 15px rgba(255, 163, 44, 0.9); /* 光彩の設定 */
}
.news_box_out .banner_box {
  text-align: left;
  max-width: 1115px;
  width: 100%;
  margin: 16px auto 100px;
}
.news_box_out .banner_box ul {
  border-top: solid 2px #a78349;
  border-bottom: solid 2px #a78349;
}
.news_box_out .banner_box ul li {
  padding: 16px 0;
  border-bottom: solid 1px #a78349;
}
.news_box_out .banner_box ul li a {
  display: flex;
}
.news_box_out .banner_box ul li a .category {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 135px;
  height: 24px;
  background-color: #5a4522;
  color: #fff;
  font-size: 1.5rem;
  transition: 0.5s;
}
.news_box_out .banner_box ul li a .title {
  color: #fff;
  font-size: 1.9rem;
  height: 24px;
  display: flex;
  align-items: center;
  padding-left: 24px;
  transition: 0.5s;
  display: inline;
}
.news_box_out .banner_box ul li a:hover .category {
  background-color: #916f36;
}
.news_box_out .banner_box ul li a:hover .title {
  text-shadow: 0 0 15px rgba(255, 201, 130, 0.9); /* 光彩の設定 */
}
.news_box_out .banner_box ul li:last-child {
  border-bottom: none;
}
.news_box_out .banner_box .more {
  float: right;
  margin-top: 16px;
  color: #bd9451;
  transition: 0.5s;
}
.news_box_out .banner_box .more:hover {
  color: #ffdda5;
  text-shadow: 0 0 15px rgba(255, 201, 130, 0.9); /* 光彩の設定 */
}

/*-------------------------
top:greeting
-------------------------*/
.greeting_box_out {
  background-image: url(img/top/greeting_bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 72px 0;
}
.greeting_box_out .greeting_box {
  max-width: 1100px;
  width: 100%;
  margin: 64px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 56px;
}
.greeting_box_out .greeting_box .text {
  max-width: 520px;
  width: 100%;
  font-size: 1.9rem;
  color: #fff;
  letter-spacing: 0.2rem;
  line-height: 3.2rem;
  text-align: justify;
  text-justify: inter-ideograph;
  -ms-text-justify: inter-ideograph;
}
.greeting_box_out .greeting_box .img img {
  max-width: 520px;
  width: 100%;
  height: auto;
}

/*-------------------------
top:explanation
-------------------------*/
.explanation_box {
  background-image: url(img/top/explanation.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 100px 0;
  position: relative;
}
.explanation_box h2 {
  text-align: right;
}
.explanation_box .explanation_in_box {
  max-width: 1000px;
  width: 100%;
  height: 700px;
  margin: auto;
  position: relative;
}
.explanation_box .explanation_in_box .img01, .explanation_box .explanation_in_box .img02 {
  position: relative;
  max-width: 505px;
  width: 100%;
  height: 420px;
  background-color: #ffffff;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(134, 118, 60, 0.9);
  border: solid 2px #b48f5a;
}
.explanation_box .explanation_in_box .img01 h3, .explanation_box .explanation_in_box .img02 h3 {
  font-family: "Allura", cursive;
  color: #fff;
  font-size: 10rem;
  line-height: 4rem;
  text-shadow: 0 0 15px rgba(255, 163, 44, 0.9); /* 光彩の設定 */
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-55%, -50%);
  -webkit-transform: translate(-55%, -50%);
  -ms-transform: translate(-55%, -50%);
  text-align: center;
  transition: 1s;
  z-index: 1;
}
.explanation_box .explanation_in_box .img01 h3 span, .explanation_box .explanation_in_box .img02 h3 span {
  display: block;
  font-size: 1.5rem;
  color: #ecbc74;
  transition: 1s;
  font-family: "Noto Serif JP", serif;
}
.explanation_box .explanation_in_box .img01 img, .explanation_box .explanation_in_box .img02 img {
  max-width: 505px;
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 1s;
}
.explanation_box .explanation_in_box .img01 {
  position: absolute;
  top: 108px;
  left: 4px;
}
.explanation_box .explanation_in_box .img02 {
  position: absolute;
  bottom: 0;
  right: 4px;
}
.explanation_box .explanation_in_box .img01:hover h3, .explanation_box .explanation_in_box .img02:hover h3 {
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.9); /* 光彩の設定 */
}
.explanation_box .explanation_in_box .img01:hover h3 span, .explanation_box .explanation_in_box .img02:hover h3 span {
  color: #fff56f;
}
.explanation_box .explanation_in_box .img01:hover img, .explanation_box .explanation_in_box .img02:hover img {
  opacity: 0.9;
  transform: scale(1.1);
  filter: blur(6px);
  z-index: 0;
  background-color: #000;
}

/*-------------------------
top:Recruit
-------------------------*/
.recruit_box_out {
  margin-bottom: 80px;
}
.recruit_box_out .recruit_text {
  margin-top: 40px;
  text-align: center;
}
.recruit_box_out .recruit_text p {
  color: #fff;
  font-size: 2.1rem;
  line-height: 3.2rem;
  text-shadow: 0 0 15px #ca965a; /* 光彩の設定 */
}
.recruit_box_out .recruit_text p span {
  color: #f3ba82;
  text-shadow: 0 0 15px #ca965a; /* 光彩の設定 */
}
.recruit_box_out .recruit_box {
  max-width: 1280px;
  width: 100%;
  margin: 40px auto;
  display: flex;
  justify-content: space-between;
}
.recruit_box_out .recruit_box .recruit_box_female, .recruit_box_out .recruit_box .recruit_box_man {
  position: relative;
  overflow: hidden;
  max-width: 636px;
  width: 100%;
  height: 310px;
  transition: 0.3s;
}
.recruit_box_out .recruit_box .recruit_box_female .recruit_box_in, .recruit_box_out .recruit_box .recruit_box_man .recruit_box_in {
  z-index: 20;
  position: absolute;
  max-width: 340px;
  width: 100%;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.recruit_box_out .recruit_box .recruit_box_female .recruit_box_in img, .recruit_box_out .recruit_box .recruit_box_man .recruit_box_in img {
  transition: 0.3s;
}
.recruit_box_out .recruit_box .recruit_box_female .recruit_box_in p, .recruit_box_out .recruit_box .recruit_box_man .recruit_box_in p {
  margin-top: -8px;
  font-size: 1.8rem;
  line-height: 2.4rem;
  color: #fff;
  text-shadow: 0 0 10px #ffce95; /* 光彩の設定 */
  transition: all 0.3s ease-out;
}
.recruit_box_out .recruit_box .recruit_box_female .recruit_box_in:hover img, .recruit_box_out .recruit_box .recruit_box_man .recruit_box_in:hover img {
  filter: brightness(150%);
}
.recruit_box_out .recruit_box .recruit_box_female .recruit_box_in:hover p, .recruit_box_out .recruit_box .recruit_box_man .recruit_box_in:hover p {
  color: #ffce95;
  text-shadow: 0 0 10px #ffffff; /* 光彩の設定 */
}
.recruit_box_out .recruit_box .recruit_box_female .voice, .recruit_box_out .recruit_box .recruit_box_man .voice {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  max-width: 220px;
  width: 100%;
  height: 34px;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background: linear-gradient(#e0d593, #a78349);
  border-radius: 18px;
  color: #0d0c0b;
  transition: 0.5s;
}
.recruit_box_out .recruit_box .recruit_box_female .voice:hover, .recruit_box_out .recruit_box .recruit_box_man .voice:hover {
  filter: brightness(150%);
}
.recruit_box_out .recruit_box .recruit_box_female:after, .recruit_box_out .recruit_box .recruit_box_man:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  background-size: cover;
  transition: all 0.3s ease-out;
}
.recruit_box_out .recruit_box .recruit_box_female:after {
  background-image: url(img/top/female.jpg);
}
.recruit_box_out .recruit_box .recruit_box_man:after {
  background-image: url(img/top/man.jpg);
}
.recruit_box_out .recruit_box .recruit_box_female:hover:after, .recruit_box_out .recruit_box .recruit_box_man:hover:after {
  transform: scale(1.1);
  filter: blur(6px);
}

/*-------------------------
top:Map
-------------------------*/
.map_box {
  text-align: center;
}
.map_box h2 {
  color: #e2a95f;
  font-family: "Allura", cursive;
  font-size: 4.5rem;
}
.map_box #map {
  margin: 24px 0 0;
  border-top: solid 4px #bca064;
  border-bottom: solid 2px #bca064;
}
.map_box #map iframe {
  width: 100%;
  height: 336px;
}

/*----------------------
::::::::cast
-----------------------*/
.cast_headline {
  background-image: url(img/cast/cast_header.jpg);
}

.cast_box_out {
  padding-top: 64px;
  text-align: center;
}
.cast_box_out .introduction {
  margin-top: 32px;
  color: #f4e8d1;
  font-size: 1.7rem;
  line-height: 3.5rem;
  text-shadow: 0 0 10px #ffa32c; /* 光彩の設定 */
}
.cast_box_out .cast_box {
  width: 100%;
  margin-top: 54px;
  background-image: url(img/cast/explanation.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-blend-mode: lighten;
}
.cast_box_out .cast_box .cast_box_in {
  background-color: rgba(186, 138, 74, 0.1490196078);
  max-width: 940px;
  width: 100%;
  margin: auto;
  border-radius: 40px;
  padding: 48px 30px;
  display: flex;
  justify-content: space-between;
}
.cast_box_out .cast_box .cast_box_in .cast_img {
  max-width: 310px;
  width: 100%;
}
.cast_box_out .cast_box .cast_box_in .cast_img img {
  width: 298px;
  height: 298px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: solid 2px #b18041;
}
.cast_box_out .cast_box .cast_box_in .cast_img h3 {
  margin-top: 24px;
  color: #ffffff;
  font-family: "Allura", cursive;
  font-size: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 297px;
  height: 14px;
  background-image: url(img/cast/name_pattern.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.cast_box_out .cast_box .cast_box_in .cast_profile {
  text-align: left;
  max-width: 600px;
  width: 100%;
}
.cast_box_out .cast_box .cast_box_in .cast_profile li {
  padding: 12px 0;
  border-bottom: solid 1px #bca064;
}
.cast_box_out .cast_box .cast_box_in .cast_profile li p {
  color: #fff;
}
.cast_box_out .cast_box .cast_box_in .cast_profile li p span {
  display: block;
  width: 72px;
  color: #cf9f61;
  float: left;
}
.cast_box_out .cast_box .cast_box_in .cast_profile li .profile {
  margin-top: 12px;
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 3rem;
  letter-spacing: 0.1rem;
}
.cast_box_out .cast_box .cast_box_in .cast_profile li:first-child {
  padding-top: 0;
}
.cast_box_out .cast_box .cast_box_in:nth-child(n+2) {
  margin-top: 80px;
}
.cast_box_out .cast_box .cast_box_in:last-child {
  margin-bottom: 100px;
}

/*----------------------
::::::::price
-----------------------*/
.price_headline {
  background-image: url(img/price/price_header.jpg);
}

.price_box_out {
  padding-top: 64px;
  text-align: center;
}
.price_box_out .introduction {
  margin-top: 32px;
  color: #f2bf7d;
  font-size: 1.7rem;
  line-height: 3.5rem;
  text-shadow: 0 0 10px #ffa32c; /* 光彩の設定 */
}
.price_box_out .price_box_table {
  max-width: 1000px;
  width: 100%;
  margin: 40px auto 0;
  border: solid 1px rgba(160, 113, 52, 0.6);
}
.price_box_out .price_box_table tr {
  border-bottom: solid 1px #a07134;
}
.price_box_out .price_box_table tr th {
  background-color: rgba(115, 74, 17, 0.3019607843);
  width: 190px;
  height: auto;
  text-align: center;
  vertical-align: middle;
}
.price_box_out .price_box_table tr th p {
  color: #ddbd90;
  font-size: 1.7rem;
}
.price_box_out .price_box_table tr td {
  background-color: rgba(0, 0, 0, 0.6);
  text-align: left;
}
.price_box_out .price_box_table tr td .line {
  color: #fff;
  font-size: 1.7rem;
  padding: 18px 40px;
  border-bottom: solid 1px rgba(115, 74, 17, 0.3019607843);
}
.price_box_out .price_box_table tr td .line span {
  font-size: 1.3rem;
}
.price_box_out .price_box_table tr td .drink_midashi {
  font-size: 1.7rem;
  color: #f2bf7d;
  padding: 9px 40px;
}
.price_box_out .price_box_table tr td .drink_midashi span {
  font-size: 1.3rem;
}
.price_box_out .price_box_table tr td .drink {
  font-size: 1.7rem;
  color: #fff;
  padding: 8px 0 8px 77px;
  text-indent: -20px;
  line-height: 20px;
}
.price_box_out .price_box_table tr td .drink .tax {
  font-size: 1.3rem;
}
.price_box_out .price_box_table tr td .drink .first-letter {
  color: #d6a96e;
}
.price_box_out .price_box_table tr td .drink:last-child {
  padding-bottom: 30px;
}
.price_box_out .inside {
  padding: 148px 0;
  background-image: url(img/price/bg01.png), url(img/price/bg02.png);
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
  background-position: center top, center bottom;
}
.price_box_out .inside .inside_img {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 10px;
  max-width: 1200px;
  width: 100%;
  margin: auto;
}
.price_box_out .inside .inside_img li img {
  max-width: 595px;
  width: 100%;
  height: auto;
}

/*----------------------
::::::::recruit
-----------------------*/
.recruit_headline {
  background-image: url(img/recruit/recruit_header.jpg);
}

.recruit_woman_box_out {
  background-color: rgba(97, 55, 0, 0.2);
  max-width: 1080px;
  width: 100%;
  margin: 100px auto;
  padding: 24px 0 72px;
  border-radius: 40px;
  text-align: center;
}
.recruit_woman_box_out .explanation {
  margin-top: 24px;
  font-size: 1.7rem;
  color: #f4e8d1;
  text-shadow: 0 0 15px #ffa32c; /* 光彩の設定 */
  line-height: 3.5rem;
}
.recruit_woman_box_out .salary {
  max-width: 1000px;
  width: 100%;
  margin: 44px auto 86px;
  padding: 16px 0;
  background-color: rgba(185, 134, 68, 0.4);
  background-image: url(img/recruit/taiguu_bg01.png), url(img/recruit/taiguu_bg02.png), url(img/recruit/taiguu_bg03.png), url(img/recruit/taiguu_bg04.png);
  background-repeat: no-repeat;
  background-position: top 0 left 0, top 0 right 0, bottom 0 left 0, bottom 0 right 0;
  border: solid 1.5px rgba(255, 190, 106, 0.2);
}
.recruit_woman_box_out .salary p {
  max-width: 930px;
  width: 100%;
  margin: auto;
  text-align: justify;
  text-justify: inter-ideograph;
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  line-height: 3rem;
  text-shadow: 0 0 10px #361e00; /* 光彩の設定 */
}
.recruit_woman_box_out h4 {
  margin: auto;
  padding-bottom: 24px;
  max-width: 1000px;
  width: 100%;
  position: relative;
  color: #e2a95f;
  font-size: 2.5rem;
  border-bottom: solid 1.5px #b98644;
}
.recruit_woman_box_out h4:before {
  position: absolute;
  content: "＊";
  top: -32px;
  left: 50%; /* 左側の中央に配置 */
  transform: translateX(-50%);
}
.recruit_woman_box_out .recruit_table {
  margin: 32px auto;
  max-width: 1000px;
  width: 100%;
}
.recruit_woman_box_out .recruit_table tr {
  color: #fff;
  font-size: 1.5rem;
}
.recruit_woman_box_out .recruit_table tr th {
  background-color: #310000;
  padding: 16px 0;
  width: 112px;
  text-align: center;
  vertical-align: middle;
}
.recruit_woman_box_out .recruit_table tr td {
  background-color: #000;
  padding: 16px 16px;
  text-align: left;
  line-height: 3.5rem;
}
.recruit_woman_box_out .recruit_table tr td img {
  width: 113px;
  height: auto;
}
.recruit_woman_box_out .recruit_table tr td small {
  font-size: 1.35rem;
}
.recruit_woman_box_out .recruit_table tr td .tel {
  color: #b98644;
}
.recruit_woman_box_out .recruit_table tr td .tel_text {
  color: #b98644;
  transition: 0.5s;
}
.recruit_woman_box_out .recruit_table tr td .tel_text:hover {
  color: #f8d6a9;
}
.recruit_woman_box_out .recruit_table tr td .treatment {
  font-size: 1.6rem;
  letter-spacing: 0.28rem;
  text-align: justify;
}
.recruit_woman_box_out .recruit_table tr td .midashi {
  color: #e5a451;
  font-size: 1.4rem;
}
.recruit_woman_box_out .recruit_table tr td ul {
  padding-left: 4px;
}
.recruit_woman_box_out .recruit_table tr td ul li {
  position: relative;
  font-size: 1.4rem;
  letter-spacing: 0.18rem;
  padding-left: 1.4rem;
  text-indent: -1.4rem;
  text-align: justify;
}
.recruit_woman_box_out .recruit_table tr td ul li .tel_text {
  font-size: 1.65rem;
  color: #b98644;
  font-weight: 700;
  transition: 0.5s;
}
.recruit_woman_box_out .recruit_table tr td ul li .tel_text:hover {
  color: #f8d6a9;
}
.recruit_woman_box_out .recruit_table tr td ul li:before {
  position: relative;
  top: 3px;
  padding-right: 4px;
  content: url("img/recruit/dot.png");
}
.recruit_woman_box_out .recruit_table tr:nth-child(n+2) {
  border-top: solid 1px #613700;
}
.recruit_woman_box_out .massage_box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.recruit_woman_box_out .massage_box h5 {
  margin: 32px 0 16px;
  font-family: "Dancing Script", cursive;
  font-size: 4rem;
  color: #e2a95f;
}
.recruit_woman_box_out .massage_box .message {
  font-size: 1.6rem;
  color: #fff;
  text-shadow: 0 0 10px #361e00;
  line-height: 3.2rem;
  letter-spacing: 0.5rem;
  margin-bottom: 24px;
}
.recruit_woman_box_out .massage_box .tel_box {
  max-width: 676px;
  width: 100%;
  transition: 0.5s;
}
.recruit_woman_box_out .massage_box .tel_box p {
  float: left;
  display: flex;
  max-width: 338px;
  width: 100%;
  height: 50px;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}
.recruit_woman_box_out .massage_box .tel_box .pm {
  background: linear-gradient(#ceaa5b, #795300);
  color: #fff;
  border-radius: 22px 0 0 22px;
  font-size: 1.8rem;
  text-shadow: 2px 2px 10px #613700, -2px 2px 10px #613700, 2px -2px 10px #613700, -2px -2px 10px #613700;
}
.recruit_woman_box_out .massage_box .tel_box .tel {
  background-color: #fff;
  color: #482200;
  border-radius: 0 22px 22px 0;
  font-size: 2.3rem;
}
.recruit_woman_box_out .massage_box .tel_box .tel span {
  font-size: 1.5rem;
}
.recruit_woman_box_out .massage_box .tel_box:hover {
  filter: brightness(150%);
}

.recruit_man_box_out {
  background-color: rgba(34, 65, 86, 0.2);
  max-width: 1080px;
  width: 100%;
  margin: 100px auto 72px;
  padding: 24px 0 53px;
  border-radius: 40px;
  text-align: center;
}
.recruit_man_box_out .recruit_table {
  margin: 32px auto;
  max-width: 1000px;
  width: 100%;
}
.recruit_man_box_out .recruit_table tr {
  color: #fff;
  font-size: 1.5rem;
}
.recruit_man_box_out .recruit_table tr th {
  background-color: #001b2e;
  padding: 12px 0;
  width: 112px;
  text-align: center;
  vertical-align: middle;
}
.recruit_man_box_out .recruit_table tr td {
  background-color: #000;
  padding: 12px 16px;
  text-align: left;
  line-height: 3.5rem;
}
.recruit_man_box_out .recruit_table tr:nth-child(n+2) {
  border-top: solid 1px #613700;
}
.recruit_man_box_out .translation {
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 0.2rem;
}
.recruit_man_box_out .salary {
  max-width: 1000px;
  width: 100%;
  margin: 44px auto 0;
  padding: 16px 0;
  background-color: rgba(185, 134, 68, 0.4);
  background-image: url(img/recruit/taiguu_bg01.png), url(img/recruit/taiguu_bg02.png), url(img/recruit/taiguu_bg03.png), url(img/recruit/taiguu_bg04.png);
  background-repeat: no-repeat;
  background-position: top 0 left 0, top 0 right 0, bottom 0 left 0, bottom 0 right 0;
  border: solid 1.5px rgba(255, 190, 106, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.recruit_man_box_out .salary p {
  margin: auto;
  text-align: justify;
  text-justify: inter-ideograph;
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  line-height: 3rem;
  text-shadow: 0 0 10px #361e00; /* 光彩の設定 */
}

.voice_box_out {
  text-align: center;
}
.voice_box_out h3 {
  font-family: "Allura", cursive;
  color: #fff;
  margin: 92px 0;
  font-size: 4.5rem;
  text-shadow: 0 0 15px #ffa42c; /* 光彩の設定 */
  position: relative;
  display: inline;
}
.voice_box_out h3::before {
  position: absolute;
  content: "";
  width: 178px;
  height: 28px;
  background: url(img/top/h2_before.png) no-repeat;
  top: 16px;
  left: -198px;
}
.voice_box_out h3::after {
  position: absolute;
  content: "";
  width: 178px;
  height: 28px;
  background: url(img/top/h2_after.png) no-repeat;
  top: 16px;
  right: -198px;
}
.voice_box_out .heading {
  margin-top: 6px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  color: #ecbc74;
  text-shadow: 0 0 15px #ffa42c; /* 光彩の設定 */
}
.voice_box_out .voice_box {
  background-color: rgba(97, 55, 0, 0.2);
  max-width: 1080px;
  width: 100%;
  border-radius: 40px;
  display: flex;
  justify-content: space-between;
  margin: 24px auto 16px;
  padding: 40px 0;
}
.voice_box_out .voice_box .img_box {
  padding-left: 40px;
  text-align: center;
}
.voice_box_out .voice_box .img_box p {
  margin-top: 16px;
  font-family: "Allura", cursive;
  color: #f7f5f2;
  font-size: 4.5rem;
  text-shadow: 0 0 15px #ffa32c;
}
.voice_box_out .voice_box .text_box {
  max-width: 730px;
  width: 100%;
  margin-right: 60px;
}
.voice_box_out .voice_box .text_box p {
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 0.1rem;
  line-height: 3rem;
  text-align: justify;
  text-justify: inter-ideograph;
}
.voice_box_out .voice_box:last-child {
  margin-bottom: 72px;
}

/*----------------------
::::::::single＆archive
-----------------------*/
.single_headline {
  background-image: url(img/single/single_header.jpg);
}

.single_box_out {
  padding: 0 0 60px;
  text-align: center;
}
.single_box_out .single_box {
  max-width: 970px;
  width: calc(100% - 80px);
  margin: 64px auto 0;
  padding: 45px 40px;
}
.single_box_out .single_box .single_box_in {
  display: flex;
  justify-content: space-between;
}
.single_box_out .single_box .single_main {
  max-width: 695px;
  width: 100%;
}
.single_box_out .single_box .single_main .blog span {
  font-weight: 700;
}
.single_box_out .single_box .single_main .day {
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  margin: 0 0 16px;
  color: #fff;
  text-align: left;
}
.single_box_out .single_box .single_main h4 {
  margin-top: 20px;
  display: block;
  font-size: 2.27rem;
  letter-spacing: 0.1rem;
  font-weight: 700;
  color: #bea064;
  padding-bottom: 16px;
  text-align: left;
  transition: 1s;
  border-bottom: solid 1px #bca064;
}
.single_box_out .single_box .single_main .main {
  font-size: 1.4rem;
  line-height: 3rem;
  margin: 16px 0;
}
.single_box_out .single_box .single_main .main h1 {
  font-size: 3.2rem;
}
.single_box_out .single_box .single_main .main h2 {
  font-size: 2.4rem;
}
.single_box_out .single_box .single_main .main h3 {
  font-size: 1.8rem;
}
.single_box_out .single_box .single_main .main h4 {
  font-size: 1.6rem;
}
.single_box_out .single_box .single_main .main h5 {
  font-size: 1.3rem;
}
.single_box_out .single_box .single_main .main h6 {
  font-size: 1rem;
}
.single_box_out .single_box .single_main .main p {
  text-align: justify;
  text-justify: inter-ideograph;
  -ms-text-justify: inter-ideograph;
  word-break: break-word;
  line-break: normal;
  font-size: 1.7rem;
  line-height: 3.4rem;
  color: #fff;
}
.single_box_out .single_box .single_main .main strong {
  font-weight: 700;
}
.single_box_out .single_box .single_main img {
  max-width: 693px;
  width: 100%;
  height: auto;
  margin-top: 24px;
}
.single_box_out .single_box .single_main ul a li .day:hover {
  color: #ffeaa5;
  text-shadow: 0 0 5px #ffa42c; /* 光彩の設定 */
}
.single_box_out .single_box .single_main ul a li h4 {
  border: none;
}
.single_box_out .single_box .single_main ul a li h4:hover {
  color: #ffeaa5;
  text-shadow: 0 0 5px #ffa42c; /* 光彩の設定 */
}
.single_box_out .single_box .single_info {
  max-width: 247px;
  width: 100%;
  margin-left: 85px;
}
.single_box_out .single_box .single_info .top {
  margin-top: 80px;
}
.single_box_out .single_box .single_info h4 {
  margin: 0 auto 0;
  width: 247px;
  height: 39px;
  font-size: 1.6rem;
  letter-spacing: 0.25rem;
  background: linear-gradient(to right, #795300, #ceaa5b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}
.single_box_out .single_box .single_info .blog_title3 {
  background-color: #8fb528;
}
.single_box_out .single_box .single_info .widget {
  margin: 24px auto 48px;
  background-color: rgba(0, 0, 0, 0.6);
  border: solid 1px rgba(189, 160, 97, 0.6);
  padding: 24px 0;
  color: #fff;
}
.single_box_out .single_box .single_info .widget .wp-calendar-table {
  margin: auto;
}
.single_box_out .single_box .single_info .widget .wp-calendar-table caption {
  font-weight: 700;
  padding-bottom: 14px;
}
.single_box_out .single_box .single_info .widget .wp-calendar-table thead tr th {
  padding: 16px 4px 6px;
}
.single_box_out .single_box .single_info .widget .wp-calendar-table thead tr th:last-child {
  color: #bca064;
}
.single_box_out .single_box .single_info .widget .wp-calendar-table tbody tr td {
  text-align: center;
  padding: 6px 4px 6px;
  color: #fff;
}
.single_box_out .single_box .single_info .widget .wp-calendar-table tbody tr td a {
  font-weight: 700;
  color: #ffeaa5;
  text-shadow: 0 0 5px #ffa42c; /* 光彩の設定 */
}
.single_box_out .single_box .single_info .widget .wp-calendar-table tbody tr td:last-child {
  color: #bca064;
}
.single_box_out .single_box .single_info .widget .wp-calendar-table tbody tr #today {
  font-weight: 700;
  color: #fff;
  background-color: #a97038;
  border-radius: 50px;
}
.single_box_out .single_box .single_info .widget .wp-calendar-nav {
  max-width: 175px;
  width: 100%;
  padding: 16px 0 0;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.single_box_out .single_box .single_info .widget .wp-calendar-nav a {
  color: #fff;
}
.single_box_out .single_box .single_info .widget .wp-calendar-nav a:hover {
  color: #ffeaa5;
  text-shadow: 0 0 5px #ffa42c; /* 光彩の設定 */
}
.single_box_out .single_box .single_info .archive li {
  margin-top: 30px;
  text-align: left;
  color: #ffffff;
}
.single_box_out .single_box .single_info .archive li a {
  list-style: none;
  display: inline-block;
  line-height: 3rem;
  color: #ffffff;
}
.single_box_out .single_box .single_info .archive li a:hover {
  color: #ffeaa5;
  text-shadow: 0 0 5px #ffa42c; /* 光彩の設定 */
}
.single_box_out .single_box .blog_info .widget .wp-calendar-table tbody tr #today {
  background-color: #a97038;
}
.single_box_out .all_info {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  max-width: 157px;
  width: 100%;
  height: 36px;
  margin: 64px auto 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #a4a4a4;
  border-radius: 25px;
}
.single_box_out .all_info::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 10px;
  background: url("img/info/under.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.single_box_out .back {
  max-width: 320px;
  width: 100%;
  height: 40px;
  background: linear-gradient(#e0d593, #a78349);
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 56px auto 100px;
  position: relative;
  transition: 0.5s;
  border-radius: 20px;
}
.single_box_out .back:hover {
  filter: brightness(120%);
}

.archive_box {
  display: flex;
  justify-content: space-between;
  transition: 1s;
}

.link_bg {
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: solid 2px #bea064;
}

.archive_img_box img {
  width: auto !important;
  max-height: 150px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 1s;
}
.archive_img_box img:hover {
  filter: brightness(200%);
}

/*----ページャー-----*/
.oshirase_next {
  max-width: 1200px;
  width: 100%;
  margin: auto;
}

.wp-pagenavi {
  /* 全体 */
  margin: 20px 0;
  font-size: 12px;
}

.wp-pagenavi a {
  /* フォント色 */
  color: #bca064;
}

.pages {
  /* 左の表記 */
  margin-right: 20px;
}

.wp-pagenavi .current, .wp-pagenavi a.page {
  /* ボタン */
  margin: 0 6px 6px 0;
  display: inline-block;
  border: solid 1px #eee;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
}

.wp-pagenavi .current {
  /* カレント数字 */
  border: none;
  background: #bca064;
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 0;
  padding: 0;
  line-height: 20px;
}

.wp-pagenavi a.page {
  background: #fff;
  color: #bca064;
  width: 22px;
  height: 22px;
  border-radius: 0;
  padding: 0;
  line-height: 20px;
}

.wp-pagenavi a.page:hover {
  /* マウスオーバー */
  background: #a97038;
  color: #fff;
}

.wp-pagenavi .first, .wp-pagenavi .extend {
  /* ... */
  margin-right: 10px;
}

.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
  /* 記号の削除 */
  display: none;
}

.wp-pagenavi a, .wp-pagenavi span {
  border: none;
  margin-right: 8px;
  color: #bca064;
  line-height: 20px;
}

/*-----ページャー02---------*/
.infopage_h {
  margin: 0 16px;
  min-height: 420px;
}

.post__pagination {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  max-height: 836px;
  margin-bottom: 50px;
  overflow: hidden;
  margin-right: 16px;
}

.post__pagination__left, .post__pagination__right {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 40px;
  border-radius: 20px;
}

.post__pagination__archive {
  text-align: center;
  width: 120px;
  padding: 4px 0 6px;
  margin: auto;
}
.post__pagination__archive a {
  margin-top: 32px;
  background: #a97038;
  top: 44px;
  z-index: 1999;
  font-weight: 700;
  color: #fff;
  font-size: 1.4rem;
  padding: 16px 0;
  border-radius: 15px;
}

.post__pagination__left {
  float: left;
}

.post__pagination__right {
  float: right;
}

.post__pagination__left > a, .post__pagination__right > a {
  display: block;
  position: relative;
}

.post__pagination__left__img, .post__pagination__right__img {
  display: block;
}

.post__pagination__left__img > img, .post__pagination__right__img > img {
  width: 100%;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.post__pagination__left a, .post__pagination__right a {
  z-index: 1999;
  font-family: "M PLUS 1p", sans-serif;
  transform: rotate(0.05deg);
  font-weight: 700;
  background-color: #a97038;
  padding: 6px 16px 4px;
  border-radius: 15px;
  color: #fff;
  font-size: 1.4rem;
}

.post__pagination__left__text {
  left: 50px;
}

.post__pagination__right__text {
  right: 50px;
}

/*----------------------
::::::::
tab
::::::::
-----------------------*/
@media screen and (max-width: 1028px) {
  .pc_non, .tab_br {
    display: inline;
  }
  .tab_non, .header_side, .saiyou_link_box {
    display: none !important;
  }
  /*スクロール*/
  #woman, #man, #voice {
    padding-top: 80px;
    margin-top: -80px;
  }
  /*----------------------
  common/ハンバーガー
  -----------------------*/
  /*ここから下がハンバーガーメニューのスタイル*/
  #header {
    height: 70px;
  }
  #header .header_logo h1 {
    width: auto;
  }
  #header .header_logo h1 img {
    width: auto;
    height: 60px;
  }
  .gnavi__pc-style {
    display: none;
  }
  .gnavi__sp-style {
    display: block;
  }
  /*メニューボタン　展開前*/
  .menu-btn {
    display: block;
    position: fixed;
    z-index: 102;
    right: 24px;
    top: 8px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    text-align: center;
    pointer-events: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  .menu-btn span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #ffa42c;
    box-shadow: 0 0 5px #ffa42c; /* 光彩の設定 */
    transition: 0.3s ease-in-out;
  }
  .menu-btn span:nth-of-type(1) {
    top: 10px;
  }
  .menu-btn span:nth-of-type(2) {
    top: 20px;
  }
  .menu-btn span:nth-of-type(3) {
    top: 30px;
  }
  /*メニューボタン　展開後*/
  .menu-btn.active span:nth-child(1) {
    top: 16px;
    left: 6px;
    background: #ffa42c;
    transform: rotate(-45deg);
  }
  .menu-btn.active span:nth-child(2), .menu-btn.active span:nth-child(3) {
    top: 16px;
    background: #ffa42c;
    transform: rotate(45deg);
  }
  /*スマホ用のメニュー*/
  .gnavi__sp-style {
    position: fixed;
    z-index: 2;
    padding: 0;
    top: 70px;
    left: -100vw;
    text-align: center;
    width: 100vw;
    height: calc(100vh - 110px) !important;
    transition: 0.6s ease;
    display: flex;
    background: url(img/common/explanation.png) center right/cover, linear-gradient(to bottom, #000, #000, #000, rgba(0, 0, 0, 0.4588235294)) !important;
    background-repeat: no-repeat;
    opacity: 0;
  }
  .gnavi__sp-style {
    justify-content: flex-start;
    height: 600px;
  }
  #header .header_top_out .gnavi .gnavi_menu .header-dropmenu .menu_text a, #header .header_top_out .gnavi .gnavi_menu .header-dropmenu .menu_text p {
    color: #e0d593;
    text-shadow: 0 0 5px #ffa42c;
  }
  .gnavi__sp-style ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .gnavi__sp-style ul li {
    list-style-type: none;
    padding: 16px 0;
    margin: 0 auto 4px !important;
    width: 200px;
    transition: 0.4s all;
    border-bottom: 3px solid transparent; /* ボトムボーダーを透明に設定 */
    background: linear-gradient(to right, #000, #9f6, #000); /* グラデーションを背景に設定 */
    background-position: 0 100%; /* グラデーションを下部に設定 */
    background-size: 100% 3px; /* グラデーションのサイズを指定 */
    background-repeat: no-repeat; /* 背景を繰り返し表示しないように設定 */
  }
  .gnavi__sp-style ul li:last-child {
    background: none;
  }
  .gnavi__sp-style ul li:last-of-type {
    padding-bottom: 0;
  }
  .gnavi__sp-style ul li a {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #e0d593;
    text-shadow: 0 0 5px #ffa42c; /* 光彩の設定 */
  }
  .gnavi__sp-style.active {
    left: 0;
    opacity: 1;
  }
  .menu_text_in {
    width: 180px;
  }
  .header_top_out .gnavi .gnavi_menu .header-dropmenu .menu_text a, .header_top_out .gnavi .gnavi_menu .header-dropmenu .menu_text p {
    font-size: 1.8rem !important;
  }
  .header_top_out .gnavi .gnavi_menu .header-dropmenu .menu_text .menu_text_in a, .header_top_out .gnavi .gnavi_menu .header-dropmenu .menu_text .menu_text_in p {
    font-size: 1.4rem !important;
  }
  #header .header_top_out .gnavi .gnavi_menu .header-dropmenu .menu_text ul .menu_text_in {
    padding: 0;
    margin: 0 auto;
  }
  /*-------------------------
  アコーディオン
  -------------------------*/
  ul.header-dropmenu li ul {
    z-index: 999;
  }
  ul.header-dropmenu .menu_text ul {
    background-color: #000;
  }
  ul.header-dropmenu .menu_text ul .menu_text_in a {
    text-shadow: 0 0 5px #ffa42c; /* 光彩の設定 */
    padding: 0 !important;
    border: none;
  }
  /*-------------------------
  common
  -------------------------*/
  footer {
    margin-bottom: 40px;
  }
  footer .footer_box_out {
    width: 340px;
  }
  .header_footer__out2_out {
    position: fixed;
    bottom: 0;
    z-index: 4;
    background-image: url(img/common/footer_tel.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header_footer__out2_out .header_footer__out2 a {
    color: #000;
    font-weight: 700;
    font-size: 2rem;
    transition: 0.5s;
  }
  .header_footer__out2_out .header_footer__out2 a svg {
    margin-right: 8px;
  }
  .header_footer__out2_out .header_footer__out2 a:hover {
    text-shadow: 0 0 5px #ffa42c; /* 光彩の設定 */
  }
  /*-------------------------
  toppage
  -------------------------*/
  .hero {
    margin-top: 70px;
  }
  .swiper-slide {
    margin-top: 70px;
  }
  .news_box_out h2 {
    margin-top: 48px;
  }
  .news_box_out {
    width: calc(100% - 32px);
    margin: auto;
  }
  .greeting_box_out .greeting_box {
    max-width: 520px;
  }
  .greeting_box_out .greeting_box .child_1 {
    order: 1;
  }
  .greeting_box_out .greeting_box .child_2 {
    order: 2;
  }
  .greeting_box_out .greeting_box .child_3 {
    order: 4;
  }
  .greeting_box_out .greeting_box .child_4 {
    order: 3;
  }
  .explanation_box {
    padding: 32px 0 72px;
  }
  .explanation_box .explanation_in_box {
    height: 650px;
  }
  .explanation_box .explanation_in_box .img01, .explanation_box .explanation_in_box .img02 {
    max-width: 300px;
    width: 100%;
    height: 250px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .explanation_box .explanation_in_box .img01 img, .explanation_box .explanation_in_box .img02 img {
    max-width: 300px;
    width: 100%;
    height: 250px;
  }
  /*----------------------
  ::::::::cast
  -----------------------*/
  .headline {
    margin-top: 70px;
  }
  .cast_box_out .cast_box .cast_box_in {
    width: calc(100% - 124px);
    flex-direction: column;
    align-items: center;
    row-gap: 48px;
  }
  /*----------------------
  ::::::::price
  -----------------------*/
  .price_box_out .price_box_table {
    width: calc(100% - 32px);
  }
  .price_box_out .inside .inside_img {
    max-width: 595px;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .price_box_out .inside .inside_img li img {
    width: calc(100% - 32px);
  }
  /*----------------------
  ::::::::recruit
  -----------------------*/
  .recruit_woman_box_out, .recruit_man_box_out {
    width: calc(100% - 32px);
  }
  .recruit_woman_box_out .salary, .recruit_man_box_out .salary {
    width: calc(100% - 32px);
  }
  .recruit_woman_box_out .salary p, .recruit_man_box_out .salary p {
    width: calc(100% - 32px);
  }
  .recruit_woman_box_out .recruit_table, .recruit_man_box_out .recruit_table {
    width: calc(100% - 32px);
  }
  .voice_box_out .voice_box {
    width: calc(100% - 32px);
    flex-direction: column;
  }
  .voice_box_out .voice_box .img_box, .voice_box_out .voice_box .text_box {
    width: calc(100% - 32px);
    padding: 0;
    margin: 16px auto 0;
  }
  /*----------------------
  ::::::::
  sp
  ::::::::
  -----------------------*/
}
@media screen and (max-width: 1028px) and (max-width: 640px) {
  .tab_pc_non {
    display: inline;
  }
  .sp_non {
    display: none;
  }
  .sp_br {
    display: inline;
  }
  header .header_top_out .gnavi .gnavi_menu ul .menu_text {
    margin: 3px auto 14px;
  }
  /*-------------------------
  common
  -------------------------*/
  /*-------------------------
  top
  -------------------------*/
  .swiper-slide img {
    width: 100vw;
    height: 60vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .news_box_out .banner_box ul li a {
    flex-direction: column;
  }
  .news_box_out .banner_box ul li a .title {
    padding: 16px 0 16px 0;
  }
  .top-common_box h2::before {
    display: none;
  }
  .top-common_box h2::after {
    display: none;
  }
  .greeting_box_out .greeting_box .text, .greeting_box_out .greeting_box .img {
    width: calc(100% - 32px);
    margin: auto;
  }
  .explanation_box h2 img {
    width: 300px;
    height: auto;
  }
  .recruit_box_out .recruit_text p {
    font-size: 1.8rem;
  }
  .recruit_box_out .recruit_box {
    flex-direction: column;
  }
  /*----------------------
  ::::::::cast
  -----------------------*/
  .cast_box_out .cast_box .cast_box_in .cast_img {
    text-align: center;
  }
  .cast_box_out .cast_box .cast_box_in .cast_img img {
    width: 248px;
    height: 248px;
  }
  .cast_box_out .cast_box .cast_box_in .cast_img h3 {
    width: 100%;
    height: auto;
    font-size: 3rem;
    background-size: 248px;
  }
  /*----------------------
  ::::::::price
  -----------------------*/
  .price_box_table th,
  .price_box_table td {
    display: block;
    text-align: left;
  }
  .price_box_out .price_box_table tr th {
    width: 100%;
  }
  .price_box_out .price_box_table tr th p {
    padding: 16px 0;
  }
  .price_box_out .price_box_table tr td .drink {
    padding-left: 80px;
    padding-right: 0;
  }
  .price_box_out .inside {
    background-position: top 70px center, bottom 70px center;
  }
  /*----------------------
  ::::::::recruit
  -----------------------*/
  .recruit_headline {
    background-position: center;
  }
  .recruit_woman_box_out .recruit_table tr th, .recruit_man_box_out .recruit_table tr th {
    width: calc(100% - 32px);
    padding: 16px;
    display: block;
    text-align: center;
  }
  .recruit_woman_box_out .recruit_table tr td, .recruit_man_box_out .recruit_table tr td {
    display: block;
    text-align: left;
  }
  .recruit_woman_box_out .recruit_table tr td img, .recruit_man_box_out .recruit_table tr td img {
    width: 100%;
    height: auto;
  }
  .recruit_woman_box_out .massage_box .tel_box {
    width: calc(100% - 32px);
  }
  .recruit_woman_box_out .massage_box .tel_box .pm {
    border-radius: 22px 22px 0 0;
  }
  .recruit_woman_box_out .massage_box .tel_box .tel {
    border-radius: 0 0 22px 22px;
  }
  .voice_box_out h3::before,
  .voice_box_out h3::after {
    width: 0;
  }
  /*----------------------
  ::single
  -----------------------*/
  .single_box_out .single_box .single_main {
    margin-bottom: 64px;
  }
  .single_box_out .single_box .single_box_in {
    flex-direction: column;
  }
  .single_box_out .single_box .single_info {
    margin: auto;
  }
  .archive_box {
    flex-direction: column;
  }
  .single_box_out .single_box .single_main img {
    width: 100% !important;
  }
  /*---------*/
}/*# sourceMappingURL=style.css.map */