@import url("reset.css");

.dosp {
  display: none!important;
}

/*====================================
  共通設定
====================================*/

body {
  background: url("/recruit/img/recruit_bg.webp") #fdfdfd;
  background-repeat: repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center top;
  color: #111;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  border: none;
}

a {
  color: #833A19;
  text-decoration: none;
}

div:after, ul:after, dl:after, .clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* a:hover {
  color: #ff7cad;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
} */

h1{
  text-align: center;
}

header h1{
  background-color: #ffe9f5;
}

.shop_title {
  font-size: 17px;
  font-weight: bold;
  line-height: 25px;
  margin-bottom: 1.5%;
}
.shop_text {
  font-size: 14px;
  line-height: 29px;
}

.content-title {
  max-height: 100%;
}
section h2 {
  text-align: center;
  font-weight: bold;
  font-size: 25px;
  padding: .5% 0;
}
section h2 span {
  padding: 0 85px;
  font-weight: normal;
  font-size: inherit;
}

/*====================================
  header.php ヘッダー
====================================*/
header {
  width: 100%;
  background-color: #fff;
  z-index: 1000;
}

header .inner {
  background-color: #ffffff;
}

#headLogo {
  position: relative;
  z-index: 9998;
  width: 200px;
  margin: auto;
}

.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.sticky-nav #headLogo,
.sticky-nav > h1 {
  display: none;
}

.sticky-nav .main-nav {
  padding-top: 0;
}

body.has-sticky-nav {
  padding-top: 60px; /* ナビの高さに合わせて調整 */
}

.main-nav {
  width: 100%;
  background-color: #ffe9f5;
}

.nav-inner {
  display: flex;
  align-items: center;
  width: 1100px;
  margin: 0 auto;
}


.nav-inner .shopinfo{
  width: auto;
  min-width: 87px;
  max-width: 242px;
  margin: 2px 10px 0 10px;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.nav-inner .shopinfo h1{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
  background-color: none;
}

#nav {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

#nav li {
  text-align: center;
  border-left: 1px solid #ff7cad;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ff7cad;
}

#nav li a {
  color: #ff7cad;
  font-weight: bold;
  font-size: 13px;
  width: 90px;
}
#nav li:hover {
  color: #ffffff;
  background-color: #ff7cad;
}

#nav li:hover a {
  color: #ffffff;
}

#nav li:nth-child(5) {
  border-right: 1px solid #ff7cad;
}

.right_menu{
  margin-left: auto;
  padding: 13px 0;
  height: 29px;
}

.right_menu a {
  color: #fff;
  padding: 6px 9px;
  margin-right: 6px;
  display: block;
  float: left;
  transition: .2s;
  -ms-transition: .2s;
  -webkit-transition: .2s;
}

.right_menu .guideline {
  background: #fec979;
}
.right_menu .guideline:hover {
  color: #fec979;
  background: #fff;
  transition: .2s;
  -ms-transition: .2s;
  -webkit-transition: .2s;
}

.right_menu .question {
  background: #ff7c7d;
}

.right_menu .question:hover {
  color: #ff7c7d;
  background: #fff;
  transition: .2s;
  -ms-transition: .2s;
  -webkit-transition: .2s;
}



/* 応募・質問のポップアップ
-----------------*/
/* ポップアップの基本スタイル */
.popop {
  display: none; /* 初期状態では非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* 半透明の背景 */
  z-index: 9999; /* 他の要素より前面に */
  justify-content: center;
  align-items: center;
}

/* アクティブ時の表示設定 */
.popop.active {
  display: flex;
}

/* ポップアップのコンテンツエリア */
.pop_wrap {
  background-color: white;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  padding: 25px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* タイトルスタイル */
.pop_title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 2px solid #ff7cad;
  padding-bottom: 10px;
}

/* 閉じるボタン */
.pop_close {
  position: absolute;
  top: 10px;           /* ポップアップ内部の上から10pxの位置 */
  right: 10px;         /* ポップアップ内部の右から10pxの位置 */
  font-size: 24px;
  color: #333;         /* 色を暗めに変更 */
  background-color: transparent; /* 背景を透明に */
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  z-index: 10000;      /* 十分高いz-indexを設定 */
}

/* アイコンのスタイル調整 */
.pop_close i {
  font-size: 28px;
}



.pop_close:hover {
  transform: scale(1.1);
}

