
@charset 'UTF-8';
/*
Theme Name: Jofukuji2
Descrption: 常福寺オリジナルテーマ
Version: 1.0
Author: Uiko;
Author URL: none
*/
/* CSS Remedy */
a {
  text-decoration: none; /* 下線を消す */
  color: inherit;       /* 親要素の文字色を引き継ぐ */
  cursor: pointer;      /* マウスホバー時に指マークを表示 */
}
ul, ol {
  list-style: none; /* マーカーを消す */
  padding: 0;       /* 内側の余白をリセット */
  margin: 0;        /* 外側の余白をリセット */
}
body {
  margin: 0;
}
/* 親子関係のul, olに対処する場合 */
ul ul, ul ol, ol ul, ol ol {
  margin: 0;
}

/* ホバー時の挙動を消したい場合 */
a:hover {
  text-decoration: none;
}

body {
    font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
    font-weight: 100;
    letter-spacing: 0.25em;
}
h1 {
    font-size: 40px;
    color: #333;
}
h2 {
    font-size: 26px;
    color: #333;
    font-weight: 100;
}
h3 {
    font-size: 20px;
    color: #333;
    font-weight: 100;
}
h4 {
    font-size: 16px;
    color: #333;
}
p {
    font-size: 14px;
    color: #333;
    line-height: 2;
}
a {
    color: #333;
}
a:hover {
    color: #333;
    transition: .3s;

}
.bold {
    font-weight: bold;
}
.arrow {
    border-bottom: #E7E9EC 1px solid;
    width: 200px;
    display: inline-block;
  vertical-align: middle;
  position: relative;
  background: #E7E9EC;
  height: 1px;
  margin-top: -50px;
}
.arrow::before {
     content: '';
  width: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.05em;
  box-sizing: border-box;
}

/*---------------------
INDEX
---------------------*/
/*TOP*/
.fv {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* スライド共通 */
.fv__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;

  opacity: 0;
  transition: opacity 1s ease;
}

/* 表示中 */
.fv__slide.is-active {
  opacity: 1;
}

/* 通常の切り替え */
.fv__slide {
  opacity: 0;
  transition: opacity 1s ease;
}

.fv__slide.is-active {
  opacity: 1;
}

