@charset "UTF-8";

/********************

基本設定

********************/
* {
  box-sizing: border-box;
}

.e-hide {
  display: none !important;
}

.e-wrap p:empty {
  display: none !important;
}

img {
  max-width: 100%;
  height: auto;
}

/* テキストリンク色 */
.e-wrap a {
  color: #01a2b7;
  text-decoration: underline 1px;
}

/* 表示切替 */
.disp-tab-none {
  display: block;
}

.disp-tab {
  display: none;
}

/* 画像系 */
.e-zoom {
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: zoom-in;
}

.e-zoom img {
  display: block;
}
.e-zoom::before {
  content: '';
  position: absolute;
  inset: 0; /* top, right, bottom, left: 0 と同義 */
  background: rgba(0, 0, 0, 1);
  opacity: 0.1;
  transition: opacity 0.3s ease;
}

.e-zoom::after {
  content: '+';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0.9;
  transition:
    opacity 0.2s,
    transform 0.2s,
    background 0.2s;
}

.e-zoom:hover::before {
  opacity: 0;
}

.e-zoom:hover::after {
  background: rgba(0, 0, 0, 0.9);
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.e-img-cover {
  object-fit: cover;
}

.e-img-dot {
  position: relative;
  overflow: hidden;
}

.e-img-dot::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  background-image: radial-gradient(#303030 3%, transparent 20%), radial-gradient(#303030 3%, transparent 20%);
  background-size: 6px 6px;
  background-position:
    0 0,
    3px 3px;
  background-repeat: repeat;
}

/* セクション */
.e-sec-wrap {
  width: 100%;
  padding: 4rem 2rem;
}

/* インナー余白 */
.e-inner-s {
  padding: 1rem;
}

.e-inner {
  padding: 2rem;
}

.e-inner-l {
  padding: 4rem;
}

/* フレックスボックス */
.e-flex {
  display: flex;
  justify-content: space-between;
}

.e-flex-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.e-flex-nowrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.e-col {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.e-col-tab {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.e-col-sp {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.e-row {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.e-row-tab {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.e-row-sp {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.e-rowrvs {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
}

.e-jc-start {
  justify-content: flex-start;
}

.e-jc-center {
  justify-content: center;
}

.e-jc-between {
  justify-content: space-between;
}

.e-ai-start {
  align-items: flex-start;
}

.e-ai-center {
  align-items: center;
}

.e-ai-end {
  align-items: flex-end;
}

/* gap */
.e-gap1 {
  gap: 1rem;
}

.e-gap2 {
  gap: 2rem;
}

/* ポジション */
.e-ps-rel {
  position: relative;
}

.e-ps-ab {
  position: absolute;
}

.e-ps-center {
  left: 50%;
  transform: translateX(-50%);
}

/* ポジション位置 */
.e-tm14-lm4 {
  top: -14px;
  left: -4px;
}

/* カラム */
.e-col2 div {
  width: 49%;
}

.e-col3 div {
  width: 32%;
}

.e-col4 div {
  width: 23%;
}

.e-col5 div {
  width: 19%;
}

/********************
YouTube、iframeレスポンシブ
********************/
.e-iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.e-iframe iframe {
  width: 100%;
  height: 100%;
}

/********************

余白

********************/
.e-mlrauto {
  margin-left: auto;
  margin-right: auto;
}

.e-mb0 {
  margin-bottom: 0 !important;
}

.e-mb05 {
  margin-bottom: 0.5rem !important;
}

.e-mb2 {
  margin-bottom: 2rem !important;
}

.e-mb4 {
  margin-bottom: 4rem !important;
}

.e-mb6 {
  margin-bottom: 6rem !important;
}

.e-mb8 {
  margin-bottom: 8rem !important;
}

/********************

背景色

********************/
.e-bgsubtle {
  background: #f8f8f8 !important;
}

.e-bosubtle {
  border: 1px solid #dedede !important;
}

/* 白 */
.e-bgwhite {
  background: #ffffff !important;
}

.e-bowhite {
  border: 1px solid #ffffff !important;
}

/* 黒 */
.e-bgblack {
  background: #111111 !important;
}

.e-boblack {
  border: 1px solid #111111 !important;
}

/* ピンク　愛媛 */
.e-bgpink-d {
  background: #ed5a61 !important;
}

.e-bgpink-l {
  background: #ffe8e9 !important;
}

.e-bopink-d {
  border: 1px solid #ed5a61 !important;
}

.e-bopink-l {
  border: 1px solid #ffe8e9 !important;
}

/* オレンジ　徳島 */
.e-bgorange-d {
  background: #fca036 !important;
}

.e-bgorange-l {
  background: #fff8e9 !important;
}

.e-boorange-d {
  border: 1px solid #fca036 !important;
}

.e-boorange-l {
  border: 1px solid #fff8e9 !important;
}

/* グリーン　香川 */
.e-bggreen-d {
  background: #9dc815 !important;
}

.e-bggreen-l {
  background: #fbfff5 !important;
}

.e-bogreen-d {
  border: 1px solid #9dc815 !important;
}

.e-bogreen-l {
  border: 1px solid #fbfff5 !important;
}

/* ブルー　高知 */
.e-bgblue-d {
  background: #2fa8e1 !important;
}

.e-bgblue-l {
  background: #ddeef7 !important;
}

.e-boblue-d {
  border: 1px solid #2fa8e1 !important;
}

.e-boblue-l {
  border: 1px solid #ddeef7 !important;
}

/* グリーン 転職ネット */
.e-bgtenshoku-d {
  background: #009b46 !important;
}

.e-bgtenshoku-l {
  background: #e7f1eb !important;
}

.e-botenshoku-d {
  border: 1px solid #009b46 !important;
}

.e-botenshoku-l {
  border: 1px solid #e7f1eb !important;
}

/********************

文字色

********************/
.e-txtwhite {
  color: #ffffff !important;
}

.e-txtblack {
  color: #111111 !important;
}

.e-txtblack-l {
  color: #777777 !important;
}

/* ピンク　愛媛 */
.e-txtpink-d {
  color: #f03f49 !important;
}

.e-txtpink-l {
  color: #ffe8e9 !important;
}

/* オレンジ　徳島 */
.e-txtorange-d {
  color: #fca036 !important;
}

/* グリーン　香川 */
.e-txtgreen-d {
  color: #78af22 !important;
}

.e-txtgreen-l {
  color: #fbfff5 !important;
}

/* ブルー　高知 */
.e-txtblue-d {
  color: #2fa8e1 !important;
}

.e-txtblue-l {
  color: #ddeef7 !important;
}

/* グリーン 転職ネット */
.e-txttenshoku-d {
  color: #009b46 !important;
}

.e-txttenshoku-l {
  color: #e7f1eb !important;
}

/********************

文字サイズ・位置

********************/
/* 太字 */
.e-txt-bold {
  font-weight: bold !important;
}

/* 文字揃え */
.e-txt-center {
  text-align: center !important;
}

.e-txt-left {
  text-align: left !important;
}

/* 改行制御 */
.e-inblo {
  display: inline-block;
}

/* マーカー */
.e-marker {
  background: linear-gradient(transparent 60%, #ff9 60%);
}

/* タグ */
.e-tag {
  font-size: 0.8em;
  margin: 0 !important;
  padding: 0.5em 0.8em;
  line-height: 1.2 !important;
  border-radius: 8px;
}

/* 文字位置 */
.e-wrap p {
  line-height: 1.8;
  /*text-align: justify;*/
}

.e-wrap .e-container p {
  text-align: start;
}

/********************

装飾関連

********************/
/* リード文 */
.e-lead-wrap p {
  text-align: center;
}

/* PRポイントタグ */
.e-lead-wrap .e-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  border-radius: 9999px;
  background: #ffffff;
  color: #ffff;
}

.e-lead-wrap .e-box p {
  padding: 16px;
  margin: 0;
  text-align: center;
}

/* アイコンと横並び */
.e-box-icon {
  padding: 1rem !important;
}

.e-box-icon > p {
  padding: 0.5rem !important;
}

.e-box-icon-item {
  display: flex;
}

.e-box-icon-item p {
  padding: 0 !important;
  margin-left: 0.5em !important;
  margin-right: 0.5em !important;
}

/* 枠線 */
.e-bo-radi8 {
  border-radius: 8px;
}

.e-bo-dotted {
  border: 2px dotted #333 !important;
}
/********************
見出し系
********************/
.e-title-divider {
  display: flex;
  align-items: center;
  width: 100%;
}
.e-title-divider span:first-of-type,
.e-title-divider span:last-of-type {
  flex: 1;
  height: 1px;
}
.e-title-divider .e-txt {
  margin: 0 16px;
  white-space: nowrap;
}

/********************
リスト系
********************/
/* シンプル ulリスト */
ul.e-list {
  list-style: none;
  padding: 0;
}

ul.e-list li {
  display: block !important;
  position: relative;
  padding-left: 1.1em;
  padding-bottom: 0.3em;
  border-bottom: none !important;
}

ul.e-list li::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0.5em;
  left: 0.25em;
  width: 6px;
  height: 6px;
  background-color: #cecece;
  border-radius: 5px;
}

/* シンプル olリスト */
ol.e-list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: li;
}

ol.e-list li {
  display: block !important;
  position: relative;
  padding-left: 1.1em;
  padding-bottom: 0.3em;
  border-bottom: none !important;
}

ol.e-list > li:before {
  position: absolute;
  color: #cecece;
  font-weight: bold;
  counter-increment: li;
  content: counter(li) '';
  left: 0;
  top: 0;
}

/* シンプル FAQリスト */
dl.e-faq dt {
  margin-bottom: 1em;
  font-weight: bold;
}

dl.e-faq dt::before,
dl.e-faq dd::before {
  margin-right: 0.4em;
}

dl.e-faq dt::before {
  content: 'Q.';
}

dl.e-faq dd {
  margin: 0 0 2.5em;
  padding: 1em 1.5em;
  background-color: #f8f8f8;
  color: #222222;
}

dl.e-faq dd::before {
  content: 'A.';
  color: #f03f49;
}

/* シンプルテーブル */
ul.e-table {
  margin: 0;
  padding: 0;
}

ul.e-table li {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #ccc;
}

ul.e-table li div {
  padding: 20px;
}

ul.e-table li div p {
  margin-bottom: 0;
}

ul.e-table li > div:nth-child(1) {
  width: 15%;
  background-color: #f1f1f1;
}

ul.e-table li > div:nth-child(2) {
  flex: 1;
}

ul.e-table li > div:nth-child(3) {
  flex: 1;
}

dl.e-details {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
}

dl.e-details dt {
  flex-basis: 15%;
  padding: 20px;
  background-color: #f1f1f1;
  border-bottom: 1px solid #ccc;
}

dl.e-details dd {
  flex-basis: 85%;
  padding: 20px;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}
/* シンプル条件リスト */
dl.e-grid {
  display: grid;
  grid-template-columns: var(--dt-width, 8em) 1fr;
  row-gap: 0.5em;
}

dl.e-grid dt {
  font-weight: bold;
}

dl.e-grid dd {
  margin: 0;
}

/* 切り替える幅 */
.e-dt-4em {
  --dt-width: 4em;
}
.e-dt-6em {
  --dt-width: 6em;
}
.e-dt-10em {
  --dt-width: 10em;
}
.e-dt-25p {
  --dt-width: 25%;
}

/* 矢印 */
.e-arwsolid-wrap {
  display: flex;
  align-items: center;
}

.e-arwsolid-right {
  width: 16px;
  height: 32px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.e-arwsolid-down {
  width: 32px;
  height: 16px;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}

.e-sec-wrap .e-inner-ttl.e-ps-ab {
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
}

.e-ps-rel .e-inner-ttl.e-ps-ab {
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
}

/* チェックマークリスト */
ul.e-list-check {
  position: relative;
  list-style-type: none;
  /*max-width: 400px;*/
  margin: 0 auto;
  border-radius: 8px;
}

ul.e-list-check li {
  line-height: 1.5;
  padding: 0.5em 0 0.5em 2.5em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  list-style-type: none !important;
  position: relative;
}

ul.e-list-check li::after {
  content: '';
  display: block;
  position: absolute;
  top: 1.2em;
  left: 0.5em;
  width: 20px;
  height: 10px;
  /* border-left: 4px solid #fef078;
  border-bottom: 4px solid #fef078; */
  border-left: 4px solid #f03f49;
  border-bottom: 4px solid #f03f49;
  transform: rotate(-45deg) translate(25%, -50%);
}

ul.e-list-check li:last-of-type {
  border-bottom: none;
  /*最後の線だけ消す*/
}

/* チェックマークテーマカラー　オレンジ */
ul.e-list-check.e-theme-orange li::after {
  border-color: #fca036 !important;
}

/* タイムライン */
.e-timeline-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 8px;
}

.e-timeline-wrap ul {
  padding: 0;
  width: 100%;
}

.e-timeline-wrap li {
  list-style-type: none;
}

.e-timeline-wrap dd {
  margin-left: 0;
}

.e-timeline {
  position: relative;
}

.e-timeline::before {
  content: '';
  width: 15px;
  height: 100%;
  background: #eee;
  margin-left: -129px;
  display: block;
  position: absolute;
  top: 0;
  left: 120px;
  border-radius: 20px;
}

.e-timeline > li {
  position: relative;
  border-bottom: none !important;
  margin-bottom: 1em;
}

.e-timeline > li .icon03 {
  font-size: 0.8em;
  width: 2em;
  height: 2em;
  line-height: 2;
  text-align: center;
  font-weight: bold;
  border-radius: 100vh;
  color: #fff;
  background: #8eb83c;
  display: inline-block;
  margin-right: 0.3em;
}

.e-timeline > li dl {
  padding-left: 2em;
  position: relative;
}

.e-timeline > li dl::before,
.e-timeline > li dl::after {
  content: '';
  display: block;
  position: absolute;
  top: 15px;
}

.e-timeline > li dl::before {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-radius: 50%;
  left: -4px;
}

.e-timeline > li dl::after {
  width: 1.4em;
  border-bottom: 0.8px dashed #bababa;
  position: absolute;
  left: 5px;
}

.e-timeline > li dl dt {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
}

/* タイムラインテーマカラー */
.e-theme-pink .e-timeline > li dl::before {
  background: #ed5a61;
}

/********************
ボックス系
********************/
/*タイトル付き（見出しボックス）*/
.e-ttlbox {
  margin-bottom: 2rem;
  padding-top: 4rem;
  position: relative;
  border-radius: 12px;
}

.e-ttlbox .e-inner-ttl {
  padding: 1rem;
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  border-radius: 0px 0px 8px 8px;
}

.e-ttlbox .e-inner-txt {
  padding: 2rem 2rem 2rem;
}

/*角丸ボックス*/
.e-flex.e-roundbox {
  flex-wrap: wrap;
}

.e-roundbox > div {
  display: flex;
  align-items: center;
  flex-direction: row;
  overflow: hidden;
  background-color: #fff;
  border-radius: 80px;
  padding-right: 1em;
}

.e-roundbox > div p {
  margin: 0 !important;
  text-align: left;
}

/*リンクカード（横並び、縦並び、リンク、矢印切替え）*/
/*共通*/
.e-card {
  position: relative;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  color: inherit;
  text-decoration: none;
}

.e-card.e-is-link:hover {
  background: #f9f9f9;
}

.e-card .e-label {
  position: absolute;
  top: 0;
  left: 0;
  background: #f5f5f5;
  padding: 0.4em 0.8em;
  border-radius: 0 0 6px 0;
  font-size: 0.9rem;
}

.e-card .e-thumb {
  overflow: hidden;
  border-radius: 4px;
}
.e-card .e-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.e-card .e-content {
  flex: 1;
  min-width: 0;
}

.e-card h2,
.e-card h3,
.e-card h4 {
  all: unset;
  display: block;
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 0.4em;
}

.e-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/*横並びレイアウト*/
.e-card.e-is-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.e-card.e-is-row .e-thumb {
  flex: 0 0 120px;
  aspect-ratio: 1 / 1;
}

/*縦並びレイアウト*/
.e-card.e-is-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.e-card.e-is-col .e-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
}

/*矢印／ヨコ*/
.e-card.e-has-arrow::after {
  content: '›';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #aaa;
  pointer-events: none;
  transition: transform 0.2s;
}
.e-card.e-is-link.e-has-arrow:hover::after {
  transform: translateY(-50%) translateX(4px);
}

/*矢印／タテ*/
.e-card.e-is-col.e-has-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-right: 14px solid #aaa; /* 三角形の色 */
  border-top: 14px solid transparent;
  transition: transform 0.2s;
}
.e-card.e-is-col.e-is-link.e-has-arrow:hover::after {
  transform: translate(-2px, -2px);
}

/********************
ボタン系
********************/
a.e-btn {
  position: relative;
  text-decoration: none !important;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.9em 2em;
  text-align: center;
}

/* ボックスボタン */
.e-btn-box {
  text-decoration: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  margin: 0 auto;
  padding: 0;
  border: none;
  background-color: #ed5a61;
  border-bottom: solid 5px #f13f4a;
  border-radius: 5px;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
  transition: 0.5s ease;
  position: relative;
}

.e-btn-box::after {
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  margin-left: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -4px;
}

.e-btn-box:hover {
  transform: translateY(3px);
  border-bottom-width: 2px;
  margin-bottom: 3px;
}

/* ボックスボタン　テーマカラー */
/* ピンクはデフォルト */
/* オレンジ */
.e-theme-orange.e-btn-box {
  background-color: #fca036;
  border-color: #f98500;
}

/* グリーン */
.e-theme-green.e-btn-box {
  background-color: #9dc815;
  border-color: #87b200;
}

/* ブルー */
.e-theme-blue.e-btn-box {
  background-color: #2fa8e1;
  border-color: #0093d8;
}

/********************

個別設定

********************/
/********************
シンプル吹き出し
********************/
.e-balloon01 {
  position: relative;
  display: inline-block;
  padding: 0.5em 2em;
  min-width: 120px;
  max-width: 100%;
  border-radius: 9999px;
}

.e-balloon01:before {
  content: '';
  position: absolute;
  top: 99.5%;
  left: 50%;
  margin-left: -15px;
  width: 18px;
  height: 12px;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}

.e-balloon01 p {
  margin: 0;
  padding: 0;
}

/* シンプル吹き出しテーマカラー　ピンク */
.e-bgpink-d.e-balloon01::before {
  background: #ed5a61;
}

/* シンプル吹き出しテーマカラー　オレンジ */
.e-bgorange-d.e-balloon01::before {
  background: #fca036;
}

/* シンプル吹き出しテーマカラー　グリーン */
.e-bggreen-d.e-balloon01::before {
  background: #9dc815;
}

/* シンプル吹き出しテーマカラー　ブルー */
.e-bgblue-d.e-balloon01::before {
  background: #2fa8e1;
}

/* シンプル吹き出しテーマカラー　ブルー */
.e-bgtenshoku-d.e-balloon01::before {
  background: #009b46;
}

/********************
アキ吹き出し
********************/
.e-balloon02 {
  position: relative;
  padding: 1.5rem;
  border-radius: 40px;
  border: 2px solid #333;
  background-color: #fff;
  min-height: 88px;
}

.e-balloon02:before {
  position: absolute;
  top: 100%;
  left: 45%;
  height: 25px;
  width: 15px;
  border-right: 2px solid #333;
  background-color: #fff;
  transform: skew(-25deg);
  content: '';
}

/* アキ吹き出し　ドット */
.e-bo-dotted.e-balloon02:before {
  border-right: 2px dotted #333;
}

/* アキ吹き出しテーマカラー　ピンク */
.e-theme-pink.e-balloon02 {
  border-color: #ed5a61 !important;
}

.e-theme-pink.e-balloon02::before {
  border-color: #ed5a61 !important;
}

/* アキ吹き出しテーマカラー　オレンジ */
.e-theme-orange.e-balloon02 {
  border-color: #fca036 !important;
}

.e-theme-orange.e-balloon02::before {
  border-color: #fca036 !important;
}

/* アキ吹き出しテーマカラー　グリーン */
.e-theme-green.e-balloon02 {
  border-color: #9dc815 !important;
}

.e-theme-green.e-balloon02::before {
  border-color: #9dc815 !important;
}

/* アキ吹き出しテーマカラー　ブルー */
.e-theme-blue.e-balloon02 {
  border-color: #2fa8e1 !important;
}

.e-theme-blue.e-balloon02::before {
  border-color: #2fa8e1 !important;
}

/********************

レスポンシブ

********************/
@media screen and (max-width: 1024px) {
  /* フレックスボックス */
  .e-col-tab {
    flex-direction: column !important;
    width: 100% !important;
  }

  .e-row-tab {
    flex-direction: row !important;
    align-items: center;
    width: 100% !important;
  }

  /********************
  個別設定
  ********************/
  /* アキ吹き出し */
  .e-tab.e-balloon02 {
    width: 100%;
  }

  .e-tab.e-balloon02:before {
    top: 50%;
    left: 100%;
    transform: rotate(65deg);
  }
}

@media screen and (max-width: 767px) {
  /********************
  基本設定
  ********************/
  /* 表示切替 */
  .disp-tab-none {
    display: none;
  }

  .disp-tab {
    display: block;
  }

  /* インナー余白 */
  .e-inner-l {
    padding: 2rem;
  }

  /* フレックスボックス */
  dl.e-details {
    flex-flow: column;
  }

  .e-flex {
    flex-wrap: wrap;
  }

  .e-col-sp {
    flex-direction: column !important;
    width: 100% !important;
  }

  .e-row-sp {
    flex-direction: row !important;
    width: 100% !important;
  }

  .e-flex-alien-center-sp {
    align-items: center !important;
  }

  .e-lead-wrap .e-box {
    width: 100% !important;
  }

  .e-col2 div {
    width: 100%;
  }

  .e-col3 div {
    width: 100%;
  }

  .e-col4 div {
    width: 46%;
  }

  .e-col5 div {
    width: 49%;
  }

  .e-w100 {
    width: 100% !important;
  }

  .e-m-auto-sp {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .e-gap-0-sp {
    gap: 0 !important;
  }

  /********************
  装飾関連
  ********************/
  /* シンプルテーブル */
  ul.e-table li div {
    padding: 12px;
  }

  ul.e-table.e-w100 li {
    flex-flow: column;
  }

  ul.e-table.e-w100 li div:nth-child(1) {
    width: auto;
    flex: 1;
  }

  /* 矢印 */
  .e-arwsolid-wrap {
    justify-content: center;
    width: 100%;
    margin-bottom: 2rem;
  }

  .e-arwsolid-right {
    width: 32px;
    height: 16px;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
  }

  /*タイトル付き（見出しボックス）*/
  .e-ttlbox {
    width: 100% !important;
  }

  /* 角丸ボックス */
  .e-roundbox > div > img {
    max-width: 90px;
  }
}

.lp_dib {
  display: inline-block;
}

.lp_inner {
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.lp_container {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp_section {
  padding: 0 24px;
}

.lp_section_title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}

.lp_title_en {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  color: #00c892;
  position: relative;
}

.lp_title_en::before {
  content: '';
  position: absolute;
  left: -16px;
  top: -20px;
  width: 104px;
  aspect-ratio: 104 / 60;
  background-image: url('https://haken.abi.co.jp/wp-content/uploads/2026/01/sec_ttl_bg_green.png');
  background-size: cover;
  background-repeat: no-repeat;
}

.lp_title_jp {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: #333333;
  margin: 0;
  text-align: left;
}

.lp_title_jp span {
  color: inherit;
}

.lp_title_jp span span {
  color: #00c892;
}

.lp_title_jp span span span {
  font-size: 28px;
}

.lp_section_title_white .lp_title_en {
  color: #ffffff;
}

.lp_section_title_white .lp_title_en::before {
  background-image: url('https://haken.abi.co.jp/wp-content/uploads/2026/01/sec_ttl_bg_white.png');
}

.lp_section_title_white .lp_title_jp {
  color: #ffffff;
}

.lp_fv {
  height: 844px;
  background-color: #f2f9f3;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.lp_fv .lp_inner {
  height: 100%;
  display: flex;
  align-items: center;
}

.lp_fv_bg_text {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.lp_fv_content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  padding: 0 64px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.lp_catch_wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lp_main_catch {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.lp_main_catch span {
  color: #00c892;
}

.lp_sub_catch {
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  text-transform: uppercase;
}

.lp_btn_wrap {
  display: flex;
  gap: 16px;
  align-items: center;
}

.lp_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}

.lp_btn_primary {
  width: 300px;
  height: 64px;
  background-color: #f76390;
  color: #ffffff;
}

.lp_btn_primary .lp_btn_badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 2px 20px;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #f76390;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  white-space: nowrap;
}

.lp_btn_secondary {
  background-color: #ffffff;
  border: 1px solid #00c892;
  color: #00c892;
  width: 194px;
  height: 64px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.lp_btn_secondary .lp_btn_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-left: 10px;
  border-radius: 999px;
}

.lp_img {
  width: min(calc(727 / 1500 * 100vw), 727px);
  position: absolute;
  z-index: 1;
  top: 120px;
  right: -102px;
}

.lp_section_about {
  background-color: #f2f9f3;
  padding: 24px 64px 120px;
}

.lp_section_about .lp_container {
  max-width: 1200px;
}

.lp_about_text {
  margin-bottom: 56px;
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  text-align: center;
  text-transform: uppercase;
}

.lp_about_text .lp_bold {
  color: #00c892;
}

.lp_about_content_wrap {
  display: flex;
  gap: 34px;
  position: relative;
}

.lp_about_content_item {
  width: 50%;
}

.lp_problem {
  position: relative;
}

.lp_problem::before {
  content: '';
  width: 18px;
  height: 36px;
  background: #00c892;
  display: inline-block;
  vertical-align: middle;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  top: 50%;
  right: -26px;
transform: translateY(-50%);
}


.lp_about_ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px;
  margin-bottom: 48px;
  border-radius: 8px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}

.lp_problem .lp_about_ttl {
  background-color: #fff;
}

.lp_reassurance .lp_about_ttl {
  color: #fff;
  background-color: #00c892;
}

.lp_about_img {
  width: calc(100% - 64px);
  margin: 0 auto;
}

.lp_section_feature {
  background-color: #00c892;
  position: relative;
  z-index: 0;
}

.lp_section_feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 120px;
  background-color: #f2f9f3;
  z-index: -1;
}

.lp_section_feature .lp_container {
  position: relative;
  background-color: #ffffff;
  border-radius: 24px;
  padding: 64px 40px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.12);
}

.lp_section_feature .lp_title_jp {
  width: 364px;
}

.lp_feature_list {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.lp_feature_item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.lp_feature_img {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
}

.lp_feature_img img {
  vertical-align: bottom;
}

.lp_feature_img .lp_num {
  font-family: 'Montserrat', sans-serif;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%,50%);
}

.lp_feature_title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: #00c892;
  text-align: center;
}

.lp_feature_text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #333333;
}