/* SNS部分のスタイル */
.pop_info {
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.snsid {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.sns_icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.snstxt {
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.sns-link-open {
  color: #ff7cad;
  text-decoration: none;
  font-weight: bold;
}

.sns-link-open:hover {
  text-decoration: underline;
}

/* 電話部分のスタイル */
.connect1 {
  display: flex;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.connect_title {
  background-color: #ff7cad;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  margin-right: 15px;
  font-size: 14px;
}

.connect_list {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

/* アニメーション */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.popop.active {
  animation: fadeIn 0.3s ease-in-out;
}

/*====================================
  footer.php フッター
====================================*/
footer {
  background-color: #f8f8f8;
  padding: 40px 0 20px;
  border-top: 1px solid #e0e0e0;
  margin-top: 50px;
}

/* フッターメニューのスタイル */
#footerMenu {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

#footerMenu li {
  margin: 0 15px;
}

#footerMenu li a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transition: color 0.3s ease;
}

#footerMenu li a:hover {
  color: #ff7cad;
}

/* フッターのキャッチ画像 */
#footerCatch {
  text-align: center;
  margin-bottom: 30px;
}

#footerCatch img {
  max-width: 200px;
  height: auto;
}

/* フッターのコピーライトテキスト */
#footerText {
  text-align: center;
  font-size: 12px;
  color: #777;
  margin-top: 20px;
}

#footerText a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

#footerText a:hover {
  color: #ff7cad;
}


/*====================================
  index.php　トップページ
====================================*/
#mainContents {
  position: relative;
}

.main_section {
  width: 100%;
  background: rgba(255,255,255,1);
}

.main_section .main_image {
  /* width: 1100px; */
  /* overflow: hidden; */
  /* margin: auto; */
}

.main_section .main_image img {
  width: 100%;
}


/* メッセージ
-----------------*/
#widget1.content-block {
  background-color: rgba(255,255,255,0.8) !important;
}

.main_catch {
  background: #ffffff none repeat scroll 0 0;
  width: 96%;
  padding: 2%;
  position: relative;
}

.main_catch .main_text {
  margin: 0 auto;
  width: 100%;
        max-width: 1100px;
}

#widget1 .content-title {
  color: #333333 !important;
}

.main_catch .main_text p {
  width: 100%;
  white-space: normal;
  word-break: break-all;
  overflow: hidden;
  max-height: 100%;
}

#widget1 .main-text {
  color: #333333 !important;
}

/* 特典
-----------------*/
.privilege_block {
  width: 75%;
  max-width: 860px;
  margin: 1% auto;
}
.privilege_block .privilegeContents {
  margin-top: 5px;
}


.privilege_block .privilegeItem .itemMain .title {
  background-color: #ff7cad;
  color: #fff;
  border-radius: 3px;
  font-size: 16px;
  font-weight: bold;
  height: 20px;
  line-height: 20px;
  padding: 10px;
  text-align: left;
}

.privilege_block .privilegeItem .itemMain.color1 .title {
  background-color: #FF8C00;
}

.privilege_block .privilegeItem .itemMain .main_img {
  margin: 15px auto;
  padding: 0 20px;
  text-align: center;
}

.privilege_block .privilegeItem .itemMain .main_box {
  border-radius: 2px;
  height: 20px;
  line-height: 20px;
  margin: 0 20px;
  padding: 5px 10px;
}

.privilege_block .privilegeItem .itemMain.color1 .main_box {
  background-color: #FF8C00;
}

.privilege_block .privilegeItem .itemMain .main_tbox {
  margin: 0 20px 20px;
  padding: 5px 15px;
  border: 1px solid #E6EDEF;
  border-top: none;
  background-color: #FFFFFF;
}

.privilege_block .privilegeItem .itemMain .main_txt {
  word-wrap: break-word;
  word-break: break-all;
  padding-top: 10px;
}

.privilege_block .privilegeItem .itemMain .salary_box {
  margin: 10px 20px 20px;
}
.privilege_block .privilegeItem .itemMain .salary_box dl dt {
  background: #66aaff none repeat scroll 0 0;
  border-radius: 3px 3px 0 0;
  color: #fff;
  font-size: 13px;
  height: 16px;
  line-height: 16px;
  padding: 3px 0 2px;
  text-align: center;
  width: 90px;
}

.privilege_block .privilegeItem .itemMain .salary_box dl dd {
  background: #ccddff none repeat scroll 0 0;
  border-top: medium none;
  margin-left: 0;
  padding: 3px 4px;
  float: left;
}

.privilege_block .privilegeItem .itemMain .salary_box .salary_tbl {
  border-collapse: collapse;
  border-left: 1px solid #66aaff;
  border-spacing: 0;
  border-top: 1px solid #66aaff;
  font-size: 14px;
  table-layout: fixed;
  width: 100%;
}

.privilege_block .privilegeItem .itemMain .salary_box .salary_tbl tr th {
  background-color: #66aaff;
  border-bottom: 1px solid #66aaff;
  border-right: 1px solid #66aaff;
  padding: 1px;
  width: 16%;
  height: 38px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  box-shadow: 0 0 0 1px #fff inset;
}

.privilege_block .privilegeItem .itemMain .salary_box .salary_tbl tr td {
  background: #fff none repeat scroll 0 0;
  border-bottom: 1px solid #66aaff;
  border-right: 1px solid #66aaff;
  text-align: center;
  vertical-align: middle;
  width: 16%;
}

