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

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

@charset "UTF-8";

/* Template & Designed by Towako. */
/* https://ninawas.me */

/* ウェブフォントの読み込み */
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDGothic&display=swap');

/* 全体に適用する */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: normal;
    font-family: 'BIZ UDGothic', sans-serif;
}

/* 基本設定 */
body {
    background-color: #fff;
    text-align: center;
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-size: 13px;
    color: #383838;
}

/* リンク */
a {
    color: #ed7e31;
    text-decoration: none;
    font-weight: bold;
}

a:hover{
    filter: blur(1.5px);
    transition: 0.7s;
}

/* ヘッダー */
header {
    position: relative;
    margin: 20px;
    min-height: 95vh;
    background: url('http://seikasm.xyz/wp-content/uploads/2025/01/image_rain-scaled.jpg') center/cover;
}

/* 見出し */
header h1 {
    text-indent: 0.7em;
    text-align: left;
    letter-spacing: 0.2em;
    font-weight: bold;
    font-family: 'BIZ UDGothic', cursive;
    font-size: 3.5em;
    color: #fff;
}

header #footer {
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-10%);
    padding: 0 1em;
    font-size: 1.1em;
    color: #fff;
}


/* ナビゲーション */
main nav {
    text-align: center;
    color: #383838;
    font-size: larger;
    margin: 10%;
}

main nav ul li {
    color: #383838;
    margin: 0.5em;
    list-style-type: none;
}

main nav ul li a {
    color: #383838;
    list-style-type: none;
    text-decoration: none;
}

main nav ul li a:hover {
    filter: blur(1.5px);
    transition: 0.7s;
}

/* セクション */
section {
    padding: 5em 3em;
    text-align: justify;
    word-break: break-all;
}

#info p {
    padding-left: 10px;
}

/* セクション見出し */
section #info h3 {
    position: relative;
    margin-top: 1em;
    margin-bottom: 1em;
    font-family: 'BIZ UDGothic', cursive;
}

h3 {
    padding: 2px 4px;
    color: #fff;
    line-height: 1.9;
    background: #ed7e31;
    display: inline
}

.h4 {
    position: relative;
    margin: 0%;
    padding-left: 10px;
    list-style-type: none;

}

/* ボックス */
.box {
    position: relative;
    padding-bottom: 2em;
}

/* 段落 */
section p,
article p {
    margin-bottom: 1em;
    font-size: 0.9em;
}

/* アイコン */
section img.icon {
    vertical-align: middle;
    width: 1.5em;
    height: auto;
}

/* 画像 */
section div.image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

/* アーティクル */
article {
    margin: 3em auto;
    width: 80%;
    max-width: 700px;
}

/* アーティクル画像 */
article img {
    width: 100%;
    height: auto;
}

/* 段落 */
article p {
    text-align: justify;
    word-break: break-all;
}

/* フォーム系 */
textarea,
input[type] {
    -webkit-appearance: none;
    padding: 0.3em 0.5em;
    background-color: #888;
    border: none;
    border-radius: 0;
    border-bottom-right-radius: 10px;
    color: #fff;
}

textarea {
    width: 200px;
    height: 70px;
}

input[type=text] {
    width: 100px;
}

input[type=submit] {
    width: auto;
}

/* 横幅768px以上で読み込む */
@media screen and (min-width:768px) {

    /* フォントサイズ */
    body {
        font-size: 14px;
    }
}

/* 横幅1024px以上で読み込む */
@media screen and (min-width:1024px) {

    /* フォントサイズ */
    body {
        font-size: 15px;
    }

    /* ヘッダーを左に固定 */
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 50%;
        float: left;
    }

    /* メインを右へ */
    main {
        width: 50%;
        float: right;
    }

}

</style>

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

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

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