@charset "UTF-8";

/* 共通部分
------------------------------- */
html {
    font-size: 100%;
}
body{
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic" ,"Noto Sans JP", sans-serif;
    line-height: 1.7;
    color: rgb(7, 7, 7);
    margin: 0;
}
a{
    text-decoration: none; 
}
img{
    max-width: 100%;
}

/* メイン表示アニメーション */
body.fade-start {
    opacity: 0;
    transition: opacity 2s ease;
}
body.fade-end {
    opacity: 1;
}
.fadein {
  will-change: opacity, filter;
}

/* 背景アニメーション */
#particles-js {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -10;
    background-color: #ffffff; /* 背景色 */
}

/* レイアウト */
.wrapper {
    max-width: 100%;
    margin: auto;
    padding: 0 1.5px;
}
.align-center {
    text-align: center;
}

/* 見出し */
.font-english {
    font-family: 'Philosopher', sans-serif;
    font-weight: normal;
}
.page-title,
.heading-large,
.heading-medium {
    font-size: 2rem;
    text-align: center;
}
.page-title {
    padding-top: 13rem;
    line-height: 1.4;
    color: white;
	-webkit-text-stroke: 1px #F8F8F8;
	text-shadow: 0px 1px 4px #23430C;
    position: relative;
    margin-left: 10px;
}
.heading-large{
    margin-bottom: 2rem;
}
.page-title .cursor {
  margin-left: -0.1rem; /* ← カーソルを左に寄せる */
}
.cursor {
    color: white;
    background: none;
    display: inline;      /* ブロック寄りにしてサイズ制御しやすく */
    width: 1ch;                 /* 1文字幅で幅固定（文字幅に合わせる） */
    animation: blink 1s step-end infinite;
    vertical-align: bottom;     /* 文字のベースラインに合わせる */
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ボタン */
.btn {
    display: inline-block;
    font-size: .8rem;
    background-repeat: no-repeat;
    background-position: 100% 0;
    background-size: 200% auto;
    background-image: linear-gradient(
        to right,
        #0bd 0%,
        #0bd 50%,
        rgb(79, 80, 80) 50%,
        rgb(79, 80, 80) 100%
    );
    box-shadow: 0 3px 10px rgb(0 0 0 / 16%);
    color: #fff;
    border-radius: 5px;
    padding: .7rem 1rem;
    transition: background-position ease 0.4s;
}
.btn:hover {
    background-position: 0 0;
}

.more {
    display: inline-block;
    font-size: .8rem;
    background-repeat: no-repeat;
    background-position: 100% 0;
    background-size: 200% auto;
    background-image: linear-gradient(
        to right,
        #0bd 0%,
        #0bd 50%,
        rgb(79, 80, 80) 50%,
        rgb(79, 80, 80) 100%
    );
    box-shadow: 0 3px 10px rgb(0 0 0 / 16%);
    color: #fff;
    border-radius: 5px;
    padding: .7rem 1rem;
    animation: more 2s ease-in-out infinite;
    transition: background-position 0.3s ease; /* 追加: 背景位置にトランジション */
}
/* アニメーション定義 */
@keyframes more {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
.more:hover {
    animation-play-state: paused;     /* アニメーション停止 */
    background-position: 0 0;
}

/* iframe */
iframe {
    width: 100%;
}

/* ヘッダー
------------------------------- */
.page-header {
    position: sticky;
    top: 0;
    padding: .5rem 2rem 0;
    background: linear-gradient(270deg, rgba(170,170,170,1), rgba(210,210,210,1), rgba(170,170,170,1));
    background-size: 600% 400%;
    background-position: 0% 0%;
    animation: gradientSlide 10s ease-in-out infinite;
    display: flex; 
    z-index: 999;
}
@keyframes gradientSlide {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.logo {
    width: 95px;
    padding-top: 10px;
    transition: transform 0.3s ease;
}
.logo:hover {
    transform: scale(1.05); /* 10% 拡大 */
}
.align-center,.main-nav{
    top: 0;
    text-decoration: none;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    font-size: 1.0rem;
    list-style: none;
}
.main-nav a {
    color: #222222;
}
.main-nav a:hover {
    color: #0bd;
}

/* ハンバーガーアイコンのスタイル */
/* モバイル用：799px以下で切り替え */
@media (max-width: 799px) {
    .hamburger {
        width: 34px;
        height: 24px;
        position: relative;
        cursor: pointer;
        z-index: 1000;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .hamburger span {
        position: absolute;
        height: 2px;
        width: 100%;
        background: #333;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

        /* 通常：三本線（上中下） */
        .hamburger span:nth-child(1) {
        top: 0;
    }
        .hamburger span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }
        .hamburger span:nth-child(3) {
        bottom: 0;
    }

        /* 変形時：×にクロス */
        .hamburger.open span:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }
        .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
        .hamburger.open span:nth-child(3) {
        bottom: auto;
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
    }
    .main-nav {
        display: none; /* 初期は非表示 */
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1.5rem 0;
        background: rgba(255, 255, 255, 0.8);
        position: absolute;
        top: 60px;
        right: 0;
        left: 0;
        z-index: 999;
    }
    .main-nav.open {
        display: flex;
    }
    .hamburger {
        display: flex;
        position: absolute;       /* 右端に固定 */
        right: 2rem;
        top: 1.5rem;
        z-index: 1000;
    }
    .page-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ヘッダーカバー画像
------------------------------- */
.cover {
    background-size: cover;
    background-position: center bottom;
    height: 610px;
}
.sub-cover {
    background-size: cover;
    background-position: center bottom;
    height: 450px;
    margin-bottom: 4rem;
}

/* HOME
------------------------------- */
.cover-home {
    background-image: url(../images/cover-home-s.webp);
}
.about_F {
    max-width: 800px;
    padding: 5rem 0;
}
.about {
    max-width: 800px;
    padding: 2rem 1.5rem;
    margin: 3rem auto 4rem;
}
.about p {
    margin-bottom: 3rem;
    text-align: center;
}
/* top_news */
.news-list{
    max-width: 916px;
    list-style: none outside;
    padding: 2.5rem 2.5rem 1.5rem;
    margin: 0 auto 2rem;
}
.news-list .item a{
    display: flex;
    flex-wrap: wrap;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #CCC;
    padding: 15px 20px;
}
.news-list .item:first-child a{
    border-top: 1px solid #CCC;
}
.news-list .item .date{
    margin: 0;
    min-width: 100px;
    font-size: 14px;
    color: #999;
    padding: 0 20px 0 0;
}
.news-list .item .title{
    margin: 0;
    width: 100%;
    margin-top:10px
}
.news-list .item .category{
    margin: 0;
    min-width: 140px;
    padding: 0 20px 0 0;
}
.news-list .item .category span{
    background: #faf7f0;
    text-align: center;
    display: inline-block;
    padding: 5px 20px;
    font-size: 12px;
    line-height: 1;
    border-radius: 5px
}
.news-list .item a:hover .title{
  color: #00F;
}

/* About
------------------------------- */
.cover-about {
    background-image: url(../images/cover-about-s.webp);
}
.about-greet {
    margin-bottom: 3rem;
    text-align: center;
}
.about-greet-title {
    font-weight: normal;
    padding: 0;
    margin-bottom: 1.25rem;
    text-align: center;
}
.about-post {
    margin-bottom: 3rem;
}
.about-post-title {
    font-weight: normal;
    padding: 0;
    margin-bottom: 1.25rem;
    text-align: center;
}
/* table01 */
.aboutus {
    max-width: 916px;
    background-color: #faf7f0;
    border-spacing: 0;
    border-radius: 48px;
    padding: 1.5rem 2.5rem 1.5rem;
    margin: 0 auto 2rem;
}
.aboutus tr:last-child th,
.aboutus tr:last-child td {
    border-bottom: none;
}
.aboutus th,
.aboutus td {
  width: 100%;
  border-bottom: 1px solid #aaa;
  padding: 10px 0;
}

.aboutus th {
  width: 40%;
}

/* NEWS
------------------------------- */
.cover-news {
    background-image: url(../images/cover-news-s.webp);
}

/* 記事部分 */
.post {
    margin-bottom: 3rem;
}
.post-title {
    font-weight: normal;
    padding: 0;
    margin-bottom: 1.25rem;
    text-align: center;
}
.post-info {
    display: block;
    gap: 1rem;
    margin-bottom: 2rem;
}
.post-cat {
    display: flex;
    gap: .5rem;
    list-style: none;
}
.post-cat li span {
    color: #fff;
    background-color: #818181;
    border-radius: 5px;
    font-size: .7rem;
    padding: .5rem .7rem;
    text-align: center;
    display: inline-block;
    line-height: 1;
}
.post div {
    width: 100%;
    background-color: #faf7f0;
    border-radius: 8px;
    padding: 1.5rem 1.5rem ;
    margin-bottom: .5rem;
}
.post-date {
    font-size: .875rem;
}
.post p {
    line-height: 2;
}

/* サイドバー */
.side-menu {
    list-style: none;
    text-align: center;
    margin-bottom: 4rem;
}
.side-menu li {
    border-bottom: 1px solid #c9c2bc;
}
.side-menu a {
    color: #432;
    display: block;
    padding: 1rem;
}
.side-menu a:hover {
    color: #0bd;
}


/* CONTACT
------------------------------- */
.cover-contact {
    background-image: url(../images/cover-contact-s.webp);
}

/* 店情報 */
.location {
    margin-bottom: 3.5rem;
}
.location-info {
    margin-bottom: 2rem;
}
.location-info .info {
    padding: 0;
}
.location-map {
    margin: auto;
    margin-bottom: 2rem;
}


/* お問い合わせ */
.email {
    max-width: 916px;
    background-color: #faf7f0;
    border-radius: 48px;
    padding: 1.5rem 2.5rem 2.5rem;
    margin: 0 auto 2rem;
}
.email p {
    margin: 1rem 0 2rem;
}

/* 共通設定 */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* フォーム全体のスタイル */
.form_C {
    background-color: white;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* ラベルのスタイル */
.form_C label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #555;
}

/* 入力欄のスタイル */
.form_C input, .form_C textarea {
    width: 100%; /* box-sizingが適用されるので、paddingやborder込みで100%に収まる */
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* テキストエリアの高さを調整 */
.form_C textarea {
    resize: vertical;
    height: 120px;
    margin-bottom: 20px;
}

/* 確認画面
------------------------------- */
.confirm {
    margin: 3rem 10px;
}

/* 確認画面レイアウト */
.email-C {
    background-color: #faf7f0;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* 確認項目 */
.label-C {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #555;
}

/* 確認内容 */
.text-C {
    max-width: 100%;
    width: 100%;
    white-space: pre-wrap; /* 改行とスペースを保持したまま折り返す */
    word-wrap: break-word; /* 長い単語も折り返し */
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 20px;
    font-size: 16px;
}

/* reCAPTCHAの中央寄せ */
#recaptcha-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* ボタン */
.btn-C {
    display: inline-block;
    font-size: .8rem;
    background-repeat: no-repeat;
    background-position: 100% 0;
    background-size: 200% auto;
    background-image: linear-gradient(
        to right,
        #0bd 0%,
        #0bd 50%,
        rgb(79, 80, 80) 50%,
        rgb(79, 80, 80) 100%
    );
    box-shadow: 0 3px 10px rgb(0 0 0 / 16%);
    color: #fff;
    border-radius: 5px;
    padding: .7rem 1rem;
    transition: background-position ease 0.4s;
    margin: 0 20px;
}
.btn-C:hover {
    background-position: 0 0;
}

/* Thanks
------------------------------- */
.thanks {
    width: 100%;
    padding: 2rem 1.5rem;
    margin: 3rem auto 4rem;
}
.thanks p {
    margin-top: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

/* フッター
------------------------------- */
.page-footer {
    position: relative;
    padding-top: 4rem;
    margin-top: 6rem;
    background: linear-gradient(270deg, rgba(200,200,200,0.6), rgba(230,230,230,0.4), rgba(200,200,200,0.6));
    background-size: 600% 400%;
    background-position: 0% 0%;

    animation: gradientSlide 10s ease-in-out infinite;
}

.info {
    width: 100%;
    max-width: 544px;
    margin: auto;
    padding: 0 1.5rem;
    border-spacing: 0;
}
.info th,
.info td {
    border-bottom: 1px solid #c9c2bc;
}
.info th {
    text-align: left;
    font-weight: normal;
    padding: 1rem;
}
.info td {
    padding: 1rem 0;
}
.copyright {
    background-color: rgb(65, 55, 46);
    text-align: center;
    padding: 2rem 0;
    margin-top: 6rem;
    color: #fff;
}
.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    font-size: .8rem;
    list-style: none;
}
.footer-nav a {
    color: #dfdfdf;
}
.footer-nav a:hover {
    color: #0bd;
}

/* デスクトップ版
------------------------------- */
@media (min-width: 800px) {
    /* 見出し */
    .page-title {
        font-size: 5rem;
        padding-top: 10rem
    }
    .heading-large {
        font-size: 4rem;
    }
    .post-title {
        font-size: 2rem;
        text-align: center;
    }

    /* ヘッダー */
    .page-header {
        justify-content: space-between;
        padding-top: 1rem;
    }
    .main-nav {
        font-size: 2rem;
    }
    .logo {
        width: 140px;
        padding-top: 0;
    }

    /* ヘッダーカバー画像
    ------------------------------- */
    .sub-cover {
        height: 400px;
        margin-bottom: 6rem;
    }

    /* HOME */
    .cover-home {
        background-image: url(../images/cover-home-l.webp);
    }
    /*top_news*/
    .news-list .item a{
        flex-wrap: nowrap;
    }
    .news-list .item .date{
        min-width: 120px;
    }
    .news-list .item .title{
    margin-top: 0;
    }
    /*top_about*/
    .about_F {
        padding: 13rem  0;
    }
    .about {
        margin: 4rem auto 0;
    }
    .about p {
        font-size:24px;
    }

    /* About */
    .cover-about {
        background-image: url(../images/cover-about-l.webp);
    }
    .about-post {
        width: 100%;
    } 
    /* table01 */
    .aboutus {
        width: 100%;
        background-color: #faf7f0;
        border-spacing: 0;
        border-radius: 48px;
        padding: 1.5rem 2.5rem 1.5rem;
        margin: 0 auto 2rem;
    }
    .aboutus th,
    .aboutus td {
        padding: 10px 0px;
        border: none;
        border-bottom: 1px solid #aaa;
        padding: 10px 0;
    }
    .aboutus th {
        width: 30%;
    }
    

    /* NEWS */
    .cover-news {
        background-image: url(../images/cover-news-l.webp);
    }
    .news-contents {
        display: flex;
        justify-content: space-between;
    }
    .post {
        width: 60%;
        order: 2;
        margin-left: 10rem;
    }
    .sidebar {
        width: 22%;
        order: 3;
    }

    .sidebar .heading-medium {
        line-height: 1;
        margin-bottom: 1rem;
    }

      /* CONTACT */
    .cover-contact {
        background-image: url(../images/cover-contact-l.webp);
    }
    .location {
        display: flex;
        gap: 2rem;
        flex-direction: column;
    }
    .location-info {
        width: 38%;
        margin: auto;
        margin-bottom: 2rem;
    }
    .location-info .info th {
        padding-left: 2rem;
    }
    .location-map {
        width: 62%;
        margin: auto;
        margin-bottom: 2rem;
    }

    /* Thanks */
    .thanks {
        margin: 4rem auto 0;
    }
    .thanks p {
        font-size:24px;
    }


    /* フッター */
    .page-footer {
        padding-top: 3rem;
    }
    .info th {
        padding-left: 2.5rem;
    }
    .footer-nav {
        display: flex;
        justify-content: right;
        padding-right: 1rem;
        gap: 2.5rem;
        font-size: .8rem;
        list-style: none;
    }
}

.g-recaptcha {
    position: relative !important;
    z-index: 1;
}
