@charset "UTF-8";
.outlineLinkButton {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 11px 20px 11px 14px;
  /* 上下20px, 左右24px */
  background-color: #ffffff;
  border: 1px solid #53AA65;
  /* 画像に近い少し明るめの緑 */
  border-radius: 12px;
  /* 角丸の程度 */
  text-decoration: none;
  color: #53AA65;
  /* テキスト色 */
  cursor: pointer;
  /* ボタン内のテキストスタイル */
  /* アイコンのラッパー（丸い枠部分） */
  /* 矢印SVGアイコン */
}
.outlineLinkButton.recruitLink {
  background-color: #EDE237;
  border: initial;
}
.outlineLinkButton.recruitLink .buttonLabel {
  color: #19782C;
}
.outlineLinkButton.recruitLink .iconWrapper {
  color: #EDE237;
}
.outlineLinkButton.interviewBtn {
  background-color: #53AA65;
  border: initial;
  width: 260px;
  margin: 0 auto;
  position: relative;
  padding: 11px 20px;
}
.outlineLinkButton.interviewBtn .insta_fukidasi {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 178px;
}
.outlineLinkButton.interviewBtn .insta_fukidasi + .buttonLabel {
  font-size: 14px;
}
.outlineLinkButton.interviewBtn .buttonLabel {
  color: #fff;
}
.outlineLinkButton.interviewBtn .iconWrapper {
  color: #fff;
  border: 1px solid #fff;
  background-color: initial;
}
.outlineLinkButton .buttonLabel {
  font-size: 16px;
  /* px指定 */
  font-weight: bold;
  letter-spacing: 0.07em;
}
.outlineLinkButton .iconWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid #53AA65;
  border-radius: 50%;
  /* 完全な円 */
  color: #53AA65;
}
.outlineLinkButton .arrowIconSvg {
  width: 14px;
  height: 14px;
}

.corporateBtn {
  background: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 100%;
  display: flex;
  border-radius: 10px;
  display: flex;
  padding: 30px;
  color: #19782C;
  justify-content: space-between;
}

/* 2. ナビゲーションリスト */
.navigationSection {
  /* 最後の要素だけボーダーを消す場合（今回はデザイン通りボーダーなしにするためクラス指定なしでもOKですが、リスト全体の制御として） */
}
.navigationSection .menuList {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.navigationSection .menuLink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #D1D7D2;
  /* border-gray-300 opacity-50 */
  text-decoration: none;
  transition: opacity 0.2s;
}
.navigationSection .menuLink:hover {
  opacity: 0.7;
}
.navigationSection .menuItem:last-child .menuLink {
  border-bottom: none;
}
.navigationSection .menuText {
  font-size: 16px;
  font-weight: 500;
  /* font-medium */
  color: #141414;
}
.navigationSection .arrowIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: #141414;
  border-radius: 50%;
  color: white;
}

.tempBtnWrap {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 20px;
  display: grid;
  gap: 30px;
  padding: 40px 40px 0;
  margin-bottom: 40px;
}
.tempBtnWrap .btnWrap1 .recruitLink {
  background: #F5F5F5;
}
.tempBtnWrap .comBtnWrap .tl {
  padding-bottom: 12px;
  color: #19782C;
  font-weight: bold;
  text-align: center;
  line-height: 140%;
  font-size: 24px;
}
.tempBtnWrap .comBtnWrap .content {
  display: grid;
  gap: 5px;
  margin: 0 auto;
}
.tempBtnWrap .comBtnWrap .content .iconWrapper {
  background: #53AA65;
}

.global-nav .menuList {
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
}
.global-nav .tempBtnWrap .comBtnWrap .tl {
  font-size: 18px;
}
.global-nav .tempBtnWrap .comBtnWrap .content {
  width: 260px;
  margin: 0 auto;
}

.edit-static p {
  display: inline;
}

.edit-static p:empty {
  display: none;
}/*# sourceMappingURL=common_parts.css.map */