/**********全体**********/
* {
    box-sizing:border-box;
    color: #333333;
    font-size: 16px;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", "Noto Sans", "Meiryo", sans-serif;
}

body {
    line-height: 2;
    max-width: 500px;
    margin: 0 auto;
    overflow-x: hidden; /* グラグラなおす */
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* タイトルの下に英語　下線 */
h1 {
    position: relative;
    font-weight: bold;
    font-size: 2em;
    text-align: center;
    padding: 1em;
    line-height: 1.5;
    text-shadow: #fff 2px 0, #fff -2px 0, #fff 0 -2px, #fff 0 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px, rgba(0, 0, 0, .5) 3px 3px 3px;
}

h1 span {
    display: block;
    font-size: 0.7em;
    text-shadow: none;
    font-weight: 100;
    color: #535353;
}

h1::before {
    position: absolute;
    bottom: 14px;
    left: calc(50% - 30px);
    width: 60px;
    height: 4px;
    content: '';
    border-radius: 3px;
    background: #fa4141;
}

/*********** 赤太文字 **********/
.red-bold {
    font-weight: bold;
    color: #ff0505;
}

/********** 黄色アンダーライン *********/
.under-y {
    background: linear-gradient(transparent 70%, yellow 92%);
}

/********** 太さ、文字大きさそのまま *********/
.asitis {
    font-size: inherit;
    font-weight: inherit;
}

/*********** リンクボタン1（料金詳細） **********/
.button001 a {
    background: #fff;
    border-radius: 70px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 1em auto;
    max-width: 240px;
    padding: 10px 25px;
    color: #ff0505;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    border: solid 2px #ff0505;
    z-index: 1;
}
.button001 a:hover {
    background: #ff0505;
    color: #FFF;
}
.button001 a:after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 3px solid #ff0505;
    border-right: 3px solid #ff0505;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 46%;
    right: 22px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.button001 a:hover:after {
    border-color: #FFF;
}


/********** リンクボタン2（よくある質問）**********/
.button002 a {
    background: #fff;
    border-radius: 70px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 3em auto;
    max-width: 305px;
    padding: 10px 25px;
    color: #ff0505;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    border: solid 2px #ff0505;
}
.button002 a:hover {
    background: #ff0505;
    color: #FFF;
}
.button002 a:after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 3px solid #ff0505;
    border-right: 3px solid #ff0505;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 46%;
    right: 22px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.button002 a:hover:after {
    border-color: #FFF;
}


/***********上に戻るボタン***********/
a.top-button {
    position: fixed; 
    bottom: 8em;
    right: 2%;
    width: 48px;
    height: 48px;
    text-decoration: none;
    background-color: #ff9900c4;
    display: block;
    text-align: center;
    border-radius: 24px;
}

a.top-button::before {
    content: '\f062';
    font-family: 'Font Awesome 6 Free';
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    line-height: 48px;
}


/********** 追従CTAボタン ************/
.fix_contact {
    position: fixed;
    bottom: 0;
    background-color: #fffffff2;
    z-index: 100; /*一番手前にする*/
    width: 100vw;
    left: 0;
    padding-top: 0.1em;
}

.cta-main_img {
    padding: 0 0.2em 0.2em;
}

/* リアルタイム */
.time-balloon p {
    font-weight: bold;
    font-size: 0.9em;
    letter-spacing: 0.05rem;
}

.time-balloon p span {
    color: #ff0505;
    font-size: 1em;
}

/* リアルタイム吹き出し */
.time-balloon {
    align-items: center; /* 線を上下中央 */
    display: flex; /* 文字と線を横並び */
    justify-content: center; /* 文字を中央寄せ */
}

.time-balloon::before,.time-balloon::after {
    background-color: #333; /* 線の色 */
    border-radius: 5px; /* 線の両端を丸く */
    content: "";
    height: 1px; /* 線の太さ */
    width: 20px; /* 線の長さ */
}

.time-balloon::before {
    transform: rotate(60deg); /* 傾ける */
}

.time-balloon::after {
    transform: rotate(-60deg); /* 傾ける */
}


/********** ヘッダー **********/
header {
    background-color: #ffffff;
    height: 4.8em;
    width: 100vw; /*position: fixedの場合ははみ出なくなる！*/
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    position: fixed;  
    top: 0;  
    left: 0;  
    z-index: 99;
    transition: transform 0.3s 0.1s;
}

/* スクロールするとヘッダーが隠れる */
header.hidden {
    transform: translateY(-4.8em);
}

.logo {
    width: auto; 
    height: 38px; 
}

.header-left {
    margin-left: 0.5em;
}

.header-left p {
    font-size: 12px;
    font-weight: bold;
}

.header-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-right: 0.7em;
}

.cta-header {
    display: flex;
    gap: 3px;
}