.privilege_block .privilegeItem .itemMain .info_box {
  margin: 20px 10px;
  background-color: #FFFFFF;
}

.privilege_block .privilegeItem .itemMain.color1 .info_box .info_tbl1 tr th {
  background-color: #FFF9E8;
  border-top: 1px solid #E6EDEF;
  border-left: 1px solid #E6EDEF;
  border-right: 1px solid #E6EDEF;
  border-bottom: none;
  padding: 1px 2px 2px 1px;
  width: 20%;
  height: 100%;
  position: relative;
  text-align: center;
  vertical-align: middle;
  box-shadow: 0 0 0 1px #fff inset;
}

.privilege_block .privilegeItem .itemMain .info_box .info_tbl1 tr .contents {
  background-color: #fff;
  border-top: 1px solid #E6EDEF;
  vertical-align: top;
  padding: 10px;
  width: 50%;
}

.privilege_block .privilegeItem .itemMain.color1 .info_box .info_tbl1 tr .contents {
  border-top: 1px solid #E6EDEF;
}

.privilege_block .privilegeItem .itemMain.color1 .info_box .info_tbl1 tr td:last-child {
  border-right: 1px solid #E6EDEF;
}

.privilege_block .privilegeItem .itemMain.color1 .info_box .info_tbl1 tr .info_img {
  border-top: 1px solid #E6EDEF;
}
.privilege_block .privilegeItem .itemMain.color1 .info_box .info_tbl1 tr:last-child th {
  border-bottom: 1px solid #E6EDEF;
}

.privilege_block .privilegeItem .itemMain.color1 .info_box .info_tbl1 tr:last-child .contents {
  border-bottom: 1px solid #E6EDEF;
}

.privilege_block .privilegeItem .itemMain.color1 .info_box .info_tbl1 tr:last-child .info_img {
  border-bottom: 1px solid #E6EDEF;
}

/* 募集要項
-----------------*/
#widget6.content-block {
  background-color: rgba(238,238,238,0.8) !important;
}
section.recruit {
  background: rgba(238,238,238,.8);
  width: 96%;
  padding: 2%;
}
#widget6 .content-title {
  color: #333333 !important;
}

.recruit_item {
  max-width: 1280px;
  margin: 1% auto;
}

.recruit_slider{
  width:75%;
  margin:0 auto;
  text-align:center;
}
.recruit_slider_item{
  position:relative;
  padding-top:15px;
  overflow:hidden;
}
.recruit_slider_item img{
  width:90%;
  margin:0 5% 5%;
}
.recruit_slider_item .slide_mask{
  position: absolute;
  top: 15px;
  left: 29px;
  width: 90%;
  height: 223px;
  background: rgba(238,238,238,.5);
}
.recruit_slider_item.slick-current .slide_mask{
  display:none;
}

.recruit_prev, .recruit_next {
  width: 50px !important;
  height: 50px !important;
  position: absolute;
  top: 101px;
  color: transparent;
  cursor: pointer;
  z-index: 100;
}

.recruit_prev {
  left: 160px;
  background: url(/recruit/img/arrow_prev.webp) no-repeat;
}

.recruit_next {
  right: 160px;
  background: url(/recruit/img/arrow_next.webp) no-repeat;
}



#widget6 .main-text {
  color: #333333 !important;
}
.recruit_text {
  width: 75%;
  margin: 0 auto;
}

#widget6 .recruit_text .text_list {
  border-color: #999999 !important;
}
.text_list {
  border-bottom: 1px solid #999;
  padding: 12px 0 10px;
}

.recruit_text .recruit_subtitle {
  width: 20%;
  float: left;
  font-size: 14px;
  font-weight: bold;
  line-height: 25px;
}
.recruit_text .recruit_comment {
  width: 80%;
  float: left;
  font-size: 13px;
  line-height: 25px;
}
.recruit_text .recruit_comment .telicn {
  position: relative;
  height: 40px;
  width: auto;
}

#widget6 .main-link {
  color: #833A19 !important;
}

.lcdata {
  width: 100%;
  margin: 30px 0px 0px 0px;
}


.lcdata th {
  background-color: #ffe5f2;
  text-align: left;
  padding: 3px 13px 5px;
  border: 2px solid #ffe5f2;
}

.lcdata th i {
  position: relative;
  top: 2px;
  font-size: 20px;
  color: #d7231e;
}
.lcdata th span {
  margin-left: 10px;
  color: #b11856;
  font-weight: bold;
}

.lcdata td {
  padding: 7px 13px 5px;
  background-color: #fff;
  border: 2px solid #ffe5f2;
  color: #333;
}

.recruit_footer_btn {
  width: 35%;
  margin: 2.3% auto 0;
  text-align: center;
}

