
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');

/*!
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
*/

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



/* 基本設定＜始まり＞*/

*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
/* 全体に適用する場合 */

body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  background: transparent;
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 8px;
  border: 2px solid transparent;
  background-clip: padding-box;
}


.article h2 {
	background: none;
	padding: 0;
	font-weight: normal;
}

.article h3 {
	border-top: none;
	border-bottom: none;
	border-left: none;
	border-right: none;
	padding: 0;
	font-weight: normal;
}

.article h4 {
	border-top: none;
	border-bottom: none;
	padding: 0;
	font-weight: normal;
}

.article h5 {
	border-bottom: none;
	padding: 0;
	font-weight: normal;
}

.article h6 {
	border-bottom: none;
	padding: 0;
	font-weight: normal;
}

.article p {
	border-bottom: none;
	padding: 0;
}

.entry-title {
	display: none;
}

.entry-card .cat-label {
	display: none;
}

article {
	margin: 0 auto !important;
	padding: 0;
}
main{
	margin: 0;
	padding: 0 !important;
	border: 0 !important;
}
.entry-header{
	display: none;
}
.wp-block-image {
  margin-bottom: 0;
}
.content{
	margin: 0;
}
.content-in {
	width: 100% !important;
}

.container {
	width: 100% !important;
	
}
.entry-content{
	margin: 0;
}
.footer {
	margin-top: 0;
	padding: 0px !important;
}
/* 基本設定＜終わり＞*/


/*削除要素*/

#header-container {
	display: none;
}

#header-container {
	display: none;
}
#footer{
	display: none;
}


/*デザイン*/

/* ===== Base Styles ===== */


:root {
    --primary: #7cf0ff;
    --secondary: #3358ff;
    --accent: #33ccff;
    --dark: #111111;
    --light: #f8f9fa;
    --text: #333333;
    --white: #ffffff;
    --gray: #888888;
    --light-gray: #eeeeee;
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-secondary: linear-gradient(135deg, var(--secondary), var(--accent));
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --instagram: #e1306c;
    --tiktok: #000000;
    --twitter: #1da1f2;
    --youtube: #ff0000;
}

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

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.cms-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-secondary);
    transition: 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

h2.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
}


/* ===== Activities Section ===== */
.activities {
    background-color: var(--light);
    position: relative;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.activity-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.activity-icon {
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.activity-icon i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.activity-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.activity-card p {
    color: var(--gray);
}
/* ===== Achievements Section ===== */
.achievements {
    background-color: var(--light);
    position: relative;
}

.achievements-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.slider-container {
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.achievement-card {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
}

.achievement-image {
    height: 300px;
}

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

.achievement-content {
    padding: 2rem 1rem;
}

.achievement-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.achievement-stats {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.achievement-stats .stat {
    flex: 1;
    text-align: center;
}

.achievement-stats .label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.2rem;
}

.achievement-stats .value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--gradient-primary);
    color: var(--white);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
    margin: 0 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--gradient-primary);
    width: 30px;
    border-radius: 10px;
}

