

/* ↓リセットCSS
-----------------------------*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
 
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}


/*==============================================================

共通設定

==============================================================*/

.js-scrollable {
    overflow-x: auto;
    white-space: nowrap;
}

body {
    position: relative;
    background-color: #ffff;
    color: #4e4e4e;
    font-family: 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', 'メイリオ', sans-serif;
}

.content {
    margin: 0 auto;
    max-width: 750px;
}

.section {
    line-height: 1.6;
}

.header__menu svg path {
    stroke: var(--color-purple);
}

:root {
    --color-main: #ec42a2;
    /* メインカラー */
    --color-sub: #ff90cf;
    /* サブカラー */
    --color-point: #fcff00;
    /* ポイントカラー */
    --color-point--sec: #f1dc23;
    /* ポイントカラー */
    --color-green: #4CAF50;
    /* グリーン */
    --color-white: #FFFF;
    /* ホワイト */
    --color-black: #372E41;
    /* ブラック */
    --color-purple: #49419a;
    /* パープル */
    --color-blue: #0073aa;
    /* ブルー */
    --color-gray: #ccc;
    /* グレー */
    --color-light-gray: #f8f8f8;
    /* ライトグレー */
    --color-dark-gray: #666;
    /* ダークグレー */
}

.wd-750 {
    width: 750px;
}

/*==============================================================

テキスト設定

==============================================================*/

.text-b {
    font-weight: bold;
}

.ft-15 {
    font-size: 15px;
}

.ft-sp-20 {
    font-size: 26px;
}

.ft-SP20 {
    font-size: 26px;
}

.ft-30 {
    font-size: 30px;
}

.ft-40 {
    font-size: 40px;
}


.c-text--yellow {
    color: var(--color-point);
}

.c-text--yellow-deep {
    color: var(--color-point--sec);
}


.c-text--white {
    color: var(--color-white);
}

.c-text--pink {
    color: var(--color-main);
}

.c-text--purple {
    color: var(--color-purple);
}

.c-text--dark-gray {
    color: var(--color-dark-gray);
}


/*==============================================================

マージン設定

==============================================================*/
.mt-3 {
    margin-top: 3%;
}

.mt-4 {
    margin-top: 4%;
}

.mt-5 {
    margin-top: 5%;
}

.mt-7 {
    margin-top: 7%;
}


.mb-2 {
    margin-bottom: 2%;
}

.mb-3 {
    margin-bottom: 3%;
}

.mb-5 {
    margin-bottom: 5%;
}

.mb-4 {
    margin-bottom: 4%;
}

.mb-7 {
    margin-bottom: 7%;
}

.ml-3 {
    margin-left: 3%;
}

.br-sp {
    display: none;
}

/*==============================================================

header設定

==============================================================*/

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--color-light-gray);
}

.header-logo img {
    max-height: 70px;
    /* ロゴの高さを制限 */
    height: auto;
    flex: 1;
    /* ロゴ部分を左端に固定 */
}

.header__menu {
    cursor: pointer;
    /* メニューボタンをクリック可能にする */
}

.header-logo2{
    display: flex;
    align-items: center;
	background: url(img/uracole_logo.png) no-repeat left center / 60px auto;
	height:60px;
}

.header-logo2 a{
	display: block;
	color: #49419a;
	padding-left: 65px;
	text-decoration: none;
}

.header-logo2 span{
	font-size: 2em;
	font-weigth: bold;
}


/*==============================================================

h設定

==============================================================*/


h4 {
    padding: 5px;
    background: transparent;
    /*背景透明に*/
    border-left: solid 5px var(--color-purple);
}

/*==============================================================

ランキングの続きはこちら/btn

==============================================================*/

.ranking-button-wrapper {
    text-align: center;
    margin: 40px 0;
}