.recruit_footer_btn a {
  display: block;
  color: #fff;
  background: #db4d4c;
  text-decoration: none;
  padding: 15px 0;
  transition: .2s;
  -ms-transition: .2s;
  -webkit-transition: .2s;
}

.recruit_footer_btn a .icon-circle-right {
  padding-right: 20px;
  font-size: 14px;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
}

/* 応募方法
-----------------*/
#widget9-1.content-block {
  background-color: rgba(238,238,238,0.8) !important;
}

#widget9-1 .content-title {
  color: #333333 !important;
}

#widget9-1 .main-text {
  color: #333333 !important;
}

.free_text {
  max-width: 1000px;
  margin: 1% auto;
  font-size: 13px;
  line-height: 25px;
}

.work-text {
  max-height: 100%;
  width: 100%;
}

/* 応募方法コンテナ */
.application-methods {
  display: flex;
  justify-content: center;
  margin: 30px auto;
  max-width: 1000px; /* コンテナに最大幅を設定 */
  width: 100%;
}

/* 各応募方法のカード */
.application-method {
  flex: 0 0 260px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 25px;
  margin: 0 15px; /* 左右の余白 */
  min-height: 240px;
}

.application-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* アイコン部分 */
.method-icon {
  text-align: center;
  margin-bottom: 20px;
}

.method-icon i {
  font-size: 42px;
  color: #ff7cad;
}

/* コンテンツ部分 */
.method-content {
  text-align: center;
}

.method-title {
  color: #333;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 10px;
}

.method-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #ff7cad;
}

.method-description {
  color: #666;
  margin-bottom: 12px;
  font-size: 14px;
}


.phone-numbers {
  text-align: center;
  margin-bottom: 10px;
}

.phone-number {
  margin-bottom: 8px;
}

.number-label {
  font-size: 13px;
  color: #666;
  margin-bottom: 2px;
}

.method-contact {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}


.method-contact {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}

.method-contact a {
  color: #005EEB;
  text-decoration: none;
  transition: color 0.3s ease;
}


.method-contact a:hover {
  color: #ff7cad;
}

.method-note {
  font-size: 12px;
  color: #777;
  font-style: italic;
}

/* フッターテキスト */
.application-footer {
  text-align: center;
  margin-top: 15px;
  font-size: 15px;
  color: #555;
  font-weight: bold;
}

.application-footer p {
  font-size: 20px;
  border-bottom: 2px solid #ff7cad;
}

@media (max-width: 1000px) {
  .application-methods {
    flex-wrap: wrap;
  }
  
  .application-method {
    width: calc(50% - 20px);
    margin-bottom: 20px;
  }
}



/* 先輩ボイス
-----------------*/
#widget4.content-block {
  background-color: rgba(238,238,238,0.8) !important;
}

section.senior {
  background: rgba(246,246,246,1);
  width: 96%;
  padding: 2%;
}


#widget4 .content-title {
  color: #333333 !important;
}

.senior_list {
  position: relative;
  width: 100%;
  margin: 1% auto;
}
.senior_comment {
  position: relative;
  width: 900px;
  margin: 0 auto;
  height: 190px;
}
#widget4 .balloon {
  background-color: #F6F6F6 !important;
}
#widget4 .line {
  border-color: #FF7DAE !important;
}

.senior_name {
  color: #333;
  position: absolute;
  height: 124px;
  width: 826px;
  background: #fff;
  border: 2px solid #ff7dae;
  border-radius: 25px;
  padding: 30px 35px;
  margin-top: 10px;
  display: block;
}

.senior_name p:first-of-type {
  color: #333;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.senior_name p:nth-of-type(2) {
  line-height: 20px;
  max-width: 900px;
  font-size: 13px;
}

#widget4 .name-text {
  color: #333333 !important;
}

#widget4 .main-text {
  color: #333333 !important;
}

.slide_item {
  position: relative;
  margin: 25px 30px 0;
  width: 165px;
  float: left;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
}
.rect {
  left: 60px;
  top: -18px;
  position: absolute;
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-top: 20px solid #ff7dae;
}

#widget4 .balloon-line {
  border-color: #FF7DAE rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) !important;
}


.slide_item a {
  display: block;
  width: 160px;
  height: 160px;
  margin: 2% auto;
  overflow: hidden;
  position: relative;
  border-radius: 100px !important;
}
.voice_img_base {
  display: table;
  width: 100%;
  height: 160px;
}

.voice_img_box {
  display: table-cell;
  vertical-align: middle;
}

.slide_item .item_mask {
  position: absolute;
  width: 160px;
  height: 160px;
  top: 0;
  left: 0;
  background: rgba(255,255,255,.3);
  border-radius: 100px;
  opacity: 0;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}

.slide_item a img {
  width: 100%;
}

#widget4 .balloon-bg {
  border-color: #F6F6F6 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) !important;
}