/* 最初だけアニメーション */
/* 最初だけアニメーション */
.fv__slide.is-first {
  animation: fadeIn 1.5s ease forwards;
}
.top-title-box {
    background-color: #ffffff;
    width: 150px;
    height: 100%;
    left: 0;
    /*transform: translate(-50%, -50%);*/
    position: absolute;
}
.top-title-box-box {
    position: relative;
    left: 0;
    top: 55%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin: 0 auto;
    gap:20px;
    margin-right: 40px;
    /*
    left: 10%;
    display: block !important;
    flex-direction: column;
    position: relative;*/
}
.logo-img {
    width: 60px;
    height: fit-content;
}
.title-img {
    width: 60px;
    height: fit-content;
}
.top-p {
    margin: 20px 0 50px;
}
@media ( max-width: 768px ) {
    .top-title-box {
        width: 150px;
        left: 0px;

    } 
    .top-title-box-box {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 20px;
        /*
        text-align: center;
        display: block;
        top: 60%*/
    }
    .logo-img {
        width: 45px;
    }
    .title-img {
        width: 45px;
    }
}
/*.fv-box {
  height: 100vh;
  background-image: url("img/top-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
*/
.section {
    margin: 120px 12% 50px 12%;
    max-width: 1000px;
}
.section-bg {
    position: relative;
    min-height: 100%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 2;
    background-image:linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("img/bg-image.jpg");

    background-size: cover;
    padding: 120px 12% 120px 12%;
}
.section-bg-2 {
    position: relative;
    min-height: 100%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 2;
    background-image: url("img/kage.jpg");
    background-size: cover;
    padding: 120px 12% 120px 12%;
}
.section-bg-3 {
    position: relative;
    min-height: 100%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 2;
    background-image: url("img/chikurin.jpg");
    background-size: cover;
    padding: 120px 12% 120px 12%;
    min-height: 400px;

}
.center {
    margin: 0 auto;
    text-align: center;
}
.flex-box {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    vertical-align: middle;
}
.right-box {
    width: 60%;
}
.img-shiba {
    width: 100%;
    height: auto;
}
@media (max-width: 768px) {
    .section {
         margin: 120px 12% 50px 12%;
    }
    .flex-box {
        display: flex;
        flex-direction: column-reverse;
    }
    .right-box {
        width: 100%;
    }
    .img-shiba {
        width: 60%;
        margin-left: 0;
    }
    .br-desktop {
        display: none;
    }
}
/*HEADER*/
.header {
  position: sticky;
  top: 0px;
  z-index: 999;
  background: #fff;
  transition: 1s;
  padding: 0 12%;
  border-bottom: 1px solid #333;
}
.header.scrolled {
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.header__lists {
    display: flex;
    justify-content: space-between;
    padding: 0 0;
}
.navi-list {
    width: 20%;
    height: 80px;
    background-color: #ffffff;
    position: relative;
    transition: all .3s;
}
.navi-list:hover {
    background-color: #fff;
}
.navi-list:not(:first-child)::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
}
.navi-list:hover::before {
    background-color: #fff;
}
.navi-list a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: all .3s;
}
.navi-list:hover a {
    color: #E7E9EC;
}
.dropdown__lists {
    display: none;/*デフォルトでは非表示の状態にしておく*/
    width: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    padding-top: 20px;
}
.navi-list:hover .dropdown__lists {
    display: block;/*Gナビメニューにホバーしたら表示*/
}
.dropdown__list {
    background-color: #2d4b6c;
    height: 60px;
    transition: all .3s;
    position: relative;
    border: 1px solid #fff;
}
.dropdown__list:not(:first-child)::before{
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
}
.dropdown__list:hover {
    background-color: #0E2744;
}
.dropdown__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    text-decoration: none;
    position: relative;
}
.dropdown__list a::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(135deg);
    position: absolute;
    right: 15px;
    top: calc(50% - 5px);
}
.dropdown__lists {
    visibility: hidden;/*デフォルトでは非表示の状態にしておく*/
    opacity: 0;/*不透明度0*/
    transition: all .8s;/*表示の変化を0.3秒に指定*/
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
}
.navi-list:hover .dropdown__lists {
    visibility: visible;/*Gナビメニューにホバーしたら表示*/
    opacity: 1;/*不透明度1*/
}
/* スマホ用メニュー */
@media (max-width: 768px) {
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  position: relative;
  z-index: 10;
  top:0;
}
/* バーガーボタン */
/* 変更後：ボタン単体を fixed で右上に固定 */
.burger {
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 1000;
  background: #000000;
  height: 50px;
  width: 50px;
  display: flex;
  flex-direction: column; /* ← これがあるか確認 */
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.burger span {
  display: block;
  margin: 0 auto;
  width: 30px;
  height: 1px;
  background: #ffffff;
  border-radius: 2px;
  transition: all .28s cubic-bezier(.4,0,.2,1);
}
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
/* オーバーレイ */
.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4);
  opacity: 0; pointer-events: none;
  transition: opacity .3s; z-index: 8;
}
.overlay.open { opacity: 1; pointer-events: auto; }

/* ドロワー */
.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 78%;
  max-width: 300px;
  height: 100%;
  background: #fff;
  border-left: 1px solid #e5e5e5;
  transition: right .3s cubic-bezier(.4,0,.2,1);
  z-index: 9;
  overflow-y: auto;
}
.drawer.open { right: 0; }

.drawer-header {
  padding: 14px 18px;
  border-bottom: 1px solid #e5e5e5;
  font-size: 13px; color: #888; letter-spacing: .04em;
}

