/* Reset and Base Styles */
:root {
    --color-primary: #56B36A;
    --color-secondary: #B6CD01;
    --color-text: #555555;
    --color-text-dark: #424242;
    --color-background: #FFFFFF;
    --color-background-light: #ECFFF0;
    --color-accent: #FF6A01;
    --font-family-base: 'Inter', 'Noto Sans JP', sans-serif;
    --max-width: 1224px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-base);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: white;
}

a:visited {
    color: white;
}

ul {
    list-style: none;
}
.project-detail-link {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 12px;
  background-color: #0073aa;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.b-white {
	background-color: #ffffff;
}
.entry {
	background-color: white;
	width: 30vw;
	max-width: 520px;
	height: 100%;
}
.entry-center {
	margin-top: 20px;
	text-align:center;
}
.um-327.um {
	padding: 0 2em;
}
._um_row_1 {
	display: flex;
	gap: 10px;
	margin: 0 !important;
}
.um-field-label label{
	color: black;
}
.um-right {
	display: none;
}
.underyellow {
	text-align: center;
    margin-top: 1em;
	color: black;
	box-decoration-break: clone; 
    -webkit-box-decoration-break: clone;
    position: relative; 
    display: inline; 
    z-index: 1; 
    line-height: 1.5; 
    font-size: 24px;
}

.underyellow::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: -5%;
    width: 100%;
    height: 60%;
    background-color: #FFFB00; 
    border-radius: 2px;
}

.underyellow span {
	color: #56B36A;
    font-size: 48px;
}

.site-header {
    /* 高さの指定 */
    height: 78px;
    /* 背景色を白色に設定 */
    background-color: #ffffff;
    /* 内部の要素を中央に配置するためのFlexbox設定 */
    display: flex;
    justify-content: center; /* 中央にコンテンツを寄せる */
    align-items: center; /* 垂直方向の中央揃え */
    width: 100%;
}

/* ヘッダーコンテンツのラッパー（内部の要素） */
.site-header > .site-branding,
.site-header > nav {
    /* Flexboxで左右の要素を配置 */
    display: flex;
    align-items: center;
    /* 要素間のスペースを空けるために flex-grow: 1 を使うか、
       max-widthを適用するラッパーを用意するのが一般的ですが、
       ここでは.site-header自体で幅を制御します */
}

/* ヘッダー内部の要素を格納するラッパー（仮定） 
   ※元のコードにはないため、ここでは.site-headerの内部要素に直接適用します
   */
.site-header {
    /* 内部の最大幅を制限し、中央寄せを実現する */
    /* 1120pxの幅を確保するために、内部要素の配置を調整 */
    padding: 0; /* paddingをリセット */
	margin:0 auto;
}

/* コンテンツの左右マージンと最大幅の調整 */
/* ここでは便宜上、.site-header内にさらにラッパーdivがある前提で設計します。
   もしラッパーがない場合、このスタイルを直接 .site-header に適用します。
   ここでは .site-header の子要素の配置で対応します。 */
.site-header {
    /* 最大幅の設定 */
    max-width: 1120px;
    justify-content: space-between;
}


/* ---------------------------------------------------------
   ロゴ（左側コンテンツ）のスタイル
   --------------------------------------------------------- */
.site-branding {
    /* h1またはロゴ画像の親要素 */
    flex-shrink: 0; /* 縮小させない */
}

.site-branding img {
    /* ロゴ画像の高さがヘッダー高に収まるように調整 */
    max-height: 78px; 
    height: auto;
    width: auto;
}

/* ---------------------------------------------------------
   ナビゲーション（右側コンテンツ）のスタイル
   --------------------------------------------------------- */
nav {
    flex-shrink: 0; /* 縮小させない */
}

.header-cta-menu {
    /* CTAボタンを横並びにする */
    display: flex;
    list-style: none; /* リストの点を削除 */
    margin: 0;
    padding: 0;
}

.header-cta-menu li {
    
}

.header-cta-menu li a.pl-btn {
    /* ボタンの基本スタイル */
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 0px;
    transition: background-color 0.3s;
	height: 78px;
    font-size: 1.5em;
}

/* 「無料登録」ボタンのスタイル */
/* 元のPHPコードでは .pl-btn--primary が無料登録とマイページ/案件一覧に使われているが、
   ここでは無料登録（未ログイン）に優先的に適用 */
.header-cta-menu li:nth-child(1) a.pl-btn--primary {
    /* 無料登録は #56B36A */
    background-color: #56B36A;
    color: #ffffff;
    border: 1px solid #56B36A;
}