/* ===== Platforms Section ===== */
.platforms {
    background-color: var(--white);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.platform-card {
    background-color: var(--light);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.platform-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    transition: var(--transition);
}

.platform-card.instagram::after {
    background: var(--instagram);
}

.platform-card.tiktok::after {
    background: var(--tiktok);
}

.platform-card.twitter::after {
    background: var(--twitter);
}

.platform-card.youtube::after {
    background: var(--youtube);
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.platform-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.platform-card.instagram .platform-icon {
    color: var(--instagram);
}

.platform-card.tiktok .platform-icon {
    color: var(--tiktok);
}

.platform-card.twitter .platform-icon {
    color: var(--twitter);
}

.platform-card.youtube .platform-icon {
    color: var(--youtube);
}

.platform-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.platform-card p {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.platform-stats {
    background-color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
}

.platform-stats .stat {
    margin-bottom: 0.5rem;
}

.platform-stats .stat:last-child {
    margin-bottom: 0;
}

.platform-stats .label {
    font-size: 0.8rem;
    color: var(--gray);
    display: block;
    margin-bottom: 0.2rem;
}

.platform-stats .value {
    font-weight: 700;
}

/* ===== Services Section ===== */
.services {
    background-color: var(--light);
}

.services-container {
    display: flex;
    gap: 3rem;
}

.services-tabs {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-tab {
    padding: 1.2rem 2rem;
    background-color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.service-tab.active,
.service-tab:hover {
    color: var(--white);
}

.service-tab.active::before,
.service-tab:hover::before {
    width: 100%;
    z-index: -1;
}

.service-content-container {
    flex: 2;
    position: relative;
}

.service-content {
    display: none;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    animation: fadeIn 0.5s ease;
}

.service-content.active {
    display: flex;
    flex-direction: column;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-image {
    height: 250px;
}

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

.service-details {
    padding: 2rem;
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.service-details p {
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--primary);
    margin-right: 0.8rem;
}

/* ===== Contact Section ===== */
.contact {
    background-color: var(--white);
}

.contact-container {
    display: flex;
    gap: 3rem;
}

.contact-form-container {
    max-width: 800px !important;
    margin: 0 auto;
}

.contact-form-container,
.contact-info-container {
    flex: 1;
    background-color: var(--light);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.contact-form-container h3,
.contact-info-container h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.required {
    color: var(--primary);
}

input,
textarea {
    width: 100%;
    padding: 0.8rem 0;
    border: none;
    background-color: transparent;
    font-family: inherit;
    font-size: 1rem;
}

textarea {
    overflow-y: auto;
    overflow-x: hidden;
    resize: vertical;
}


input:focus,
textarea:focus {
    outline: none;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--light-gray);
}

.form-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

input:focus~.form-line::after,
textarea:focus~.form-line::after {
    width: 100%;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    cursor: pointer;
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 18px;
    width: 18px;
}

.checkmark {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: var(--white);
    border-radius: 4px;
    margin-right: 10px;
    box-shadow: 0 0 0 1px #ddd;
}

.checkbox-label input:checked~.checkmark {
    background: var(--gradient-primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-label input:checked~.checkmark:after {
    display: block;
}

.checkbox-label .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.privacy-link {
    color: var(--primary);
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-right: 1rem;
}

.contact-text h4 {
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.contact-text .small {
    font-size: 0.8rem;
    color: var(--gray);
}

.social-links h4 {
    margin-bottom: 1rem;
    font-weight: 700;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons .social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-icons .social-icon:hover {
    transform: translateY(-5px);
}

.social-icons .instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icons .twitter {
    background-color: var(--twitter);
}

.social-icons .youtube {
    background-color: var(--youtube);
}

.social-icons .tiktok {
    background-color: var(--tiktok);
}

/* ===== Footer ===== */
footer {
    background-color: var(--dark);
    color: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo {
    max-width: 200px;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-links-column h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-links-column ul {
    list-style: none;
}

.footer-links-column ul li {
    margin-bottom: 0.8rem;
}

.footer-links-column ul li a {
    color: var(--gray);
    transition: var(--transition);
}

.footer-links-column ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .catchphrase {
        font-size: 3rem;
    }

    .services-container {
        flex-direction: column;
    }

    .services-tabs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }

    .services-container {
        flex-direction: column;
        overflow: hidden;
    }

    .contact-container {
        flex-direction: column;
        overflow: hidden;
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    /* AOS アニメーション方向の調整 */
    [data-aos="fade-right"],
    [data-aos="fade-left"] {
        transform: translate(0) !important;
    }

    /* 992px以下では左右からのアニメーションを上下に変更 */
    .contact-form-container[data-aos="fade-right"],
    .services-tabs[data-aos="fade-right"] {
        transform: translateY(50px) !important;
    }

    .contact-info-container[data-aos="fade-left"],
    .service-content-container[data-aos="fade-left"] {
        transform: translateY(50px) !important;
    }

    /* アニメーション完了後の状態 */
    .contact-form-container[data-aos="fade-right"].aos-animate,
    .services-tabs[data-aos="fade-right"].aos-animate,
    .contact-info-container[data-aos="fade-left"].aos-animate,
    .service-content-container[data-aos="fade-left"].aos-animate {
        transform: translateY(0) !important;
    }
}

@media (max-width: 768px) {

    .cms-container {
        width: 95%;
        /* コンテナ幅を少し広げる */
        padding: 2rem 0;
    }

    /* 余白調整 */
    .section-header {
        margin-bottom: 2rem;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: block;
    }

    .catchphrase {
        font-size: 2.5rem;
    }

    .social-visual {
        gap: 1rem;
    }

    .social-card {
        width: 100px;
        height: 140px;
    }

    .services-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievement-card {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    h2.section-title {
        font-size: 2rem;
    }

    .catchphrase {
        font-size: 2.5rem;
    }

    .services-tabs {
        grid-template-columns: 1fr;
    }

    .social-visual {
        flex-wrap: wrap;
        justify-content: center;
    }

    .influencer-filter {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 100%;
        max-width: 300px;
    }

    .cms-container {
        width: 92%;
        padding: 2rem 0;
    }

    /* 各セクションの内部余白調整 */
    .contact-form-container,
    .contact-info-container,
    .service-content .service-details {
        padding: 1.5rem;
    }

}

@media (max-width: 450px) {

    .catchphrase {
        font-size: 2.0rem;
    }

    .main_list {
        font-size: 5vw !important;
    }

}

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

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

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