/* メニュー項目 */
.nav-item { border-bottom: 1px solid #f0f0f0; }

.nav-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
}
.nav-parent .chevron {
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.nav-parent.open .chevron { transform: rotate(180deg); }

/* 子メニュー */
.sub-menu {
  max-height: 0; overflow: hidden;
  transition: max-height .3s cubic-bezier(.4,0,.2,1);
  background: #fafafa;
}
.sub-menu.open { max-height: 400px; }

.sub-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px 12px 36px;
  font-size: 14px; color: #555; cursor: pointer;
}
.sub-item:hover { background: #f0f0f0; }

/* 単一リンク */
.nav-single {
  display: flex; align-items: center; gap: 10px;
  padding: 15px 18px; font-size: 15px; font-weight: 500;
}
.header {
    display: none;
}
}
@media (min-width: 768px) {
    .burger {
        display: none;
    }
    .drawer {
        display: none;
    }
}
/*
.header__nav {
    margin: 0 12%;
    padding-bottom: 1.5em;
}
.header__list {
    display: flex;
    justify-content: space-between; 
}
*/
/* GRID */
/*.section-grid {
    margin: 100px 20px;
}*/
.grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(1, 1.5fr);
grid-column-gap: 10px;
grid-row-gap: 10px;
max-width: 1000px;
}
.grid-cell {
    position: relative;
    background-color: #E7E9EC;
    max-height: 400px;
}
.grid-item-1 {
     grid-column: 1 / 4; /* 1列目〜2列目まで */
     grid-row : 1 / 3;   /* 2行目〜4行目まで */
}
.grid-item-2 {
    grid-column: 4 / 5;
    grid-row: 1 / 3;
}
.grid-item-3 {
    grid-column: 1 / 3;
    grid-row: 3 / 5;
}
.grid-item-4 {
    grid-column: 3 / 5;
    grid-row: 3 / 5;
}
.grid-item-5 {
    grid-column: 1 / 2;
    grid-row: 5 / 7;
    background-color: #ffffff;
    text-align: center;
    padding: 20%;
}
.grid-flower {
    width: 50px;
    height: 50px;
}
.grid-item-6 {
    grid-column: 2 / 5;
    grid-row: 5 / 7;
}
.grid-item-7 {
    grid-column: 1 / 4;
    grid-row: 7 / 9;
}
.grid-item-8 {
    grid-column: 4 / 5;
    grid-row: 7 / 9;
}
.grid-cell::before {
    content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.08);
  transition: 0.4s;
}
.grid-cell:hover::before {
  background: rgba(0,0,0,0);
}
.grid-cell:hover{
    z-index: 9;
    transition: .4s;
    scale: 1.01;
}
.grid-item-5::before {
    background: rgba(0,0,0,0);
}
.cell-flex-box {
    display: flex;
    height: 100%;
}
.cell-left {
    width: 100%;
    overflow: hidden;
}
.cell-right {
    width: 100%;
    padding: 8% 8%;
}
.cell-img{
    height: 100%;
}
.cell-top-img {
    width: auto;
}
.cell-img ,img :hover{
  transform: scale(1.2);
}
.cell-title {
    border-bottom: 1px solid #fff;
}
.cell-flex-box-vertical {
    display: block;
}
.cell-top-img,img {
    height: auto;
    width: auto;
    overflow: hidden;
    object-fit: contain;
}
.cell-top {
    overflow: hidden;
    height: 50%;
    max-width: 1fr;
}
.cell-bottom {
    height: 100%;
    padding: 15% 8%;
    vertical-align: middle;
} 
.index-content {
    display: flex;
    gap: 60px;
    align-items: stretch;
}
.content-img {
    flex: 1;
    height: 100vh;
    width: 50%;
    overflow: hidden;
}
.content-img-L {
    margin-left: calc(50% - 50vw);
    width: 50vw;
}
.content-img-R {
    margin-right: calc(50% - 50vw);
    width: 50vw;
}
.content-img-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
/*object-fit: contain; /* 画像の縦横比を保ちつつトリミング */
  display: block;    /* inline要素による余白をなくす */
}
.content-txt {
    flex: 1;
    align-items:baseline;
    margin: 60px 0;
}
.content-txt-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* repeat(繰り返し数, 幅) */
    gap: 16px;
    margin: 60px 0 0 0;
}
.content-txt-box-box {
    border: 1px solid #333;
    padding: 20px;
    text-align: center;
}
@media ( max-width: 768px ) {
    .index-content {
        display: flex;
        flex-direction: column;
    }
    .content-img-L {
        width: 100vw;
    }
    .content-img-R {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-top:0;
    }
    .content-img-img {
        width: 100vw;
        overflow: hidden;
    }
    .content-txt {
        margin-top: 0;
        padding-bottom: 100px;
    }
    .content-txt {
    flex: 1;
    align-items:baseline;
    margin: 0px 0;
    }
    .index-content-reverse {
        flex-direction: column-reverse;        
    }
}