.lp_section_voice {
  background-color: #00c892;
  padding: 80px 0;
  position: relative;
  z-index: 0;
}

.lp_section_voice::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 315px;
  aspect-ratio: 315 / 362;
  background-image: url(https://haken.abi.co.jp/wp-content/uploads/2026/01/voice_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.lp_section_voice .lp_container {
  position: relative;
}

.lp_voice_list {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  position: relative;
}

.lp_voice_bg_text {
  position: absolute;
  left: -150px;
  bottom: 1098px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 150px;
  line-height: 1em;
  letter-spacing: 0.05em;
  color: #ffffff;
  opacity: 0.2;
  white-space: nowrap;
  pointer-events: none;
}

.lp_voice_item {
  flex: 1;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp_voice_img {
  width: 100%;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.voice_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lp_voice_title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: #00c892;
}

.lp_voice_title span {
  color: #F76390;
}

.lp_voice_text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #333333;
}

.lp_reason {
  padding: 120px 0;
  background-color: #00c892;
  position: relative;
  z-index: 0;
}

.lp_reason_bg_text {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.lp_reason .lp_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.lp_reason_header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 496px;
  color: #ffffff;
}

.lp_reason_tag {
  display: inline-block;
  padding: 10px 16px 12px;
  background-color: #ffffff;
  border-radius: 3px;
  font-size: 44px;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: 0.02em;
  color: #00C892;
  width: fit-content;
}

