.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.tab-btn {
	padding: 12px 28px;
	border: none;
	background: transparent;
	color: #888;
	font-size: 1em;
	font-weight: bold;
	cursor: pointer;
	position: relative;
	transition: color 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-family: "Noto Sans JP",Hiragino Sans,"繝偵Λ繧ｮ繝手ｧ偵ざ繧ｷ繝�け",Hiragino Kaku Gothic ProN,"繝偵Λ繧ｮ繝手ｧ偵ざ ProN W3","繝｡繧､繝ｪ繧ｪ",Meiryo,sans-serif;
	background-color: #2345a6;
	color: #fff;
	border-radius: 10px;
}

.tab-navigation-container {
	width: 50%;
	margin: 2em auto 0;
}

.tab-btn.active {
    background-color: #fa630e;
}

/* タブコンテンツ */
.tab-content {
    display: none;
    animation: fadeIn 0.6s ease-out;
}

.tab-content.active {
    display: block;
}

.products-grid {
	display: flex;
	gap: 32px;
	flex-wrap: wrap;
    justify-content: center;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    width: 45%;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(201, 149, 103, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 12px;
}

.product-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    width: 100%;
    height: auto;
    background: linear-gradient(135deg, #f5f1ed 0%, #ede8e3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    overflow: hidden;
    position: relative;
}

.product-info {
    padding: 24px;
    position: relative;
    z-index: 1;
}

.product-category {
    font-size: 0.6em;
    color: #fa630e;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.product-name {
	font-size: 1.2em;
	color: #000;
	margin-bottom: 8px;
	font-weight: bold;
}

.product-description {
	font-size: 0.7em;
	color: #717171;
	margin-bottom: 16px;
	line-height: 1.5;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.4rem;
    color: #1a1a1a;
    font-weight: 700;
}

.add-btn {
    background: linear-gradient(135deg, #d4a574, #c99567);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    font-weight: bold;
}

.add-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.add-btn:active {
    transform: scale(0.95);
}

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

@keyframes fadeInDown {
    from {
opacity: 0;
transform: translateY(-20px);
    }
    to {
opacity: 1;
transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
opacity: 0;
transform: translateY(20px);
    }
    to {
opacity: 1;
transform: translateY(0);
    }
}

/* レスポンシブ */
@media (max-width: 768px) {
    .header h1 {
font-size: 2.2rem;
    }

    .products-grid {
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
gap: 24px;
    }

    .tab-navigation {
gap: 4px;
    }

    .tab-btn {
padding: 10px 20px;
font-size: 0.9rem;
    }
}
















































.jcb-calculator-wrapper {
	max-width: 100%;
	margin: 40px auto;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(35, 69, 166, 0.15);
	width: 90%;
}

.jcb-calculator-header {
	padding: 10px 0;
	background-color: #2345A6;
	text-align: center;
}

.jcb-calculator-header p {
	font-size: 1.2em;
	color: #fff;
	margin-bottom: 8px;
	font-weight: bold;
}

.jcb-tab-navigation {
	display: flex;
	background-color: #fff;
	border-bottom: 1px solid #e0e0e0;
	padding: 0;
}

.jcb-tab-btn {
	flex: 1;
	padding: 16px;
	border: none;
	font-size: 15px;
	font-weight: 500;
	color: #999;
	background-color: transparent;
	border-bottom: none;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: inherit;
	text-align: center;
}

.jcb-tab-btn.active {
	font-weight: bold;
	color: #2345A6;
	background-color: #f0f4ff;
	border-bottom: 3px solid #2345A6;
	font-size: 20px;
	text-align: center;
}

.jcb-calculator-content {
	padding: 25px;
}

.jcb-tab-content {
	display: none;
}

.jcb-tab-content.active {
	display: block;
}

label {
	display: block;
	margin-bottom: 10px;
	font-weight: 700;
	color: #333;
	font-size: 18px;
}

.input-group {
	display: flex;
	gap: 8px;
	margin-bottom: 20px;
	border: 2px solid;
	padding: 0 15px 0 0;
}

input[type="number"] {
	flex: 1;
	padding: 14px;
	font-size: 20px;
	border: 2px solid #e0e0e0;
	border-radius: 6px;
	font-family: inherit;
	transition: border-color 0.3s;
	outline: none;
}

input[type="number"]:focus {
	border-color: #2345A6;
}

.currency-unit {
	line-height: 48px;
	font-weight: 700;
	color: #333;
	font-size: 16px;
}

.input-full {
	width: 100%;
	margin-bottom: 20px;
}

.input-full input {
	width: 100%;
	border: 2px solid #2345a6 !important;
}

.result-box {
	background-color: #f8fbff;
	padding: 20px;
	border-radius: 8px;
	border: 2px solid #2345A6;
}

.result-box h4 {
	margin-top: 0;
	margin-bottom: 15px;
	color: #2345A6;
	font-size: 18px;
	font-weight: 700;
}

.breakdown-item {
	display: flex;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px solid #e0e0e0;
	font-size: 16px;
}

.breakdown-item:last-child {
	border-bottom: none;
}

.breakdown-item span:first-child {
	color: #555;
}

.breakdown-item span:last-child {
    font-weight: 700;
    color: #2345A6;
}

.total-section {
	margin-top: 15px;
	padding: 15px;
	background-color: #2345A6;
	border-radius: 6px;
	color: #fff;
}

.total-section p {
	margin: 0;
}

.total-label {
	font-size: 13px;
	color: #e0e7ff;
	margin-bottom: 8px;
}

.total-amount {
	font-size: 32px;
	font-weight: 700;
	color: #fff;
}

.total-item {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
	align-items: center;
}

.total-item:last-child {
	margin-bottom: 0;
}

.total-item-label {
	font-size: 13px;
	color: #e0e7ff;
}

.total-item-value {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
}

.total-divider {
	border-top: 1px solid #5577dd;
	padding-top: 10px;
	margin-top: 10px;
}

.message-box {
	padding: 15px;
	border-radius: 6px;
	font-size: 14px;
	margin-bottom: 0;
}

.message-warning {
	background-color: #f8d7da;
	border: 1px solid #f5c6cb;
	color: #721c24;
}

.message-info {
	background-color: #fff3cd;
	border: 1px solid #ffc107;
	color: #856404;
	font-size: 13px;
	line-height: 1.5;
}

.message-empty {
	padding: 20px;
	background-color: #f9f9f9;
	border-radius: 6px;
	color: #999;
	font-size: 14px;
	text-align: center;
	border: 1px dashed #ddd;
}

.flow_img, .flow_img2 {
	display: none;
}



@media (min-width: 670px) {
.flow_img {
	display: block !important;
}
}

@media (max-width: 480px) {
.calculator-wrapper {
	margin: 20px auto;
}

.calculator-header h3 {
	font-size: 20px;
}

.tab-btn {
	font-size: 13px;
	padding: 12px;
}

.total-amount {
	font-size: 24px;
}

.calculator-content {
	padding: 15px;
}
}

.product-image img {
	width: 556px;
	height: 264px;
}

.lcl-training__mental.fadein .flow_img {
	width: 80%;
	margin: 0 auto;
}

.lcl-about {
	padding-bottom: 3em;
}

.lcl-main-txt__copy02 img {
	width: 45%;
}

#header .nav__link.nav__link_line {
    background: #00ba00;
    color: #fff;
    border: .2rem solid #00ba00;
}
#header .nav__link.nav__link_line:hover {
    background-color: #fff;
    color: #00ba00;
}