/* CARD */
.index-card-box {
    display: flex;
    gap: 40px
}
.card-img {
    width: 100%;
}
.card-img:hover {
    opacity:0.5;
	transition:0.3s;
}
.index-card {
    flex: 1;
}
@media ( max-width: 768px ) {
    .index-card-box {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
}
/* NEWS */
.news-content {
    display: flex;
    alignment-baseline: baseline;
}
.news-date-category-box {
    display: flex;
}
time {
     alignment-baseline: baseline;
}
@media ( max-width: 768px ) {
    .news-content {
        display: block;
    }
    .news-category {
        font-size: 10px;
        alignment-baseline: baseline;
    }
    .news-date-category-box {
        display: flex;
    }
}
/* insta feed */
.insta-feed {
    display: flex;
    justify-content: space-between;
}
.insta {
    width: 150px ;
    height: 150px;
    background-color: #333;
}
/* footer */
.footer {
    padding: 50px 50px;
    border-top: 1px solid #333;
}
.name-box {
    display: flex;
    align-items: center;
}
.footer-logo {
    width: fit-content;
    height: 30px;
    margin-right: 10px;
}
.contact-box {
    display: block;
}
/*=========================
子ページ共通
=========================*/
.child-page-top {
    width: 100%;
    height: 60vh;
}
.child-page-top-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-link-box {
    display: flex;
    justify-content: space-around;
    margin: 60px 0 ;
}
.page-link {
    border: 1px solid #333;
    padding: 20px 40px;
    margin: 40px 0 0;
}
.page-link:hover {
    background-color: #E7E9EC;
    transition: .3s;
}
@media ( max-width: 768px ) {
    .page-link-box {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .page-link{
        margin: 0 0;
    }
}
.child-page-flex-box {
    display: flex;
    width: 100%;
}
.child-page-left-box {
    width: 50%;
}
.flex-img {
    width: 100%;
}
.table-ex {
    width: 100%;
    margin: 20px 40px;
}
.table-qanda th,
.table-qanda td {
    display: block;
    text-align: left;
    width: 100%;
    white-space: normal
    ;
}
.th-q {
    background-color: #E7E9EC;
    padding: 2rem 1rem;
    margin-bottom: 20px;
    word-break: break-all;
}
.td-a {
    margin-bottom: 20px;
    padding: 1rem 2rem;
}
.child-page-content-box {
    padding: 60px 0 0;
}
.child-page-midashi {
    border-left: 10px solid #2d4b6c;
    padding: 10px;
    border-bottom: 1px solid #2d4b6c;
    margin-bottom: 40px;
}
/* 永代供養墓 */
.flex-box-eidai {
    display: flex;
    margin-top: 40px;
    gap: 40px;
}
.eidai-card {
    flex: 1;
}
.eidai-card-midashi {
    background-color: #E7E9EC;
    padding: 20px;
}
.eidai-content {
    padding: 0 20px;
}
.table-eidai-keiyaku {
    max-width: 1000px
}
.table-wrap {
    overflow-x: scroll
}
.table-eidai-keiyaku, th {
    background-color: #E7E9EC;
    min-width: 100px;
    padding: 1% 20px;
}
.table-eidai-keiyaku, td {
    background-color: #ffffff;
    white-space: unset;
    padding: 10px 10px;
    text-align: center;
}
@media ( max-width: 765px ) {
    .table-qanda {
        width: auto;
    }
    .tr-qanda {
        width: auto;
    }
    .flex-box-eidai  {
        display: block;
    }
    .th-q {
        word-break: break-all;
    }
    .child-page-flex-box {
        display: block;
    }
    .child-page-left-box {
    width: 100%;
}
.table-ex {
    width: 100%;
    margin-left: 0;
}
}
/* 坐禅会・朝のお経の会 */
.flex-box-zazen {
    display: flex;
    gap: 40px;
}
.flex-img {
    flex: 1;
}
.flex-img,img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.table-zazen {
    margin-top: 60px;
    text-align: left;
}
.table-zazen td {
    text-align: left;
    padding: 20px 20px;
}
@media ( max-width: 768px ) {
    .table-zazen {
        display: block;
    }
    .table-zazen,
    tr,
    th,
    td {
        display: block;
    }
}
/* アクセス　*/
.access-link-box {
    display: flex;
    gap: 40px;
    margin: 50px 0;
}
.access-link {
    background-color: #E7E9EC;
    padding: 10px;
}
.road-map-1 {
    width: 100%;
    margin: 0 auto;
    object-fit: contain;
}
.park-map {
    width: auto;
}
.rute-map-box {
    padding-top: 60px;
}
.underline {
    background-color: #ff9;
}
@media ( max-width: 765px) {
    .access-link-box {
        display: block;
    }
    .access-link {
        margin-bottom: 20px;
    }
    .road-map-1 {
        width: 100%;
    }
    .park-map {
        width: 100%;
        object-fit: contain;
        
    }
}
/* 墓地 */
.boti-box {
    display: flex;
    background-color: #E7E9EC;
    padding: 40px;
    margin-top: 60px;
    gap: 20px;
}
.boti-box-img {
    width: 50%;
}
.more-btn {
    background-color: #fff;
    padding: 10px 12px;
}
@media ( max-width: 765px ) {
    .boti-box {
        display: block;
    }
    .boti-box-img {
        width: 100%;
    }
}
/*terakoya*/
.inpage-link-btn-box {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin-top: 60px;
}

/* ========================================
   流体のように動く背景
======================================== */

.fluid-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: #fdfdfc;
  pointer-events: none;
}

/* 円の共通設定 */
.fluid-circle {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.48;
  will-change: transform, border-radius;
}

/* 左上の大きな青 */
.circle-blue-large {
  width: clamp(420px, 52vw, 900px);
  aspect-ratio: 1;
  top: -35%;
  left: -22%;

  background:
    radial-gradient(
      circle at 65% 62%,
      rgba(205, 224, 237, 0.72) 0%,
      rgba(183, 211, 230, 0.52) 45%,
      rgba(205, 224, 237, 0.15) 72%,
      transparent 100%
    );

  animation:
    float-blue-large 28s ease-in-out infinite alternate,
    fluid-shape 18s ease-in-out infinite alternate;
}

/* 右下の大きな青 */
.circle-blue-small {
  width: clamp(380px, 46vw, 760px);
  aspect-ratio: 1;
  right: -24%;
  bottom: -32%;

  background:
    radial-gradient(
      circle at 38% 34%,
      rgba(196, 219, 234, 0.7) 0%,
      rgba(172, 207, 228, 0.48) 50%,
      rgba(211, 227, 237, 0.12) 76%,
      transparent 100%
    );

  animation:
    float-blue-small 32s ease-in-out infinite alternate,
    fluid-shape-reverse 20s ease-in-out infinite alternate;
}

/* 右上のグレー */
.circle-gray {
  width: clamp(180px, 22vw, 370px);
  aspect-ratio: 1;
  top: -12%;
  right: -8%;

  background:
    radial-gradient(
      circle at 42% 62%,
      rgba(211, 213, 218, 0.58) 0%,
      rgba(221, 222, 226, 0.32) 58%,
      transparent 100%
    );

  animation:
    float-gray 26s ease-in-out infinite alternate,
    fluid-shape 15s ease-in-out infinite alternate-reverse;
}

/* 左下の小さなグレー */
.circle-gray-small {
  width: clamp(200px, 24vw, 400px);
  aspect-ratio: 1;
  left: -12%;
  bottom: -20%;

  background:
    radial-gradient(
      circle at 62% 38%,
      rgba(207, 210, 215, 0.52) 0%,
      rgba(226, 227, 230, 0.25) 64%,
      transparent 100%
    );

  animation:
    float-gray-small 30s ease-in-out infinite alternate,
    fluid-shape-reverse 17s ease-in-out infinite alternate;
}

/* 紙やフィルムのようなノイズ */
.noise-texture {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  opacity: 0.12;
  mix-blend-mode: multiply;

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.38'/%3E%3C/svg%3E");

  animation: noise-movement 0.25s steps(2) infinite;
}

/* ========================================
   移動アニメーション
======================================== */

@keyframes float-blue-large {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  50% {
    transform: translate3d(8vw, 7vh, 0) rotate(5deg) scale(1.06);
  }
  100% {
    transform: translate3d(3vw, 14vh, 0) rotate(-4deg) scale(0.98);
  }
}

@keyframes float-blue-small {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  50% {
    transform: translate3d(-9vw, -6vh, 0) rotate(-5deg) scale(1.05);
  }
  100% {
    transform: translate3d(-4vw, -13vh, 0) rotate(4deg) scale(0.97);
  }
}

@keyframes float-gray {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-4vw, 8vh, 0) scale(1.08);
  }
  100% {
    transform: translate3d(-8vw, 3vh, 0) scale(0.96);
  }
}

