@import url("reset.css");

.dosp {
  display: none;
}

/*====================================
  共通設定
====================================*/

body {
  /* background: url("/recruit/img/bg_img.webp") #fdfdfd; */
  /* background-repeat: repeat; */
  /* background-size: cover; */
  /* background-attachment: fixed; */
  /* background-position: center top; */
  background-color: #ffe9f540;
  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: 16px;
  line-height: 25px;
}

.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: #fffaf3;
}

header .inner .header-text{
  color: #c7b482;
  text-align: center;
  padding-top: 20px;
}

header .inner .header-text p{
  font-size: 25px;
  font-weight: bold;
}


#headLogo {
  position: relative;
  z-index: 9998;
  left: calc(50% - 150px);
  width: 300px;
  padding-bottom: 20px;
}
#headLogo img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 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 > .inner .header-text {
  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(4) {
  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;
  justify-content: center;
  flex-direction: column;
}

.sns_icon {
  width: 180px;
  height: 180px;
  margin-bottom: 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: #fffaf3;
  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;
}



/* チェックポイント
-----------------*/
.check_Point{
  margin: 50px auto 0;
  width: 100%;
  max-width: 1100px;
}

.check_Point .check_Point_flex {
  display: flex;
  /* justify-content: space-between; */
  flex-wrap: wrap;
  margin: 0 auto;
}

.check_Point .check_Point_flex .check_point_item {
  width: 18%;
  /* margin-bottom: 20px; */
  text-align: center;
  width: 33%;
  margin-bottom: 20px;
}



/* 募集要項
-----------------*/
#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: 1100px;
  margin: 1% auto;
}

.recruit_slider {
  width: 75%;
  margin: 0 auto;
  text-align: center;
}

.recruit_slider_item {
  position: relative;
  padding-top: 15px;
  overflow: hidden;
  height: 215px;
}

#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 {
  scroll-margin-top: 80px; /* sticky-navと同じか少し大きめ */
}


#widget9-1.content-block {
  background-color: rgba(238,238,238,0.8) !important;
  margin-top: 80px;
  padding: 40px 0;
}

#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;
  }
}



/* 当店のポイント
-----------------*/
#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;
  border: 1px solid;
  padding: 10px;
  border-radius: 5px;
  background-color: #fff;
}

/* 店舗フォト
-----------------*/
section.photo .photo_container {
  width: 100%;
  max-width: 1000px;
  margin: 1% auto;
}

.photo_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}

.photo_item {
  width: 23%; /* 少し余白を残して4つ並べる */
  margin-bottom: 15px;
  text-align: center;
}

.photo_item img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 5px;
}



/* 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;
}


/*====================================
  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: 600px;
  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: #E1D6C2;
  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;
}


