.lcl-interview .lcl-interview-cnt__btn.lcl-interview-cnt__btn--ceramics2 .lcl-interview-cnt__department, .lcl-interview .lcl-interview-modal.lcl-interview-modal--ceramics2 .lcl-interview-modal-header {
	background: #f22323;
}
.lcl-interview .lcl-interview-cnt__btn.lcl-interview-cnt__btn--ceramics3 .lcl-interview-cnt__department, .lcl-interview .lcl-interview-modal.lcl-interview-modal--ceramics3 .lcl-interview-modal-header {
	background: #6423f2;
}
.lcl-interview .lcl-interview-cnt__btn.lcl-interview-cnt__btn--ceramics4 .lcl-interview-cnt__department, .lcl-interview .lcl-interview-modal.lcl-interview-modal--ceramics4 .lcl-interview-modal-header {
	background: #f2238e;
}
.footer_link {
	width: 40%;
	margin-bottom: 10px;
}
.footer_link ul {
	display: flex;
	justify-content: space-between;
}
.footer_link ul a {
	border-bottom: 1px solid;
	color: #2345a6;
	font-weight: bold;
	font-size: 16px;
}
.app_flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	border-bottom: 3px solid;
	padding-bottom: 1.5em;
	margin-bottom: 1em;
	align-items: center;
	height: 10em;
}

