@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

.tagline,
.logo {
	text-align:left;
}

.navi-in > ul {
	justify-content: flex-start;
}

.page .logo-footer {
	display: none;
}

.footer-bottom-content {
	float: none;
	text-align: center;
}

/* ロゴ横 検索ボックス */
.header-in {
	position: relative;
}

.header-in .search-box {
	position: absolute;
	top: 50%;
	right: 16px;
	margin: 0;
	width: 280px;
	transform: translatey(-50%);
}

.header-in input[type="text"]{
	padding: 8px 14px 8px 40px;
	font-size: 14px;
	background: #edf6f9;
	border: 1px solid #9fcde1;
	border-radius: 16px 16px 16px 16px / 50% 50% 50% 50%;
}

.header-in .search-submit {
	left: 3px;
	right: auto;
	color: #378cb0;
}

@media screen and (max-width: 1023px) {
	.header-in .search-box {
		display: none;
	}
}

/* 転職ブログ用カスタムスタイル */

.post-19 .date-tags{
	display: none;
}

.career-hero {
    background: linear-gradient(135deg, #00A1E0 0%, #0080B3 50%, #006699 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.career-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.career-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.career-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #b3e5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
    to { text-shadow: 0 0 30px rgba(255, 255, 255, 0.8); }
}

.career-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.8;
}

.career-cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ffffff, #f0f8ff);
    color: #00A1E0 !important;
    padding: 15px 40px;
    text-decoration: none !important;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
}

.career-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #f0f8ff, #ffffff);
    color: #00A1E0 !important;
}

.career-features {
    padding: 60px 20px;
    background: linear-gradient(to bottom, #f8fdff, #ffffff);
}

.career-section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #00A1E0;
    position: relative;
}

.career-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00A1E0, #66c2f0);
    border-radius: 2px;
}

.career-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.career-feature-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 161, 224, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 161, 224, 0.1);
    position: relative;
    overflow: hidden;
}

.career-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00A1E0, #66c2f0);
}

.career-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 161, 224, 0.2);
}

.career-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00A1E0, #66c2f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.5rem;
}

.career-feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #00A1E0;
}

.career-feature-card p {
    color: #666;
    line-height: 1.7;
}

.career-posts {
    padding: 60px 20px;
    background: #f8fdff;
}

.career-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.career-post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.career-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.career-post-image {
    height: 180px;
    background: linear-gradient(45deg, #00A1E0, #66c2f0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.career-post-content {
    padding: 25px;
}

.career-post-date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.career-post-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
}

.career-post-excerpt {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .career-hero h1 {
        font-size: 2.2rem;
    }
    
    .career-hero p {
        font-size: 1.1rem;
    }
    
    .career-features-grid,
    .career-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .career-section-title {
        font-size: 2rem;
    }
}

/* Cocoonとの競合を避けるための調整 */
.career-hero h1,
.career-section-title,
.career-feature-card h3,
.career-post-title {
    font-family: inherit;
}

.career-cta-button,
.career-feature-card,
.career-post-card {
    box-sizing: border-box;
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}
