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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

.fullscreen {
    width: 100vw;
    height: 100vh;
    background: url('https://vip.ayamecreation.com/wp-content/uploads/2025/03/光の宮殿_フロントページ背景画像.png') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px; /* タイトルとメニューの間にスペース */
}

/* タイトルデザイン */
.main-title {
    font-size: 3.6rem;
    color: #fcfcfcee;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
    letter-spacing: 2px;
}

.subtitle {
    font-size: 2.2rem;
    color: #fcfcfcee;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    font-style: italic;
    margin-bottom: 20px; /* メニューとの間隔 */
}

/* メニューのデザイン */
.nav-links {
    display: flex;
    flex-direction: column; /* 縦方向に並べる */
    align-items: center; /* 中央揃え */
    gap: 30px; /* ボタンの間隔 */
}


.nav-links a {
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
	width: 500px;
    transition: 0.3s;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.85);
    color: #2e4d28;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
	.subtitle {
        font-size: 1.8rem;
    }
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links a {
        font-size: 1.2rem;
    }
}



/* フロントページのみサイドバーを非表示にする */
body.home #sidebar {
    display: none;
}

/* フロントページのコンテンツ全体の幅を100%に設定する */
body.home .l-wrapper {
    display: flex;
    flex-direction: column;
}

/* フロントページのメインコンテンツの幅を100%にする */
body.home #content {
    width: 100%;
    margin: 0; /* 余白を削除 */
}

/* メインコンテンツの内側のパディングを調整する（必要に応じて） */
body.home .entry {
    padding: 0 20px; /* 必要に応じて変更 */
}


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

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

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