.app_flex img {
	width: 30%;
}

.fixed_cv {
	position: fixed;
	bottom: 0;
	display: none;
}
.fixed_cv .nav__link.nav__link_line {
	background-color: #00c300;
}
.fixed_cv .nav__link.nav__link_line img {
	width: 50px;
	margin-right: 0;
}
.fixed_cv .nav__link {
	display: flex;
	align-items: center;
	background-color: #fa630e;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	width: 50%;
	justify-content: center;
	padding: 10px 0;
}
.fixed_cv .nav__link img {
	width: 35px;
	margin-right: 5px;
}

.footer-logo__img2 {
	display: none;
}

@media (max-width: 670px) {
.footer-logo__img1 {
	display: none;
}
.footer-logo__img2 {
	display: block;
}
.fixed_cv {
	z-index: 99999;
	display: flex;
	width: 100%;
}
.flow_img2 {
	display: block !important;
}
.tab-navigation-container {
	width: 100%;
	margin: 2em auto 0;
}
.jcb-tab-btn {
	padding: 16px 5px;
}
.jcb-calculator-wrapper {
	width: 95%;
}
.product-card {
	width: 95%;
}
.product-image img {
	width: auto;
	height: auto;
}
.product-category {
	font-size: 15px;
}
.product-name {
	font-size: 18px;
}
.product-description {
	font-size: 13px;
}
.product-price {
	font-size: 25px;
}
.tab-btn {
	width: 45%;
	text-align: center;
	margin: 3px;
}
.lcl-main-txt__copy02 img {
	width: 100%;
}
.lcl-main-txt {
	z-index: 100;
}
#header .header__in {
	justify-content: space-between;
}
.scr-anin2, .scr-anin4 {
	display: none !important;
}
.lcl-interview .lcl-interview-cnt__department {
	font-size: 1rem;
	font-size: 16px;
	letter-spacing: 0;
	padding: 5px 0;
	width: 17rem;
}
.lcl-keyword {
	padding-bottom: 3em;
}
.lcl-works .lcl-works__in {
	padding: 3rem 0;
}
.lcl-interview .lcl-interview__in {
	padding: 4rem 0;
}
.lcl-training .lcl-training__in {
	padding-bottom: 6rem;
	padding-top: 5rem;
}
.lcl-faq {
	background-size: 8rem 6.416rem;
	padding: 1em 0 0;
}
.lcl-faq .lcl-faq__in {
	padding-bottom: 4.5rem;
}
#footer {
	padding: 3rem 0 10rem;
}
.lcl-keyword .lcl-keyword__cnt {
	margin: 3rem auto 0;
}
#header .nav {
	width: 30rem;
}
.footer_link {
	width: 100%;
	margin-bottom: 0;
}
.footer_link ul {
	display: block;
	text-align: center;
}
.footer_link ul li {
	margin: 10px;
}
.lcl-keyword-grid__item.scr-anin.scr-anin--on {
	display: block;
	padding: 10px;
	height: auto;
	text-align: center;
}
.app_flex {
	height: auto;
}
.lcl-keyword .lcl-keyword-grid__item:nth-of-type(3) .lcl-keyword-grid-txt__ttl {
	font-size: 2rem;
	font-size: max(2rem,10px);
}
}