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

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

/**  footerカラー **/
.header-container, .main, .sidebar, .footer {
    background-color: #110b0a;
}

.footer {
    margin-top: -50px;
    padding: none;
    color: #fff;
}



.img-box {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
	margin-top: -25px;
}
.img1, .img2 {
    width: 100%;
    height: 650px;
    position: absolute;
    top: 0;
    background: center center / cover no-repeat;
    opacity: 0;
    z-index: 0;
    animation-fill-mode: forwards; /* 最後の状態をキープ */
    animation-iteration-count: 1; /* 1回だけ実行 */
}

.img1 {
    opacity: 1; /* 初期表示 */
    background-image: url(http://fleur-matsumoto.com/wp-content/uploads/2025/07/loungefleur1.jpg);
    animation-name: fadeOutScaleUp;
    animation-duration: 14s; /* 9秒 → 14秒に延長 */
    animation-delay: 0s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}

.img2 {
    opacity: 0; /* 初期非表示 */
    background-image: url(http://fleur-matsumoto.com/wp-content/uploads/2025/07/fleur2.png);
    animation-name: fadeInScaleDown;
    animation-duration: 14s; /* 7秒 → 12秒に延長 */
    animation-delay: 17s;    /* img1の終了に合わせて遅延 */
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}
@keyframes fadeOutScaleUp {
    0% {
        opacity: 1;
        transform: scale(1);
        z-index: 10;
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
        z-index: 0;
    }
}

@keyframes fadeInScaleDown {
    0% {
        opacity: 0;
        transform: scale(1.2);
        z-index: 0;
    }
    100% {
        opacity: 1;
        transform: scale(1);
        z-index: 10;
    }
}

.overlay-img {
    position: absolute;
    top: 30%;        /* 上から20%（もっと上に） */
    left: 50%;       /* 横は中央 */
    transform: translateX(-50%); /* 横方向だけ中央寄せ */
    width: 220px;
    height: auto;
    z-index: 20;
    pointer-events: none;
}


/****************TOP画アニメーションここまで********************/

.content { 
margin-top: 0; 
}

.logo-header {
	display: none;
}
.entry-title {
	display: none;	
}
.main.main, div.sidebar {
	padding: 0px 0px;
    }


.entry-content {
  margin-top: 0;
}



.main {
  border-top: none;
}

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

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
	
	.center img{
		display:block;
		margin: 0 auto;
	}
	
.concept_inner {
        width: 100%;
        background-image: url("http://fleur-matsumoto.com/wp-content/uploads/2025/05/fleur_black_bg.jpg");
        background-repeat: repeat;
    }
    .concept_text_inner{
        width: 85%;
        padding: 30px 0px 30px 0px;
        margin: 0 auto;
    }
    .concept_text-subtitle{
        font-style: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体',sans-serif;
        font-size: 26px;
        color: #ffffff;
    }
    .concept_text-top{
        font-style: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体',sans-serif;
        font-size: 12px;
        text-align: left;
        color: #ffffff;
        padding-left: 10px;
        margin-bottom: 15px;
    }
    .concept_text-bottom{
        font-style: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体',sans-serif;
        font-size: 12px;
        text-align:;
        color: #ffffff;
        padding-left: 10px;
		padding-bottom: 60px;
    }

    .cast_inner {
        width: 100%;
       /* background-image: url("http://fleur-matsumoto.com/wp-content/uploads/2025/05/bg_sp.jpg");
        background-size: cover; /* 画像を横幅いっぱいに表示 */
        /*background-position: center; /* 画像を中央に配置 */
        height:450px;
        
        margin-top: -50px;
    }
    .cast_log_inner {
        width: 90%;
    }
    .cast_text-subtitle {
        font-style: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体',sans-serif;
        font-size: 26px;
        color: #ffffff;
    }
    .cast_log_flex {
        display: flex;
        justify-content: space-around;
        align-content: center;
        flex-wrap:wrap;
        row-gap: 25px;
        column-gap: 10px;
        margin: 0 auto;
    }
    .cast_img {
        width: 100px;
    }
	
		    .system_subtitle{
        font-family: "Zen Old Mincho", serif;
        font-size: 18px;
        color: #ffffff;
        margin-bottom: 50px;
    }
	
	
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
	
	.center img{
		display:block;
		margin: 0 auto;
	}
	
	
	.concept_inner {
        width: 100%;
        background-image: url("http://fleur-matsumoto.com/wp-content/uploads/2025/05/fleur_black_bg.jpg");
        background-repeat: repeat;
		margin-top: -40px;
    }
    .concept_text_inner{
        width: 85%;
        padding: 120px 0px 120px 0px;
        margin: 0 auto;
    }
    .concept_text-subtitle{
        font-family: "Zen Old Mincho", serif;
        font-size: 24px;
        color: #ffffff;
        margin-bottom: 50px;
    }
    .concept_text-top{
        font-family: "Zen Old Mincho", serif;
        font-size: 14px;
        text-align: left;
        color: #ffffff;
        padding-left: 20px;
        margin-bottom: 15px;
    }
    .concept_text-bottom{
        font-family: "Zen Old Mincho", serif;
        font-size: 14px;
        text-align:;
        color: #ffffff;
        padding-left: 20px;
    }

    .cast_inner {
        width: 100%;
       /* background-image: url("http://fleur-matsumoto.com/wp-content/uploads/2025/05/bg_sp.jpg");
        background-size: cover; /* 画像を横幅いっぱいに表示 */
        /*background-position: center; /* 画像を中央に配置 */
        height:650px;
        
        margin-top: -50px;
    }
    .cast_log_inner {
        width: 90%;
		margin: 0 auto;
    }
    .cast_text-subtitle {
          font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
        font-size: 24px;
        color: #ffffff;
		text-align: center;
    }
	
/*
    .cast_log_flex {
        display: flex;
        justify-content: space-around;
        align-content: center;
        flex-wrap:wrap;
        row-gap: 25px;
        column-gap: 10px;
        margin: 0 auto;
		padding-bottom: 150px;
    }
	
.img_flex {
    display: flex;
    flex-direction: column;
    align-items: center;
}
	
.cast_name {
	font-family: "Zen Old Mincho", serif;
    margin-top: 5px;         /* 少し余白を持たせたい場合 */
/*    margin-bottom: 0;        /* 無駄な余白をゼロに */
/*    font-size: 14px;         /* 必要に応じて調整 */
/*    line-height: 1.2;        /* 行間を詰めたい場合 */
/*    color: #fff;          /* 白文字（背景と調和） */
/*}
/*    .cast_img {
		display: block;
        width: 100px;
		border-radius: 10px;
		box-shadow: 1px 1px 10px #808080;
    }
	*/
	
/***************** コピペ****************/	
/*	.container {
  max-width: 400px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}
*/
	
	

	.floor_img {
		margin-top: 100px;
		margin-bottom: 100px;
	}

	.yohaku {
		padding-bottom: 40px;
	}
	
		.yohaku-cf {
		padding-bottom: 5px;
	}
	
	
/***************** システム　****************/		
	
	.system_container{
		max-width: 90%;
		  margin: 40px auto;
  padding: 20px;
  text-align: center;
		margin-top: 50px;
	}
h1, h2 {
  font-weight: normal;
  margin-bottom: 20px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.pricing-table td {
  background-color: #f4f0eb;
  color: #333;
  padding: 10px 10px;
  border: 2px solid #000;
  text-align: left;
  font-size: 14px;
}

.pricing-table td:last-child {
  text-align: right;
}
	
	    .system_subtitle{
        font-family: "Zen Old Mincho", serif;
        font-size: 18px;
        color: #ffffff;
        margin-bottom: 50px;
    }

.tax {
  text-align: right;
  margin-top: -10px;
  margin-right: 10px;
  font-size: 14px;
}
	
/***************** GPT コピーキャスト****************/
	
	.cast-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 10px;
}

.cast-item {
  text-align: center;
  width: 140px;
}

.cast-item img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 6px;
  border-radius: 8px;
}

.cast-name {
  font-size: 14px;
  color: #fff;
  margin: 0;
}
	
	
/***************** 住所　****************/
	
.kasaneru2{
  text-align: center;
}
.kasaneru-dark{
  position: relative;
  display: inline-block;
}
.kasaneru-dark img{
 display: block;
}
.kasaneru-dark::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.kasaneru-dark p{
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #fff;
  font-size: 14px;
  width: 100%;
}
	
	.kasaneru2 img.imagup{
  position: absolute;
  top:30%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #fff;
}
}
@media screen and (max-width: 768px){
.kasaneru2 img.imagup{
  width: 30%;
}
	}
	