.lp_reason_title {
  margin: 0;
  text-align: left;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.lp_reason_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp_reason_item {
  display: flex;
  gap: 8px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 24px;
}

.lp_reason_icon {
  width: 33px;
  height: 33px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp_reason_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp_reason_item_title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: #f76390;
  margin-bottom: 8px;
}

.lp_reason_points {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lp_reason_points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #555555;
}

.lp_reason_points li::before {
  content: '';
  width: 8px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: #f76390;
  flex-shrink: 0;
}

.lp_section_staff {
  padding: 120px 0;
}

.lp_staff_profile {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.lp_staff_img {
  width: 50%;
  max-width: 588px;
}

.staff_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp_staff_info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 50%;
  max-width: 588px;
}

.lp_staff_profile_section,
.lp_staff_message_section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp_staff_label {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: #00c892;
}

.lp_staff_name {
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  color: #333333;
}

.lp_staff_profile_text,
.lp_staff_message_text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #333333;
}

.lp_section_job {
  padding: 120px 0;
}

.lp_section_job .lp_container {
  display: flex;
}

.lp_section_job .lp_section_title {
  width: 35%;
}

.lp_section_job_gradient {
  background: linear-gradient(135deg, rgba(0, 200, 146, 1) 0%, rgba(187, 229, 161, 1) 100%);
  border-radius: 80px;
}