@keyframes float-gray-small {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(7vw, -5vh, 0) scale(1.05);
  }
  100% {
    transform: translate3d(3vw, -10vh, 0) scale(0.98);
  }
}

/* 円の輪郭をゆっくり変形 */
@keyframes fluid-shape {
  0% {
    border-radius: 50% 50% 48% 52% / 46% 54% 46% 54%;
  }
  33% {
    border-radius: 45% 55% 58% 42% / 53% 46% 54% 47%;
  }
  66% {
    border-radius: 56% 44% 47% 53% / 44% 57% 43% 56%;
  }
  100% {
    border-radius: 48% 52% 55% 45% / 57% 45% 55% 43%;
  }
}

@keyframes fluid-shape-reverse {
  0% {
    border-radius: 47% 53% 56% 44% / 55% 43% 57% 45%;
  }
  40% {
    border-radius: 58% 42% 45% 55% / 44% 56% 44% 56%;
  }
  70% {
    border-radius: 43% 57% 52% 48% / 58% 47% 53% 42%;
  }
  100% {
    border-radius: 54% 46% 43% 57% / 48% 55% 45% 52%;
  }
}

/* ノイズを微細に動かす */
@keyframes noise-movement {
  0% {
    transform: translate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(2%, -1%, 0);
  }
  50% {
    transform: translate3d(-1%, 2%, 0);
  }
  75% {
    transform: translate3d(1%, 1%, 0);
  }
  100% {
    transform: translate3d(-2%, -1%, 0);
  }
}

