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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/<!DOCTYPE html>
<html lang="ja">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>動画編集ポートフォリオ</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }

        header {
            background-color: #333;
            color: white;
            padding: 20px;
            text-align: center;
        }

        header h1 {
            margin: 0;
            font-size: 36px;
        }

        section {
            padding: 50px;
            text-align: center;
        }

        section h2 {
            font-size: 30px;
            margin-bottom: 20px;
        }

        .portfolio-grid {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .portfolio-item {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            width: 300px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .portfolio-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .portfolio-item h3 {
            margin: 15px;
            font-size: 22px;
        }

        .portfolio-item p {
            margin: 15px;
            font-size: 16px;
            color: #555;
        }

        .portfolio-item a {
            display: block;
            padding: 10px;
            background-color: #333;
            color: white;
            text-decoration: none;
            text-align: center;
            border-radius: 0 0 8px 8px;
        }

        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 20px;
        }

        footer p {
            margin: 0;
        }

        footer a {
            color: white;
            text-decoration: none;
        }
    </style>
</head>
<body>

    <header>
        <h1>動画編集ポートフォリオ</h1>
        <p>あなたのプロジェクトに適した動画編集を提供します。</p>
    </header>

    <section>
        <h2>プロジェクト例</h2>
        <div class="portfolio-grid">
            <!-- 1つ目のポートフォリオアイテム -->
            <div class="portfolio-item">
                <img src="https://via.placeholder.com/300x200" alt="プロジェクト1">
                <h3>プロジェクト1</h3>
                <p>音楽ビデオの編集</p>
                <a href="https://www.example.com" target="_blank">詳細を見る</a>
            </div>

            <!-- 2つ目のポートフォリオアイテム -->
            <div class="portfolio-item">
                <img src="https://via.placeholder.com/300x200" alt="プロジェクト2">
                <h3>プロジェクト2</h3>
                <p>YouTubeコンテンツ編集</p>
                <a href="https://www.example.com" target="_blank">詳細を見る</a>
            </div>

            <!-- 3つ目のポートフォリオアイテム -->
            <div class="portfolio-item">
                <img src="https://via.placeholder.com/300x200" alt="プロジェクト3">
                <h3>プロジェクト3</h3>
                <p>短編映画の編集</p>
                <a href="https://www.example.com" target="_blank"_
*必要ならばここにコードを書く*/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
// functions.php に追加
add_filter('the_content', 'remove_anchor_tags_with_regex', 20);
function remove_anchor_tags_with_regex($content) {
    // <a ...>...</a> を中身だけ残して置換
    $content = preg_replace('/<a\b[^>]*>(.*?)<\/a>/is', '$1', $content);
    return $content;
}
  /*必要ならばここにコードを書く*/
}

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

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