.lp_job_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 65%;
}

.lp_job_item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 24px;
}

.lp_job_item a::after {
  content: '';
  width: 24px;
  aspect-ratio: 1 / 1;
  background-image: url(https://haken.abi.co.jp/wp-content/uploads/2026/01/arrow_bg-green.png);
  background-size: cover;
  transition: all 0.3s;
}

.lp_job_item a:hover:after {
  transform: translateX(4px);
}

.lp_job_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp_job_title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: #333333;
  transition: all 0.3s;
}

.lp_job_item a:hover .lp_job_title {
  color: #00c892;
}

.lp_job_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}

.lp_job_tag {
  display: inline-block;
  padding: 6px 10px;
  background-color: #f2f9f3;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 400;
  line-height: 1em;
  color: #555555;
}

.lp_section_flow {
  padding: 120px 0;
}

.lp_section_flow .lp_container {
  display: flex;
  gap: 55px;
}

.lp_section_flow .lp_section_title {
  width: 35%;
  max-width: 331px;
}

.lp_flow_list {
  width: 65%;
  max-width: 792px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lp_flow_list::before {
  content: '';
  position: absolute;
  left: 55px;
  top: 56px;
  width: 1px;
  height: 404px;
  background-color: #00c892;
}

.lp_flow_item {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}

.lp_flow_item:first-child {
  align-items: center;
}

.lp_flow_icon {
  width: auto;
  flex-shrink: 0;
}

.lp_flow_icon_circle {
  width: 110px;
  aspect-ratio: 1 / 1;
  background-color: #fff;
}

.lp_flow_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp_flow_title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: #00c892;
}