.sub_rect {
  left: 60px;
  top: -21px;
  position: absolute;
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-top: 20px solid #fff;
}

.voice_list {
  width: 900px;
  margin: 0 auto;
}


/* 求人ニュース
-----------------*/
#widget3.content-block {
  background-color: rgba(255,255,255,0.8) !important;
}
section.job_blog {
  width: 96%;
  padding: 2%;
  background: rgba(255,255,255,1);
}

.blog_list {
  max-width: 1280px;
  margin: 1% auto;
}

.blog_list .blog_item {
  width: 19%;
  padding: 0 .5%;
  float: left;
}

.blog_item .blog_img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.blog_item .blog_img .img_table {
  display: table;
  height: 300px;
  width: 100%;
}

.blog_item .blog_img .img_cell {
  position: relative;
  max-height: 300px;
  display: table-cell;
  vertical-align: top;
}

.blog_item .blog_img .img_box {
  position: relative;
}

.blog_img .item_mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,.3);
  opacity: 0;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}

.blog_item .blog_img img {
  width: 100%;
}

#widget3 .main-text {
  color: #333333 !important;
}

.blog_text .blog_store {
  font-size: 11px;
  padding-top: 10px;
}


.blog_text .blog_title {
  font-size: 16px;
  font-weight: bold;
  padding: 5px 0 4px;
  line-height: 25px;
}

.blog_text .blog_comment {
  font-size: 13px;
  padding: 0 0 7px;
  line-height: 25px;
}






/* 当店のポイント
-----------------*/
#widget7.content-block {
  background-color: rgba(255,255,255,0.8) !important;
}

#widget7 .content-title {
  color: #333333 !important;
}

section.point .point_item {
  max-width: 1000px;
  margin: 1% auto;
  line-height: 25px;
}

#widget7 .main-text {
  color: #333333 !important;
}
.point_item .point_list {
  margin-bottom: 40px;
}

.point_free {
  max-width: 1100px;
  margin: 1% auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.point_free .free_item {
  width: 30%;
  margin-bottom: 20px;
}

.free_item {
  position: relative;
}

.free_item a {
  display: block;
  position: relative;
  text-align: center;
  padding: 15px 10px;
  border-radius: 5px;
  background-color: #ff7cad;
  color: white;
  box-shadow: 0 3px 5px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  border: 2px solid #ff7cad;
}
.free_item a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  background-color: white;
  color: #ff7cad;
}

.free_item p {
  font-size: 16px;
  font-weight: bold;
  line-height: 25px;
  margin: 0;
  transition: all 0.3s ease;
}

.free_item a:hover p {
  color: #ff7cad;
}


/* フリースペース2
-----------------*/
#widget9-2.content-block {
  background-color: rgba(255,255,255,0.8) !important;
}

section.freespace {
  background: rgba(238,238,238,0);
  width: 96%;
  padding: 2%;
}

#widget9-2 .content-title {
  color: #333333 !important;
}

#widget9-2 .main-text {
  color: #333333 !important;
}
.work-text.main_text img {
  display: block;
  margin: auto;
}

/* Q&A　よくある質問
-----------------*/
#widget10-1.content-block {
  background-color: rgba(238,238,238,0.8) !important;
}

section.dx_item_qa {
  background: rgba(238,238,238,0);
  width: 96%;
  padding: 2%;
}

#widget10-1 .content-title {
  color: #333333 !important;
}

section.dx_item_qa .dx_item_qa_text {
  max-width: 900px;
  margin: 2% auto;
  font-size: 13px;
  line-height: 25px;
  width: 100%;
}
#widget10-1 .recruit_text .text_list {
  border-color: #999999 !important;
}

.text_list {
  border-bottom: 1px solid #999;
  padding: 12px 0 10px;
}
table {
  border-collapse: collapse;
}

.q_text {
  font-size: 16px;
  font-weight: bold;
  vertical-align: baseline;
  line-height: 1.6;
}

.a_text {
  font-size: 16px;
  line-height: 1.7;
  vertical-align: baseline;
}
section.dx_item_qa table tr {
  padding-left: 20px;
  display: block;
}


section.dx_item_qa table tr td {
  padding: 0px 15px 35px 0px;
  vertical-align: baseline;
}
section.dx_item_qa table tr td {
  padding: 0px 15px 35px 0px;
  vertical-align: baseline;
}

.q_icon {
  width: 40px;
  height: 40px;
  margin: 0;
  border-radius: 50%;
  background: black;
  line-height: 40px;
  text-align: center;
  display: block;
  color: white;
  font-size: 22px;
}

#widget10-1 .q_icon_text {
  color: #EEEEEE !important;
}

#widget10-1 .q_icon {
  background: #333333 !important;
}