/* 「ログイン」ボタンのスタイル */
.header-cta-menu li a.pl-btn--dark {
    background-color: #187549;
    color: #ffffff;
    border: 1px solid #187549;
}

/* ログイン後の「マイページ」「案件一覧」ボタンのスタイル */
/* 無料登録と同一のクラス名を持つため、色を統一（ここでは無料登録と同じ色） */
/* 必要に応じてこのクラス（pl-btn--primary）に別の色を指定してください */
.header-cta-menu li a.pl-btn--primary {
    background-color: #56B36A;
    color: #ffffff;
}

/* アイコンとテキストの間隔調整 */
.header-cta-menu li a i {
    margin-right: 5px;
}

.project-detail-link:hover {
  background-color: #005177;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.project-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  background-color: #fff;
  transition: box-shadow 0.3s;
}

.project-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.project-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.search_project {
	text-align: center;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #4B4B4B;
    text-align: center;
    display: inline-block;
	margin-top: 20px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 12px;
}

.section-title span {
    background-image: linear-gradient(to bottom right, #B4CC04, #008538);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 700;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

/* 下の線（細い線：1px） */
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #56B36A;
}

.section-title--white::before {
    background: #FFFFFF !important;
}
.section-title--white::after {
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary)) !important;
}

.btn {
    display: inline-block;
    padding: 24px 80px;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    background: linear-gradient(135deg, #FFF816, #FFB10C, #FF6A01);
    border: 0;
    border-radius: 100px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.6);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 18px 20px;
}

.header__inner img{
    max-width: 162px;
    max-height: 42px;
    margin: 0 auto;
    padding: 0;
}

.site-branding {
	max-width: var(--max-width);
    height: 78px;
}

/* Key Visual */
.kv {
    background-image: url(https://professionallink.jp/wp-content/uploads/2025/08/kv-background.png);
    background-size: cover;
    background-position: center;
    padding-top: 78px; /* header height */
    position: relative;
}

.kv::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.kv__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
    z-index: 1;
}

.kv__text-content {
    color: #fff;
}

.kv__sub-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    background-color: #fff;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 4px;
    text-shadow: none;
}

.kv__title {
    margin: 0.5em 0;

}