/* 動きを減らす設定を尊重 */
@media (prefers-reduced-motion: reduce) {
  .fluid-circle,
  .noise-texture {
    animation: none;
  }
}
.live-body {
    background: linear-gradient(180deg, #341D65 0%, rgba(52, 29, 101, 0) 100%) ,radial-gradient(94.51% 124.88% at 94.32% 94.43%, rgba(65, 244, 255, 0.78) 0%, rgba(128, 217, 255, 0.78) 46.52%, rgba(65, 198, 255, 0) 100%), linear-gradient(41deg, #FFFCE6 4.33%, rgba(255, 252, 230, 0) 73.7%);
    background-blend-mode: normal,normal,normal,normal,normal,normal;
    filter: blur(0px);
}
.noise {
  background-image: 
    repeating-radial-gradient(
      circle,
      rgba(2, 62, 174, 0.5) 0px,
      transparent 1px,
      transparent 8px
    );
}
.live-txt-box {
    background-color: white;
    margin: 50px 0;
}
.live-top-ttl {
    color: 000000;
    font-size: 36px;
    font-weight: 900;
    position: relative;
    top: 0;
    left:0;
}
.live-section {
    margin: 120px 12% 50px 12%;
    max-width: 1000px;
}
.absolute-txt {
    position: relative;
}
.h2-color {
    background-color: #000;
    width: fit-content;
    color: #fff;
    font-weight: bolder;
}
.live-midashi-font {
    font-weight: bold;
    border-bottom: 5px double #000;
    width: fit-content;
}
.live-ppl {
    font-family: sans-serif;
    font-weight: bold;
    font-size: 24px;
    line-height: 100%;
    color: blue;
}
.live-img {
    width: 100%;
    height: 100%;
}
@media ( max-width: 768px ){
    .live-section {
        margin: 0 20px;
    }
    .section {
        margin: 20px 20px;
    }
}
/* chatgpt - header-nav.phpが表示されない場合のPHP */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
}

.burger {
  position: relative;
  z-index: 1001;
  display: flex;
}

.overlay {
  position: fixed;
  z-index: 998;
}

.drawer {
  position: fixed;
  z-index: 999;
}
/* パンくずリスト */
.breadcrumbs {
    margin-bottom: 60px;
    width: fit-content;
    font-size: 14px;
}