.a_icon {
  width: 40px;
  height: 40px;
  margin: 0;
  border-radius: 50%;
  background: #FF7CAD;
  line-height: 40px;
  text-align: center;
  display: block;
  font-size: 22px;
}
#widget10-1 .head-line {
  color: #FFFFFF !important;
}

#widget10-1 .head-line {
  background-color: #FF7CAD !important;
}


/* 続きを見る */
#widget10-1 .read-more {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.read-more + .more-btn-wrap {
  bottom: 0;
  display: none;
  padding: 13px 0 0;
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.more_btn_l {
  display: block;
  position: relative;
  text-align: center;
  padding: 15px 10px;
  border-radius: 5px;
  background-color: #ff7cad;
  color: white;
  box-shadow: 0 3px 5px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  border: 2px solid #ff7cad;
  width: 35%;
  margin: 0 auto;
}
.more_btn_l:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  background-color: white;
}

.more_btn_l span{
  color: #ffffff;
}

.more_btn_l:hover span{
  color: #ff7cad;
}


/* 続きを見るボタンを最初から表示 */
#widget10-1 .more-btn-wrap {
  display: block;
}

/* ボタンのホバー効果 */
#widget10-1 .more_btn_l:hover {
  opacity: 0.8;
  cursor: pointer;
}


/* グループ店舗
-----------------*/
.group_shop {
  width: 1200px;
  margin: 0 auto;
}

.group_shop.content-block > .group_shop > .group_shop_list.slides {
  display: flex;
  justify-content: center;
}

.group_shop_list li {
  position: relative;
  float: left;
  margin: 0;
  width: 180px;
  padding: 0 10px;
}

.group_shop_list li a {
  display: block;
  position: relative;
  width: 180px;
}

.group_shop_list .group_img {
  height: 180px;
  width: 100%;
  overflow: hidden;
}

.group_shop_list .group_img .img_table {
  display: table;
  height: 180px;
  width: 100%;
}

.group_shop_list .group_img .img_cell {
  position: relative;
  max-height: 180px;
  display: table-cell;
  vertical-align: middle;
}


.group_shop_list .group_img .img_box {
  position: relative;
}

.group_shop_list li .item_mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,.3);
  opacity: 0;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}


.group_shop_list .group_img img {
  height: auto;
  width: 100%;
}

#widget8 .main-link {
  color: #333333 !important;
}

.group_shop_list li > p:first-of-type {
  text-align: center;
  padding-top: 5px;
}

#widget8 .main-text {
  color: #333333 !important;
}

.group_shop_list li > p:last-of-type {
  text-align: center;
  font-size: 11px;
}



/* お店紹介
-----------------*/
#widget5.content-block {
  background-color: rgba(255,255,255,0.8) !important;
}

section.introduction {
  background: rgba(255,233,245,.8);
  width: 96%;
  padding: 2%;
}

.intro_item {
  max-width: 1280px;
  margin: 1% auto;
}


.intro_top {
  margin-bottom: 35px;
  margin-top: 15px;
  height: auto !important;
}

.intro_top .top_left {
  float: left;
  width: 240px;
  margin-right: 35px;
  height: auto;
  overflow: hidden;
}

.intro_top .top_left img {
  width: 100%;
}
.intro_top .top_right {
  float: left;
  width: calc(100% - 275px);
  height: 100%;
  position: relative;
}
#widget5 .main-text {
  color: #333333 !important;
}
.intro_top .top_right p {
  font-size: 13px;
  line-height: 25px;
}

.intro_bottom {
  display: flex;
  justify-content: space-between;
  margin: 30px auto;
  max-width: 1000px;
}