.lp_flow_text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #333333;
}

.lp_section_qa {
  background-color: #f2f9f3;
  border-radius: 80px;
  padding: 120px 0;
}

.lp_qa_list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 24px;
  margin-top: 40px;
}

.lp_qa_item {
  background-color: #ffffff;
  border-radius: 0;
  padding: 24px;
}

.lp_qa_item:first-child {
  width: 100%;
}

.lp_qa_item:not(:first-child) {
  width: calc(50% - 12px);
}

.lp_qa_q,
.lp_qa_a {
  display: flex;
  gap: 16px;
}

.lp_qa_q {
  margin-bottom: 16px;
}

.lp_qa_label {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.lp_qa_q .lp_qa_label {
  width: 18px;
  height: 33px;
  color: #00c892;
}

.lp_qa_a .lp_qa_label {
  width: 18px;
  height: 28px;
  color: #333333;
  padding-top: 3px;
}

.lp_qa_question {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: #00c892;
  flex: 1;
}

.lp_qa_answer {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #333333;
  flex: 1;
}

@media (max-width: 1500px) {
  .lp_img {
    width: 45%;
    position: static;
  }

  .lp_fv_content {
    width: 55%;
  }
}

@media (max-width: 1200px) {
  .lp_fv .lp_inner {
    gap: 40px;
  }

  .lp_fv_content {
    padding: 0;
  }

  .lp_main_catch {
    font-size: 40px;
  }

  .lp_sub_catch {
    font-size: 16px;
  }

  .lp_btn_wrap {
    flex-direction: column;
  }

  .lp_btn {
    width: 100%;
  }

  .lp_btn_badge {
    top: -12px;
  }

  .lp_section_feature .lp_container {
    padding: 40px 24px;
  }

  .lp_reason_header {
    min-width: 408px;
  }

  .lp_reason_tag,
  .lp_reason_title {
    font-size: 36px;
  }
}

@media (max-width: 960px) {
  .lp_fv {
    height: 640px;
  }

  .lp_fv_content {
    padding: 0 40px;
  }

  .lp_fv_bg_text {
    font-size: 100px;
  }

  .lp_main_catch {
    font-size: 36px;
  }

  .lp_section_about {
    padding: 80px 0;
  }

  .lp_feature_list {
    flex-direction: column;
  }

  .lp_feature_img {
    width: 80%;
    margin: 0 auto;
    height: auto;
  }

  .lp_section_voice::before {
    width: 160px;
  }

  .lp_voice_list {
    flex-direction: column;
  }

  .lp_voice_img {
    width: 80%;
    margin: 0 auto;
  }

  .lp_reason .lp_container {
    flex-direction: column;
  }

  .lp_reason_header {
    width: 100%;
    min-width: auto;
  }

  .lp_reason_list {
    width: 100%;
  }

  .lp_staff_profile {
    flex-direction: column;
  }

  .lp_staff_img {
    width: 80%;
    margin: 0 auto;
  }

  .lp_staff_info {
    width: 100%;
  }

  .lp_section_job .lp_container {
    flex-direction: column;
  }

  .lp_section_job .lp_section_title,
  .lp_job_list {
    width: 100%;
  }

  .lp_section_flow .lp_container {
    flex-direction: column;
    gap: 0;
  }

  .lp_qa_item:not(:first-child) {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .lp_container {
    padding: 0 20px;
  }

  .lp_section {
    padding: 64px 0;
  }

  .lp_title_jp {
    font-size: 16px;
  }

  .lp_fv {
    min-height: auto;
    height: auto;
    padding: 80px 0 40px;
  }

  .lp_fv .lp_inner {
    flex-direction: column-reverse;
  }

  .lp_img {
    width: 100%;
  }

  .lp_fv_content {
    width: 100%;
    padding: 0;
  }

  .lp_main_catch {
    font-size: 28px;
  }

  .lp_sub_catch {
    font-size: 16px;
  }

  .lp_btn_wrap {
    flex-direction: column;
    width: 100%;
  }

  .lp_btn {
    width: 100%;
  }

  .lp_about_content_wrap {
    flex-direction: column;
    gap: 40px;
  }

  .lp_about_content_item {
    width: 100%;
  }

  .lp_about_img {
    width: 100%;
  }

  .lp_problem::before {
    transform: translateX( -50%) rotate(90deg);
    right: auto;
    left: 50%;
    top: auto;
    bottom: -32px;
  }

  .lp_about_text {
    font-size: 16px;
    text-align: left;
  }

  .lp_section_feature {
    padding: 40px 20px;
  }

  .section_feature .container {
    margin-top: 0;
    padding: 40px 20px;
  }

  .lp_section_feature .lp_title_jp {
    width: 100%;
    max-width: 288px;
  }

  .lp_feature_img,
  .lp_voice_img {
    width: 100%;
  }

  .lp_feature_img .lp_num {
    font-size: 48px;
  }

  .lp_staff_profile {
    flex-direction: column;
  }

  .lp_section_flow .lp_section_title,
  .lp_flow_list {
    width: 100%;
    max-width: none;
  }

  .lp_flow_list {
    padding-left: 0;
    width: 100%;
  }

  .lp_section_qa {
    border-radius: 40px;
  }

  .lp_reason_title {
    font-size: 24px;
  }

  .lp_reason_tag {
    font-size: 24px;
  }

  .lp_reason_item {
    flex-wrap: wrap;
    padding: 24px 16px;
  }

  .lp_reason_icon {
    width: 24px;
  }

  .lp_reason_item_title {
    width: calc(100% - 32px);
    font-size: 18px;
  }

  .lp_reason_content {
    display: contents;
  }

  .lp_reason_points {
    width: 100%;
  }

  .lp_section_job {
    border-radius: 40px;
  }

  .lp_flow_list::before {
    left: 28px;
  }

  .lp_flow_icon_circle {
    width: 56px;
  }

  .lp_qa_question {
    font-size: 18px;
  }
}