.kv__title span {
    font-size: 80px;
    color: white;
    font-weight: bold;
    background-image: linear-gradient(to right, #B6CD01, #56B36A);
    box-shadow: 0 0 20px black;
    padding: 0.2em 0.3em;
}

.kv__title span b {
    font-size: 80px;
    color: #FFFB00;
    font-weight: bold;
}

.kv__description {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
}

.kv__description span {
    color: #FFFB00;
}

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

.kv__feature-item {

    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    padding: 4em 0.4em;
    margin: 0 10px;
    box-shadow: 0 0 30px black; */
}

.kv__feature-title {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    background-image: linear-gradient(
    to top left,
    #008538,
    #B4CC04
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.3em;
}

.kv__feature-description {
    color: black;
    text-align: center;
    margin-top: 0;
    font-size: 15px;
    font-weight: bold;
}

.kv__feature-description span{
    color: #FF2E2E;
    text-align: center;
    margin-top: 0;
    font-size: 15px;
    font-weight: bold;
}

.kv__cta-button-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.cta-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 253px;
    height: 253px;
    border-radius: 50%;
    background: linear-gradient(180deg, #FFFB00, #FF9900, #FF6600);
    color: #fff;
    text-align: center;
    box-shadow: 0px 16px 24px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
}

.cta-button__sub-text {
    font-size: 24px;
    font-weight: 700;
    color: #FF2E2E;
}

.cta-button__main-text {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    text-shadow: 0px 0px 10px rgba(184, 0, 0, 1);
}

.problems {
    background-image: url(https://professionallink.jp/wp-content/uploads/2025/08/Frame171-1.png);
}

.problems__inner {
    background-image: url(https://professionallink.jp/wp-content/uploads/2025/08/section2.png);
    background-position: center center;
    background-repeat: no-repeat;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 20px;
}

.problems__content-1 {
    margin-bottom: 96px;
}

.problems__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 70px;
    gap: 30px;
}

.problem-box {
    background: linear-gradient(to bottom right, #EBEBEB, #D1D1D1);
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    text-align: left;
    flex-grow: 1;
    flex-shrink: 1;
    max-width: 500px;
    min-width: 280px;
    position: relative;
}

.problem-box {
    flex-basis: calc(50% - 15px);
}

.problem-box hr {
    border-top: 1px dashed #878787;
    height: 1px;
    margin-bottom: 10px;
}

.problem-box:nth-child(3) {
    flex-basis: 100%;
    margin: 0 auto;
}


.problem-box__number {
    width: 60px;
    height: 60px;
    text-align: center;
    display: block;
    font-size: 2em;
    font-weight: bold;
    color: #FF6600;
    margin-bottom: 10px;
    background: linear-gradient(
        to bottom right, 
        #555555 0%, 
        #555555 50%, 
        #424242 50.1%, 
        #424242 100%  
    );
    color: #FFFFFF;
    position: absolute; 
    top: -20px; 
    left: -20px;
    z-index: 10; 
    border: 2px solid #fff;
}

.problem-box__title {
    font-size: 1.5em;
    font-weight: 700;
    text-align: center;
    color: #4B4B4B;
    margin-bottom: 15px;
    line-height: 1.3;
}

.problem-box__title span {
  color: #FF2E2E;
}

.problem-box ul {
    list-style: none; 
    padding: 0;
    margin: 0;
}

.problem-box ul li {
    font-size: 0.95em;
    font-weight: bold;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

.section-title--white {
    color: #fff;
}

.section-title--white::after {
    background: #fff;
}

.solution-box {
    display: flex;
    align-items: center;
    gap: 32px;
	padding: 0 5em;
    background-color: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
    margin: 1em;
	background: white;
}

.solution-box__image {
    max-width: 463px;
    max-height: 298px;
    object-fit: cover;
}

.solution-box__text {
    flex: 1;
}

.solution-box__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.solution-box p {
    font-size: 20px;
    line-height: 2;
}

.solution-box p span {
    font-weight: bold;
    border-bottom: #FFFB00;
    background-image: linear-gradient(to top, transparent 50%, #FFFB00 50%);
    background-size: 100% 1.2em;
    background-repeat: no-repeat;
    background-position: left 300%;
    display: inline;
    padding-bottom: 2px;
}

/* Support Section */
.support {
    background: linear-gradient(to right, #B6CD01, #56B36A);
    padding: 80px 20px;
}

.support__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
    background: #FFF;
    padding: 5em;
}

.support__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.support-box {
    background-color: #fff;
    padding: 24px 16px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.support-box__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    min-height: 58px; 
}

.support-box__icon {
    height: 200px;
    margin-bottom: 16px;
}

.support-box p {
    font-size: 16px;
    text-align: left;
}

/* Reasons Section */
.reasons {
    background-color: #E8FFDC;
    padding: 80px 20px;
}

.reasons__inner {
    background: #FFFFFF;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 5em;
}

.reasons__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(min(450px, 100%), 1fr));
}

.reason-box {
    background-color: #fff;
    padding: 24px 40px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.reason-box__title {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.reason-box__graph {
    max-width: 327px;
    margin: 0 auto 24px;
}

.reason-box__graph-wrapper {
    position: relative;
    display: inline-block;
}

.reason-box__graph-text {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    font-weight: 700;
    color: var(--color-primary);
}

.reason-box__graph-text span {
    font-size: 2em;
}

.reason-box p {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.625;
}

/* Flow Section */
.flow {
    padding: 80px 20px;
    background-image: url(https://professionallink.jp/wp-content/uploads/2025/08/Frame171.png);
    background-position: center center;
    background-repeat: no-repeat;
	background-size: cover;
}

.flow__inner {
    background-color: #ffffff;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 5em;
}

.flow__list {
    position: relative;
    padding-left: 50px;
}

.flow__list::before {
    content: '';
    position: absolute;
	height: 95%;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #000;
}

.flow__item {
    margin-bottom: 32px;
    position: relative;
    display: flex;
}

.flow__item-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 8px;
}

.flow__item-number {
    width: 70px;
    height: 70px;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    font-family: 'Impact', sans-serif;
    flex-shrink: 0;
    position: absolute;
    left: -50px;
    top: 0;
}

.flow__item-title {
    width: 10em;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-left: 44px;
}

.flow__item p {
    font-size: 16px;
    padding-left: 44px;
}

/* FAQ Section */
.faq {
    background-color: #E6E6E6;
    padding: 80px 20px;
}

.faq__inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq__item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.faq__item summary {
    display: flex;
    align-items: center;
    padding: 16px 32px;
    cursor: pointer;
    list-style: none;
}

.faq__item summary::-webkit-details-marker {
    display: none;
}

.faq__q-icon {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-primary);
    margin-right: 16px;
}

.faq__question {
    font-size: 20px;
    font-weight: 700;
    flex-grow: 1;
}

.faq__toggle-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.faq__toggle-icon::before,
.faq__toggle-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #555;
    transform: translate(-50%, -50%);
    transition: transform 0.3s;
}

.faq__toggle-icon::before {
    transform: translate(-50%, -50%) rotate(90deg);
}
.faq__toggle-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq__item[open] .faq__toggle-icon::before {
    transform: translate(-50%, -50%) rotate(0deg);
}
.faq__item[open] .faq__toggle-icon::after {
    transform: translate(-50%, -50%) rotate(180deg);
}

.faq__answer {
    padding: 0 32px 16px 88px;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
}

.contact__inner {
    max-width: 1044px;
    margin: 0 auto;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 20px;
    font-weight: 700;
}

.required {
    background-color: #FF0000;
    color: #fff;
    font-size: 16px;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 10px;
}

.form-group input {
    background-color: var(--color-background-light);
    border: 1px solid #A3D7AF;
    border-radius: 3px;
    padding: 16px;
    font-size: 16px;
	width: 100%;
}

.form-group p {
	margin-bottom: 0.5em;
}

.form-group__name {
    gap: 10px;
}

.form-group__name p {
	display: flex;
	gap: 10px;
}

.btn--submit {
    align-self: center;
	display: inline-block;
    padding: 24px 80px !important;
    font-size: 36px;
    font-weight: 700;
    color: #fff !important;
    text-align: center;
    background: linear-gradient(135deg, #FFF816, #FFB10C, #FF6A01) !important;
    border: 0 !important;
    border-radius: 100px !important;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
	margin: 0 auto;
}

/* contactform7 */
.form-group-submit{
	margin: 0 auto;
}

.wpcf7-form-control-wrap {
	width: 100%;
}

/* Footer */
.footer {
    background-color: #234323;
    color: #fff;
    padding: 40px 20px;
}

.footer__inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer__top img {
    max-width: 162px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer__copyright {
    font-size: 12px;
}

/* Responsive Styles */
@media (width <= 1200px) {
    .kv__cta-button-wrapper {
        position: fixed;
        text-align: center;
        padding: 40px 0;
    }
    .cta-button {
        width: 8em;
        height: 8em;
    }
    .cta-button__main-text {
        font-size: 24px;
    }
	.cta-button__sub-text {
		font-size: 16px;
	}
}

@media (width <= 992px) {
    .section-title {
        font-size: 32px;
		padding: 20px 0 10px;
    }
	.kv {
		height: 70vh;
	}
    .kv__title {
        font-size: 60px;
    }
	.kv__title span {
		font-size: 36px;
	}
	.kv__title span b {
		font-size: 36px;
	}
    .kv__description {
        font-size: 24px;
    }
    .kv__features {
        flex-direction: column;
        align-items: center;
    }
    .solution-box {
        flex-direction: column;
    }
    .solution-box__image {
        width: 100%;
        height: auto;
    }
	.flow {
		padding: 0 10px;
	}
    .flow__list {
        padding-left: 0;
		padding: 0 10px;
		margin: 0;
    }
    .flow__list::before {
        left: 45px;
    	height: 90%;
	}
    .flow__item {
        padding-left: 90px;
		display: block;
    }
    .flow__item-number {
        left: 0;
    }
    .flow__item-title, .flow__item p {
        margin-left: 0;
        padding-left: 0;
    }
	.form-group label {
		font-size: 16px;
	}
	.wpcf7-spinner {
		display: none;
	}
}

@media (width <= 768px) {
    .kv__title {
        font-size: 48px;
    }
	.kv__title span {
		font-size: 36px;
	}
	.kv__title span b {
		font-size: 36px;
	}
    .kv__description {
        font-size: 20px;
    }
    .problems__grid, .support__grid, .reasons__grid {
        grid-template-columns: 1fr;
    }
    .faq__question {
        font-size: 16px;
    }
    .faq__q-icon {
        font-size: 24px;
    }
    .footer__top {
        flex-direction: column;
        gap: 20px;
    }
    .footer__nav {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

@media (width <= 576px) {
	html {
		scroll-behavior: smooth;
		overflow-x: hidden;
	}
	.site-branding {
		padding: 18px 10px;
	}
	.kv__inner {
		padding: 0px 20px;
	}
	.kv__sub-title {
		font-size: 16px;
		margin-bottom: 10px;
	}
	.kv__title span {
		font-size: 36px;
	}
	.kv__title span b {
		font-size: 36px;
	}
    .section-title {
        font-size: 28px;
    }
	.problems__content-1 h2 {
		margin-bottom: 2em;
	}
	.problem-box__title {
		font-size: 1.2em;
	}
	.solution-box__text {
		padding: 1em;
	}
    .kv__title {
        font-size: 36px;
    }
    .kv__description {
        font-size: 16px;
    }
	.problem-box__number {
		top: -30px;
	}
	.solution-box__title {
		font-size:20px;
	}
	.solution-box p {
		font-size: 14px;
	}
	.support {
		padding: 10px;
	}
	.support__inner {
		padding: 10px;
	}
	.reasons {
		padding: 10px;
	}
	.reasons__inner {
		padding: 0;
	}
	.reason-box {
		padding: 0 10px;
	}
	.reason-box__title {
		padding-top: 1em;
		font-size: 28px;
	}
	.reason-box p {
		font-size: 16px;
    	font-weight: normal;
    	line-height: 1.625;
	}
	.flow__inner {
		padding: 0;
	}
    .btn {
        font-size: 24px;
        padding: 16px 40px;
    }
    .form-group__name {
        flex-direction: column;
    }
}
/* kv__feature-item の既存スタイル (PC版のベース) */
.kv__feature-item {
    width: 250px;
    height: 287.5px;
    background-image: linear-gradient(
        to bottom,
        #FFFFFF 38%,
        #ECF5AA 100%
    );
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    padding: 0.4em 0.4em;
    margin: 0 10px;
}


@media (width <= 992px) {
    .kv__features {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-around;
        align-items: flex-start;
        overflow-x: hidden;
        gap: 15px;
        padding: 0 10px;
    }

    .kv__feature-item {
        flex-basis: calc(33.33% - 10px);
        max-width: 250px;
        min-width: 90px;
        height: 230px;
        padding: 1.8em 0.4em;
        
        margin: 0;
        flex-grow: 1;
        flex-shrink: 1;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        overflow: hidden; 
    }

    .kv__feature-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 0.2em;
        word-break: break-word;
    }
    .kv__feature-description {
        font-size: 16px;
        line-height: 1.3;
        word-break: break-word; 
    }
	.problems__inner {
		padding: 10px;
	}
	.problems__grid {
		padding: 0 1em;
	}
}

@media (width <= 768px) {
    .kv__features {
        gap: 10px;
        padding: 0 5px;
    }
    .kv__feature-item {
        flex-basis: calc(33.33% - 7px);
        min-width: 80px;
        height: 170px;
        padding: 1.5em 0.3em;
    }
    .kv__feature-title {
        font-size: 20px;
    }
    .kv__feature-description {
        font-size: 12px;
    }
	.kv__feature-description span {
		font-size: 16px;
	}
}

@media (width <= 576px) {
    .kv__features {
        gap: 5px;
        padding: 0 5px;
    }

    .kv__feature-item {
        flex-basis: calc(33.33% - 4px);
        min-width: 70px;
        height: 128px;
        padding: 2.5em 0.2em 1em;
    }
    .kv__feature-title {
        font-size: 15px;
        line-height: 1.1;
    }
    .kv__feature-description {
        font-size: 10px;
        line-height: 1.2;
    }
	.kv__feature-description span {
		font-size: 12px;
	}
	
}
.site-header, header { position: relative; } 
.pl-header-cta{
  position: absolute; right: 16px; top: 12px;
  display: flex; align-items: center; z-index: 20;
}

.pl-btn{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 8px; font-weight: 700;
  text-decoration: none; line-height: 1; white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

.pl-btn--primary{
  color: #fff; background: linear-gradient(135deg,#007a4d 0%, #1a8f5a 100%);
}
.pl-btn--primary:hover{ filter: brightness(1.05); }


.pl-btn--dark{
  color:#fff; background:#167a4b;
}
.pl-btn--dark:hover{ filter: brightness(1.06); }

.pl-btn i{ font-size: .95em; }


.pl-link-company:hover {
  color: #111;
}
.pl-link-company {
  font-size: 14px;
color:black !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
	margin-right:12px;
}

.pl-link-company:hover {
  color: #22c55e;
}

.pl-link-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  background-color:black; 
  border-radius: 50%;
}

@media (max-width: 768px){
  .pl-header-cta{ position: static; margin-left: auto; padding: 8px 16px 0; }
  .pl-btn{ padding: 9px 14px; font-size: 14px; }

}