.intro_bottom_list {
  width: 30%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro_bottom_list:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.intro_list_img {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.intro_list_img img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.intro_bottom_list:hover .intro_list_img img {
  transform: scale(1.05);
}

.intro_list_text {
  padding: 15px;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  flex-grow: 1;
}

.intro_button {
  padding-top: 30px;
}

.intro_button a {
  color: #fff;
  float: left;
  width: 180px;
  text-align: center;
  padding: 17px 0;
  margin-right: 20px;
  font-size: 14px;
  text-decoration: none;
  transition: .2s;
  -ms-transition: .2s;
  -webkit-transition: .2s;
}

.intro_button a:first-of-type {
  background: #eba438;
}

.intro_button a:first-of-type:hover {
  color: #eba438;
  border: 1px solid;
}

.intro_button a:last-of-type {
  background: #db4d4c;
}

.intro_button a:last-of-type:hover {
  color: #db4d4c;
  border: 1px solid;
}

.intro_button a .fa-arrow-circle-right {
  margin-right: 5px;
}

.intro_button a:hover {
  background: #fff;
  transition: .2s;
  -ms-transition: .2s;
  -webkit-transition: .2s;
}

/*====================================
  blog.php 求人ニュースページ
====================================*/
section.blog_page_list {
  width: 750px;
  background: rgba(255,255,255,.5);
  padding: 10px 20px;
  margin: 0 auto 15px;
  border-radius: 4px;
}

.blog_page_title {
  background: #ff7cad;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 6px 10px;
}

.blog_contents {
  width: 98%;
  float: right;
}

.dx_blog li {
  padding: 10px 20px;
  /* width: 505px; */
  margin-left: auto;
  margin-bottom: 20px;
  border: 2px solid #ff7cad;
  position: relative;
}
.maintext_title {
  color: #fff;
  background: #ff7cad;
  font-size: 13px;
  font-weight: bold;
  padding: 9px 7px 9px 12px;
  margin-bottom: 15px;
  width: 520px;
  margin-left: -30px;
}

.blog-date {
  color: #333;
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
}

.blog_mainimg {
  /* float: left; */
}

.blog_mainimg img {
  /* margin: 0 5px 5px 0; */
}

.blog_maintext {
  /* margin-left: 20px; */
}

.mt_look {
  text-align: right;
  color: #333;
  font-weight: bold;
  padding-bottom: 5px;
  font-size: 14px;
}

.mt_look > span {
  color: #f00;
  font-size: 14px;
  font-weight: bold;
}

.shopPager {
  font-size: 14px;
  margin-bottom: 10px;
  text-align: center;
}

.shopPager > table {
  margin: 0 auto;
}

.shopPager > table td {
  text-align: center;
  width: 100px;
}
.shopPager > table td.prev {
  padding-right: 4px;
}

.shopPager > table td.next {
  padding-left: 4px;
}
#contentsBlock .shopPager a {
  color: #005EEB !important;
}

/*====================================
  voice.php 先輩ボイスページ
====================================*/
#mainContents {
  position: relative;
}

.voice_page {
  background: rgba(255,255,255,.7);
  padding-top: 15px;
}
#contentsBlock .contents_item {
  background-color: rgba(255,255,255,1.0) !important;
}

section.voice_page_list {
  width: 750px;
  background: rgba(255,255,255,.5);
  padding: 10px 20px;
  margin: 0 auto 15px;
  border-radius: 4px;
}

.voice_page_title {
  background: #ff7cad;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 6px 10px;
}

.voice_list {
  width: 900px;
  margin: 0 auto;
}

.voice_contents .voice_list {
  margin-bottom: 30px;
  width: 750px;
}

.voice_list .voicebox {
  border-bottom: 1px dotted #ccc;
  padding: 10px 0 20px;
  position: relative;
}

.voiceBoxL,
.voiceBoxR {
  overflow: hidden;
}
.voiceBoxL .voiceBoxText {
  float: right;
}

.voiceBoxR .voiceBoxText {
  float: left;
}

.voiceBoxL .voiceBoxText,
.voiceBoxR .voiceBoxText {
  width: 480px;
  margin-bottom: 15px;
  position: relative;
}
#contentsBlock .main-text {
  color: #333333 !important;
}

#contentsBlock .line {
  border-color: #FF7CAD !important;
}
#contentsBlock .main-text {
  color: #333333 !important;
}
.voiceBoxL .voiceBoxText .comment,
.voiceBoxR .voiceBoxText .comment {
  border: 3px solid #F7CDDE;
  border-radius: 5px;
  padding: 12px;
  position: relative;
  min-height: 60px;
}

.voiceBoxL .voice-rect {
  position: absolute;
  top: 38px;
  left: -24px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-right: 10px solid #F7CDDE;
  border-width: 8px 12px;
}

.voiceBoxL .voice-sub_rect {
  position: absolute;
  top: 39px;
  left: -17px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-right: 10px solid #fff;
  border-width: 7px 10px;
}
.voiceBoxL .voiceBoxImg,
.voiceBoxR .voiceBoxImg {
  width: 162px;
  margin-bottom: 5px;
}
.voiceBoxL .voiceBoxImg {
  float: left;
}
.voiceBoxImg img {
  border-radius: 5px;
  border: 1px solid #999;
  height: auto;
  width: 160px;
  vertical-align: top;
}

.voiceBoxR .voiceBoxImg {
  float: right;
}

.voiceBoxImg img {
  border-radius: 5px;
  border: 1px solid #999;
  height: auto;
  width: 160px;
  vertical-align: top;
}


#contentsBlock .voiceBoxL .balloon-line {
  border-right-color: #FF7CAD !important;
}
#contentsBlock .voiceBoxL .balloon-bg {
  border-right-color: #FF7CAD !important;
}

.voiceBoxR .voice-rect {
  position: absolute;
  top: 38px;
  right: -24px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-left: 10px solid #F7CDDE;
  border-width: 8px 12px;
}
.voiceBoxR .voice-sub_rect {
  position: absolute;
  top: 39px;
  right: -17px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-left: 10px solid #fff;
  border-width: 7px 10px;
}

