/* assets/top.css または <style> タグ内に追記・変更 */

/* メインビジュアル全体のコンテナ */
.p-mv {
    background-image: url(./img/bg_mv@3x.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 42px 0 48px;
    /* overflow: hidden; はここでは不要です */
    display: flex; /* 子要素をFlexboxで配置 */
    justify-content: center; /* 子要素を中央に配置 */
    align-items: center; /* 垂直方向も中央に配置（必要であれば） */
}

@media screen and (max-width: 767px) {
    .p-mv {
        padding: 0;
        background-image: none;
    }
}
/* フェードインアニメーションの定義 */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* アニメーションを適用するクラス */
.fade-in-element {
    opacity: 0; /* 初期状態を非表示にする */
    animation: fadeIn 1s ease-out forwards; /* 1秒かけてゆっくりフェードイン */
}

/* 既存のCSS（変更なし） */
.anim-box.zoomin.is-animated {
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
 
@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* メインビジュアルのコンテンツを囲むinner要素 */
.p-mv .l-content-inner {
    width: 100%; /* 幅を親要素に合わせる */
    max-width: 1300px; /* ここで最大幅を設定 */
    position: relative;
    /* margin: 0 auto; はdisplay: flex; と justify-content: center; で代替されます */
}

@media screen and (max-width: 767px) {
    .p-mv .l-content-inner {
        padding: 0;
    }
}

/* メインビジュアル画像自体（パンダの画像がある要素） */
.p-mv-img {
    width: 100%; /* 親要素の幅に合わせて可変 */
    height: auto; /* 高さを自動調整し、アスペクト比を維持 */
    display: block; /* 余分な下マージンを防ぐ */
}

.p-mv-img picture,
.p-mv-img img {
    width: 100%; /* 親要素の幅に合わせて画像が広がるようにする */
    height: auto; /* 高さを自動調整 */
    display: block;
}

/* パンダの画像に関して */
.point-panda {
    /* 既存のスタイルを維持しつつ、必要であれば調整 */
    width: auto;
    height: 200px;
    display: block;
    margin: 0 auto;
    margin-bottom: -50px;
}

/* 他の既存のスタイルは変更なし */
.p-mv-note {
    position: absolute;
    left: 17px;
    bottom: 0;
}
@media screen and (max-width: 767px) {
    .p-mv-note {
        right: auto;
        left: 4vw;
        bottom: 2.6666666667vw;
        -webkit-transform: scale(0.5);
                transform: scale(0.5);
        -webkit-transform-origin: left bottom;
                transform-origin: left bottom;
        width: calc(200% - 8vw);
        display: none;
    }
}
.p-mv-note li {
    font-size: 1.4rem;
    color: #ffffff;
    line-height: 1.3142857143;
    font-weight: bold;
    letter-spacing: 0.18em;
    text-shadow: 0px 0px 5px rgba(48, 44, 48, 0.95);
}
@media screen and (max-width: 767px) {
    .p-mv-note li {
        font-size: 4vw;
        line-height: 1.4375;
    }
}

/* inq セクションは変更なし */
.inq {
    padding-top: 28px;
    padding-bottom: 32px;
    position: relative; 
}
.inq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: #ffffff;
    z-index: -1;
}
/* コンテンツが背景の上に表示されるように念のため指定 */
.l-content-inner {
    position: relative;
}


/* --- ここまで修正 --- */
@media screen and (max-width: 767px) {
		.inq {
				padding: 6.6666666667vw 0 7.3333333333vw;
		}
}
.inq-content {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		gap: 0 50px;
}
@media screen and (max-width: 767px) {
		.inq-content {
				display: block;
		}
}
.inq-btn {
		width: 100%;
}
.inq-btn__link {
		display: block;
}
.inq-btn__link img {
		display: block;
}
.inq-btn__box {
		width: 442px;
		max-width: 100%;
}
@media screen and (max-width: 767px) {
		.inq-btn__box {
				width: 100%;
				margin-top: 5.3333333333vw;
		}
		.inq-btn__box:first-of-type {
				margin-top: 0;
		}
}
.inq-btn__text {
		text-align: center;
		font-size: 2rem;
		font-weight: bold;
		letter-spacing: 0.15em;
		margin-bottom: 0.5em;
}
@media print, screen and (min-width: 768px) {
		.inq-btn__text {
				margin-left: -0.5em;
				margin-right: -0.5em;
		}
}
@media screen and (max-width: 767px) {
		.inq-btn__text {
				font-size: 4.1333333333vw;
				letter-spacing: 0.12em;
		}
}
.inq-btn__text span {
		letter-spacing: 0.03em;
}
.inq-tel {
		width: 369px;
		margin: 28px auto auto;
		max-width: 100%;
}
@media screen and (max-width: 767px) {
		.inq-tel {
				width: 76.5333333333vw;
				margin-top: 6.4vw;
		}
}
/* p-issue セクション */
/* p-issue 注釈セクション */
.p-issue-annotation {
    margin-top: 40px; /* p-issue-content と注釈の間の余白 */
    text-align: center; /* テキストを左寄せに設定 */
    padding: 0 20px; /* 左右の余白（コンテンツ幅に合わせて調整） */
    max-width: 960px; /* l-content-innerの最大幅に合わせるか、適宜調整 */
    margin-left: auto; /* 中央寄せ */
    margin-right: auto; /* 中央寄せ */
}

@media screen and (max-width: 767px) {
    .p-issue-annotation {
        margin-top: 8vw; /* モバイルの余白 */
        padding: 0 4vw; /* モバイルの左右の余白 */
    }
}

.p-issue-annotation {
    font-size: 1.4rem; /* 注釈のフォントサイズ */
    color: #ffffff; /* テキストの色 */
    line-height: 1.5;
    letter-spacing: 0.02em;
}

@media screen and (max-width: 767px) {
    .p-issue-annotation {
        font-size: 2.5vw; /* モバイルのフォントサイズ */
    }
}

.p-issue-annotation__text a {
    color: #0BEAE3; /* リンクの色 (p-issue-item__num と合わせました) */
    text-decoration: underline; /* リンクに下線 */
}
.p-issue {
    background-color: #000000; /* 参考サイトの背景色に合わせて調整 */
    padding: 80px 0; /* 上下の余白 */
    text-align: center;
}

@media screen and (max-width: 767px) {
    .p-issue {
        padding: 10.6666666667vw 0; /* モバイルの余白 */
    }
}

@media screen and (max-width: 767px) {
    .p-issue .l-content-inner {
        padding: 0 4vw; /* モバイルの左右の余白 */
    }
}
.p-issue__title {
    font-size: 4rem; /* タイトルフォントサイズ */
    color: #ffffff;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 60px; /* タイトル下の余白 */
}

@media screen and (max-width: 767px) {
    .p-issue__title {
        font-size: 7.4666666667vw;
        margin-bottom: 8vw;
    }
}

.p-issue-content {
    display: flex;
    justify-content: center;
    gap: 40px; /* アイテム間の間隔 */
    flex-wrap: wrap; /* アイテムが収まらない場合に折り返す */
}

@media screen and (max-width: 767px) {
    .p-issue-content {
        flex-direction: column; /* モバイルでは縦並び */
        gap: 8vw; /* モバイルのアイテム間の間隔 */
        align-items: center; /* 中央寄せ */
    }
}

.p-issue-item {
    width: 30%; /* PC版の各アイテムの幅 */
    max-width: 320px; /* アイテムの最大幅 */
    background-color: transparent; /* 背景なし */
    text-align: center;
}

@media screen and (max-width: 767px) {
    .p-issue-item {
        width: 90%; /* モバイル版の各アイテムの幅 */
        max-width: 300px; /* モバイルアイテムの最大幅 */
    }
}

.p-issue-item__img {
    margin-bottom: 25px; /* 画像下の余白 */
    height: 180px; /* 画像の高さ固定、コンテンツに合わせて調整 */
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .p-issue-item__img {
        margin-bottom: 5.3333333333vw;
        height: auto; /* モバイルでは高さ自動 */
    }
}

.p-issue-item__img img {
    max-width: 100%;
    height: auto;
    display: block;
}

.p-issue-item__num {
    font-size: 2.2rem; /* 番号とタイトルのフォントサイズ */
    color: #00eaea; /* テキストの色 */
    font-weight: bold;
    margin-bottom: 15px; /* タイトル下の余白 */
    letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
    .p-issue-item__num {
        font-size: 4.8vw;
        margin-bottom: 3.2vw;
    }
}

.p-issue-item__text {
    font-size: 1.6rem; /* 説明文のフォントサイズ */
    color: #ffffff;
    line-height: 1.6;
    letter-spacing: 0.03em;
}

@media screen and (max-width: 767px) {
    .p-issue-item__text {
        font-size: 3.7333333333vw;
    }
}

.p-nayami {
		padding-bottom: 20px;
		padding-top: 45px;
						background-color: black;

}
@media screen and (max-width: 767px) {
		.p-nayami {
				padding-top: 6.6666666667vw;
				padding-bottom: 9.3333333333vw;
				background-color: black;
		}
}
.p-nayami-img {
		width: 871px;
		margin: auto auto auto;
		max-width: 100%;
}
@media screen and (max-width: 767px) {
		.p-nayami-img {
				width: 100%;
		}
}

.p-kadai {
		background: rgb(11, 234, 227);
		background: linear-gradient(45deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#fc3aac", endColorstr="#ffbd45",GradientType=1 );
		padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
		.p-kadai {
				padding-bottom: 8vw;
		}
		.p-kadai .l-content-inner {
				padding: 0;
		}
}
.p-kadai img {
		display: block;
		margin: auto auto auto;
}
.p-kadai-img01 {
		margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
		.p-kadai-img01 {
				margin-bottom: 5.8666666667vw;
		}
		.p-kadai-img01 img {
				width: 81.8666666667vw;
		}
}
.p-kadai-img02 {
		margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
		.p-kadai-img02 {
				margin-bottom: 5.8666666667vw;
		}
		.p-kadai-img02 img {
				width: 87.8666666667vw;
		}
}
.p-kadai-img03 {
		margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
		.p-kadai-img03 {
				margin-bottom: 5.8666666667vw;
		}
		.p-kadai-img03 img {
				width: 100%;
		}
}
@media screen and (max-width: 767px) {
		.p-kadai-img04 img {
				width: 88vw;
		}
}
/* TikTok Services Section */
.tiktok-services {
    background: #000; /* 背景色を黒に変更 */
    padding: 80px 0 100px; /* 上下のパディングを調整 */
    text-align: center;
}

@media screen and (max-width: 767px) {
    .tiktok-services {
        padding: 60px 0 80px; /* モバイル時のパディングを調整 */
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* 左右のパディングを維持 */
}

.services-title {
    color: white; /* タイトルの色を白に調整 */
    font-size: 3.8rem; /* フォントサイズを調整 */
    font-weight: bold;
    margin-bottom: 60px; /* 下余白を調整 */
    line-height: 1.3;
    letter-spacing: 0.05em; /* 文字間隔を微調整 */
}

@media screen and (max-width: 1024px) {
    .services-title {
        font-size: 3.4rem;
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 767px) {
    .services-title {
        font-size: 2.8rem;
        margin-bottom: 40px;
        padding: 0 15px; /* モバイル時のタイトル左右パディング */
    }
}

/* サービスカードのグリッドレイアウト */
.services-grid {
    display: grid; /* Gridに変更 */
    grid-template-columns: repeat(3, 1fr); /* 3列固定 */
    gap: 30px; /* カード間の隙間 */
    margin-bottom: 50px; /* サブタイトルとの間に余白 */
    justify-items: center; /* グリッドアイテムを中央寄せ */
}

@media screen and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* タブレットでは2列 */
    }
}

@media screen and (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr; /* モバイルでは1列表示 */
        gap: 25px; /* モバイル時のカード間の隙間 */
    }
}

.service-card {
    background-color: #fff; /* カードの背景色を白に */
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* 影を追加 */
    overflow: hidden; /* 角丸に合わせて内容をクリップ */
    text-align: left; /* テキストを左寄せ */
    display: flex;
    flex-direction: column; /* ヘッダーとボディを縦に並べる */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    width: 100%; /* グリッドアイテムとして幅を100%にする */
}

@media screen and (max-width: 767px) {
    .service-card {
        min-height: auto; /* モバイルでは高さ自動 */
    }
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* サービスカードヘッダー（タイトル部分） */
.service-card__header {
    padding: 25px 20px; /* 上下のパディングを調整 */
    display: flex;
    flex-direction: column; /* アイコンとタイトルを縦に並べる */
    align-items: center; /* アイコンとタイトルを中央寄せ */
    color: white; /* テキスト色を白に */
    border-radius: 15px 15px 0 0; /* 上部だけ角丸 */
    width: 100%; /* ヘッダーの幅を100%に */
    box-sizing: border-box; /* パディングを含めて幅を計算 */
}

/* 個別のサービスカードヘッダーの背景色 */
.service-card__header.sns { background-color: #0BEAE3; }
.service-card__header.ads { background-color: #F7004D; }
.service-card__header.video { background-color: #0BEAE3; }
.service-card__header.pr { background-color: #F7004D; }
.service-card__header.ec { background-color: #0BEAE3; }

.service-icon {
    margin-bottom: 15px; /* アイコンの下余白 */
}

.service-card__header h3 {
    color: white; /* ヘッダー内のタイトル色を白に */
    font-size: 2.4rem; /* タイトルフォントサイズ */
    font-weight: bold;
    margin: 0; /* デフォルトマージンをリセット */
    text-align: center; /* タイトルを中央寄せ */
    line-height: 1.2;
    word-break: break-all; /* 長いテキストがはみ出さないように */
}

@media screen and (max-width: 767px) {
    .service-card__header h3 {
        font-size: 2.2rem;
    }
}

/* サービスカードボディ（画像とリスト部分） */
.service-card__body {
    padding: 25px 20px 30px; /* パディング調整 */
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column; /* 画像とリストを縦に並べる */
    justify-content: flex-start; /* 上寄せ */
    flex-grow: 1; /* 残りのスペースを占める */
}

.service-card__image-wrapper {
    width: 100%; /* 画像ラッパーの幅 */
    height: 150px; /* 画像ラッパーの高さ（画像の縦横比に合わせて調整） */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px; /* 画像の下余白 */
    flex-shrink: 0; /* 画像が縮小されて潰れないように */
}

@media screen and (max-width: 767px) {
    .service-card__image-wrapper {
        height: 120px;
        margin-bottom: 20px;
    }
}

.service-card__image {
    max-width: 160%;
    max-height: 100%;
    object-fit: contain; /* 画像が収まるように調整 */
}

.service-card__list {
    list-style: none; /* デフォルトのリストスタイルを削除 */
    padding: 0;
    margin: 0;
    color: #000000; /* リストのテキスト色 */
    font-size: 1.6rem; /* リストのフォントサイズ */
	font-weight: bold;
    line-height: 1.8;
    text-align: left; /* リスト項目を左寄せ */
    width: 100%; /* リストがカード内で幅を占めるように */
    flex-grow: 1; /* リストがスペースを占めるように */
}

.service-card__list li {
    position: relative;
    padding-left: 25px; /* チェックマークのためのスペース */
    margin-bottom: 10px; /* リスト項目の間隔 */
}

.service-card__list li:last-child {
    margin-bottom: 0;
}

.service-card__list li::before {
    content: ''; /* 擬似要素でチェックマークを作成 */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px; /* チェックマークのサイズを調整 */
    height: 18px;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2300b894"%3E%3Cpath d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/%3E%3C/svg%3E'); /* 緑のチェックマークSVG */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.services-subtitle {
    color: white;
    font-size: 2.8rem;
    font-weight: bold;
    margin-top: 50px; /* 上余白を調整 */
    letter-spacing: 0.07em;
}

@media screen and (max-width: 767px) {
    .services-subtitle {
        font-size: 2.4rem;
        margin-top: 40px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 3列から2列に変更 */
        gap: 20px;
    }
    
    .services-title {
        font-size: 3.2rem;
    }
    
    .service-card h3 {
        font-size: 2rem;
    }
    
    .services-subtitle {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    .tiktok-services {
        padding: 40px 0;
    }
    
    .services-title {
        font-size: 2.8rem;
        margin-bottom: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr; /* モバイルでは1列に固定 */
        gap: 15px;
        margin-bottom: 30px;
        max-width: 500px; /* 必要に応じて最大幅を設定 */
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-card {
        padding: 0; /* カード全体のパディングは削除、内部要素で調整 */
        min-height: auto; /* 高さを自動に */
        flex-direction: column; /* ★ここをrowからcolumnに修正します！ */
        justify-content: flex-start; /* 上寄せに */
        align-items: stretch; /* 左右いっぱいに広げる */
        text-align: left; /* テキストを左寄せに戻す */
        gap: 0; /* 内部要素のgapは削除、marginで調整 */
    }
    
    .service-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .service-icon svg {
        width: 36px;
        height: 36px;
    }

    /* service-card__header はこのメディアクエリ内でもcolumnのまま */
    .service-card__header {
        padding: 20px; /* モバイル時のヘッダーパディング */
        display: flex; /* 念のため再設定 */
        flex-direction: column; /* アイコンとタイトルを縦並び */
        align-items: center; /* 中央寄せ */
        box-sizing: border-box;
    }
    
    .service-card__header h3 {
        font-size: 2.4rem;
        text-align: center;
        margin: 0;
    }

    /* service-card__body のモバイル時のスタイルも追加 */
    .service-card__body {
        padding: 20px; /* モバイル時のボディパディング */
        display: flex; /* 念のため再設定 */
        flex-direction: column; /* 画像とリストを縦並び */
        justify-content: flex-start;
        align-items: flex-start; /* 画像とリストのテキストを左寄せ */
        flex-grow: 1;
        box-sizing: border-box;
    }

    .service-card__image-wrapper {
        width: 100%;
        height: auto; /* 高さを自動に */
        margin-bottom: 15px;
    }

    .service-card__image {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .service-card__list {
        font-size: 1.5rem; /* モバイル用リストフォントサイズ調整 */
        line-height: 1.7;
    }

    .service-card__list li {
        padding-left: 20px;
        margin-bottom: 8px;
    }
    
    .service-card__list li::before {
        width: 16px; /* チェックマークのサイズ調整 */
        height: 16px;
    }
    
    .services-subtitle {
        font-size: 2.4rem;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 2.4rem;
        margin-bottom: 25px;
    }
    
    .services-grid {
        max-width: 380px;
    }
    
    .service-card {
        padding: 0; /* 内部で調整するため削除 */
        min-height: auto;
    }

    .service-card__header {
        padding: 15px; /* 小さい画面でのヘッダーパディング */
    }

    .service-card__header h3 {
        font-size: 2.2rem;
    }
    
    .service-icon svg {
        width: 32px;
        height: 32px;
    }

    .service-card__body {
        padding: 15px; /* 小さい画面でのボディパディング */
    }

    .service-card__image-wrapper {
        margin-bottom: 10px;
    }
    
    .service-card__list {
        font-size: 1.4rem;
        line-height: 1.6;
    }

    .service-card__list li {
        padding-left: 18px;
        margin-bottom: 5px;
    }
    
    .service-card__list li::before {
        width: 14px;
        height: 14px;
    }

    .services-subtitle {
        font-size: 2.2rem;
    }
}

.p-kotae {
        padding-top: 55px;
        color: #ffffff;
}
@media screen and (max-width: 767px) {
        .p-kotae {
                padding-top: 8.6666666667vw;
        }
}
.p-kotae img {
        display: block;
        margin: auto auto auto;
}
.p-kotae-img01 {
        margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
        .p-kotae-img01 {
                margin-bottom: 3.3333333333vw;
        }
        .p-kotae-img01 img {
                width: 100%;
        }
}
@media screen and (max-width: 767px) {
        .p-kotae-img02 img {
                width: 88.5333333333vw;
        }
}
.p-kotae-text {
        width: 740px;
        margin: 38px auto auto;
        max-width: 100%;
}
@media screen and (max-width: 767px) {
        .p-kotae-text {
                width: 100%;
                text-align: justify;
                margin-top: 4.6666666667vw;
        }
}

.p-kotae {
		padding-top: 55px;
		color: #ffffff;
}
@media screen and (max-width: 767px) {
		.p-kotae {
				padding-top: 8.6666666667vw;
		}
}
.p-kotae img {
		display: block;
		margin: auto auto auto;
}
.p-kotae-img01 {
		margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
		.p-kotae-img01 {
				margin-bottom: 3.3333333333vw;
		}
		.p-kotae-img01 img {
				width: 100%;
		}
}
@media screen and (max-width: 767px) {
		.p-kotae-img02 img {
				width: 88.5333333333vw;
		}
}
.p-kotae-text {
		width: 740px;
		margin: 38px auto auto;
		max-width: 100%;
}
@media screen and (max-width: 767px) {
		.p-kotae-text {
				width: 100%;
				text-align: justify;
				margin-top: 4.6666666667vw;
		}
}

.p-shikumi {
		padding-top: 45px;
}
@media screen and (max-width: 767px) {
		.p-shikumi {
				padding-top: 6.6666666667vw;
		}
}
.p-shikumi .l-content-inner {
		width: 1200px;
}
.p-shikumi-content {
		background-color: #f7f7f9;
		position: relative;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		padding: 0 55px 27px 90px;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
}
@media screen and (max-width: 767px) {
		.p-shikumi-content {
				display: block;
				padding: 0 3.2vw 2vw;
		}
}
.p-shikumi-content .cnt {
		width: calc(100% - 537px);
}
@media screen and (max-width: 767px) {
		.p-shikumi-content .cnt {
				width: 100%;
		}
}
@media screen and (max-width: 767px) {
		.p-shikumi-content .cnt .title {
				margin-top: 3.2vw;
		}
		.p-shikumi-content .cnt .title img {
				display: block;
				margin: auto auto auto;
				width: 48.1333333333vw;
		}
}
.p-shikumi-content .cnt .text {
		margin-top: 24px;
		text-align: justify;
}
@media screen and (max-width: 767px) {
		.p-shikumi-content .cnt .text {
				margin-top: 3.3333333333vw;
		}
}
.p-shikumi-content .img {
		width: 537px;
		max-width: 100%;
}
@media screen and (max-width: 767px) {
		.p-shikumi-content .img {
				max-width: none;
				width: calc(100% + 6.4vw);
				margin: auto -3.2vw auto;
		}
}
.p-shikumi-content.-content2 {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		margin-top: 90px;
}
@media screen and (max-width: 767px) {
		.p-shikumi-content.-content2 {
				margin-top: 6vw;
				padding-bottom: 6vw;
		}
}
.p-shikumi-content.-content2 .title2 {
		width: 100%;
}
.p-shikumi-content.-content2 .title2 img {
		width: 675px;
		display: block;
		margin: auto auto auto;
		max-width: 100%;
}
@media screen and (max-width: 767px) {
		.p-shikumi-content.-content2 .title2 img {
				width: 69.4666666667vw;
		}
}
.p-shikumi-content.-content2 .cnt .text {
		color: #332f5b;
}
@media screen and (max-width: 767px) {
		.p-shikumi-content.-content2 .cnt .text {
				margin-top: 0;
				text-align: center;
		}
}
.p-shikumi .arrow {
		width: 100%;
}
.p-shikumi .arrow img {
		display: block;
		margin: auto auto auto;
}
@media screen and (max-width: 767px) {
		.p-shikumi .arrow.-arrow01 img {
				width: 23.2vw;
		}
}
@media screen and (max-width: 767px) {
		.p-shikumi .arrow.-arrow02 img {
				width: 51.4666666667vw;
		}
}
@media screen and (max-width: 767px) {
		.p-shikumi .arrow.-arrow03 img {
				width: 51.4666666667vw;
		}
}
.p-shikumi-text {
		text-align: center;
		margin-top: 48px;
}
@media screen and (max-width: 767px) {
		.p-shikumi-text {
				text-align: justify;
				margin-top: 0;
		}
}

.p-sns {
		padding-top: 35px;
		padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
		.p-sns {
				padding-top: 5.3333333333vw;
				padding-bottom: 7.3333333333vw;
		}
}
.p-sns img {
		display: block;
		margin: auto auto auto;
}
.p-sns-img02 {
		margin-top: 35px;
}
@media screen and (max-width: 767px) {
		.p-sns-img02 {
				margin-top: 6vw;
		}
}
.p-sns-img03 {
		margin-top: 35px;
}
/* PC表示（768px以上）の設定 */
@media screen and (min-width: 768px) {

    /* 親要素にgapを追加して、要素間の隙間を確保します */
    .p-marketing-content {
        gap: 40px; /* 40pxの隙間を確保します。数値は調整してください */
    }
    
    /* テキストのコンテナが縮まないようにします */
    .p-marketing-content .cnt {
        width: 550px;
        flex-shrink: 0; /* これによりテキストボックスが550pxより縮むのを防ぎます */
    }

    /* 図解のコンテナを柔軟な幅にします */
    .p-marketing-content .img {
        /* width指定を削除し、代わりにflex-basisを使用 */
        flex-basis: 50%; /* 親要素の約50%を基準とします */
        min-width: 0;  /* 画像が大きい場合にレイアウトが崩れるのを防ぐ重要な指定です */
    }
}

/* 図解の画像自体が、コンテナの幅に収まるようにします */
/* (これは前回の回答と同じですが、念のため確認してください) */
.p-marketing-content .img img {
    width: 100%;
    height: auto;
    display: block;
}
@media screen and (max-width: 767px) {
		.p-sns-img03 {
				margin-top: 7.3333333333vw;
		}
}

.p-marketing {
		background: rgb(0, 0, 0);
		background: linear-gradient(45deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#fc3aac", endColorstr="#ffbd45",GradientType=1 );
		padding-top: 55px;
		padding-bottom: 75px;
}
@media screen and (max-width: 767px) {
		.p-marketing {
				padding-top: 8vw;
				padding-bottom: 8vw;
				overflow-x: hidden;
		}
}
.p-marketing-img01 img {
		display: block;
		margin: auto;
}
.p-marketing-content {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: row-reverse;
		        flex-direction: row-reverse;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
}
@media screen and (max-width: 767px) {
		.p-marketing-content {
				display: block;
		}
}
@media screen and (max-width: 767px) {
		.p-marketing-content .img {
				width: calc(100% + 12vw);
				margin: 0 -6vw;
				overflow-x: hidden;
		}
}
.p-marketing-content .cnt {
		width: 550px;
		max-width: 100%;
}
@media screen and (max-width: 767px) {
		.p-marketing-content .cnt {
				width: 100%;
		}
}
.p-marketing-content .cnt .m-text {
		color: #ffffff;
		text-align: justify;
}
@media screen and (max-width: 767px) {
		.p-marketing-content .cnt .m-text {
				font-size: 3.6vw;
		}
}
.p-marketing-content.-content2 {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		background-color: #f7f7f9;
		margin-top: 30px;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		border: 5px solid #e4e4ef;
}
@media screen and (max-width: 767px) {
		.p-marketing-content.-content2 {
				margin-top: 5.3333333333vw;
				padding-bottom: 6.6666666667vw;
		}
}
.p-marketing-content.-content2 .img1 {
		width: 100%;
		position: relative;
		top: -5px;
}
.p-marketing-content.-content2 .img1 img {
		display: block;
		margin: auto;
}
@media screen and (max-width: 767px) {
		.p-marketing-content.-content2 .img1 img {
				width: 69.4666666667vw;
		}
}
.p-marketing-content.-content2 .img2 {
		width: 100%;
		margin-top: 25px;
}
@media screen and (max-width: 767px) {
		.p-marketing-content.-content2 .img2 {
				margin-top: 4vw;
		}
}
.p-marketing-content.-content2 .img2 img {
		display: block;
		margin: auto;
}
@media screen and (max-width: 767px) {
		.p-marketing-content.-content2 .img2 img {
				width: 71.3333333333vw;
		}
}
.p-marketing-content.-content2 .img3 {
		width: 587px;
		padding-left: 25px;
		max-width: 100%;
}
@media screen and (max-width: 767px) {
		.p-marketing-content.-content2 .img3 {
				padding: 0;
				width: calc(100% + 1.3333333333vw);
				margin: 0 -0.6666666667vw;
				max-width: none;
		}
}
.p-marketing-content.-content2 .cnt {
		width: calc(100% - 587px);
}
@media screen and (max-width: 767px) {
		.p-marketing-content.-content2 .cnt {
				width: 100%;
		}
}
.p-marketing-content-text2 {
		font-size: 3.2rem;
		font-weight: bold;
		line-height: 1.5;
		letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
		.p-marketing-content-text2 {
				font-size: 5.3333333333vw;
				text-align: center;
		}
}
.p-marketing-content-text2 .m-pink {
		line-height: 1.625;
		text-decoration: underline;
		letter-spacing: 0.12em;
}

.reason-text {
			font-size: 28px;
			color: #F7004D;
			font-weight: bold;
			text-align: center;
			padding-left: 10px;
			padding-right: 10px;

}

.storypop-link {
	font-size: 20px;
	color: #F7004D;
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: bold;
	text-decoration: underline;
}

.p-reason {
		overflow-x: hidden;
}
.p-reason-heading {
		background-color: #f7f7f9;
		padding-top: 50px;
}
@media screen and (max-width: 767px) {
		.p-reason-heading {
				padding-top: 10vw;
		}
}
.p-reason-box {
		background-color: #000000;
		padding: 0px 0;
}
@media screen and (max-width: 767px) {
		.p-reason-box {
				padding: 8vw 0;
		}
}
.p-reason-box:nth-of-type(2n) {
		background-color: #000000;
}
.p-reason-box:nth-of-type(2n) .inner {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: row-reverse;
		        flex-direction: row-reverse;
}
.p-reason-box:nth-of-type(2n) .inner .img {
		left: auto;
		right: 595px;
}
.p-reason-box:nth-of-type(2n) .inner .cnt {
		padding-right: 0;
		padding-left: 45px;
}
@media screen and (max-width: 767px) {
		.p-reason-box:nth-of-type(2n) .inner .cnt {
				padding: 0;
		}
}
.p-reason-box .inner {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		position: relative;
}
@media print, screen and (min-width: 768px) {
		.p-reason-box .inner {
				min-height: 306px;
		}
}
@media screen and (max-width: 767px) {
		.p-reason-box .inner {
				display: block;
		}
}
.p-reason-box .inner .cnt {
		width: 595px;
		max-width: 100%;
		padding-right: 45px;
}
@media screen and (max-width: 767px) {
		.p-reason-box .inner .cnt {
				width: 100%;
				padding-right: 0;
		}
}
.p-reason-box .inner .cnt .title {
		font-weight: bold;
		font-size: 3rem;
		line-height: 1.28;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
}
@media screen and (max-width: 767px) {
		.p-reason-box .inner .cnt .title {
				font-size: 4.8vw;
				line-height: 1.3333333333;
		}
}
.p-reason-box .inner .cnt .title .num {
		width: 68px;
}
@media screen and (max-width: 767px) {
		.p-reason-box .inner .cnt .title .num {
				width: 11.3333333333vw;
		}
}
.p-reason-box .inner .cnt .title .text {
		margin-left: 0.8em;
}
.p-reason-box .inner .cnt .m-text {
		text-align: justify;
		margin-top: 25px;
		font-size: 2rem;
		line-height: 2;
}
@media screen and (max-width: 767px) {
		.p-reason-box .inner .cnt .m-text {
				margin-top: 4.6666666667vw;
				font-size: 3.7333333333vw;
				line-height: 1.7857142857;
		}
}
.p-reason-box .inner .img {
		width: 630px;
		max-width: 100%;
		position: absolute;
		left: 595px;
		top: 50%;
		-webkit-transform: translateY(-50%);
		        transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
		.p-reason-box .inner .img {
				margin: 5.3333333333vw auto auto;
				width: 100%;
				position: static;
				-webkit-transform: none;
				        transform: none;
		}
}
.p-reason-point {
		margin-top: 70px;
}
@media screen and (max-width: 767px) {
		.p-reason-point {
				margin-top: 9.3333333333vw;
		}
}
.p-reason-point__box {
		background-color: #ffffff;
		border: 5px solid #0BEAE3;
		margin-top: 65px;
		padding: 50px 30px 25px;
		position: relative;
}
@media screen and (max-width: 767px) {
		.p-reason-point__box {
				margin-top: 6.6666666667vw;
				padding: 8vw 4vw 3.3333333333vw;
		}
}
.p-reason-point__box:first-of-type {
		margin-top: 0;
}
.p-reason-point__box:last-of-type {
		margin-bottom: 65px;
}
@media screen and (max-width: 767px) {
		.p-reason-point__box:last-of-type  {
				margin-bottom: 6.6666666667vw;
		}
}
.p-reason-point__box .num {
		position: absolute;
		left: -5px;
		top: -27.5px;
}
.p-reason-point__box .num img {
  width: 300px; /* お好みの大きさに調整 */
  height: auto;
}

@media screen and (max-width: 767px) {
		.p-reason-point__box .num {
			position: absolute;
				width: 40vw;
				top: -4.5333333333vw;
		}
}
.p-reason-point__box .title {
		font-size: 2.5rem;
		font-weight: bold;
		line-height: 1.5833333333;
		letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
		.p-reason-point__box .title {
				font-size: 4.5333333333vw;
		}
}
.p-reason-point__box .m-text {
		margin-top: 8px;
		font-size: 1.8rem;
		line-height: 2;
}
@media screen and (max-width: 767px) {
		.p-reason-point__box .m-text {
				margin-top: 2vw;
				font-size: 3.7333333333vw;
				line-height: 1.7857142857;
		}
}

.p-service {
		background-image: url(./img/bg_service@2x.png);
		background-repeat: repeat-y;
		background-size: auto;
		padding-top: 30px;
		padding-bottom: 60px;
		background-color: #ffffff;
}
@media screen and (max-width: 767px) {
		.p-service {
				background-size: 300%;
				padding-top: 9.3333333333vw;
				padding-bottom: 9.3333333333vw;
		}
		.p-service .c-secttl {
				font-size: 5.3333333333vw;
		}
}
.p-service-outer {
		padding: 8px 0;
		background: rgb(252, 58, 172);
		background: linear-gradient(45deg, rgb(252, 58, 172) 0%, rgb(255, 189, 69) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#fc3aac", endColorstr="#ffbd45",GradientType=1 );
}
@media screen and (max-width: 767px) {
		.p-service-outer {
				padding: 1.3333333333vw 0;
		}
}
@media print, screen and (min-width: 768px) {
		.p-service-content {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-pack: justify;
				    -ms-flex-pack: justify;
				        justify-content: center;
		}
}
.p-service-content {
		margin-top: 20px;
}
@media screen and (max-width: 767px) {
		.p-service-content {
				width: 81.0666666667vw;
				margin: 6.6666666667vw auto auto;
		}
		.p-service-content .slick-arrow {
				width: 3.4666666667vw;
				height: 6.4vw;
				display: block;
		}
		.p-service-content .slick-arrow::before {
				content: "";
				display: block;
				width: 100%;
				height: 100%;
				background-image: url(./img/arrow-slide.svg);
				background-repeat: no-repeat;
				background-position: center center;
				background-size: contain;
		}
		.p-service-content .slick-arrow.slick-prev::before {
				-webkit-transform: scale(-1, 1);
				        transform: scale(-1, 1);
		}
}
.p-service-item {
		background-color: #f7f7f9;
		border: 5px solid #e4e4ef;
		/*width: 345px;*/
		width: 420px;
		padding: 20px 40px;
		position: relative;
		max-width: 100%;
}
@media screen and (max-width: 767px) {
		.p-service-item {
				/*padding: 12vw 16vw 6.6666666667vw;*/
				padding: 8vw 8vw 6.6666666667vw;
				width: 100%;
		}
}
.p-service-item .title {
		text-align: center;
		color: #ffffff;
		width: 320px;
		height: 50px;
		margin: auto;
		position: absolute;
		left: 50%;
		-webkit-transform: translateX(-50%);
		        transform: translateX(-50%);
		top: -5px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		font-weight: bold;
		-webkit-clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
		        clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
		max-width: 100%;
		font-size: 2rem;
		letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
		.p-service-item .title {
				font-size: 4.5333333333vw;
				width: 69.4666666667vw;
				height: 10.6666666667vw;
		}
}
.p-service-item.-tiktok .title {
		background-color: #5fb0dd;
}
.p-service-item.-youtube .title {
		background-color: #db4f4f;
}
.p-service-item.-insta .title {
		background-color: #4a4587;
}
.p-service-item .list li {
		position: relative;
		padding-left: 1.5em;
		font-size: 2rem;
		line-height: 2.1;
		font-weight: bold;
		letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
		.p-service-item .list li {
				font-size: 3.7333333333vw;
				line-height: 1.9642857143;
		}
}
.p-service-item .list li::before {
		content: "";
		width: 23px;
		height: 23px;
		background-image: url(./img/icn_check.svg);
		background-repeat: no-repeat;
		background-position: center center;
		background-size: contain;
		display: block;
		position: absolute;
		left: 0;
		top: 0.5em;
}
@media screen and (max-width: 767px) {
		.p-service-item .list li::before {
				width: 4vw;
				height: 4vw;
		}
}

.p-flow {
		background-color: #fff5f6;
		padding-bottom: 60px;
		padding-top: 60px;
}
@media screen and (max-width: 767px) {
		.p-flow {
				padding-top: 10vw;
				padding-bottom: 10.6666666667vw;
		}
}
.p-flow-content {
		margin-top: 35px;
}
@media screen and (max-width: 767px) {
		.p-flow-content {
				margin-top: 7.3333333333vw;
		}
}
.p-flow-box {
		background-color: #ffffff;
		margin-top: 23px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		padding: 40px 79px 40px 78px;
		position: relative;
}
@media screen and (max-width: 767px) {
		.p-flow-box {
				margin-top: 4vw;
				padding: 5.3333333333vw 4vw 6.6666666667vw;
				display: block;
		}
}
.p-flow-box::after {
		content: "";
		display: block;
		width: 140px;
		height: 46px;
		background-image: url(./img/arrow_flow.svg);
		background-repeat: no-repeat;
		background-position: center center;
		background-size: contain;
		position: absolute;
		bottom: 0;
		left: 50%;
		-webkit-transform: translateX(-50%) translateY(75%);
		        transform: translateX(-50%) translateY(75%);
		z-index: 1;
}
@media screen and (max-width: 767px) {
		.p-flow-box::after {
				width: 23.2vw;
				height: 7.6vw;
		}
}
.p-flow-box:last-of-type::after {
		content: none;
}
.p-flow-box:first-of-type {
		margin-top: 0;
}
.p-flow-box .cnt {
		width: 420px;
		max-width: 100%;
}
@media screen and (max-width: 767px) {
		.p-flow-box .cnt {
				width: 100%;
		}
}
.p-flow-box .img {
		width: 501px;
		max-width: 100%;
}
@media screen and (max-width: 767px) {
		.p-flow-box .img {
				width: 100%;
				margin-top: 3.3333333333vw;
		}
}
.p-flow-box__title {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
		.p-flow-box__title {
				-webkit-box-pack: center;
				    -ms-flex-pack: center;
				        justify-content: center;
				margin-bottom: 2.6666666667vw;
		}
}
.p-flow-box__title .num {
		height: 38px;
}
@media screen and (max-width: 767px) {
		.p-flow-box__title .num {
				height: 6.4vw;
		}
}
.p-flow-box__title .num img {
		width: auto;
		height: 100%;
}
.p-flow-box__title .title {
		font-size: 2.88rem;
		font-weight: bold;
		letter-spacing: 0.12em;
		margin-left: 0.8em;
}
@media screen and (max-width: 767px) {
		.p-flow-box__title .title {
				font-size: 4.8vw;
		}
}
.p-flow-box__text {
		font-size: 2.2rem;
		line-height: 1.7857142857;
		font-weight: 600;
		letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
		.p-flow-box__text {
				font-size: 3.7333333333vw;
				line-height: 1.7857142857;
				text-align: center;
		}
}

.p-faq {
		padding-top: 60px;
		padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
		.p-faq {
				padding-top: 10.6666666667vw;
				padding-bottom: 10vw;
		}
}
.p-faq-content {
		margin-top: 35px;
}
@media screen and (max-width: 767px) {
		.p-faq-content {
				margin-top: 8vw;
		}
}
.p-faq-box {
		background-color: #f7f7f9;
		margin-top: 30px;
		padding: 23px 23px;
}
@media screen and (max-width: 767px) {
		.p-faq-box {
				margin-top: 4vw;
				padding: 3.4666666667vw;
		}
}
.p-faq-box:first-of-type {
		margin-top: 0;
}
.p-faq-box__btn, .p-faq-box__cnt {
		position: relative;
		padding-left: 55px;
}
@media screen and (max-width: 767px) {
		.p-faq-box__btn, .p-faq-box__cnt {
				padding-left: 9.3333333333vw;
		}
}
.p-faq-box__btn .icn, .p-faq-box__cnt .icn {
		width: 39px;
		position: absolute;
		left: 0;
		top: 0;
}
@media screen and (max-width: 767px) {
		.p-faq-box__btn .icn, .p-faq-box__cnt .icn {
				width: 6.5333333333vw;
		}
}
.p-faq-box__btn {
		cursor: pointer;
		padding-right: 36px;
}
@media screen and (max-width: 767px) {
		.p-faq-box__btn {
				padding-right: 13.3333333333vw;
		}
}
.p-faq-box__btn .que-text {
		font-size: 2.2rem;
		font-weight: bold;
		letter-spacing: 0.12em;
		line-height: 1.75;
}
@media screen and (max-width: 767px) {
		.p-faq-box__btn .que-text {
				font-size: 3.7333333333vw;
				line-height: 1.75;
		}
}
.p-faq-box__btn .toggle {
		width: 26px;
		height: 26px;
		position: absolute;
		right: 0;
		top: 50%;
		-webkit-transform: translateY(-50%);
		        transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
		.p-faq-box__btn .toggle {
				width: 4.4vw;
				height: 4.4vw;
		}
}
.p-faq-box__btn .toggle::before, .p-faq-box__btn .toggle::after {
		content: "";
		width: 100%;
		height: 5px;
		display: block;
		background-color: #332f5b;
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translateX(-50%) translateY(-50%);
		        transform: translateX(-50%) translateY(-50%);
}
@media screen and (max-width: 767px) {
		.p-faq-box__btn .toggle::before, .p-faq-box__btn .toggle::after {
				height: 0.6666666667vw;
		}
}
.p-faq-box__btn .toggle::after {
		-webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
		        transform: translateX(-50%) translateY(-50%) rotate(90deg);
		-webkit-transition: 0.3s -webkit-transform;
		transition: 0.3s -webkit-transform;
		transition: 0.3s transform;
		transition: 0.3s transform, 0.3s -webkit-transform;
}
.p-faq-box__btn.ac .toggle::after {
		-webkit-transform: translateX(-50%) translateY(-50%);
		        transform: translateX(-50%) translateY(-50%);
}
.p-faq-box__cnt {
		border-top: 2px solid #b3b3b3;
		padding-top: 23px;
		margin-top: 23px;
}
@media screen and (max-width: 767px) {
		.p-faq-box__cnt {
				padding-top: 3.4666666667vw;
				margin-top: 3.4666666667vw;
		}
}
.p-faq-box__cnt .icn {
		top: 23px;
}
@media screen and (max-width: 767px) {
		.p-faq-box__cnt .icn {
				top: 3.4666666667vw;
		}
}
.p-faq-box__cnt .ans-text {
		font-size: 2.2rem;
		font-weight: 600;
		letter-spacing: 0.12em;
		line-height: 1.75;
}
@media screen and (max-width: 767px) {
		.p-faq-box__cnt .ans-text {
				font-size: 3.7333333333vw;
				line-height: 1.75;
		}
}

.p-support {
		background: rgb(252, 58, 172);
		background: linear-gradient(45deg, rgb(252, 58, 172) 0%, rgb(255, 189, 69) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#fc3aac", endColorstr="#ffbd45",GradientType=1 );
		padding-top: 60px;
		padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
		.p-support {
				padding-top: 9.3333333333vw;
				padding-bottom: 8vw;
		}
}
.p-support-title img {
		display: block;
		margin: auto;
		width: 815px;
		max-width: 100%;
}
@media screen and (max-width: 767px) {
		.p-support-title img {
				width: 100%;
		}
}
.p-support-content {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		margin-top: 45px;
}
@media screen and (max-width: 767px) {
		.p-support-content {
				display: block;
				margin-top: 6vw;
		}
}
.p-support-content .img {
		width: 488px;
		max-width: 100%;
}
.p-support-content .img img {
		display: block;
}
.p-support-content .cnt {
		width: 555px;
		max-width: 100%;
}
@media screen and (max-width: 767px) {
		.p-support-content .cnt {
				width: 100%;
				margin-top: 4vw;
		}
}
.p-support-content .cnt .text {
		color: #ffffff;
		font-size: 2rem;
		line-height: 2;
		letter-spacing: 0.07em;
		font-weight: 600;
		text-align: justify;
}
@media screen and (max-width: 767px) {
		.p-support-content .cnt .text {
				font-size: 3.7333333333vw;
				line-height: 1.7857142857;
		}
}
.p-support-content .cnt .sign {
		text-align: right;
		color: #ffffff;
		margin-top: 16px;
}
@media screen and (max-width: 767px) {
		.p-support-content .cnt .sign {
				margin-top: 0.4vw;
		}
}
.p-support-content .cnt .sign .status {
		font-size: 1.9rem;
		letter-spacing: 0.12em;
		font-weight: bold;
}
@media screen and (max-width: 767px) {
		.p-support-content .cnt .sign .status {
				font-size: 2.8vw;
		}
}
.p-support-content .cnt .sign .name {
		font-size: 2.88rem;
		letter-spacing: 0.12em;
		font-weight: bold;
}
@media screen and (max-width: 767px) {
		.p-support-content .cnt .sign .name {
				font-size: 4.6666666667vw;
				line-height: 1;
		}
}

.p-contact {
		padding-top: 45px;
		padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
		.p-contact {
				padding-top: 10.6666666667vw;
				padding-bottom: 10.6666666667vw;
		}
}
.p-contact-flow {
		margin-top: 32px;
		margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
		.p-contact-flow {
				margin: 7.2vw 0 3.4666666667vw;
		}
}
.p-contact-flow img {
		display: block;
		margin: auto;
		width: 552px;
		max-width: 100%;
}
@media screen and (max-width: 767px) {
		.p-contact-flow img {
				width: 100%;
		}
}
.p-contact-text {
		text-align: center;
		font-size: 2.2rem;
		font-weight: 600;
		letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
		.p-contact-text {
				font-size: 3.7333333333vw;
				line-height: 1.7857142857;
				text-align: left;
		}
}
.p-contact-content {
		width: 810px;
		margin: 45px auto auto;
		max-width: 100%;
}
@media screen and (max-width: 767px) {
		.p-contact-content {
				width: 100%;
				margin-top: 6.6666666667vw;
		}
}
.p-contact-table__head {
		font-weight: bold;
		font-size: 2rem;
		letter-spacing: 0.12em;
		line-height: 1.296;
		margin-top: 26px;
}
@media screen and (max-width: 767px) {
		.p-contact-table__head {
				font-size: 3.7333333333vw;
				line-height: 1.2857142857;
				margin-top: 7.7333333333vw;
		}
}
.p-contact-table__head:first-of-type {
		margin-top: 0;
}
.p-contact-table__head .hissu {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		width: 45px;
		height: 23px;
		font-size: 1.37rem;
		letter-spacing: 0.12em;
		color: #ffffff;
		font-weight: bold;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		margin-right: 1em;
		background-color: #F7004D;
		padding: 0.1em 0 0;
}
@media screen and (max-width: 767px) {
		.p-contact-table__head .hissu {
				font-size: 2.5333333333vw;
				width: 8.6666666667vw;
				height: 4.6666666667vw;
		}
}
.p-contact-table__cnt {
		font-size: 2rem;
		font-weight: 600;
		letter-spacing: 0.12em;
		margin-top: 16px;
}
@media screen and (max-width: 767px) {
		.p-contact-table__cnt {
				font-size: 3.7333333333vw;
				line-height: 1.9285714286;
				margin-top: 2vw;
		}
}
.p-contact-table__cnt .parts-list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
}
.p-contact-table__cnt .parts-list li {
		margin-right: 2em;
}
.p-contact-table__cnt .parts-list li:last-of-type {
		margin-right: 0;
}
.p-contact-table__cnt input,
.p-contact-table__cnt textarea {
		background-color: #f2f2f2;
		letter-spacing: 0.12em;
		font-weight: 600;
		padding: 14px 14px 14px;
}
.p-contact-table__cnt textarea {
		height: 220px;
}
@media screen and (max-width: 767px) {
		.p-contact-table__cnt label input[type=radio] + span {
				padding-left: 6.6666666667vw;
		}
}
.p-contact-table__cnt label input[type=radio] + span::before {
		width: 18px;
		height: 18px;
		border-width: 2px;
		border-color: #333333;
}
@media screen and (max-width: 767px) {
		.p-contact-table__cnt label input[type=radio] + span::before {
				width: 4.8vw;
				height: 4.8vw;
		}
}
.p-contact-table__cnt label input[type=radio]:checked + span::after {
		width: 10px;
		height: 10px;
		background-color: #333333;
		left: 4px;
}
@media screen and (max-width: 767px) {
		.p-contact-table__cnt label input[type=radio]:checked + span::after {
				width: 2.6666666667vw;
				height: 2.6666666667vw;
				left: 1.0666666667vw;
		}
}
.p-contact-table__cnt .error {
		color: #e04819;
		font-weight: bold;
}
.p-contact-btn-area {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		margin-top: 25px;
		gap: 0 25px;
}
@media screen and (max-width: 767px) {
		.p-contact-btn-area {
				margin-top: 8vw;
				display: block;
		}
}
.p-contact-btn {
		border: none;
		padding: 0;
		background-color: transparent;
		display: block;
		width: 442px;
		max-width: 100%;
}
@media screen and (max-width: 767px) {
		.p-contact-btn {
				width: 100%;
				margin-top: 3.3333333333vw !important;
		}
		.p-contact-btn:first-of-type {
				margin-top: 0 !important;
		}
}
.p-contact.-confirm .p-contact-table__head {
		position: relative;
		padding-left: 18px;
}
@media screen and (max-width: 767px) {
		.p-contact.-confirm .p-contact-table__head {
				padding-left: 3.2vw;
		}
}
.p-contact.-confirm .p-contact-table__head::before {
		content: "";
		width: 5px;
		height: 1.1em;
		display: block;
		background-color: #f74f7b;
		position: absolute;
		left: 0;
		top: 0.1em;
}
@media screen and (max-width: 767px) {
		.p-contact.-confirm .p-contact-table__head::before {
				width: 0.6666666667vw;
		}
}
.p-contact.-confirm .p-contact-table__cnt {
		letter-spacing: 0.11em;
}
.p-contact.-thanks .c-secttl {
		line-height: 1.34375;
}
.p-contact.-thanks .price-title {
		text-align: center;
		font-size: 2.8rem;
		letter-spacing: 0.12em;
		font-weight: bold;
		margin-top: 32px;
}
@media screen and (max-width: 767px) {
		.p-contact.-thanks .price-title {
				font-size: 4.5333333333vw;
				margin-top: 4.6666666667vw;
		}
}
.p-contact.-thanks .price-image {
		width: 842px;
		max-width: 100%;
		margin: 16px auto auto;
}
@media screen and (max-width: 767px) {
		.p-contact.-thanks .price-image {
				margin-top: 3.3333333333vw;
		}
}
.p-contact.-thanks .p-contact-btn-area {
		margin-top: 35px;
}
@media screen and (max-width: 767px) {
		.p-contact.-thanks .p-contact-btn-area {
				margin-top: 11.0666666667vw;
		}
}

.p-company {
		background-color: #f7f7f9;
		padding-top: 60px;
		padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
		.p-company {
				padding-top: 10vw;
				padding-bottom: 6.6666666667vw;
		}
}
.p-company-table {
		width: 775px;
		margin: auto;
		max-width: 100%;
}
@media screen and (max-width: 767px) {
		.p-company-table {
				width: 100%;
		}
}
.p-company-table tr:last-of-type th, .p-company-table tr:last-of-type td {
		border-bottom: none;
}
.p-company-table th {
		font-size: 1.8rem;
		font-weight: bold;
		letter-spacing: 0.07em;
		border-bottom: 1px solid #333333;
		vertical-align: top;
		text-align: left;
		width: 153px;
		line-height: 2;
		padding: 10px 0 7px;
}
@media screen and (max-width: 767px) {
		.p-company-table th {
				width: 28vw;
				font-size: 3.7333333333vw;
				line-height: 1.7857142857;
				padding: 2.6666666667vw 0 2vw;
		}
}
.p-company-table td {
		font-size: 1.8rem;
		font-weight: 600;
		letter-spacing: 0.07em;
		border-bottom: 1px solid #333333;
		line-height: 2;
		padding: 10px 0 7px;
}
@media screen and (max-width: 767px) {
		.p-company-table td {
				font-size: 3.7333333333vw;
				line-height: 1.7857142857;
				padding: 2.6666666667vw 0 2vw;
		}
}
.p-company-table td .inner {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
}
@media screen and (max-width: 767px) {
		.p-company-table td .inner {
				display: block;
		}
}
.p-company-table td .inner ul + ul {
		margin-left: 55px;
}
@media screen and (max-width: 767px) {
		.p-company-table td .inner ul + ul {
				margin-left: 0;
				margin-top: 0;
		}
}
/* --- 無限スクロールアニメーションのためのCSS --- */

  /* アニメーションの定義 */
  @keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      /* コンテンツの半分（1セット分）移動させることでループさせます */
      transform: translateX(-50%);
    }
  }

  /* スクロール全体を囲むラッパー */
  .marquee-wrapper {
    overflow: hidden; /* はみ出した部分を隠して、スクロールしているように見せます */
    width: 100%;
    margin-top: 40px; /* 上の要素との余白 */
    padding: 20px 0; /* 上下の余白 */
    background-color: #000000; /* 背景色（任意で変更してください） */
  }

  /* アニメーションさせる要素のコンテナ */
  .marquee-content {
    display: flex; /* カードを横並びにします */
    width: fit-content; /* 中身の幅に合わせてコンテナの幅を広げます */
    /* アニメーションを適用: アニメーション名 時間 速度 繰り返し */
    animation: marquee 40s linear infinite;
  }

  /* マウスが乗ったらアニメーションを停止 */
  .marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
  }

  /* 各カードのスタイル */
  .marquee-card {
    flex-shrink: 0; /* カードがコンテナ内で縮まないようにします */
    width: 280px; /* カードの幅 */
    margin: 0 15px; /* カード間の左右の余白 */
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* カードに影をつけます */
    overflow: hidden; /* カードの角丸を画像にも適用させます */
    transition: transform 0.3s ease; /* ホバー時のアニメーション */
  }

  .marquee-card:hover {
      transform: translateY(-5px); /* ホバー時に少し浮き上がります */
  }

  .marquee-card img {
    width: 100%;
    height: 180px;
    object-fit: cover; /* 画像が歪まないように調整します */
  }

  .marquee-card .card-body {
    padding: 16px;
  }

  .marquee-card .card-category {
    font-size: 11px;
    color: #6b7280; /* グレー */
  }

  .marquee-card .card-title {
    font-size: 14px;
    font-weight: bold;
    color: #1a202c; /* 濃いグレー */
    margin-top: 8px;
  }

  /* --- レスポンシブ対応（スマートフォン表示） --- */
  @media (max-width: 768px) {
    .marquee-card {
      width: 180px; /* スマホではカード幅を小さくします */
      margin: 0 10px;
    }
    .marquee-card img {
      height: 120px;
    }
  }
 /* --------------------------------
 料金プラン
-------------------------------- */
.p-price-plans {
  padding: 50px 0;
}

.plans-container {
  display: flex;
  justify-content: center;
  gap: 40px; /* カード間のスペース */
  flex-wrap: wrap; /* 画面幅が狭い場合に折り返す */
}

.plan-card {
  background-color: #ffffff;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* 少しシャドウをつけます */
  padding: 30px 40px;
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.3s ease-in-out;
  order: 0;
}

.plan-card:hover {
  transform: translateY(-10px); /* ホバー時に少し浮き上がる効果 */
}

.plan-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  white-space: nowrap; /* ★追加: タイトルを改行させない */
  overflow: hidden; /* ★追加: はみ出した部分を隠す */
  text-overflow: ellipsis; /* ★追加: はみ出した部分を「...」で表示 */
}

/* 追加するCSS */
.plan-description {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
  margin-top: -15px;
  margin-bottom: 25px;
  padding-bottom: 5px;
  border-bottom: 2px solid #0BEAE3;
  display: inline-block;
  line-height: 1.5;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex-grow: 1;
}

.plan-features li {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.plan-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 5px; /* 料金との間隔を少し開ける */
}

.plan-price span {
  color: #F7004D;
  font-weight: 900;
  font-size: 2.4rem;
  white-space: nowrap; /* ★追加: 料金の数字を改行させない */
}

/* おすすめプラン(C)のスタイル */
.plan-card.recommended {
  border: 4px solid transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(to right, #F7004D, #0BEAE3) border-box;
  background-clip: padding-box, border-box;
  order: -1;
}

/* SP表示 (767px以下) */
@media (max-width: 767px) {
  .p-price-plans {
    padding: 40px 0;
  }
  .plans-container {
    flex-direction: column; /* 縦並びに変更 */
    align-items: center;
    gap: 25px;
  }
  .plan-card {
    width: 90%;
    max-width: none;
    order: unset;
  }
  .plan-title {
    font-size: 2rem; /* モバイルでのフォントサイズを調整 */
    white-space: normal; /* ★修正: モバイルでは改行を許可する */
    overflow: visible; /* ★修正: はみ出しを許容 */
    text-overflow: clip; /* ★修正: はみ出しの表示方法をリセット */
  }

  .plan-price span {
    font-size: 2rem; /* モバイルでのフォントサイズを調整 */
  }
}
/****************************************
***************** フロー*****************
****************************************/
.cmn-ttl {
	color: #ffffff;
	font-weight: bold;
		font-size: 21px;

}
.ma_to10 {
	font-size: 17px;
	color: #ffffff;
}
.step {
    padding-top: 120px;
}

.step ul {
    min-height: 967px;
    max-width: 800px;
    margin: 0 auto;
    background: url(./img/arw_step.png) no-repeat top center / auto 100%;
}

.step ul li {
    max-width: 470px;
    margin-top: 40px;
}

.step ul li:nth-child(2n) {
    margin-left: auto;
}

.step ul li figure {
    margin-right: 15px;
    transform: translateY(3px);
}

@media screen and (max-width: 768px) {
    .step {
        padding-top: 20px;
    }
}

@media screen and (max-width: 480px) {
    .step ul {
        min-height: 0;
        font-size: 1.4rem;
        padding-bottom: 150px;
        background-size: contain;
        background-position: bottom center;
    }
    .step ul li figure {
        width: 100px;
    }
}
/* 基本的なリセット */
.faq-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: sans-serif;
    color: #333;
    /* 基本のフォントサイズを調整 */
    font-size: 16px; /* デスクトップ基準のフォントサイズ */
}

.faq-section-title {
    text-align: center;
    font-size: 2em; /* 16px * 2 = 32px */
    margin-bottom: 30px;
    color: #2c3e50;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item details {
    padding: 0;
}

/* 質問部分 (summary) のスタイル */
.faq-question {
    display: block;
    padding: 15px 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em; /* 16px * 1.1 = 17.6px */
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
    list-style: none;
}

/* summaryのデフォルトマーカーを非表示にする */
.faq-question::-webkit-details-marker {
    display: none;
}
.faq-question::marker { /* Firefox対応 */
    display: none;
}


/* 質問部分にホバーした時のスタイル */
.faq-question:hover {
    background-color: #f0f0f0;
}

/* 質問部分に開閉を示す矢印を追加 */
.faq-question::before {
    content: '+';
    display: inline-block;
    margin-right: 10px;
    font-size: 1.2em;
    font-weight: bold;
    color: #007bff;
    transition: transform 0.2s ease;
}

/* 開いている時の矢印のスタイル */
.faq-item details[open] .faq-question::before {
    content: '−';
    transform: rotate(0deg);
}

/* 回答部分のスタイル */
.faq-answer-content {
    padding: 15px 20px;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.faq-answer-content p {
    margin: 0;
    line-height: 1.6;
    color: #555;
    font-size: 1em; /* 16px * 1 = 16px */
}

/* detailsがopenの時の質問部分のスタイル調整 */
.faq-item details[open] .faq-question {
    background-color: #0BEAE3;
    border-bottom: none;
}

/* --- モバイル向け調整 (例: 画面幅768px以下) --- */
@media (max-width: 768px) {
    .faq-section {
        padding: 0 15px; /* 左右のパディングを少し減らす */
        font-size: 15px; /* モバイルでの基本フォントサイズを少し小さく */
    }

    .faq-section-title {
        font-size: 1.8em; /* 15px * 1.8 = 27px */
        margin-bottom: 20px;
    }

    .faq-question {
        padding: 12px 15px; /* パディングを調整 */
        font-size: 1.05em; /* 15px * 1.05 = 約15.75px */
    }

    .faq-question::before {
        margin-right: 8px; /* 矢印とテキストの間のスペースを調整 */
        font-size: 1.1em;
    }

    .faq-answer-content {
        padding: 12px 15px;
    }

    .faq-answer-content p {
        font-size: 1em; /* 15px * 1 = 15px */
    }
}

/* さらに小さなデバイス向け (例: 画面幅480px以下) */
@media (max-width: 480px) {
    .faq-section {
        padding: 0 10px;
        font-size: 14px; /* さらに小さめのデバイス向け */
    }

    .faq-section-title {
        font-size: 1.6em; /* 14px * 1.6 = 約22.4px */
    }

    .faq-question {
        padding: 10px 12px;
        font-size: 1em; /* 14px * 1 = 14px */
    }

    .faq-answer-content {
        padding: 10px 12px;
    }

    .faq-answer-content p {
        font-size: 1em; /* 14px * 1 = 14px */
    }
}