@charset "UTF-8";
/* ----------------------------------------------------------------------
	ボタン
---------------------------------------------------------------------- */
.btn ,
a.btn {
    position: relative;
    display: inline-flex;
    color: #ffffff;
    background-color: #3d71d3;
    border: 4px solid #000000;
    height: 80px;
    margin: 0;
    padding: 0;
    font-size: 20px;
    -webkit-box-shadow: none;
    box-shadow: none;
    filter: drop-shadow(0px 4px 0px #000000);
    line-height: 1.4;
    font-weight: bold;
    vertical-align: middle;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -webkit-transition: none;
    transition: none;
    box-sizing: border-box;
}
.btn:active,
a.btn:active {
    filter: drop-shadow(0px 0px 0px #000000);
    transform: translateY(4px);
}
.btn:disabled,
a.btn:disabled {
    background-color: #cacaca;
}
.btn+label span {
    display: block;
}
.btn__back,
a.btn__back {
    width: 80%;
    height: 50px;
    font-size: 14px;
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #a0a0a0;
    filter: drop-shadow(0px 0px 0px #000000);
    border-radius: 6px 6px 6px 6px;
}
/* STEPボタン */
.btn__step,
a.btn__step {
    color: #000000;
    background-color: #ffffff;
    border: 4px solid #000000;
    height: 80px;
    margin: 0;
    padding: 0 0 0 20px;
    filter: drop-shadow(0px 4px 0px #000000);
    line-height: 1.6;
    align-items: flex-start;
    flex-direction: column;
}
.btn__step::before,
a.btn__step::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 20px;
    top: 50%;
    right: 12px;
    transform: translateY(-50%) translateX(0%);
    background-image: url("../svg/play_black.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    aspect-ratio: 43 / 50;
}
.btn__step span,
a.btn__step span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.btn__step span:first-child span:first-child,
a.btn__step span:first-child span:first-child {
    font-size: 12px;
    margin: 0 10px 0 0;
}
.btn__step span:first-child span:last-child,
a.btn__step span:first-child span:last-child {
    font-size: 20px;
}
.btn__step span:last-child,
a.btn__step span:last-child {
    font-size: 16px;
}
/* フレームボタン */
.btn__frame,
a.btn__frame {
    align-items: stretch;
    font-size: 14px;
    height: auto;
    border: 2px solid #4c4c4c;
    border-radius: 3px 3px 3px 3px;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
    filter: none;
    overflow: hidden;
    background: none;
}
/* 左側(テキスト部分) */
.btn__frame_text {
  color: #ffffff;
  padding: 7px 12px 7px 12px;
  line-height: 1.6;
  flex: 1;
}
/* 右側(アイコン部分) */
.btn__frame_icon {
  display: inline-flex;
  background-color: #ffffff;
  padding: 7px 5px 7px 5px;
  align-items: center;
  justify-content: center;
}
/* アイコンのサイズや色を調整 */
.btn__frame_icon svg {
  width: 12px;
  height: 12px;
  fill: #000000;
}
/* オプション */
/* テキストピンク */
.btn__frame--pink .btn__frame_text {
  background-color: #f17077;
}

/* ----------------------------------------------------------------------
	ラジオボタン
---------------------------------------------------------------------- */
.btn__radio {
    display: none;
}
.btn__radio+label {
    color: #000000;
    background-color: #ffffff;
    padding: 0 0 0 10px;
}
.btn__radio+label::before {
    content: "";
    position: absolute;
    display: block;
    width: 24px;
    height: 24px;
    border: solid 2px #c4c4c4;
    border-radius: 50%;
    top: 50%;
    left: 18px;
    transform: translateY(-50%) translateX(0%);
}
.btn__radio:checked+label::before {
    border: solid 2px #3d71d3;
}
.btn__radio:checked+label::after {
    content: "";
    position: absolute;
    display: block;
    width: 14px;
    height: 14px;
    background-color: #3d71d3;
    border-radius: 50%;
    top: 50%;
    left: 23px;
    transform: translateY(-50%) translateX(0%);
}
.btn__radio:checked+label {
    border-color: #313131;
}
.btn__radio:disabled+label {
    background-color: #cacaca;
}
.btn__radio:disabled+label::before,
.btn__radio:disabled+label::after {
    border-color: #313131;
}   

/* ----------------------------------------------------------------------
	タブボタン
---------------------------------------------------------------------- */
.tab_section {
    position: relative;
    display: flex;
    width: 100%;
    height: 48px;
    border-bottom: solid 3px #000000;
    justify-content: space-between;
    align-items: flex-end;
}
.btn__tab {
    display: none;
}
.btn__tab+label {
    color: #000000;
    background-color: #ebf1fb;
    font-size: 14px;
    width: 49.25%;
    height: 39px;
    border: 3px solid #000000;
    border-bottom: none;
    border-radius: 13px 13px 0 0;
    filter: none;
    font-weight: bold;
}
.btn__tab:checked+label {
    display: flex;
    color: #ffffff;
    background-color: #3f6ed6;
    height: 48px;
    row-gap: 4px;
    flex-direction: column;
    justify-content: center;
}
.btn__tab:checked+label::after {
    content: "";
    position: relative;
    display: block;
    width: 11px;
    background-image: url("../svg/play-white-down.svg");
    fill: #ffffff;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    aspect-ratio: 86 / 75;
}
/* ----------------------------------------------------------------------
	チェックボックス
---------------------------------------------------------------------- */
/* チェックボックス部分の非表示 */
.btn__check {
    display: none;
}
/* チェックボックス */
.btn__check+label {
    border-color: #313131;
}
/* ボタン内のボックス */
.btn__check+label::before {
    content: "";
    position: absolute;
    display: block;
    background-color: #d4d4d4;
    width: 15px;
    height: 15px;
    top: 50%;
    left: 25px;
    transform: translateY(-50%) translateX(0%);
    box-sizing: border-box;
}
/* ミニボックス内のチェック */
.btn__check:checked+label::after {
    content: "\f00c";
    position: absolute;
    display: block;
    font-family: "Font Awesome 6 Free";
    color: #444444;
    top: 50%;
    left: 23px;
    font-weight: 900;
    transform: translateY(-50%) translateX(0%);
    box-sizing: border-box;
}
/* 非活性ボタン部分色 */
.btn__check:disabled+label {
    background-color: #cacaca;
}
/* ボタン内のボックス */
.btn__check:disabled+label::before {
    background-color: #ffffff;
}
/* ミニボックスなし */
.box_hide::after,
.box_hide::before {
    display: none !important;
}
/* ----------------------------------------------------------------------
	toggle
---------------------------------------------------------------------- */
.btn__toggle::before {
    position: absolute;
    display: block;
    font-family: "Font Awesome 6 Free";
    top: 50%;
    right: 10px;
    font-weight: 900;
    transform: translateY(-50%) translateX(0%);
    box-sizing: border-box;
}
.btn__toggle--chevron.open::before {
    content: "\f077";
}
.btn__toggle--chevron.close::before {
    content: "\f078";
}
.btn__toggle--plusminus.open::before {
    content: "\f068";
}
.btn__toggle--plusminus.close::before {
    content: "\2b";
}

/* ----------------------------------------------------------------------
	ボタンオプション - size
---------------------------------------------------------------------- */
.btn--full {
    width: 100%;
}
.btn--large {
    width: 68%;
}
.btn--medium {
    width: 100%;
}
.btn--small {
    width: 100%;
}
.btn--mini {
    width: 100%;
}
/* ----------------------------------------------------------------------
	ボタンオプション - color
---------------------------------------------------------------------- */
.btn--black {
    color: #ffffff;
    background-color: #0f0000;
}
.btn--black:disabled {
    color: #ffffff;
    background-color: #595959;
}
/* ----------------------------------------------------------------------
	ボタンオプション - radius
---------------------------------------------------------------------- */
.btn--round {
    border-radius: 12px;
}
/* ----------------------------------------------------------------------
	ボタンオプション - icon
---------------------------------------------------------------------- */
.btn__icon::before {
    content: "";
    position: absolute;
    display: inline-block;
    top: 50%;
    right: 10px;
    font-weight: 900;
    transform: translateY(-50%) translateX(0%);
    box-sizing: border-box;
}
.btn__icon--deploy::before {
    content: "\f24d";
    font-weight: 400;
    right: 25px;
}
.btn__icon--play::before,
a.btn__icon--play::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 16px;
    top: 50%;
    left: 15px;
    transform: translateY(-50%) translateX(0%);
    background-image: url("../svg/play_white.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    aspect-ratio: 5 / 6;
}
.btn__icon--open::before,
a.btn__icon--open::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 25px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) translateX(0%);
    background-image: url("../svg/icon_file_open02.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    aspect-ratio: 1 / 1;
}
.btn__icon--open.open_black::before,
a.btn__icon--open.open_black::before {
    background-image: url("../svg/icon_file_open01.svg");
}
.btn__icon--mail::after,
a.btn__icon--mail::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 28px;
    top: 50%;
    left: 40px;
    transform: translateY(-50%) translateX(0%);
    background-image: url("../svg/icon_mail01.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    aspect-ratio: 4 / 3;
}
.btn__icon--sb,
a.btn__icon--sb {
    height: 128px;
}
.btn__icon--sb::after,
a.btn__icon--sb::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 76px;
    top: 50%;
    left: 40px;
    transform: translateY(-50%) translateX(0%);
    background-image: url("../img/SB_logo01.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    aspect-ratio: 94 / 99;
}
.btn__icon--paypay,
.btn__icon--line,
a.btn__icon--paypay,
a.btn__icon--line {
    font-size: 15px;
    padding: 0 0 0 15px;
}
.btn__icon--paypay,
a.btn__icon--paypay {
    background-color: #ff0033;
}
.btn__icon--paypay::after,
a.btn__icon--paypay::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 50px;
    top: 50%;
    left: 15px;
    transform: translateY(-50%) translateX(0%);
    background-image: url("../img/paypay_mark.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    aspect-ratio: 1 / 1;
}
.btn__icon--line,
a.btn__icon--line {
    background-color: #06c755;
}
.btn__icon--line::after,
a.btn__icon--line::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 50px;
    top: 50%;
    left: 10px;
    transform: translateY(-50%) translateX(0%);
    background-image: url("../img/line_mark.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    aspect-ratio: 1 / 1;
}
.btn__icon--right::before,
a.btn__icon--right::before {
    left: revert;
    right: 15px;
}
.btn__icon--left::before,
a.btn__icon--left::before {
    left: 15px;
    right: revert;
}
@media (min-width: 767px) {
    .btn__icon--paypay,
    .btn__icon--line,
    a.btn__icon--paypay,
    a.btn__icon--line {
        font-size: 18px;
    }
}

/* ----------------------------------------------------------------------
	アコーディオン
---------------------------------------------------------------------- */
.accordion {
    position: relative;
    display: flex;
    color: #000000;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.6;
    font-weight: bold;
    text-align: left;
    justify-content: center;
    flex-direction: column;
}
.accordion__title {
    position: relative;
    background-color: #ffffff;
    border: solid 1px #a0a0a0;
    padding: 20px 40px 20px 15px;
}
.accordion__title::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 18px;
    top: 50%;
    right: 12px;
    transform: translateY(-50%) translateX(0%);
    background-image: url("../svg/plus.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    aspect-ratio: 1 / 1;
}
.active.accordion__title::before {
    height: 2px;
    background-image: url("../svg/minus.svg");
    aspect-ratio: 12 / 1;
}
.accordion__content {
    background-color: #f6f6f6;
    border: solid 1px #a0a0a0;
    border-top:none ;
    padding: 20px 15px 36px 15px;
}
.accordion_section a {
    text-decoration: revert;
    color: revert;
}
.accordion__title.recommend {
    padding: 20px 40px 20px 82px;
}
.accordion__title.recommend::after{
    content: "";
    position: absolute;
    display: inline-block;
    width: 52px;
    top: 50%;
    left: 15px;
    transform: translateY(-50%) translateX(0%);
    background-image: url("../img/icon_recommend01.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    aspect-ratio: 104 / 97;
}

/* ----------------------------------------------------------------------
	囲み枠
---------------------------------------------------------------------- */
.frame {
    position: relative;
    display: flex;
    color: #000000;
    background-color: #ffffff;
    width: 100%;
    margin: 0 ;
    padding: 0 ;
    vertical-align: middle;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    appearance: none;
    -webkit-appearance: none;
}
.frame a {
    text-decoration: revert;
    color: revert;
}
.frame__normal {
    padding: 15px 10px 20px 10px;
    flex-direction: column;
}
/* 黒フレームボックス */
.frame__simple {
    color: #000000;
    background-color: #ffffff;
    padding: 20px 15px 20px 15px;
    border: solid 1px #000000;
}
/* 黒フレームボックス - 背景無し */
.frame--transparent {
    background-color: transparent;
    border: solid 1px #000000;
    border-radius: 6px 6px 6px 6px;
}
/* タイトル付きのボックス */
.frame__titleBox {
    background-color: transparent;
    font-weight: bold;
    flex-direction: column;
}
.frame__titleBox_title {
    color: #ffffff;
    background-color: #3d71d3;
    border: solid 4px #3d71d3;
    width: 100%;
    height: 40px;
    line-height: 40px;
    border-radius: 10px 10px 0 0;
}
.frame__titleBox_title p {
    line-height: 40px;
}
.frame__titleBox_text {
    color: #000000;
    background-color: #ffffff;
    border: solid 4px #3d71d3;
    width: 100%;
    font-size: 14px;
    border-radius: 0 0 10px 10px;
    padding: 15px 0 15px 0;
    line-height: 1.5;
}
.frame__titleBox_time {
    font-size: 20px;
}
.frame__titleBox--red .frame__titleBox_title {
    background-color: #ff0033;
    border: solid 1px #ff0033;
    font-size: 16px;
    height: 48px;
    line-height: 48px;
    border-radius: 0;
    font-weight: bold;
}
.frame__titleBox--red .frame__titleBox_title p {
    line-height: 48px;
}
.frame__titleBox--red .frame__titleBox_text {
    border: solid 1px #ff0033;
    border-radius: 0;
    padding: 15px 10px 15px 10px;
    line-height: 1.6;
}
/* タイトル付きのグレーボックス */
.frame__titleBox--gray {
    font-size: 14px;
    font-weight: bold;
}
.frame__titleBox--gray .frame__titleBox_title {
    color: #000000;
    background-color: #f2f2f2;
    border: solid 1px #a0a0a0;
    border-radius: revert;
    text-align: center;
}
.frame__titleBox--gray .frame__titleBox_text {
    color: #000000;
    background-color: #ffffff;
    border: solid 1px #a0a0a0;
    border-top: none;
    border-radius: revert;
    padding: 15px 10px 15px 10px;
    text-align: left;
    min-height: 80px;
}
/* 2列レイアウト */
.two_col .frame__titleBox_text {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.two_col .frame__titleBox_text p {
    width: calc(50% - 10px); /* 2列にする */
}
/* ナンバーボックス付きボックス */
.frame__numBox {
    background-color: transparent;
    font-weight: bold;
    flex-direction: column;
    align-items: flex-start;
}
.frame__numBox_title {
    color: #ffffff;
    background-color: #3d71d3;
    width: 39px;
    height: 39px;
    font-size: 20px;
    line-height: 39px;
}
.frame__numBox_title p{
    font-size: 20px;
    line-height: 39px;
}
.frame__numBox_cont {
    color: #3d71d3;
    background-color: #ffffff;
    border: solid 4px #3d71d3;
    width: 100%;
    font-size: 16px;
    padding: 20px 15px 15px 15px;
    text-align: left;
    line-height: 1.5;
}
.frame__numBox_cont.h_border {
    border: none;
}
/* 青色吹き出し付きボックス */
.frame__balloonBox {
    position: relative;
    background-color: #ebf1fb;
    border: solid 4px #3d71d3;
    border-radius: 0;
    font-size: 14px;
    font-weight: bold;
    padding: 20px 15px 15px 15px;
    margin: 0 0 15px 0;
    line-height: 1.6;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.frame__balloonBox::after {
    content: "";
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid #3d71d3;
}
.frame__balloonBox--pink {
    background-color: #fdeaee;
    border: none;
    padding: 20px 20px 20px 20px;
}
.frame__balloonBox--pink::after {
    bottom: -15px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 15px solid #fdeaee;
}
.frame__balloonBox.balloon_off::after,
.frame__balloonBox--pink.balloon_off::after {
    display: none;
}
/* オススメボックス */
.frame__recommend {
    padding: 20px 16px 20px 16px;
    background-color: #f6f6f6;
    border-top: solid 8px #3d71d3;
    font-weight: bold;
    flex-direction: column;
}
.frame__recommend::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 134.95px;
    height: 78px;
    top: 10px;
    right: 6px;
    background-image: url("../../recommend/img/confetti.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.frame__recommend_title {
    display: flex;
    color: #3d71d3;
    width: 100%;
    height: 70px;
    line-height: 70px;
    column-gap: 9px;
    margin: 0 0 10px 0;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
}
.frame__recommend_title img {
    width: 70px;
    height: 70px;
}
.frame__recommend_cont {
    color: #000000;
    background-color: #ffffff;
    width: 100%;
    font-size: 14px;
    border-radius: 15px 15px 15px 15px;
    padding: 25px 8px 45px 8px;
    line-height: 1.5;
}
.recommend_text {
    margin: 0 0 20px 0;
}
.recommend_text p:nth-child(1) {
    color: #3d71d3;
    font-size: 16px;
    margin: 0 0 10px 0;
    text-align: center;
}
.recommend_text p:nth-child(2) {
    font-size: 14px;
    margin: 0 0 25px 0;
    text-align: left;
}
.recommend_text p:nth-child(3) {
    font-size: 11px;
    text-align: left;
}
/* 青色角丸ボックス - */
.frame__radiusBox {
    display: flex;
    border: solid 5px #3d71d3;
    width: 100%;
    border-radius: 15px 15px 15px 15px;
    font-size: 15px;
    font-weight: bold;
    padding: 30px 15px 40px 15px;
    line-height: 1.6;
    text-align: left;
    flex-direction: column;
}
.radiusBox_img_cont {
    display: flex;
    row-gap: 27px;
    margin: 0 0 25px 0;
    flex-direction: column;
}
.radiusBox_img {
    text-align: center;
}
.radiusBox_img img {
    width: 78px;
    height: 87px;
    max-width: none;
}
.radiusBox_img_text p:nth-child(1) {
    font-size: 15px;
    margin: 0 0 5px 0;
}
.radiusBox_img_text p:nth-child(2) {
    display: inline-block;
    color: #ffffff;
    background-color: #3d71d3;
    font-size: 20px;
    margin: 0 0 15px 0;
}
.radiusBox_img_text p:nth-child(3) {
    font-size: 14px;
}
.radiusBox_list_cont > p {
    font-size: 14px;
    margin: 0 0 10px 0;
}
.radiusBox_list01 li {
    position: relative;
    font-size: 16px;
    padding: 0 0 0 10px;
}
.radiusBox_list01 li::before {
    content: "・";
    position: absolute;
    font-size: 18px;
    line-height: 28px;
    left: 0;
}
.radiusBox_list02{
    position: relative;
    margin: 0 0 30px 0;
}
.radiusBox_list02 li {
    position: relative;
    padding: 0 0 0 20px;
}
.radiusBox_list02 li:first-of-type {
    color: #3d71d3;
    font-size: 16px;
}
.radiusBox_list02 li:first-of-type::before {
    content: "・";
    position: absolute;
    font-size: 18px;
    line-height: 25px;
    left: 2px;
}
.radiusBox_list02 li:last-of-type {
    font-size: 15px;
}
.radiusBox_table {
    display: flex;
    flex-direction: column;
}
.radiusBox_table p{
    display: flex;
    width: 100%;
    border: solid 1px #a0a0a0;
    justify-content: center;
    align-items: center;
}
.radiusBox_table p:not(:nth-child(1)) {
    border-top: none;
}
.radiusBox_table p:nth-child(1){
    color: #ffffff;
    background-color: #3D71D3;
    font-size: 13px;
    height: 30px;
}
.radiusBox_table p:nth-child(2){
    background-color: #E5F1FD;
    font-size: 15px;
    height: 50px;
}
.radiusBox_table p:nth-child(3){
    background-color: #ffffff;
    font-size: 20px;
    height: 50px;
}
.radiusBox_table p:nth-child(4){
    background-color: #E5F1FD;
    font-size: 15px;
    height: 50px;
}
.radiusBox_table p:nth-child(5){
    background-color: #ffffff;
    font-size: 20px;
    height: 50px;
}
/* 青色角円ボックス */
.frame__roundBox {
    border: solid 4px #3d71d3;
    width: 80%;
    height: 63px;
    border-radius: 32px 32px 32px 32px;
    font-size: 18px;
    font-weight: bold;
    padding: 0;
    margin-inline: auto;
    line-height: 1.6;
    text-align: center;
}
/* 黄色のボックス用！アイコン */
.frame__icon--exclamation {
    margin: 0 0 10px 0;
    line-height: 0;
}
.frame__icon--exclamation::before {
    content: "";
    position: relative;
    display: inline-block;
    width: 33.67px;
    background-image: url("../svg/icon_attention.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    aspect-ratio: 7 / 6;
}
.frame--blue100 {
    background-color: #e4faff;
}
.frame--blue200 {
    background-color: #afdfe6;
}
.frame--blue300 {
    color: #ffffff;
    background-color: #00aae5;
}
.frame--yellow100 {
    background-color: #fff39a;
}
.frame__text {
    display: inline-block;
    font-size: 14px;
    margin: 0 0 8px 0;
    line-height: 1.6;
    text-align: left;
    font-weight: bold;
}
.frame__asterisk {
    display: inline-block;
    font-size: 11px;
    line-height: 1.6;
    text-align: left;
    font-weight: bold;
}

/* ----------------------------------------------------------------------
	Question
---------------------------------------------------------------------- */
.icon--q {
    position: relative;
    display: inline-flex;
    color: #ffffff;
    background-color: #000000;
    width: 30px;
    min-width: 30px;
    height: 30px;
    min-height: 30px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    padding: 0;
    margin: 0;
    align-items: center;
    justify-content: center;
}
.qbox {
    position: relative;
    display: flex;
    margin: 0 0 15px 0;
    align-items: flex-start;
    justify-content: flex-start;
}

/* ----------------------------------------------------------------------
	ツールチップ
---------------------------------------------------------------------- */
:root {
    --z-index-tooltip: 250;
    /* --z-index-dropdown: 200; */
    /* --z-index-modal: 1000; */
}
/* ツールチップの基本スタイル */
.tooltip {
    position: absolute;/* 位置を絶対座標でコントロール */
    display: none;/* 初期状態は非表示 */
    background: #ffffff;
    color: #000000;
    max-width: 90vw; /* 画面横幅を超えないように */
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 5px;
    filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.3));
    pointer-events: none;/* マウスイベントを拾わない場合は pointer-events: none; */
    white-space: nowrap; /* デフォルトは改行しない */
    word-wrap: break-word; /* はみ出しそうな場合は折り返し */
    z-index: var(--z-index-tooltip);/* 前面に出す */
    --tooltip-arrow-position: 50%; /* 矢印の左右位置 */
    --tooltip-arrow-bottom: -6px;  /* 矢印のbottom位置 */
}
.tooltip::after {
    content: "";
    position: absolute;
    bottom: var(--tooltip-arrow-bottom); /* JS で計算した bottom 値を適用 */
    left: var(--tooltip-arrow-position); /* 矢印の位置をCSS変数で制御 */
    transform: translateX(-50%);
    width: 0;
    height: 0;
    filter: drop-shadow(0px 3px 1px rgba(0, 0, 0, 0.2));
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 17px solid #ffffff;
}
/* トリガーの見た目（例） */
.tooltip-trigger {
    position: relative; /* ツールチップの基準点にする */
    display: inline-block;
    color: #027af9;
    cursor: pointer;
    text-decoration: underline;
}

/* ----------------------------------------------------------------------
	アイコン
---------------------------------------------------------------------- */
.icon {
    position: relative;
    display: inline-flex;
    color: #000000;
    background-color: #ffffff;
    font-size: 15px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 0 ;
    padding: 0 ;
    vertical-align: middle;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
}
.icon--s {
    font-size: 14px;
    width: 25px;
    height: 25px;
}
.icon--m {
    font-size: 16px;
    width: 35px;
    height: 35px;
}
/* .icon--l {
    font-size: 15px;
    width: 20px;
    height: 20px;
} */
 /* 新・旧アイコン（丸） */
.icon__new,
.icon__old,
.icon__open {
    position: relative;
}
.icon__new::before,
.icon__old::before {
    position: absolute;
    display: inline-flex;
    color: #ffffff;
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 16px;
    border-radius: 50%;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    z-index: 1;
}
.icon__new::before {
    content: "新";
    background-color: #ff0032;
}
.icon__old::before {
    content: "旧";
    background-color: #697379;
}
.icon--bg-gray100 {
    background-color: #f0f0f0;
}
.icon--bg-blue100 {
    color: #ffffff;
    background-color: #027af9;
}
.icon--c-blue100 {
    color: #027af9;
}
/* file_open - リンク用 */
.icon__open::after {
    content: "";
    position: relative;
    display: inline-block;
    background: url("../svg/icon_file_open01.svg") no-repeat left top;
    transform: translateY(-50%) translateX(0%);
    background-size: 12px 12px;
    width: 12px;
    height: 12px;
    vertical-align: middle;
}

/* ----------------------------------------------------------------------
	パンくず
---------------------------------------------------------------------- */
.breadcrumb {
  padding: 20px 10px 19px 40px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  -ms-overflow-style: none;
}
.breadcrumb-wrap {
  padding-right: 56px;
  background: #F4F5F8;
  line-height: 1;
  position: relative;
  z-index: 15;
}
.breadcrumb-wrap:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 60px;
  width: 50px;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(246, 246, 246, 0)), to(rgb(246, 246, 246)));
  background-image: linear-gradient(to right, rgba(246, 246, 246, 0), rgb(246, 246, 246));
}
.breadcrumb-list {
  white-space: nowrap;
  margin-bottom: 0;
}
.breadcrumb-list-item {
  display: inline-block;
  color: #818181;
  font-size: 13px;
}
.breadcrumb-list-item > a {
  color: #818181;
  font-size: 13px;
}
.breadcrumb-list-item > a:after {
  content: "";
  display: inline-block;
  background: url("../svg/icon_arrow.svg") no-repeat left top;
  background-size: 6px 10px;
  width: 6px;
  height: 13px;
  margin: 2px 10px 0 15px;
  vertical-align: middle;
}
.breadcrumb-list-item:last-child {
  padding-right: 10px;
}
.breadcrumb-list-item:first-child a img {
  width: 23px;
  vertical-align: middle;
}
.breadcrumb-list-item:first-child a span {
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
}

.footer-bread .breadcrumb-wrap {
  z-index: 0;
}

@media (max-width: 768px) {
  .breadcrumb {
    padding: 12px 0px 11px 15px;
  }
  .breadcrumb-wrap:after {
    right: 55px;
    height: 42px;
  }
  .breadcrumb-list-item:first-child a img {
    width: 20px;
  }
  .breadcrumb-list-item a:after {
    margin: 0 5px 0 10px;
    height: 10px;
  }
}
/* ----------------------------------------------------------------------
	左右に斜め線が入ったテキスト
---------------------------------------------------------------------- */
.oblique_text {
    position: relative;
    display: inline-block;
    font-size: 16px;
    margin: 0 0 20px 0;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
}
.oblique_text::before,
.oblique_text::after {
    content: "";
    position: absolute;
    background-color: #000000;
    width: 2px;
    height: 48px;
}
.oblique_text::before {
    left: -15px;
    bottom: 0;
    transform:rotate(-15deg);
}
.oblique_text::after {
    right: -15px;
    bottom: 0;
    transform:rotate(15deg);
}
.ad_section {
    display: flex;
    margin: 60px 0 40px 0;
    flex-direction: column;
    align-items: center;
}
.ad_title {
    font-size: 13px;
    line-height: 1.7;
    font-weight: bold;
}
.ad_title p:last-of-type{
    color: #3D71D3;
    font-size: 18px;
}
.ad_img {
    margin: 28px 0 30px 0;
    text-align: center;
}
.ad_img img {
    width: 180px;
    height: 94px;
}
.ad_text {
    position: relative;
    font-size: 16px;
    margin: 0 0 20px 0;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
}
.ad_text::before {
    left: -15px;
    bottom: 0;
    transform:rotate(-30deg);
}
.ad_text::after {
    right: -15px;
    bottom: 0;
    transform:rotate(30deg);
}
.ad_text::before,
.ad_text::after {
    content: "";
    position: absolute;
    background-color: #000000;
    width: 2px;
    height: 60px;
}
.ad_btn {
    min-width: 285px;
    max-width: 360px;
    height: 60px;
    margin: 0 0 20px 0;
}
.ad_btn .btn {
    font-size: 15px;
    height: 60px;
}
.ad_other {
    font-size: 11px;
    line-height: 1.6;
    font-weight: bold;
    text-align: center;
}
.ad_other p:first-of-type {
    color: red;
}

/* ----------------------------------------------------------------------
	カラム
---------------------------------------------------------------------- */
.col_2 { width: 50%;}
.col_3 { width: 33.3333%;}
.col_4 { width: 25%;}
.col_5 { width: 20%;}
.col_6 { width: 16.6666%;}
.col_7 { width: 14.2857%;}
.col_8 { width: 12.5%;}

/* ----------------------------------------------------------------------
	その他
---------------------------------------------------------------------- */
.red   { color: #ff0000 ;}
a.c_link {
    color: #157ed8 ;
    text-decoration: underline; /* 下線あり */
}

/* ----------------------------------------------------------------------
	text-align
---------------------------------------------------------------------- */
.ali_c   {text-align: center !important;}
.ali_r   {text-align: right !important;}
.ali_l   {text-align: left !important;}

/* ----------------------------------------------------------------------
	flex-direction
---------------------------------------------------------------------- */
.fd_r  { flex-direction: row            !important;}
.fd_rr { flex-direction: row-reverse    !important;}
.fd_c  { flex-direction: column         !important;}
.fd_cr { flex-direction: column-reverse !important;}