#contentsBlock .voiceBoxR .balloon-line {
  border-left-color: #FF7CAD !important;
}
#contentsBlock .voiceBoxR .balloon-bg {
  border-left-color: #FF7CAD !important;
}

.entryBlock {
  background-color: #FDE6D8;
  margin-bottom: 30px;
  padding: 10px 10px;
  border-radius: 5px;
  clear: both;
}

.entryBox {
  overflow: hidden;
  margin-bottom: 10px;
}

.entryBoxImg {
  width: 240px;
  margin: auto;
}

.entryBlock .leadText {
  font-size: 14px;
}


/*====================================
  qa.php Q&Aページ
====================================*/
.dx_item_page {
  background: rgba(255,255,255,.7);
  padding-top: 15px;
}

section.dx_item_page_list {
  width: 750px;
  background: rgba(255,255,255,.5);
  padding: 10px 20px;
  margin: 0 auto 15px;
  border-radius: 4px;
}

#qaBody .contents_item {
  background-color: rgba(255,255,255,1.0) !important;
}

.dx_item_page_title {
  background: #ff7cad;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 6px 10px;
}

.dx_item_contents {
  padding: 0 0 30px;
}

.dx_item_qa_text {
        max-width: 1100px;
  margin: 2% auto;
  font-size: 13px;
  line-height: 25px;
  width: 100%;
}

.dx_item_contents .dx_item_qa_text table td {
  padding: 0px 15px 25px 0px;
  vertical-align: baseline;
}

.dx_item_contents .dx_item_qa_text table td {
  padding: 0px 15px 25px 0px;
  vertical-align: baseline;
}


/*====================================
  map.php アクセスページ
====================================*/
#mapBody .contents_item {
  background-color: rgba(255,255,255,1.0) !important;
}
#map_page {
  background: rgba(255,255,255,.7);
  padding-top: 15px;
}

#mainContents .contents_item {
  background-color: rgba(255,255,255,1.0) !important;
}

section.map_page_list {
  width: 750px;
  background: rgba(255,255,255,.5);
  padding: 10px 20px;
  margin: 0 auto 15px;
  border-radius: 4px;
}

.map_page_title {
  background: #ff7cad;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 6px 10px;
}

.mapbox {
  width: 650px;
  margin: 20px auto 0 auto;
}

.mapbox .googlemap {
  text-align: center;
  margin-bottom: 15px;
}

.map-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9のアスペクト比 */
  margin-bottom: 25px;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#dataBlock {
  margin-bottom: 30px;
}

#dataBlock .tableinfo {
  border-left: 1px solid #E1D6C2;
  border-right: 1px solid #E1D6C2;
}

#dataBlock table {
  display: table;
}

#dataBlock table {
  width: 100%;
  background-color: #FF7CAD;
  border-collapse: separate;
  border-spacing: 0px 1px;
  table-layout: fixed;
}

#dataBlock table tr th {
  width: 25%;
  background-color: #ECE8DC;
  border: 1px solid #fff;
  text-align: left;
  vertical-align: top;
  padding: 4px 0px;
}
#dataBlock table tr th div {
  font-weight: bold;
  padding-left: 9px;
  padding-right: 9px;
}

#dataBlock table tr td {
  width: 75%;
  padding: 4px 0px;
  background-color: #fff;
  word-wrap: break-word;
}

#dataBlock table tr td div {
  padding-left: 9px;
  padding-right: 9px;
}

#dataBlock table tr td a img {
  position: relative;
  height: 40px;
  width: auto;
}

/*====================================
  freespace.php フリースペースページ
====================================*/
.freespace_page {
  background: rgba(255,255,255,.7);
  padding-top: 15px;
}

section.freespace_page_list {
  width: 750px;
  background: rgba(255,255,255,.5);
  padding: 10px 20px;
  margin: 0 auto 15px;
  border-radius: 4px;
}
#infoBlock {
  margin-bottom: 20px;
  background-color: #F7CDDE;
  padding: 10px 10px 7px 10px;
}

#infoBlock h3 {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  background: url(/recruit/img/iconCheck.webp) 0 50% no-repeat;
  line-height: 25px;
  padding-bottom: 3px;
  border-bottom: 2px solid #ff39ad;
  padding: 0 0 5px 75px;
  margin: 0;
}
#infoBlock ul {
  padding: 0;
  margin: 0;
}
#infoBlock ul li {
  margin: 3px 0;
}

#contentsBlock .main-link {
  color: #005EEB !important;
}

#infoBlock ul li a {
  padding-left: 12px;
  background: url(/recruit/img/moreLinkList.webp) 0 50% no-repeat;
}

.freespace_page_title {
  background: #ff7cad;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 6px 10px;
}

#infoDetailBlock {
  margin-bottom: 20px;
}

#infoDetailBlock .infoImg {
  text-align: center;
  margin: 0 0 5px 5px;
}




