.ranking-button {
    background-color: #fff;
    border: 3px solid var(--color-purple);
    ;
    color: var(--color-purple);
    ;
    font-weight: bold;
    font-size: 20px;
    padding: 20px 40px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.ranking-button:hover {
    background-color: var(--color-purple);
    ;
    color: #fff;
}


/*==============================================================

各占いサイト紹介設定/top

==============================================================*/

.crown {
    width: 10%;
}

/* 初回限定 */
.badge-green {
    background: var(--color-green);
    color: var(--color-white);
    padding: 15px 43px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 26px;
}

.card-body {
    display: flex;
    border-bottom: 2px solid var(--color-gray);
    padding-bottom: 27px;
    position: relative;

}

/* 各コラムのサムネバナー */
.card-image {
    width: 30%;
    height: 100%;
    flex-shrink: 0;
}

/* 各サイトのサムネバナー */
.card-site-image {
    width: 30%;
    height: 100%;
    flex-shrink: 0;
}

.card-content {
    margin-left: 15px;
    flex: 1;

}

/* 右端の矢印 */
.card-body::after {
    content: "▶";
    font-size: 24px;
    color: var(--color-main);
    ;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.description {
    padding-right: 50px;
    /* 右側に余白を作る（矢印の分） */
    line-height: 1.8;

}

/*==============================================================

　メディア紹介表設定/top

==============================================================*/
.media__contaner {
    display: flex;
    padding-bottom: 27px;
    position: relative;
    align-items: center;
    /* 🔹 垂直方向の中央揃え */
    border-bottom: 2px solid var(--color-gray);
    padding-bottom: 27px;
    position: relative;
}

.media-content {
    margin-left: 15px;
    flex: 1;

}

.media-title {

    flex: 1;
}

/*==============================================================

検索フォーム設定/top

==============================================================*/

.search-box {
    background: var(--color-purple);
    color: var(--color-white);
    padding: 20px;
    border-radius: 10px;
}

.section-title {
    padding: 20px;
    /*文字周りの余白*/
    color: var(--color-purple);
    /*文字色*/
    background: var(--color-white);
    /*背景色*/
    border-bottom: solid 10px var(--color-main);
    ;
    /*下線*/
    text-align: center;
}

.checkbox-group,
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
    align-items: center;
}

label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.text-input {
    width: 97%;
    padding: 10px;
    border: 1px solid var(--color-gray);
    border-radius: 5px;
    font-size: 16px;

}

.btn-container {
    text-align: center;
}

.search-btn {
    background: var(--color-main);
    color: var(--color-white);
    font-weight: bold;
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    width: 60%;
}

.search-btn:hover {
    background: var(--color-sub);
}

/*==============================================================

　 お問い合わせフォーム設定/Inqury

==============================================================*/
/* お問い合わせフォーム全体のデザイン調整 */
.inqury__container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: var(--color-purple);
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* 各入力エリアのスタイル調整 */
.inqury__content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ラベルのデザイン */
.inqury-ttl p {
    font-weight: bold;
    font-size: 16px;
    color: var(--color-white);
}

/* 入力フィールドのデザイン調整 */
.inqury-form-section input,
.inqury-form-section_wide input {
    width: 95%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid var(--color-gray);
    border-radius: 5px;
    outline: none;
    transition: all 0.3sease;
}

/* フォーカス時のスタイル */
.inqury-form-section input:focus,
.inqury-form-section_wide input:focus {
    border-color: var(--color-main);
    box-shadow: 0px 0px 5px rgba(236, 66, 162, 0.5);
}

/* プレースホルダーのカスタマイズ */
.inqury-form-section input::placeholder,
.inqury-form-section_wide input::placeholder {
    color: var(--color-dark-gray);
    font-size: 14px;
}

/* 送信ボタンのデザイン */
.send-button {
    display: block;
    width: 95%;
    text-align: center;
    background-color: var(--color-main);
    color: var(--color-white);
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
}

/* ホバー時のアニメーション */
.send-button:hover {
    background-color: var(--color-sub);

}

/*==============================================================

　占い師ページ設定/intoroduction_future

==============================================================*/
/* カード全体のスタイル */
.intoroduction-card {
    background-size: 84%;
    background-position: left top;
    /* 左上に固定 */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    padding: 20px;
    text-align: center;
}

.intoroduction-card--reunion{
    background: url("img/reunion_teacher_bg_item.png") no-repeat left top;
}

.intoroduction-card--overall{
    background: url("img/overall_teacher_bg_item.png") no-repeat left top;
}

.intoroduction-card--love{
    background: url("img/love_teacher_bg_item.png") no-repeat left top;
}

.intoroduction-card--relationships{
    background: url("img/relationships_teacher_bg_item.png") no-repeat left top;
}

.intoroduction-card--vision{
    background: url("img/vision_teacher_bg_item.png") no-repeat left top;
}



/* 画像のスタイル */
.intoroduction-card__img {
    width: 40%;
    border-radius: 10px;
}

.name {
    text-align: center;
    /* セクション全体は中央配置 */
}

.name p {
    display: inline-block;
    text-align: left;
    /* テキストだけ左揃え */
}

.intoroduction-text {
    text-align: left;
}

.intoroduction {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.intoroduction div {
    background: var(--color-purple);
    color: var(--color-white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.btn.gray {
    background: var(--color-gray);
    color: var(--color-black);
}

/* 説明文のスタイル */
.intoroduction-card__description {
    color: var(--color-dark-gray);
    line-height: 1.6;
    text-align: left;
    padding: 20px;
    border-top: 2px dotted var(--color-purple);
    border-bottom: 2px dotted var(--color-purple);
}

/*==============================================================

　 運営会社ページ設定/management_information

==============================================================*/

.operating-info__table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 16px;
}

.operating-info__table td {
    padding: 12px;
    border: 1px solid var(--color-dark-gray);
}

.operating-info__table tr:nth-child(even) {
    background-color: var(--color-light-gray);
}

.operating-info__table tr:nth-child(odd) {
    background-color: #f4e1e6;
}

.operating-info__table td:first-child {
    font-weight: bold;

}

/*==============================================================

メニュー設定/menu

==============================================================*/
.search {
    display: flex;
    align-items: center;
    background: var(--color-light-gray);
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    max-width: 750px;
    /* 最大幅を指定 */
}

.search__input {
    flex-grow: 1;
    padding: 8px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

.search__icon {
    display: inline-block;
    /* 横幅いっぱいに広がるのを防ぐ */
}

/* 検索アイコン画像 */
.search__icon-img {
    width: auto;
    max-width: 44px;
    height: auto;
    margin-left: 10px;
}

.menu {
    display: flex;
    flex-direction: column;
    margin: 20px;
}

.menu__item {
    padding: 12px;
    text-decoration: none;
    font-size: 16px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.menu__item a {
    color: var(--color-purple);
    text-decoration: none;
    /* 下線を消す */
}

.menu__item:hover,
.menu__item--active {
    font-weight: bold;
    background-color: var(--color-sub);
}

/*==============================================================

トピック設定/topic_page

==============================================================*/

.topic_img {
    width: 750px;
}


/* ピュアリの会社概要 */
.topic-review-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.topic-site-title {
    font-size: 28px;
    font-weight: bold;
    color: #e75b9c;
}

.topic-rating {
    /* 星 */
    font-size: 20px;
    color: gold;
    font-weight: bold;
    margin-top: 5px;
}

.topic-rating-score {
    color: #e75b9c;
    font-size: 18px;
}

.topic-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.topic-tag {
    border: 2px solid #e75b9c;
    padding: 5px 15px;
    font-size: 14px;
    color: #e75b9c;
    border-radius: 5px;
}

.topic-info-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.topic-info-box {
    background: #e75b9c;
    color: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    width: 150px;
}

.topic-info-title {
    font-size: 16px;
    font-weight: bold;
}

.topic-info-content {
    background: #fce1ea;
    color: black;
    font-size: 18px;
    font-weight: bold;
    padding: 8px;
    border-radius: 0 0 8px 8px;
}

/*==============================================================

トピック設定/ボタン/topic_page

==============================================================*/
.official-btn {
    display: inline-block;
    background-color: #e75b9c;
    /* ピンク系の背景色 */
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 25px;
    /* 角を丸く */
    text-decoration: none;
    text-align: center;
    transition: background 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    /* 横方向の中央揃え */
    align-items: center;
    /* 縦方向の中央揃え */
    max-width: 500px;
    margin: 0 auto;
}

.official-btn:hover {
    background-color: #d14b88;
    /* ホバー時に少し濃くする */
}

/*==============================================================

トピック設定/サイトの概要/topic_page

==============================================================*/

.reason-container {
    border: 2px solid var(--color-purple);
    border-radius: 10px;
    padding-left: 29px;
    padding-right: 29px;
    max-width: 7500px;
    text-align: left;
    position: relative;
}

.reason-header {
    background-color: var(--color-purple);
    color: white;
    padding: 13px 25px;
    border-radius: 53px;
    display: inline-block;
    font-weight: bold;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
}

.reason {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reason-number {
    background-color: var(--color-purple);
    color: white;
    font-weight: bold;
    width: 30px;
    height: auto;
    /* 高さを自動に */
    aspect-ratio: 1 / 1;
    /* 縦横比を1:1に固定 */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    margin-right: 10px;
    display: inline-flex;
    min-width: 30px;
}

.reason-text {
    font-size: 16px;
    color: #444;
    font-weight: bold;
}



/*==============================================================

トピック設定/先生の紹介/topic_page

==============================================================*/

/* テキストのデザイン */
.reason-list p {
    margin: 0;
    line-height: 1
}


.profile-card {
    border-radius: 15px;
    padding: 20px;
    max-width: 750px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    margin-top: 0px;
}

.profile-header {
    font-size: 18px;
    color: var(--color-purple);
    font-weight: bold;
    margin-top: 10px;
}

.profile-name {
    font-size: 33px;
    font-weight: bold;
    color: var(--color-purple);

}

.profile-exp {
    font-size: 14px;
    color: var(--color-purple);
    font-weight: bold;
    margin-bottom: 20px;
}

.profile-section__title {
    background-color: var(--color-main);
    color: var(--color-white);
    padding-top: 5px;
    padding-bottom: 5px;
}

.profile-section__content {
    text-align: left;
}

/*==============================================================

　 PR設定

==============================================================*/

.pr-area {
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
}

/*==============================================================

　 ページネーション設定

==============================================================*/
.pagination {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.page {
    display: inline-flex;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--color-purple);
    color: var(--color-purple);
    font-weight: bold;
    font-size: 20px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}

.page.active {
    background-color: var(--color-purple);
    color: white;
}




/*==============================================================

　 フッター設定

==============================================================*/
.footer {
    background-color: var(--color-light-gray);
    color: var(--color-purple);
    padding: 20px 0;
    text-align: center;
    font-weight: bold;
    margin-top: 50px;
}

.footer__info {
    padding: 10px 20px;
    display: inline-block;
}


@media only screen and (max-width: 750px) {

    .content {
        max-width: 100%;
        margin: 0 auto;
    }

    .content img,
    main-visual__img {
        max-width: 100%;
    }

    /*==============================================================

　 header設定

==============================================================*/
    .header {
        position: relative;
    }

    .header__menu svg {
        width: 100%;
        /* 親要素の幅に合わせる */
        max-width: 50px;
        /* 必要に応じて調整 */
        height: auto;
        left: 280px;

    }

    .header__menu {
        position: absolute;
        right: 10px;
        width: 50px;
    }

    .header-logo img {
        max-height: 60px;
        left: -18%;
        position: relative;
    }
    
	.header-logo2{
		background: url(img/uracole_logo.png) no-repeat left center / 50px auto;
		height:60px;
	}

	.header-logo2 a{
		display: block;
		color: #49419a;
		padding-left: 55px;
		text-decoration: none;
		font-size: 0.7em;
	}

	.header-logo2 span{
		font-size: 2em;
		font-weigth: bold;
	}


    .mt-sp-5{
        margin-top: 11%;
    }

    /*==============================================================

　テキスト設定

==============================================================*/

    .ft-15 {
        font-size: 15px;
    }


    .ft-30 {
        font-size: 18px;
    }

    .ft-20 {
        font-size: 17px;
    }

    .ft-sp-20 {
        font-size: 13px;
    }

    .rs-ft-13 {
        font-size: 13px;
    }

    .text-break {
        display: block;
    }

    .h4-text {
        padding: 0.3rem;
    }

    /*==============================================================

ランキングの続きはこちら/ボタン

==============================================================*/

    .ranking-button {
        font-size: 14px;
    }


    /*==============================================================

各占いサイト紹介設定

==============================================================*/
    .badge-green {
        font-size: 16px;
        padding: 7px 6px;
        margin-left: 3%;
    }

    .card-image {
        width: 25%;
        margin-left: 3%;
        margin-top: 7%;
        height: 100%;
    }

    /* 各サイトのサムネバナー */
    .card-site-image {
        width: 25%;
        margin-left: 3%;
        margin-top: 7%;
        height: 100%;
    }


    .description {
        padding-right: 18px;
        line-height: 1.5;
    }

    .card-body::after {
        font-size: 12px;
        right: 2px;
        top: 50%;
        transform: translateY(-50%);
    }

    .card-header {
        margin-top: 6%;
    }

    /*==============================================================
　　　　h設定

==============================================================*/
    h4 {
        padding: 3px;
        border-left: solid 3px var(--color-purple);
        padding-left: 0.5em;
    }


    /*==============================================================
　　　　検索フォーム設定

==============================================================*/
    .section-title {
        padding: 8px;
        color: var(--color-purple);
        border-bottom: solid 4px var(--color-main);
        ;
    }

    .text-input {
        width: 92%;
        border: 1px solid #ccc;
        font-size: 12px;
    }

    .search-btn {
        font-size: 13px;
    }


    /*==============================================================

　占い師ページ設定/intoroduction_future

==============================================================*/
    .intoroduction-card--reunion,
    .intoroduction-card--overall,
    .intoroduction-card--love,
    .intoroduction-card--relationships,
    .intoroduction-card--vision {
        background-size: 90%;
    }

    .reason-header {
        font-size: 10px;
            padding: 10px 19px;
    }
        /* 画面全体から左右に適度な余白を確保 */
        .reason-container {
            margin: 0 15px;  /* 例：左右15pxの余白 */
            padding: 15px;   /* 内側のパディングも調整 */
        }
    
        /* 各項目のテキストサイズも調整して全体をキュっとまとめる */
        .reason-text {
            font-size: 14px;
        }
    
        /* 必要に応じて各reason要素間のマージンも調整 */
        .reason {
            margin-bottom: 10px;
        }

        .operating-info__table {
            margin: 0 auto;       /* 画面中央寄せ */
            width: 95%;           /* テーブルの横幅を画面の95%に */
            max-width: 500px;     /* 必要に応じて最大幅を設定 */
            table-layout: fixed;  /* 固定レイアウトでセル幅調整 */
            border-collapse: collapse;
            overflow-x: auto;     /* はみ出る場合は横スクロール */
            word-wrap: break-word; /* 長いテキストがある場合に折り返し */
          }
        
          /* セル内テキストの折り返しをより確実にするため */
          .operating-info__table td {
            white-space: normal;  /* テキストを折り返し可能に */
            font-size: 14px;      /* モバイルで見やすい程度にフォント調整 */
          }


    /*==============================================================

トピック設定/topic_page

==============================================================*/
    .topic-info-grid {
        display: flex;
        flex-wrap: nowrap;
        /* 折り返さず1行に配置 */
        justify-content: space-between;
        padding: 0 0.5rem;
        /* 両端に余白を確保 */
    }

    .topic-info-box {
        background: #e75b9c;
        /* 全体の背景色 */
        border-radius: 6px;
        /* 角丸 */
        text-align: center;
        width: calc(25% - 0.5rem);
        /* 4個なら1個あたり約25%（余白分を調整） */
        padding: 0.2rem;
        /* 内側余白 */
        box-sizing: border-box;
        /* パディング込みで幅を計算 */
    }

    .topic-info-title {
        font-size: 0.7rem;
        /* タイトルをコンパクトに */
        font-weight: bold;
        line-height: 1;
        margin-bottom: 0.15rem;
        padding: 0.2rem 0;
    }

    .topic-info-content {
        background: #fce1ea;
        /* タイトルとは違う淡い背景色 */
        color: #333;
        /* 文字色 */
        font-size: 0.8rem;
        /* 内容をコンパクトに */
        font-weight: bold;
        line-height: 1;
        padding: 0.2rem 0;
        border-radius: 0 0 6px 6px;
    }

    .topic-tag {
        font-size: 11px;
    }

    /* タイトル(h5)をインラインブロック化 */
    .site-title.c-text--pink.ft-40 {
        display: inline-block;
        /* ブロック→インラインブロック化 */
        font-size: 1.2rem;
        /* 小さめに上書き */
        margin: 0;
        line-height: 1.2;
        vertical-align: middle;
        /* 横並び時に中央揃え */
    }

    /* 星評価部分もインラインブロック化 */
    .topic-rating {
        display: inline-block;
        font-size: 1rem;
        /* 小さめに上書き */
        margin-left: 0.5rem;
        /* タイトルとの間を少し空ける */
        vertical-align: middle;
    }

    /* スコアの数字を少し調整する場合 */
    .topic-rating-score {
        font-size: 1rem;
    }

    .article {
        padding: 3%;
    }

    .official-btn{
        display: block;       /* ブロック要素に */
        width: fit-content;   /* または width: auto; */
        margin: 0 auto;       /* 自動左右マージンで中央寄せ */
        padding: 0.8rem 4.2rem;
        font-size: 16px;
      }

      .profile-section__title {
        font-weight: bold;
      }

      .topic_s_img{
        width:370px !important;
        display: block; /* ブロック要素化 */
        margin: 0 auto;      
      }
   
}
/*==============================================================

　追加(250328)

==============================================================*/


.block-link {
    display: block;
    text-decoration: none;
    color: rgb(78, 78, 78);
    position: relative;
    padding-bottom: 30px;
}


.article-item__link{
	text-decoration: none;

}


.description-area{
	line-height: 22px;
	padding: 3%;
}

.description-area img{
    display: block;
    width: 100%;
    margin: 10px 0;	
}

.text--red-bold-underline{
	background: linear-gradient(transparent 60%, #FFFA99 60%);
	font-weight: bold;
	color: #EA5228;
}


.pagination {
    display: flex;
    justify-content: center; /* 横方向の中央揃え */
    align-items: center; /* 縦方向の中央揃え */
    gap: 10px; /* ボタン間の間隔を調整 */
    margin: 20px 0; /* ページネーション全体の上下余白を設定 */
}
  
.page-numbers {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	overflow: hidden;
	background: #fff;
	border: solid 2px #49419a;
	font-size: 14px;
	color: #49419a;
	font-weight: bold;
	transition: all 0.15s linear;
	text-decoration: none; 
}


.pagination .current {
	background: #49419a;
	color: #fff;
	pointer-events: none;
}


.p-header {
  width: 750px;
  margin: 0 auto;
  height: 123px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #f8f8f8;
}

.p-header__inner {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}

.p-header__title {
  z-index: 997;
}

.p-header__title a {
  text-decoration: none;
  color: #FFFFFF;
}

.p-header__title img {
	height: 100px;
}

.p-header__hamburger {
  width: 40px;
}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
  cursor: pointer;
  margin: 0 35px 0 0;
}

.hamburger span {
  width: 32px;
  height: 3px;
  background-color: #49419a;
  position: relative;
  transition: ease .4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}


.hamburger span:nth-child(3) {
  top: 0;
}

.p-header__nav {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #f8f8f8;
  transition: ease .4s;
  z-index: 999;
}

.p-header__nav-items {
  padding-top: 100px;
}

.p-header__nav-item {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.p-header__nav-item a {
  color: #49419a;
  display: inline-block;
  text-align: center;
  margin-bottom: 24px;
  font-size: 20px;
  text-decoration: none;
}

.p-header__nav-item:last-child a {
  margin-bottom: 0;
}

.hamburger.active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}


.hamburger.active span:nth-child(2) {
  opacity: 0;
}


.hamburger.active span:nth-child(3) {
  top: -12px;
  transform: rotate(-45deg);
}

.p-header__nav-box-mask.active {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 998;
  background: rgba(0,0,0,0.55);
  transition: ease .4s;
}

.p-header__nav {
   display: none;
}

.p-header__nav.active {
  display: block;
}

.section-header--type1 {
    padding: 1rem 1rem;
    border-bottom: 3px solid var(--color-main);
    ;
    background: var(--color-purple);
    text-align: center;
    font-size: 20px;
}

.content-section__text {

}

.content-section__text--type1{
    padding-bottom: 2%;
    line-height: 40px;
    font-size: 18px;
}

.content-section__text--type1 img{
	display: block;
	width: 100%;
	margin: 10px 0;
}

.content-section__text--type2{
    margin-top: 3%;
    margin-bottom: 3%;
    text-align: left;
    line-height: 150%;
}

.content-section__text--type3{
    margin-top: 3%;
    margin-bottom: 3%;
    line-height: 120%;
}

.content-section__img100 img{
	width: 100%;

}

.img-width-100 img{
	width:100%;

}

.content-section__sub-header {
	padding: 3px;
    border-left: solid 3px var(--color-purple);
    padding-left: 0.5em;
    margin-bottom: 10px;
}


@media only screen and (max-width: 750px) {
	.hamburger {
	  margin: 0 5px 0 0;
	}
	
	.button--type3{
		position: fixed;
		bottom: 0px;
		left: 50%;
		transform: translateX(-50%) translateY(-50%);
	    background-color: #e75b9c;
	    color: white;
	    padding: 10px;
	    text-align: center;
	    text-decoration: none;
	    font-size: 16px;
	    border-radius: 10px;
	    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
	    transition: background-color 0.3s ease;
	    /* ホバー時の背景色の変化にアニメーションを追加 */
	    width: 90%;
	    display: block;
	    line-height: 22px;
	    font-weight: bold;
	}
	
	.button--type3 .button__subtitle{
		color: #ffff00;
		font-size: 14px;
	
	}
	
	.inquiry-main__txt{
		padding: 3%;
	}
	
	.introduction-main__txt{
		padding: 3%;	
	}
	
	.block-link {
	    padding-bottom: 0px;
	}
	
	.content-section__text {

	}
	
	.content-section__text--type1{
	    line-height: 24px;
	    width: 90%;
	    margin: 0 auto;
	    font-size: 15px;
	}
	
	.content-section__text--type2{
	    line-height: 24px;
	    width: 90%;
	    margin: 10px auto 20px;
	    font-size: 15px;
	}
	
	.content-section__text--type3{
	    line-height: 32px;
	    width: 90%;
	    margin: 0 auto;
	    font-size: 15px;
	}
	
	.intoroduction-card img{
		width: 70%;
	}
	
}



/* ------------------------------
   上部へスクロール
------------------------------ */

#pageTop {
	position: fixed;
	bottom: 110px;
	right: 28px;
	z-index: 999;
}
 
#pageTop a {
	display: block;
	padding: 0 0 0 0;
	border-radius: 70px;
	width: 70px;
	height: 70px;
	background-color: #848484;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
}
 
#pageTop a:hover {
	text-decoration: none;
	opacity: 0.7;
}

#pageTopImg{
	padding:7px 0 0 0;
}

@media only screen and (max-width: 750px) {
	/* ------------------------------
	   上部へスクロール(レスポンシブ用)
	------------------------------ */

	#pageTop a {
		width: 60px;
		height: 60px;
	}
	 

	#pageTopImg{
		padding:8px 0 0 0;
		width:40px !important;
	}
} 