.cta-header a > img {
    width: auto;
    height: 56px;
    margin: 0.2em;
    filter: drop-shadow(2px 2px 2px #aaaaaa);
}

/*ヘッダー固定時、メイン画像の一番上が隠れないように*/
body {
    padding-top: 5.5em; 
}


/**********ハンバーガーメニューボタン**********/
.hamburger-button {
    margin-left: 0.7em;
    margin-bottom: 10px;
}

/* MENUの文字いれ */
.hamburger::after {
    content: "MENU";
    font-size: 10px;
    font-weight: bold;
    position: absolute;
    top: 21px;
}

/* クリックしたら消える */
input[type="checkbox"]:checked + .hamburger::after {
    content: "";
}

/*チェックボックスは隠す*/
input[type="checkbox"] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

/*枠labelの設定*/
.hamburger {
    width: 30px;
    height: 17px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/*三本線の設定*/
.hamburger span,
.hamburger span::before,
.hamburger span::after {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.5s;
}
.hamburger span::before {
    top: -10px;
}
.hamburger span::after {
    bottom: -10px;
}

/*三本線の真ん中は消す*/
input[type="checkbox"]:checked + .hamburger span {
    background-color: transparent; 
}

/*閉じるときに×*/
input[type="checkbox"]:checked + .hamburger span::before {
    top: 0;
    transform: rotate(45deg); 
}

input[type="checkbox"]:checked + .hamburger span::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/*ハンバーガーナビスタイリング*/
.mb-navi {
    position: fixed; /*画面に対しての位置、スクロールしても表示*/
    width: 85%;
    top: 72px;
    right: -120%; /*スライドイン用*/
    background-color: #ffde59;
    padding: 30px 0;
    transition: all 0.5s;
    z-index: 99;
    height: 100vh; /* 画面いっぱいに表示 */
    overflow-y: scroll; /*ハンバーガーモバイルナビをスクロール*/
}

/*ハンバーガー用ナビリスト*/
.mb-navi-list a {
    display: block;
    font-size: 1.2em;
    padding: 5px 0 15px 2em;
    color: #333333;
    font-weight: bold;
    position: relative;
}

/* メニューの前にアイコン */
.mb-navi-list a::before {
    font-family: 'Font Awesome 6 Free';
    content: '\f138';
    font-size: 1.2em;
    color: #ff5600;
    position: absolute;
    top: 0;
    left: 8px;
    display: block;
}

input[type="checkbox"]:checked ~ .mb-navi {
    right: 0;
}

.mb-navi-list a:hover {
    background-color: aliceblue;
}

/* ヘッダーアコーディオンメニュー */
/*アコーディオンメニュー表示時(jsで開閉)*/
.mb-navi-list.hdacd-menu {
    padding: 5px 0 15px 2.5em;
}

.mb-navi-list.hdacd-menu span {
    font-size: 1.2em;
    font-weight: bold;
    position: relative;
}

div.headerSuv_menu {
    position: relative;
    background-color: #fff4cf;
    height: 0; 
    overflow: hidden; 
    opacity: 0; 
    will-change: transform;
    transition-duration: 0.4s;
}

/* ＋アイコン */
.mb-navi-list.hdacd-menu span::after {
    font-family: 'Font Awesome 6 Free';
    content: '\2b';
    margin: 0 1em;
    font-size: 1.1em;
    position: absolute;
    top: -50%;
}

/* タイトル前のアイコン */
.mb-navi-list.hdacd-menu span::before {
	content:'● ';
    margin: 0 1em;
    font-size: 1.2em;
    color: #808080;
    position: absolute;
    top: -55%;
    left: -22%;
}

div.headerSuv_menu.is-open {
    height: auto;
    opacity: 1;
    padding: 1em 0 1em 2.5em;
    line-height: 3;
}

/* 閉じるアイコン */
.mb-navi-list.hdacd-menu.is-active span::after {
     font-family: 'Font Awesome 6 Free';
     font-weight: 900;
     content: '\f068';
     margin: 0 1em;
     position: absolute;
     top: -50%;
}

.mb-navi-list.hdacd-menu.active { 
    overflow-y: auto;
}

/* リスト矢印アイコン */
.header-subNav-list a::after {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: '\f054';
    font-size: 0.8em;
    margin: 0 0.6em;
}

/* グレー背景 */
.drawer-background {
    background: rgba(0, 0, 0, 0.5);
    display: none;
    height: 0;
    top: 0;
    width: 0;
    z-index: 10;
}

input[type="checkbox"]:checked ~ .drawer-background {
    display: block;
    height: 100vh;
    top: 72px;
    left: 0;
    position: fixed;
    width: 100vw;
    z-index: 5;
}
/********** ここまでハンバーガーメニュー**********/
/********** ここまでヘッダー **********/


/********* new-cta1 *********/
.cta1-container {
    margin-top: 0.5em;
}

.cta1-ctn-main {
    border: solid 5px #ff0505;
    border-top: none;
    padding-top: 0.7em;
}

.cta1-main {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 1.2em 0;
}

.cta1-main-text {
    font-size: clamp(1vw, 4.5vw, 1.4em);
    padding-left: 0.2em;
    font-weight: bold;
}

/* 太字、最短5分 */
p .cta1-bold {
    font-weight: bold;
    font-size: 1.1em;
}

/* 文字を太く赤く大きく */
.red-boldbig {
    color: #e32c2c;
    font-size: 1.1em;
    padding: 0 0.2em;
    font-weight: bold;
}

.cta1-icon-img {
    width: 33%;
    padding: 0.3em 0 0.3em 0.7em;
}

.cta1-main-text2 {
    text-align: center;
}

.cta1-main-subtext {
    font-size: 1.3em;
    font-weight: bold;
    padding: 0.2em 1.1em;
    position: relative;
    display: inline-block;
}

.cta1-main-subtext span {
    color: #e32c2c;
    font-size: 1.1em;
    padding: 0 0.2em;
}

/* 両端に\/ */
p.cta1-main-subtext::before,p.cta1-main-subtext::after {
    position: absolute;
    content: "";
    background-color: #333; 
    border-radius: 5px; 
    height: 1px; 
    width: 20px; 
    top: 50%;
}

.cta1-main-subtext::before {
    transform: rotate(60deg); 
    left: 0;
}

.cta1-main-subtext::after {
    transform: rotate(-60deg); 
    right: 0;
}

.cta1-button {
    width: 99%;
    padding-left: 0.7em;
}


/********** キーワードを含めたタイトル **********/
.keyward {
    background-image: url(/img_new/keyward-img.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 3.5em 1em 4.5em 1em;
    position: relative;
    text-align: center;
}

p.keyward-title {
    font-size: 1.4em;
    font-weight: 600;
    display: inline;
    padding: 0.2em;
}

span.keyward-title-big {
    font-size: 1.4em;
    font-weight: bold;
}

p.keyward-main {
    font-size: 1.2em;
    padding-top: 1.2em;
    padding-bottom: 1em;
}

p.keyward-main span {
    color: #ff0505;
    font-weight: 600;
    font-size: 1em;
}

.keyward::after {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 100px;
    background-color: #e7e7e7;
    clip-path: polygon(0 0, 301% 100%, 100% 100%, 0 100%);
    top: 90%;
    left: 0;
}

.keyward-img {
    position: relative;
}

.keyward-img img {
    position: absolute;
    top: -10px;
    transform: scale(-1, 1);
    width: 40%;
    right: -5px;
    z-index: 10;
}


/*********** 説明コンテナNEW **********/
/*** こんなお悩みありませんか ***/
.problem {
    padding: 0 0 2em 0;
    background-image: linear-gradient(181deg, rgba(233, 233, 233, 1), rgba(172, 172, 172, 1));
    position: relative;
}

.problem-title {
    display: flex;
    justify-content: center;
    padding-top: 1em;
}

.problem-title img {
    width: 36%;
}

.problem-title p {
    font-weight: bold;
    font-size: 1.5em;
    text-align: center;
    align-content: center;
    line-height: 1.5;
    text-shadow: #fff 2px 0, #fff -2px 0, #fff 0 -2px, #fff 0 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px, rgba(0, 0, 0, .5) 3px 3px 3px;
}

/* リスト */
.problem-main {
    width: 90%;
    background-color: #fff;
    border: solid 2px #333;
    margin: 0 auto;
    border-radius: 7px;
    padding: 0.5em 0.3em;
}

.problem-main-wrap {
    padding: 0.5em 0;
}

/* リストの改行の位置をそろえる */
.problem-main-list {
    margin-left: 1.8em;
	text-indent: -1.8em;
}

.problem-main-list::before {
    content:  ""; 
    width: 28px;
    height: 27px;
    display:  inline-block;
    background-image:  url("/img_new/icon-check.png");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: bottom;
    margin-right: 1px;
}

/* 背景の区切り */
.problem-cut {
    position: relative;
    width: 100%;
    background: #fff4cf;
    bottom: 0;
}

.problem-cut::before {
    content: "";
    width: 100%;
    height: 38px;
    background-color: rgba(172, 172, 172, 1);
    position: absolute;
    top: -2px;
    clip-path: polygon(50% 100%, 100% 0, 0 0);
}


/*** 全て解決します ***/
.about {
    background-color: #ffde59;
    padding: 3.5em 0 3em 0;
}

.about-title p {
    font-weight: bold;
    font-size: 1.6em;
    text-align: center;
    align-content: center;
    line-height: 1.5;
    text-shadow: #fff 2px 0, #fff -2px 0, #fff 0 -2px, #fff 0 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px, rgba(0, 0, 0, .5) 3px 3px 3px;
}

.about-title img {
    width: 40%;
    vertical-align: -3px;
    padding: 0 0.5em 0 0;
}

.about-main {
    padding-top: 1.5em;
}

.about-cardgroup {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.about-card {
    display: flex;
    flex-direction: column;
    border: solid 1px #969595;
    box-shadow: 0 4px 15px rgba(0,0,0,.2);
    position: relative;
    width: 42%;
    margin: 0.7em;
    padding-top: 0.3em;
    background-color: #fff;
    border-radius: 6px;
}

.about-card-title {
    display: flex;
    justify-content: center;
    padding: 0.5em;
}

.about-card-title p {
    text-align: center;
    padding: 0.2em 0;
    font-weight: bold;
    line-height: 1.3;
    color: #ff0505;
    font-size: 1.2em;
}

.about-card-main {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.about-card-main img {
    width: 25%;
    margin: 0 auto;
}

.about-card-main p {
    padding: 0.8em 0.5em 0.5em 0.5em;
    line-height: 1.5;
    text-align: center;
}

/* アンダーラインと文字太く */
.under-bold {
    background: linear-gradient(transparent 70%, yellow 92%);
    font-weight: bold;
    color: #ff0505;
    font-size: 1em;
    padding: 0 0.2em;
}

.p-big {
    font-size: 1.1em;
    color: #ff0505;
    padding: 0 0.2em;
}

.about-attention {
    margin: 0 1em;
}
/********** end 説明コンテナ **********/

/********** トラブル場所お任せください **********/
.trouble {
    width: 100%;
    position: relative;
    background-color: #fff4cf;
}

/* タイトルからメインへの区切り背景 */
.trouble-title {
    display: flex;
    justify-content: center;
    gap: 25px;
    position: relative;
    background-color: #ff9900;
    height: 9em;
}

.trouble-title::before {
    content: '';
    position: absolute;
    bottom: 1px;
    width: 0;
    height: 0;
    margin-bottom: 0.5em;
    border-style: solid;
    border-width: 35px 60px 0 60px;
    border-color: #ff9900 transparent transparent transparent;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
}

/* タイトルの装飾 */
.trouble-title p {
    font-weight: bold;
    font-size: 1.4em;
    text-align: center;
    align-content: center;
    line-height: 1.5;
    text-shadow: #fff 2px 0, #fff -2px 0, #fff 0 -2px, #fff 0 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px, rgba(0, 0, 0, .5) 3px 3px 3px;
}

.trouble-title p span {
    font-size: 1.3em;
}

/* タイトル横の写真 */
.trouble-title img {
    width: 30%;
    object-fit: contain;
    margin: 0.5em 0 0 1em;
    transform: scale(-1, 1);
    height: auto;
    margin: 0.5em 0 0 0;
    transform: scale(-1, 1); /* 画像を反転 */
}

/* こんなトラブル即対応カードnew */
/*カードタイトル・全体設定*/
.card-group {
    margin-top: 1.5em;
    padding-bottom: 1.5em;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: hidden;
}

.place-card {
    margin: 1.6em 0.7em;
    width: 100%;
    height: auto;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
}

.place-card-title {
    color: #ff9900;
    margin: 0;
    padding: 0 0.5em;
}

.place-card-title p {
    font-weight: bold;
    font-size: 1.3em;
}

.place-card-title p::before {
    content: '\f144';
    font-family: 'Font Awesome 6 Free';
    font-size: 1.2em;
    padding-right: 0.3em;
    font-weight: 900;
    color: #ff5600;
    vertical-align: -3px; /*文字とアイコンをそろえる*/
}

/* 画像＋文字とサブテキストは縦に */
.place-card-ctn {
    border: solid 2px #ff9900;    
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}

/* 画像＋文字は横に */
.place-card-main {
    display: flex;
    flex-direction: row;
    border-bottom: 2px dotted #ff9900; /* サブテキストとの間の線 */
    padding: 0.2em;
}

/*画像の指定*/
.place__imgframe {
    width: 35%;
    height: auto;
    margin-right: 0.5em;
    box-sizing: border-box;
}

/*テキスト指定*/
.place-card-textbox {
    padding: 0.5em 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.place-card-textbox p {
    width: 100%;
    height: auto;
    font-size: 0.9em;
    line-height: 1.8em;
}

.place-card-textbox p::before {
    content: '\f14a';
    font-family: 'Font Awesome 6 Free';
    font-size: 1.5em;
    padding-right: 0.3em;
    font-weight: 900;
    color: #ff5600;
    vertical-align: -3px; /*文字とアイコンをそろえる*/
}

/* サブテキスト */
.place-card-sub {
    padding: 0.5em;
}

.place-card-sub p {
    font-size: 0.9em;
    line-height: 1.7;
}

/* カード全体にリンク */
.place-card a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 背景区切り */
.wave {
    position: absolute;
    width: 100%;
    background: #fff4cf;
    bottom: 0;
  }
  
.wave::before {
    content: "";
    width: 100%;
    height: 38px;
    background-color: #fff4cf;
    position: absolute;
    top: -1px;
    clip-path: polygon(50% 100%, 100% 0%, 0% 0%);
}


/********** 2つ目以降のCTAコンテナ **********/
.cta-container2 {
    width: 100%;
    height: auto;
    position: relative;
    top: -30px;
    margin-bottom:  -30px;
}

/* タイトルコンテナ */
.cta2-title {
    position: relative;
}

/* タイトルを囲み文字に */
.cta2-title p {
    position: absolute;
    top: 24.5%;
    left: 6%;
    font-weight: bold;
    font-size: 1.5em;
    line-height: 1.5;
    color: #fff;
    text-shadow:0 0 3px #f00,0 0 3px #f00,0 0 3px #f00,0 0 3px #f00,0 0 3px #f00,0 0 3px #f00,0 0 3px #f00,0 0 3px #f00,0 0 3px #f00,0 0 3px #f00,0 0 3px #f00,0 0 3px #f00,0 0 3px #f00,0 0 3px #f00,0 0 3px #f00,0 0 3px #f00;
}

.cta2-title span {
    font-size: 1.5em;
    text-shadow: 1px 2px 3px #808080;
    color: #fff;
    margin: 0 0.2em;
}

/* CTA２カードの中身 */
.cta2-contents {
    text-align: center;
    border: solid 5px #ff0505;
    background-image: linear-gradient(155deg, rgba(248, 246, 246, 1), rgb(199 198 198 / 37%));
}

/*太く、斜めに、アンダーライン*/
.cta2-contents .cta2-message {
    font-weight: bold;
    transform: skewX(-8deg);
    padding: 1em 0;
}

.cta2-contents .cta2-message span.cta2-underline {
    background: linear-gradient(to right,#ff5600 0%, #ecff00 100%);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100% 25%;
    font-size: 1.5em;
}

.cta2-contents .cta2-message span.cta2-underline span.cta2-message-big {
    font-size: 1.2em;
}

/* 会計方法の枠 */
.cta2-pay {
    border-top: 2px solid #aaa;
    border-bottom: 2px solid #aaa;
    background-color: #ffffff;
    padding: 0.5em;
    margin:0.5em 1.5em 1.5em 1.5em;
}

.cta2-pay p {
    font-size: 0.7em;
    color: #ff9900;
    font-weight: bold;
}

.cta2-pay img {
    width: 94%;
    align-items: center;
}

/* 簡単なアピール囲み枠 */
.cta2-appeal-ctn {	
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f8f487;
    margin: 0.2em;
    box-shadow: 0 4px 13px 0 #ff0505;
  }
  
.cta2-appeal-title p {
    position: absolute;
    display: inline-block;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width :80px;
    text-align:center;
    line-height: 1.8em;
    font-size: 0.9em;
    font-weight: bold;
}

/* ０円 */
.cta2-appeal-title p span {
    font-size: 1.7em;
    font-weight: bold;
    color: #ff0505;
}

/* 24時間356日受付中 吹き出し付き */
.cta2-contents .cta2-message24365 p {
    font-weight: bold;
    align-items: center; /* 線を上下中央 */
    display: flex; /* 文字と線を横並び */
    justify-content: center; /* 文字を中央寄せ */
    letter-spacing: 0.1em;
}

.cta2-contents .cta2-message24365 p::before,.cta2-contents .cta2-message24365 p::after {
    background-color: #333; /* 線の色 */
    border-radius: 5px; /* 線の両端を丸く */
    content: "";
    height: 1px; /* 線の太さ */
    width: 20px; /* 線の長さ */
}

.cta2-contents .cta2-message24365 p::before {
    transform: rotate(60deg); /* 傾ける */
}

.cta2-contents .cta2-message24365 p::after {
    transform: rotate(-60deg); /* 傾ける */
}

.cta2-contents .cta2-message24365 {
    position: relative;
    border-radius: 15px;
    border-bottom: 3px solid #e32c2c;
    background-color: #fff4cf;
    color: #333;
    font-weight: bold;
    text-align: center;
    width: auto;
    margin: 7px auto;
    display: inline-block;
    padding: 0 1em;
}

/* lineボタン */
.cta2-linebutton img {
    margin: 1.5em 1.2em 0.8em 1.2em;
    width: 80%;
}

/* 電話ボタン */
.cta2-tellbutton img {
    width: 100%;
    margin-left: 0.3em;
}


/********** 鍵開けなどの対応サービス **********/
.key-trouble {
    background-color: #f3f3f3;
    padding-bottom: 4em;
}

.key-trouble-title {
    display: flex;
    justify-content: center;
    position: relative;
    background-color: #ff9900;
}

.key-trouble-title::before {
    content: '';
    position: absolute;
    bottom: 1px;
    width: 0;
    height: 0;
    margin-bottom: 0.5em;
    border-style: solid;
    border-width: 35px 60px 0 60px;
    border-color: #ff9900 transparent transparent transparent;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
}

/* タイトルの装飾 */
.key-trouble-title p {
    font-weight: bold;
    font-size: 1.5em;
    text-align: center;
    align-content: center;
    margin: 0.5em 0 0 0.5em;
    line-height: 1.5;
    text-shadow: #fff 2px 0, #fff -2px 0, #fff 0 -2px, #fff 0 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px, rgba(0, 0, 0, .5) 3px 3px 3px;
}

.key-trouble-title p span {
    font-size: 1.3em;
}

/* タイトル横の写真 */
.key-trouble-title img {
    width: auto;
    height: 120px;
    margin: 0.5em 0 0 0;
    transform: scale(-1, 1); /* 画像を反転 */
}


.service {
    width: 100%;
    background-color: #fff4cf;
    padding-top: 1.2em;
    padding-bottom: 1em;
    position: relative;
}

/* タイトル＋写真＋テキスト カード */
.card2-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding-top: 2.5em;
    padding-bottom: 1.5em;
}

/* カードの大きさ */
.card2 {
    width: calc(48% - 20px);
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border-radius: 8px; /*角を丸める*/
    overflow: hidden;
    margin: 1em 0;
    box-shadow: 0 4px 15px rgba(0,0,0,.2);
    position: relative;
}

/* カード全体にリンク */
.card2 a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* カード一つ一つのタイトル */
.card2-name {
    background-color: #fa4141;
    font-weight: bold;
    padding: 0.3em 0;
}

.card2-name p {
    color: #fff;
    text-align: center;
    font-size: 1.3em;
}

/* サムネイル */
.card2__imgframe {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

/* テキストの枠 */
.card2__textbox {
    width: 100%;
    height: auto;
    padding: 0.8em 0.6em;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card2-text {
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 0.7em;
}

/* 金額の部分 */
.card2-money  {
    line-height: 1.4;
    margin: 0.2em 0;
}

.card2-money p {
    font-size: 1.3em;
    font-weight: bold;
    color: #ff0505;
    text-align: center;
}

.card2-money span {
    font-size: 0.7em;
    color: #ff5050;
}

/* 詳しく見る */
.btn.btn11 {
    margin-top: auto;
}

.btn11 .cta2-btn11 {
    position: relative;
	border: none;
	border-bottom: 1px solid #666;
    top: 0;
    left: 46%;
    font-size: 0.8em;
    line-height: 1;
    padding-bottom: 0.4em;
	}

.btn11 a.cta2-btn11::after {
	content: ">";
	margin-left: 10px;
}

/* 注意文 */
.service-attention {
    width: 90%;
    margin: 2em auto;
    line-height: 1.5;
}

/* 細かな決済方法 */
.price2-pay {
    width: 90%;
    background-color: #ff0505ad;
    border-radius: 8px;
    margin: 3em auto;
    padding-bottom: 1em;
    box-shadow: 0 4px 15px rgba(0,0,0,.2);
}

.price2-pay-ex p {
    color: #fff;
    text-align: center;
    font-weight: bold;
    padding: 0.5em;
    line-height: 1.7;
}

/* 「選べるお支払い方法」両端に\/  */
.price2-pay-ex span {
    color: #fff;
    font-size: 1.4em;
    position: relative;
    display: inline-block;
    padding: 0 1.5em;
}

.price2-pay-ex span::before {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: #fff;
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    left: 0;
}

.price2-pay-ex span::after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: #fff;
    -webkit-transform: rotate(-60deg);
    transform: rotate(-60deg);
    right: 6px;
}

.price2-pay-main {
    background-color: #fff;
    width: 90%;
    margin: 0 auto;
    padding: 0.8em 0.5em 0.1em 0.5em;
}

.price2-pay-credit {
    margin-bottom: 1.3em;
}

.price2-pay-credit p {
    font-weight: bold;
    border-bottom: 1px solid #A3A3A3;
    padding: 0 0.4em;
    border-left: solid 3px #6bb758;
    margin: 0.5em 0;
}

.price2-pay-credit img {
    width: 90%;
}

/* クレジットの画像だけ大きく */
.price2-pay-credit .creditimg {
    width: 100%;
}

/* 支払注意事項 */
.price2-pay-attention {
    width: 90%;
    margin: 0 auto;
    line-height: 1.5;
}

.price2-pay-attention p {
    font-size: 0.9em;
    color: #fff;
    padding-top: 0.7em;
}

.curved-back {
    position: relative;
    background: #fff4cf;
    height: 4em;
    width: 100%;
    border-bottom-left-radius: 50% 50%;
    border-bottom-right-radius: 50% 50%;
    overflow: hidden;
}


/********** 事例紹介 **********/
.case-study {
    background-image: linear-gradient(126deg, rgba(243, 160, 32, 0.48), rgba(255, 213, 75, 0.48) 50%, rgba(255, 243, 38, 0.48));
    padding-bottom: 1em;
    margin-top: -2em;
    padding-top: 3em;
    width: 100%;
}

.case-ctn {
    margin-top: 2em;
    margin-bottom: 4em;
    display: flex;
    flex-direction: column;
    gap: 5em;
}

.case-card {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border: 2px solid #535353;
    position: relative;
    box-shadow:0 0 5px rgba(0,0,0,.2);
}

.masking-tape {
    position: absolute;
    top: -1.1em;
    left: 34%;
    width: 100px;
    height: 25px;
    background-image: linear-gradient(-45deg, rgb(140 227 140 / 86%) 25%, transparent 25%, transparent 50%, rgba(140 227 140 / 86%) 50%, rgba(140 227 140 / 86%) 75%, transparent 75%, transparent 100%);
    background-size: 20px 20px;
    border-left:2px dotted rgba(0,0,0,.1);
    border-right:2px dotted rgba(0,0,0,.1);
    box-shadow:0 0 5px rgba(0,0,0,.2);
    padding: 0.25em 2em;
    color: #65513f;
    transform: rotate(-4deg); 
}

.case-title_ctn {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 1.5em 0.7em 0.7em 0.5em;
}

.case-title_ctn img {
    width: 25%;
    object-fit: contain;
    padding-top: 1em;
}

.case-title_text {
    display: flex;
    flex-direction: column;
    padding-left: 1em;
}

p.case-title_main {
    font-size: 1.2em;
    font-weight: bold;
    line-height: 1.6;
}

p.case-title_sub {
    padding: 0.6em 0;
    line-height: 1.5;
}

.case-main_ctn {
    width: 90%;
    margin: 0 auto;
    padding: 0.5em 0.2em;
    background-color: #fff4cf;
    line-height: 1.7;
}

.case-main p {
    line-height: 1.7;
}

span.case-main_title {
    padding-right: 0.5em;
}

span.case-main_money {
    font-weight: bold;
}

.case-main_moneylit {
    font-size: 0.8em;
    padding-left: 4.5em;
}

hr.case-line {
    border: none;
    border-bottom: 2px dashed #ccc;
    width: 93%;
    height: 0;
    margin: 0.5em auto;
    padding-top: 0.7em;
}

.case-point {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    line-height: 1.7;
    padding-bottom: 0.3em;
}

.case-point p {
    width: 55%;
}

.case-point img {
    width: 30%;
    object-fit: cover;
}
  

/**** スワイパーを使用 ****/
.case-ctn {
    margin-top: 0;
    margin-bottom: 4em;
    display: flex;
    flex-direction: column;
    gap: 5em;
}

.case-card {
    width: 90%;
    margin: 2em auto;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border: 2px solid #535353;
    position: relative;
    box-shadow:0 0 5px rgba(0,0,0,.2);
}

.masking-tape {
    left: 35%;
}

/*** swiper ***/
.swiper {
    width: 100%;
    height: auto;    /* 必要に応じて */
    margin: 0 auto;
}

.swiper-controls {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-pagination {
    position: static !important; /* デフォルトの絶対位置を解除 */
    width: 65% !important;
}

.swiper-button-prev,
.swiper-button-next {
    position: static !important; /* デフォルトの絶対位置を解除 */
}

/* ナビボタンを丸くする */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    border: 3px solid #ccc;
    border-radius: 50%;
    background: #ffffff9e;
    color: #9b9090;
    font-weight: bold;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

/* ページネーション */
.swiper-pagination-bullet {
    background-color: #6c5d5d;
    width: 15px;
    height: 15px;
}


/********** 選ばれる理由 **********/
.choice {
    width: 100%;
    height: auto;
    background-color: #ffde59;
}

.choice-title {
    text-align: center;
    padding-top: 2em;
}

.choice-title img {
    width: 50%;
    padding-right: 0.2em;
    padding-bottom: 0.4em;
}

.choice-main {
    padding: 0.5em 0;
    margin: 0 0.5em;
}

.choice-card {
    margin: 1em auto 4em;
    width: 90%;
    height: auto;
    background-color: #fff;
    border-radius: 10px;
    border: 3px solid #333;
    box-shadow: 5px 5px 0 #333;
    position: relative;
}

.choice-card-title img {
    width: 20%;
    position: absolute;
    top: -6%;
    left: -5%;
}

.choice-card-title p {
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    margin: 0 auto;
    padding: 1em 1em 0 1em;
    line-height: 1.5;
}

.choice-card-title-big {
    font-size: 1.4em;
    font-weight: bold;
    color: #ff0505;
    background: linear-gradient(transparent 70%, yellow 92%);
}

.choice-card-main {
    flex-direction: column;
    justify-content: center;
}

.choice-card-main p {
    width: 100%;
    padding: 1em;
}

.choice-card-main img {
    width: 100%;
    height: auto;
    padding: 1em;
}


/********** 他の鍵屋さんとの比較 **********/
.comparison {
    width: 100%;
    position: relative;
    top: -6px;
    padding-bottom: 2em;
}

/* タイトル */
.comparison-title {
    display: flex;
    justify-content: center;
    position: relative;
    background-color: #fff4cf;
}

/* タイトル枠下の▽ */
.comparison-title::before {
    content: '';
    position: absolute;
    bottom: -7px;
    width: 0;
    height: 0;
    margin-bottom: 0.5em;
    border-style: solid;
    border-width: 27px 37px 0 37px;
    border-color: #fff4cf transparent transparent transparent;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
}

/* タイトルの装飾 */
.comparison-title p {
    font-weight: bold;
    font-size: 1.4em;
    text-align: center;
    align-content: center;
    margin: 0.5em 0 0 0.5em;
    line-height: 1.5;
    text-shadow: #fff 2px 0, #fff -2px 0, #fff 0 -2px, #fff 0 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px, rgba(0, 0, 0, .5) 3px 3px 3px;
}

.comparison-title p span {
    font-size: 1.2em;
}

/* タイトル横の写真 */
.comparison-title img {
    width: auto;
    height: 120px;
    margin: 0.5em 0 0 0;
}

/* 比較画像 */
.comparison-main img {
    margin: 2.5em 0 1em 0;
}

.comparison-main p {
    font-size: 0.7em;
    margin: 0 1em 1em 1em;
    line-height: 1.5;
}


/********** 悪質な業者にご注意 **********/
.badquality {
    padding-top: 1.5em;
    padding-bottom: 2.5em;
    background-image: linear-gradient(125deg, rgb(249 248 248), rgba(172, 172, 172, 1));
}

.badquality-title {
    display: flex;
    justify-content: center;
}

/* タイトル横の写真 */
.badquality-title img {
    width: auto;
    height: 90px;
    margin: 0.5em 0 0 0;
}

.badquality-title p {
    font-weight: bold;
    font-size: 1.4em;
    text-align: center;
    align-content: center;
    margin: 0.5em 0 0 0.5em;
    line-height: 1.5;
    text-shadow: #fff 2px 0, #fff -2px 0, #fff 0 -2px, #fff 0 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px, rgba(0, 0, 0, .5) 3px 3px 3px;
}

.badquality-title p span {
    font-size: 1.4em;
}

.badquality-main {
    margin: 0 1em 0 1em;
    background-color: #fff4cf;
    border: solid 2px #ff0505;
}

.badquality-main p {
    margin: 1em;
}

.badquality-point {
    font-weight: bold;
}

.badquality-point-title {
    font-size: 1.2em;
    background: linear-gradient(transparent 65%, yellow 81%);
}


/********** 取引実績 **********/
.companys {
    width: 100%;
    background: repeating-conic-gradient(transparent, transparent 6deg, rgba(0, 0, 0, .2) 6deg 12deg);
    padding: 3em 0;
}
.company {
    width: 95%;
    height: auto;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0,0,0,.2);
}

.company-title {
    background-color: #ff9900;
}

.company-title p {
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    color: #fff;
}

.company-main {
    border:solid 2px #ff9900;
    background-color: #fff;
}

.company-main p {
    text-align: center;
    padding: 0.5em;
}

.company-main-big {
    font-size: 1.7em;
    font-weight: bold;
    color: #ff0505;
    background: linear-gradient(transparent 70%, yellow 92%);
    padding: 0 0.5em;
}

.company-main img {
    padding: 1em;
    margin: 0 auto;
}


/********** 鍵開けサービスの流れ **********/
.flow {
    width: 100%;
    height: auto;
    background-color: #ff99002e;
    padding: 0.5em 0 2em 0;
}

.flow-title {
    text-align: center;
    padding-bottom: 1em;
}

/* テープ風ボックス */
.flow-card {
    background-color: #fff;/*ボックス背景色*/
	padding: 1em 0.5em 0.5em;/*ボックス内側余白*/
    margin: 0.5em;
	position:relative;/*配置(ここを基準に)*/
    border: solid 2px #808080;
}

.flow-card-number {
    background-color: #ffde59;
    border-right: 2px dotted rgba(0, 0, 0, .1);
    border-left: 2px dotted rgba(0, 0, 0, .1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	transform: rotate(-2deg);/*テープの傾き*/
	padding: 10px 20px;/*タイトルの余白*/
	line-height: 1;/*タイトルの行の高さ*/
	position:absolute;/*配置(ここを動かす)*/
	top: -25px; /*上からの距離*/
	left: 13px; /*左からの距離*/
}

.flow-card-number p {
	font-size: 1.4em;/*タイトル文字の大きさ*/
    font-weight: bold;
}

.flow-card-main {
    display: flex;
}

.card__imgframe {
    display: flex;
    align-items: center;
}

.flow-card-main img {
    width: auto;
    height: 100px;
    margin: 1em 0;
}

.flow-card-textbox {
    padding-left: 1em;
}

.flow-card-title p {
    font-size: 1.4em;
    font-weight: bold;
    color: #ff0505;
}

.flow-card-text {
    line-height: 1.5;
}

/* 次のアイコン */
.flow-nexticon {
    width: 9%;
    margin: 0 auto;
    padding-bottom: 1em;
}


/********** 作業後も安心 **********/
.after-follow {
    width: 100%;
    height: auto;
    margin: 1em 0;
}

/* タイトルコンテナ */
.after-follow-title {
    position: relative;
}

/* タイトル */
.after-follow-title p {
    position: absolute;
    top: 38.5%;
    left: 44%;
    font-weight: bold;
    font-size: 1.7em;
    color: #fff;
}

.after-follow-main {
    padding: 1em;
}

.after-follow-group {
    padding: 1em 0;
}

.after-follow-group-title span {
    font-weight: bold;
    background: linear-gradient(transparent 70%, yellow 92%);
}

.after-follow-group-title .after-follow-big {
    color: #ff0505;
    font-size: 1.4em;
}

.after-follow-group-text {
    display: flex;
    flex-direction: row;
}

.after-follow-group-text-img1 {
    height: 70px;
    width: auto;
}

.after-follow-group-text-img2 {
    height: 140px;
    width: auto;
    padding-left: 0.2em;
}


/********** よくある質問 ***********/
.question {
    width: 100%;
    height: auto;
    background-color: #eee;
    padding-bottom: 0.5em;
}

.question-title {
    text-align: center;
}

/* 一つのQ＆A */
.question-selection {
    margin-top: 20px;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #ffde59;
}

/* Qの枠 */
.question-q {
    position: relative;
    background: #ffde59;
    padding: 10px 5px 10px 40px;
    cursor: pointer;
}

/* 質問が開いているときに表示されるアイコン */
.minus-icon {
    position: absolute;
    content: "";
    width: 20px;
    height: 3px;
    background: #333;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* 質問が閉じているときに表示されるアイコン */
.plus-icon {
    position: absolute;
    content: "";
    width: 20px;
    height: 3px;
    background: #333;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transition: ease all 0.5s; /* 擬似要素のトランジションを追加 */
}

.plus-icon.active {
    transform: translateY(-50%);
}

/* 質問 */
.question-q-text {
    font-weight: bold;
    color: #333;
    position: relative;
}

.question-q-text::before {
    position: absolute;
    color: #2532e4;
    content: "Q";
    top: 50%;
    left: -35px;
    transform: translateY(-50%);
    font-size: 1.7em;
}

.question-a {
    background: #fff;
    padding: 10px 5px 10px 55px;
    transition: ease all 0.5s; /* 擬似要素のトランジションを追加 */
    height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
}

.question-a.active {
    height: auto;
    padding: 10px 5px 10px 55px;
    opacity: 1;
}

.question-a-text {
    position: relative;
    color: #333;

}

.question-a-text::before {
    position: absolute;
    color: #ff0505;
    content: "A";
    top: 50%;
    left: -35px;
    transform: translateY(-50%);
    font-size: 1.7em;
}


/********** フッター **********/
.footer {
    width: 100%;
    height: auto;
    padding-top: 1em;
    padding-bottom: 10em;
    background-color: #ffde59;
}

.footer-logo {
    padding: 1.5em 1em;
}

.footer-logo img {
    width: auto;
    height: 50px;
}

.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav li {
    border-bottom: 1px solid #555555;
    padding: 0.7em 1em;
    font-weight: bold;
}

.copyright {
    padding: 1em 0.5em;
    text-align: center;
}

/* アコーディオンメニュー */
.footer-noacd {
    width: 100%;
    position: relative;
    text-align: left;
    cursor: pointer;
    padding: 1em;
    border: 1px solid;
    border-color: transparent transparent #555555 transparent;
    background-color: transparent;
}

.footer-noacd a {
    display: block;
}

/*アコーディオンメニュー表示時(jsで開閉)*/
div.mb-footer-navi_menu {
    position: relative;
    background-color: #fff4cf;
    height: 0; 
    overflow: hidden; 
    opacity: 0; 
    transition-duration: 0.4s;
}

.acd-menu::after {
    font-family: 'Font Awesome 6 Free';
    content: '\2b';
    font-size: 1.2em;
    margin: 1em;
    position: absolute;
    right: 0;
    top: -5px;
    display: block;
}

div.mb-footer-navi_menu.is-open {
    height: auto;
    opacity: 1;
    padding: 1em 0 1em 1.3em;
    line-height: 3;
}

.acd-menu.is-active::after {
     font-family: 'Font Awesome 6 Free';
     font-weight: 900;
     content: '\f068';
     font-size: 1.2em;
     margin: 1em;
     position: absolute;
     right: 0;
     top: -5px;
     display: block;
}

.acd-menu.active { 
    overflow-y: auto;
}


/********** 決済方法アコーディオン ***********/
.payment-a-main {
    padding: 1em 0;
}

.payment-a-selection {
    margin-top: 20px;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #ffde59;
}

/* 枠 */
.payment-a-q {
    position: relative;
    background: #ffde59;
    padding: 10px 5px 10px 0;
    cursor: pointer;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, .2);
}

/* 質問が開いているときに表示されるアイコン */
.pay-minus-icon {
    position: absolute;
    content: "";
    width: 20px;
    height: 3px;
    background: #333;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* 質問が閉じているときに表示されるアイコン */
.pay-plus-icon {
    position: absolute;
    content: "";
    width: 20px;
    height: 3px;
    background: #333;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transition: ease all 0.5s; /* 擬似要素のトランジションを追加 */
}

.pay-plus-icon.pay_active {
    transform: translateY(-50%);
}

/* 質問 */
.payment-a-q-text.ac-card {
    position: relative;
}

.payment-a-q-text.ac-card p {
    font-weight: bold;
    color: #333;
    text-align: center;
    font-size: 1.1em;
}

.payment-a-q-text.ac-card::before {
    font-family: 'Font Awesome 6 Free';
    content: '\f09d';
    position: absolute;
    font-size: 1.5em;
    right: 0;
    top: 50%;
    left: 0.8em;
    transform: translateY(-50%);
}

.payment-a-q-text.ac-atten {
    position: relative;
}

.payment-a-q-text.ac-atten p {
    font-weight: bold;
    color: #333;
    text-align: center;
    font-size: 1.1em;
}

.payment-a-q-text.ac-atten::before {
    font-family: 'Font Awesome 6 Free';
    content: '\f0f3';
    position: absolute;
    font-size: 1.5em;
    right: 0;
    top: 50%;
    left: 0.8em;
    transform: translateY(-50%);
}

.payment-a-a {
    background: #fff;
    transition: ease all 0.5s; /* 擬似要素のトランジションを追加 */
    height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
}

.payment-a-a.pay_active {
    height: auto;
    opacity: 1;
}

.payment-a-a-text {
    position: relative;
    color: #333;
}

/* 注意 */
.pay-service-attention {
    line-height: 1.7;
    width: 90%;
    margin: 0 auto;
}

.pay-service-attention p {
    padding: 1.2em 0.5em
}
