@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD_custom
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

.comparison-container {
  padding: 20px;
	margin-top:40px;
}

.comparison-wrapper {
  display: flex;
  margin: 0 auto;
  overflow: hidden;
}

.left-section {
  flex: 1;
  padding: 30px;
  background-color: #0b0917;
  position: relative;
}

.title-container {
  margin-bottom: 20px;
}

.main-title {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary);
}

.subtitle {
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-secondary);
}

.description {
  font-size: 14px;
  margin-bottom: 20px;
  color: #f2eded;
}


.more-button {
  padding: 8px 16px;
  font-size: 14px;
  background-color: #808080;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  position: absolute;
  bottom: 20px;
  right: 30px;
}

.more-button:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.comparison-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.image-container:hover .comparison-image {
  transform: scale(1.4);
  filter: brightness(1.4);
}

.image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .comparison-wrapper {
    flex-direction: column;
  }

  .left-section, .right-section {
    padding: 20px;
  }

  .main-title {
    font-size: 28px;
  }

  .subtitle {
    font-size: 16px;
  }

  .more-button {
    position: static;
    margin-top: 20px;

  }
}

.bottom-image {
  width: calc(50% - 5px);
  height: calc(50% - 5px);
}

@media (max-width: 768px) {
  .image-grid {
    flex-direction: column;
  }

  .top-image, .bottom-image {
    width: 100%;
    height: 200px;
  }
}

/* ここから料金部分 */


.price-menu-container {
  margin: 0 auto;
  padding: 20px;
}

.price-menu-wrapper {
  background-color: #0b0917;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	  border: 1px solid #f2eded;
}

.price-section, .menu-section {
  padding: 30px;
margin:0 auto;
	width:90%;

}

.title-container {
  text-align: center;
  margin-bottom: 30px;
}

.main-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.subtitle {
  font-size: 18px;
  color: var(--color-secondary);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.price-box {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  background-color: #f9f9f9;
}

.price-box-title {
  font-size: 18px;
  color: black;
  margin-bottom: 10px;
  text-align: center;
}

.price-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.price-name {
  font-size: 14px;
}

.price-value {
  font-weight: bold;
}

.price-note {
  font-size: 10px;
  margin-top: 20px;
  text-align: center;
	color:#f2eded;
}

.menu-title {
  font-size: 24px;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
}
.comparison-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px; /* 必要に応じて調整 */
width: 100%;
    margin: auto;

}

.price-menu-wrapper {
  margin: 0 auto;
	    width: 100%;

}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px; /* ボックス間の隙間 */
  justify-content: center;
}

@media (max-width: 768px) {
  .price-grid {
    grid-template-columns: 1fr; /* スマートフォンなどの小さい画面では1列に変更 */
  }
}


/* ここからメニュー */

/* MENUセクション全体のスタイル */
.menu-container {
  margin: 0 auto;
  padding: 20px;
}

.menu-wrapper {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.menu-section {
  padding: 30px;
}

.title-container {
  text-align: center;
  margin-bottom: 30px;
}

.main-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.subtitle {
  font-size: 18px;
  color: var(--color-secondary);
}

/* メニューのグリッドとメニューボックス */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.menu-box {
  position: relative; /* 三角形を絶対配置するために必要 */
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  background-color: #f9f9f9;
}

.menu-box-title {
  font-size: 18px;
  color: var(--color-primary);
  margin-bottom: 10px;
  text-align: center;
}

.menu-item {
  font-size: 14px;
  margin-bottom: 5px;
}

/* ソフトドリンクとアルコールの長方形と料金テキスト */
.menu-price-box {
  position: absolute;
  bottom: 0; /* 右下に配置 */
  right: 0;  /* 右下に配置 */
  background-color: #8b0000;
  padding: 5px 10px;
  border-top-left-radius: 8px; /* 角を丸くする */
}

.menu-price-text {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}




.menu-price-text span {
  line-height: 1.2; /* テキスト間の間隔を調整 */
}

/* 通常のメニューアイテムのスタイル */
.menu-item {
  display: flex;
  justify-content: space-between;
}

.menu-name {
  font-size: 14px;
}

.menu-value {
  font-weight: bold;
}

/* メニュー注釈 */
.menu-note {
  font-size: 12px;
  margin-top: 20px;
  text-align: center;
	color:white;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}



/* お知らせ */

.news-container {
    margin: 0 auto;
    padding: 1.5rem;
    border-radius: 0.5rem;
    /* box-shadowプロパティを削除 */
}
.select-container {
    margin-bottom: 1.5rem;
	margin-top:20px;
}

#yearSelect {
    width: 8rem;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    background-color: white;
}

.button-group {
    display: flex;
    margin-bottom: 1.5rem;
    gap: 0.5rem;
}

.button {
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    background-color: white;
    cursor: pointer;
}

.button.active {
    background-color: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-item {
    background-color: white;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.news-date {
    color: #6b7280;
}

.news-category {
    background-color: #fff7ed;
    color: #9a3412;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
}

.news-title {
    font-size: 1.125rem;
    margin: 0;
}


.select-container {
    margin-bottom: 1.5rem;
}

#yearSelect {
    width: 8rem;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    background-color: white;
}

.button-group {
    display: flex;
    margin-bottom: 1.5rem;
    gap: 0.5rem;
}

.button {
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    background-color: white;
    cursor: pointer;
}

.button.active {
    background-color: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-item {
    background-color: white;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.news-date {
    color: #6b7280;
}

.news-category {
    background-color: #fff7ed;
    color: #9a3412;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
}

.news-title {
    font-size: 1.125rem;
    margin: 0;
}

.subtitle,
.main-title {
    text-align: center;
}

.p-mainVisual__slideTitle{
font-size: 40px;
}


@media (max-width: 768px) {
  .price-section {
    width: 100%;
  }
}


.content-btn {
position: static !important;
}



.title-container {
    position: relative;
}

.c-sec-heading__bg {
    color: #12101d;
    font-size: 150px;
    line-height: 1;
    white-space: nowrap;
    position: absolute;
    top: -50px;
    left: -160px;
    z-index: 1; /* 背景用の要素 */
}

.main-title {
    position: relative;
    z-index: 2; /* 前に表示されるようにする */
}

.subtitle {
    position: relative;
    z-index: 2; /* 背景より前に表示 */
}

@media screen and (max-width: 768px) {
    .c-sec-heading__bg {
        font-size: 170px;
        top: -60px;
        left: -80px;
        z-index: 1; /* 背景用の要素 */
    }

    .main-title, .subtitle {
        z-index: 2; /* モバイルでも前に表示 */
    }
}





/* MV下セクション */
.comparison-wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: column; /* テキストと画像を縦に並べる */
}

.left-section {
  padding: 20px;
}

.right-section {
  display: flex;
  flex-direction: column; /* テキストと画像を縦に配置 */
  justify-content: flex-start;
  padding: 15px;
  background-color: #0b0917;
}

.image-slider {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
  overflow: hidden; /* スライダー用にoverflowを隠す */
  width: 100%;
  max-width: 100%;
  flex-wrap: nowrap; /* スライダーのため横並び固定 */
}

.image-slide {
  flex: 0 0 calc(33.333% - 10px); /* 3等分にして隙間を考慮 */
  height: 200px;
  overflow: hidden;
  position: relative;
}

.comparison-image {
  width: 100%;
  height: auto;
  object-fit: cover; /* 画像をコンテナにフィットさせる */
}

/* スマホサイズで画像を縦に並べる */
@media screen and (max-width: 768px) {
  .image-slider {
    flex-direction: column; /* 画像を縦に並べる */
  }

  .image-slide {
    max-width: 100%;
    height: 150px; /* すべての画像の高さを150pxに統一 */
  }

  .comparison-image {
    width: 100%;
    height: auto;
    object-fit: cover; /* 画像がコンテナに正確に収まるように調整 */
  }
}



/* ニュース */


.news-container, .comparison-container {
  width: 100% !important;
  max-width: 1200px !important; /* 必要に応じて調整 */
  margin: 0 auto !important;
}

.news-wrapper, .comparison-wrapper {
  display: flex !important;
  justify-content: space-between !important;
  flex-direction: column !important; /* 必要に応じて調整 */
  width: 100% !important;
  max-width: 1200px !important; /* 比較のセクションと統一 */
  margin: 0 auto !important;
}

.right-section {
  width: 100% !important;
  max-width: 100% !important;
}

.backtop-button{
	text-align:center;
}


  .more-button {
    width: 70% !important;
    margin: auto !important;
  }

.price-section {
  text-align: center; /* ボタンを中央に揃える */
}

.more-button {
  display: inline-block; /* ボタンをインラインブロック要素にする */
  width: 70%; /* 必要に応じて幅を調整 */
  margin: 20px auto; /* 上下に20pxの余白を作り、左右を中央揃えに */
  text-align: center; /* ボタン内のテキストを中央揃え */
}




/* ポーカーの流れセクション */

.game-flow {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.section-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.flow-item {
  margin-bottom: 40px;
}

.flow-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
 color:white;
}

.flow-item p,ol,ul,li {
  line-height: 1.6;
  margin-bottom: 10px;
 /*↓リストの文字色変更するために削除
	color: white;  /* 追加：flow-item内のpタグのテキストカラーを設定 */

}



.number {
  font-size: 36px;
  color: #6e45e2;
  margin-right: 10px;
}


/* レスポンシブデザイン */
@media (max-width: 768px) {
  .game-flow {
    padding: 15px;
  }

  .section-title {
    font-size: 20px;
  }

  .flow-title {
    font-size: 18px;
  }

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



/* 特定のリスト項目の番号にスタイルを適用 */
.flow-item ol {
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
}

.flow-item ol > li {
  counter-increment: item;
  margin-bottom: 20px;
  position: relative;
  padding-left: 34px; /* 番号の幅 + 余白 */
}

.flow-item ol > li::before {
  content: counter(item);
  background-color: #808080; /* 灰色の背景 */
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 0;
}

/* 特定のリスト項目の下位リストに白いボーダーを適用 */
.flow-item ol > li:nth-child(3) > ul,
.flow-item ol > li:nth-child(4) > ul {
  border: 1px solid white;
  border-radius: 10px;
  padding: 15px 15px 15px 30px;
  margin-top: 10px;
}

/* テキストカラーの調整 */
.flow-item ol,
.flow-item ol li,
.flow-item ol > li > ul,
.flow-item ol > li > ul li {
  color: #f5f5f5; /* 薄いグレー、背景に合わせて調整してください */
}

/* リスト項目のテキストのスタイル */
.flow-item ol > li > p:first-child {
  margin-top: 0;
}


.game-flow {
  width: 70%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .game-flow {
    width: 100%;
  }
}

.flow-item > ul {
  border: 1px solid white;
  border-radius: 10px;
  padding: 15px 15px 15px 35px;
  margin-top: 20px;
}

.flow-item > p:last-of-type {
  margin-bottom: 10px;
  font-weight: bold;
}

.flow-item > ul {
  list-style-type: none;
  padding-left: 20px;
  margin-bottom: 0;
}

.flow-item > ul > li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
}

.flow-item > ul > li:before {
  content: "•";
  position: absolute;
  left: 0;
}

.flow-item > ul > li:last-child {
  margin-bottom: 0;
}


/* wpforms-container-full内のラベルを白にする */
div.wpforms-container-full .wpforms-field-label,
.wp-core-ui div.wpforms-container-full .wpforms-field-label {
    color: white !important;
}


.privacy-policy{
	color:white;
	font-size:12px;
}


.company-container{
	color:white;
}

.news-list {
    list-style-type: none;
    padding-left: 0;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.news-date {
    flex: 0 0 120px; /* Adjust this width as needed */
    margin-left: 20px; /* Space between date and title */
}

.news-title-wrapper {
    flex: 1;
}

.news-title {
    display: inline-block;
    margin-left: 20px; /* Adjust this value to move the title more to the right */
}


@media screen and (max-width: 767px) {
    .news-title {
        font-size: 15px;
    }
}



.news-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.news-article .entry-header {
    margin-bottom: 20px;
}

.news-article .entry-title {
    font-size: 24px;
    color: white;
    margin-bottom: 10px;
}

.news-article .entry-meta {
    font-size: 14px;
    color: #666;
}

.news-article .entry-content {
    font-size: 16px;
    line-height: 1.6;
}

.single-news .l-mainContent__inner,
.single-news .l-mainContent__inner * {
    color: #ffffff !important;
}

.single-news .c-postTitle__ttl,
.single-news .c-postTitle__date,
.single-news .c-postTimes,
.single-news .post_content p,
.single-news .post_content figure figcaption,
.single-news .c-shareBtns__message .__text {
    color: #ffffff !important;
}

.single-news .c-shareBtns__btn {
    color: inherit;
}

.c-listMenu.c-listMenu li{
	color:black;
}


.partnership-container .image-slide {
    flex: unset !important;
}


.post-template-default .p-breadcrumb.-bg-on{
	background: none!important;
}


.wp-block-table.is-style-stripes td,
.wp-block-table.is-style-stripes td * {
    color: black !important;
}


.p-toc.is-omitted:not([data-omit=nest]):before,
.p-toc.is-omitted:not([data-omit=nest]):after
{
	background:none!important;
}

.p-toc .p-toc__expandBtn{
	color:black!important;
}

.p-breadcrumb .p-breadcrumb__text,
span.p-breadcrumb__text {
    color: #fff !important;
}

.p-breadcrumb__list .p-breadcrumb__item,.p-breadcrumb__text
    color: #fff !important;
}
.swl-marker.mark_yellow {
    color: yellow !important;  /* 黄金色 */
}


.swl-marker.mark_yellow {
    background: none !important;
    background-image: none !important;
    color: #FFD700 !important;
}
.c-fixBtn__icon{
color:#000 !important;
}

/** ステップブロックの色を指定 **/
.swell-block-step__number {
    background-color: var(--color_deep03) !important;
}


/** テーブルのヘッダー色を指定 **/
thead {
    --thead-color--bg: var(--color_deep03) !important;
}

/** キャプションボックスのコルセットを指定 **/
.cap_box_ttl {
    background-color: #f25e5e !important;
}
.cap_box_content {
    background-color: #fff !important;
    border-color: #f25e5e !important;
}
.apct-category-wrapper {
width: 100%;
max-width: 1200px;
margin: 0 auto;
position: relative;
padding: 16px 0;
}

.apct-category-container {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
-ms-overflow-style: none;
padding: 0 16px;
width: calc(320px + 32px);
margin: 0 auto;
}

.apct-category-container::-webkit-scrollbar {
display: none;
}

.apct-category-list {
display: flex;
gap: 10px;
list-style: none;
padding: 0;
margin: 0;
min-width: max-content;
}

.apct-category-item {
flex: 0 0 auto;
}

.apct-category-button {
display: inline-block;
    width: 100%;
    padding: 8px 29px;
background-color: #f5f5f5;
border-radius: 20px;
color: #333;
text-decoration: none;
font-size: 14px;
transition: all 0.3s ease;
border: none;
cursor: pointer;
white-space: nowrap;
text-align: center;
}

.apct-category-button:hover {
background-color: #e5e5e5;
}

.apct-category-button.apct-active {
background-color: #000;
color: #fff;
}
/* 記事リストのスタイル */
.apct-article-section {
display: none;
padding: 24px 16px;
max-width: 800px;
margin: 0 auto;
}

.apct-article-section.apct-active {
display: block;
}

.apct-article-list {
list-style: none;
padding: 0;
margin: 0;
}

.apct-article-item {
border-bottom: 1px solid #eee;
padding: 20px 0;
}

.apct-article-item:last-child {
border-bottom: none;
}

.apct-article-meta {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 8px;
}

.apct-article-category {
font-size: 12px;
color: #666;
background-color: #f5f5f5;
padding: 4px 8px;
border-radius: 4px;
}

.apct-article-date {
font-size: 12px;
color: #fff;
}

.apct-article-title {
font-size: 18px;
font-weight: 600;
margin: 0 0 8px 0;
color: #fff;
}

.apct-article-excerpt {
font-size: 14px;
color: #fff;
line-height: 1.6;
margin: 0;
}

[data-table-scrollable]:not(.is-style-double) td {
    border-bottom: none;
    border-right: none;
    min-width: 230px;
}
.text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.fv-image{
display:block;
margin: 0 auto;
text-align:center;
margin-top:20px !important;
margin-bottom:10px;
width:60%;
}
.fv-image img{
margin-top:30px;
}
.page-id-10 h1 {
    font-size: 32px;
     background: linear-gradient(45deg, #004080, #0080bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.5;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.price-color{
   background: linear-gradient(45deg, #004080, #0080bf);
}
.image-container {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.image-overlay:hover {
    background-color: rgba(0, 0, 0, 0.7);
}
#content p{
	margin-bottom:20px;
}
.overlay-text {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}
.shadow{
box-shadow: 0 2px 8px rgba(0, 0, 0, .1), 0 4px 8px -4px rgba(0, 0, 0, .2);
}
.arrow {
    font-size: 36px;
}
.casino-attention{
	display:block;
	margin:0 auto;
	text-align:center;
}
.p-mainVisual__slideTitle {
    font-size: 55px;
    font-weight: bold;
}

.top #content {
    padding-top: 0 !important;
}

.center{
	  text-align: center;
	display:block;
margin-bottom:0 !important;
}

.page-id-10 h2 {
    font-size: 40px;
    font-weight: 900;
    /* 太さを最大に設定 */
    background: linear-gradient(45deg, #004080, #0080bf);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 1px;
    /* 文字間隔を少し広げる */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    /* テキストに軽い影をつける */
}

.subtitle {
    font-size: 18px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
     background: linear-gradient(45deg, #004080, #0080bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.jptitle {
    font-size: 18px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.service-section {
    display: flex;
    flex-wrap: wrap;
}

.service-image,
.service-content {
    flex: 1;
    min-width: 300px;
}

.service-image {
    height: 50vh;
    min-height: 300px;
}

.service-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.price-content{
	text-align:center;
}

.service-subtitle{
    text-transform: uppercase;
    font-size: 18px;
	font-weight:bold;
    background: linear-gradient(45deg, #004080, #0080bf);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.sp{
	display:none;
}
.white{
	color:#fff !important;
}
.price-container {
    display: flex;
    background-color: white;
	border-radius:50px;
	padding:20px 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	margin-top:20px;
}

.price-label {
    background: linear-gradient(45deg, #004080, #0080bf);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 10px 15px;
    font-size: 20px;
    width: 20%;
	font-weight:bold;
	justify-content:center;
    display: flex;
    align-items: center;
}

.price-content {
    background: linear-gradient(45deg, #004080, #0080bf);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
	font-size:35px;
}

.black{
	color:#000;
}

.divider {
    width: 1px;
    background-color: #ccc;
    margin: 10px 0;
}
.unq_feat_74521_container {
max-width: 1200px;
margin: 40px auto;
padding: 0 20px;
display: flex;
gap: 40px;
align-items: center;
}
.unq_feat_74521_content {
flex: 1;
min-width: 300px;
}
.unq_feat_74521_title_block {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 20px;
}
.unq_feat_74521_number {
    background: linear-gradient(45deg, #004080, #0080bf);
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    font-weight: bold;
}
.service-content h3{
	margin:0 !important;
	font-size:30px !important;
}
.flex-reverse{
 flex-direction: row-reverse;
}
.unq_feat_74521_title {
font-size: 24px;
margin: 0 !important;
font-weight: bold;
}
.unq_feat_74521_price {
color: #666;
font-size: 14px;
}
.unq_feat_74521_description {
color: #333;
line-height: 1.8;
margin-bottom: 30px;
}
.unq_feat_74521_recommend {
background: #f8f9fa;
padding: 20px;
border-radius: 10px;
margin-top: 20px;
}
.unq_feat_74521_recommend_title {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 15px;
color: #333;
}
.unq_feat_74521_recommend_title i {
color: #2ecc71;
}
.unq_feat_74521_recommend ul {
list-style: none;
padding: 0;
margin: 0;
}
.unq_feat_74521_recommend li {
margin-bottom: 8px;
color: #666;
position: relative;
padding-left: 20px;
}
.unq_feat_74521_recommend li:before {
content: "・";
position: absolute;
left: 0;
}

/* 画像セクションのスタイルを更新 */
.unq_feat_74521_image {
flex: 1;
max-width: 600px;
position: relative;
padding-bottom: 40px;
padding-right: 40px;
}
.unq_feat_74521_image img {
width: 100%;
height: auto;
border-radius: 10px;
position: relative;
z-index: 2;
}
.unq_feat_74521_image::after {
content: '';
position: absolute;
bottom: 0;
right: 0;
width: 80%;
height: 80%;
background-color: #2e6ccc;
opacity: 0.1;
border-radius: 10px;
z-index: 1;
}

@media (max-width: 768px) {
.unq_feat_74521_container {
flex-direction: column;
}
.unq_feat_74521_image {
order: -1;
padding-bottom: 30px;
padding-right: 30px;
}
}
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .p-mainVisual__slideTitle {
        font-size: 30px;
        font-weight: bold;
    }

    .service-image,
    .service-content {
        flex: 100%;
    }

    .service-image {
        height: 300px;
    }
.service-section:nth-child(even){
	 flex-direction : column-reverse
}
.price-label{
		width:100%;
}
.price-container,.price-content {
display:block;
}
#content h2 {
	font-size: 19px;
}
	.divider{
		display:none;
	}
.service-content{
		padding:10px 0px;
	}
.sp{
	display:block;
}
}

.testimonial_container {
max-width: 1200px;
margin: 0 auto;
padding: 60px 20px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.testimonial_heading {
text-align: center;
font-size: 36px;
margin-bottom: 70px;
font-weight: 700;
background: linear-gradient(135deg, #1E88E5, #64B5F6);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
position: relative;
letter-spacing: 1px;
}

.testimonial_heading::after {
content: '';
position: absolute;
bottom: -20px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: linear-gradient(135deg, #1E88E5, #64B5F6);
border-radius: 4px;
}

.testimonial_grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
gap: 50px;
margin-top: 30px;
}

.testimonial_card {
display: flex;
align-items: flex-start;
padding: 10px;
transition: all 0.3s ease;
}

.testimonial_avatar {
width: 100px;
height: 100px;
border-radius: 50%;
object-fit: cover;
margin-right: 30px;
flex-shrink: 0;
border: 4px solid #fff;
box-shadow: 0 8px 25px rgba(30, 136, 229, 0.15);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial_card:hover .testimonial_avatar {
transform: scale(1.08) rotate(5deg);
box-shadow: 0 12px 30px rgba(30, 136, 229, 0.25);
}

.testimonial_content {
flex: 1;
}

.testimonial_quote {
position: relative;
font-size: 16px;
line-height: 1.8;
margin-bottom: 25px;
color: #2c3e50;
background: #ffffff;
padding: 25px 30px;
border-radius: 16px;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
transition: all 0.3s ease;
border: 1px solid rgba(30, 136, 229, 0.1);
}

.testimonial_quote_title {
display: block;
font-size: 18px;
font-weight: 700;
color: #1E88E5;
margin-bottom: 12px;
letter-spacing: 0.5px;
padding-bottom: 12px;
border-bottom: 1px solid rgba(30, 136, 229, 0.1);
}

.testimonial_quote:hover {
transform: translateY(-3px);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
border-color: rgba(30, 136, 229, 0.2);
}

.testimonial_quote::before {
content: '';
position: absolute;
left: -15px;
top: 30px;
width: 0;
height: 0;
border-style: solid;
border-width: 12px 15px 12px 0;
border-color: transparent #ffffff transparent transparent;
filter: drop-shadow(-4px 2px 4px rgba(0, 0, 0, 0.08));
}
position: relative;
font-size: 16px;
line-height: 1.8;
margin-bottom: 25px;
color: #2c3e50;
background: #ffffff;
padding: 25px 30px;
border-radius: 16px;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
transition: all 0.3s ease;
border: 1px solid rgba(30, 136, 229, 0.1);
}

.testimonial_quote:hover {
transform: translateY(-3px);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
border-color: rgba(30, 136, 229, 0.2);
}

.testimonial_quote::before {
content: '';
position: absolute;
left: -15px;
top: 30px;
width: 0;
height: 0;
border-style: solid;
border-width: 12px 15px 12px 0;
border-color: transparent #ffffff transparent transparent;
filter: drop-shadow(-4px 2px 4px rgba(0, 0, 0, 0.08));
}

.testimonial_info {
font-size: 14px;
padding: 20px 25px;
margin-left: 15px;
position: relative;
background: linear-gradient(90deg, rgba(30, 136, 229, 0.06), transparent);
border-radius: 12px;
transition: all 0.3s ease;
}

.testimonial_card:hover .testimonial_info {
background: linear-gradient(90deg, rgba(30, 136, 229, 0.1), transparent);
}

.testimonial_info::before {
content: '';
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 4px;
height: 75%;
background: linear-gradient(180deg, #1E88E5, #64B5F6);
border-radius: 2px;
}

.testimonial_name {
font-weight: 700;
margin-bottom: 12px;
font-size: 18px;
color: #1a1a1a;
letter-spacing: 0.5px;
transition: all 0.3s ease;
}

.testimonial_card:hover .testimonial_name {
color: #1E88E5;
}

.testimonial_job, .testimonial_experience {
position: relative;
padding-left: 25px;
margin-bottom: 8px;
line-height: 1.6;
display: flex;
align-items: center;
transition: all 0.3s ease;
}

.testimonial_job::before, .testimonial_experience::before {
content: '';
position: absolute;
left: 0;
width: 16px;
height: 16px;
background-image: linear-gradient(135deg, #1E88E5, #64B5F6);
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
mask-size: contain;
-webkit-mask-size: contain;
mask-repeat: no-repeat;
-webkit-mask-repeat: no-repeat;
transition: all 0.3s ease;
}

.testimonial_card:hover .testimonial_job::before,
.testimonial_card:hover .testimonial_experience::before {
transform: scale(1.1);
}

.testimonial_job {
color: #2c3e50;
font-weight: 500;
}

.testimonial_experience {
color: #546e7a;
}
#customer-pic{
	margin-top:20px;
}
@media (max-width: 960px) {
.testimonial_grid {
grid-template-columns: 1fr;
gap: 40px;
}
    .testimonial_card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .testimonial_quote::before {
        right: auto;
        left: 50%;
        top: -15px;
        transform: translateX(-50%);
        border-width: 0 15px 15px 15px;
        border-color: transparent transparent #ffffff transparent;
        filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.08));
    }
.testimonial_avatar{
margin:0 auto;
display:block;
margin-bottom:20px;
}
.testimonial_heading {
font-size: 28px;
}
}

@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-5px); }
100% { transform: translateY(0px); }
}
.slider-container {
position: relative;
max-width: 800px;
margin: 2rem auto;
overflow: hidden;
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.slider {
position: relative;
width: 100%;
height: 400px;
}

.slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 0.8s ease-in-out;
pointer-events: none;
}

.slide.active {
opacity: 1;
pointer-events: auto;
}

.slide img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.slider-controls {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 12px;
z-index: 10;
}

.slider-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.5);
cursor: pointer;
transition: all 0.3s ease;
border: none;
padding: 0;
}

.slider-dot.active {
background-color: #fff;
transform: scale(1.2);
}

.nav-button {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(255, 255, 255, 0.8);
color: #333;
border: none;
width: 40px;
height: 40px;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
z-index: 10;
backdrop-filter: blur(5px);
}

.nav-button:hover {
background: rgba(255, 255, 255, 0.95);
}

.nav-button.prev {
left: 20px;
}

.nav-button.next {
right: 20px;
}

.nav-button svg {
width: 24px;
height: 24px;
fill: currentColor;
}



.step-list {
list-style: none;
}

.step-list li {
position: relative;
padding-left: 2rem;
margin-bottom: 1rem;
line-height: 1.6;
}

.step-list li::before {
content: '';
position: absolute;
left: 0;
top: 8px;
width: 12px;
height: 12px;
background: #1a237e;
border-radius: 50%;
opacity: 0.7;
}

.hand-ranks {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1rem;
margin-top: 1rem;
}

.hand-rank {
background: #f8f9fa;
padding: 1rem;
border-radius: 8px;
border-left: 4px solid #1a237e;
}

.card {
width: 40px;
height: 56px;
background: white;
border-radius: 4px;
display: inline-flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 4px;
margin-right: 4px;
box-shadow: 0 1px 3px rgba(0,0,0,0.2);
font-family: Arial, sans-serif;
font-weight: bold;
border: 1px solid #e0e0e0;
}

.card-value {
font-size: 16px;
line-height: 1;
}

.card-suit {
width: 16px;
height: 16px;
}

.red {
color: #d32f2f;
}

.black {
color: #1a237e;
}

.hand-example {
display: flex;
margin: 8px 0;
align-items: center;
}

.hand-rank h4 {
margin-bottom: 12px;
}

.important-note {
background: #e8eaf6;
padding: 1.5rem;
border-radius: 8px;
margin-top: 1rem;
color: #1a237e;
}

.tab-container {
margin-top: 4rem;
margin-bottom: 2rem;
}

.tab-buttons {
display: flex;
gap: 1rem;
margin-bottom: 2rem;
}

.tab-button {
flex: 1;
padding: 1rem;
font-size: 1.2rem;
background: #fff;
border: none;
border-radius: 8px;
cursor: pointer;
color: #666;
transition: all 0.3s ease;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tab-button.active {
background: #1a237e;
color: white;
}

.tab-content {
display: none;
}

.tab-content.active {
display: block;
}

.suit-icon {
width: 24px;
height: 24px;
}

.suit-spade, .suit-club {
fill: #1a237e;
}

.suit-heart, .suit-diamond {
fill: #d32f2f;
}

.highlight-box {
background: #e8eaf6;
padding: 1.5rem;
border-radius: 8px;
margin-top: 1rem;
}

.highlight-box h4 {
color: #1a237e;
margin-bottom: 1rem;
font-size: 1.2rem;
}
.feature-list{
margin-top:20px;
}
@media (max-width: 768px) {
.poker-guide {
padding: 1rem;
margin: 1rem;
}

.guide-title {
font-size: 2rem;
}

.tab-buttons {
flex-direction: column;
}

.section-title {
font-size: 1.3rem;
}
}
.poker-container {
max-width: 800px;
margin: 0 auto;
padding: 2rem;
}

.guide-title {
text-align: center;
color: #1a237e;
font-size: 2rem;
font-weight: bold;
margin-bottom: 0.5rem;
}

.guide-subtitle {
text-align: center;
color: #666;
margin-bottom: 3rem;
}

.poker-section {
background: white;
border-radius: 12px;
padding: 2rem;
margin-bottom: 2rem;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.poker-section-number {
display: inline-flex;
align-items: center;
justify-content: center;
width: 2rem;
height: 2rem;
background: #1a237e;
color: white;
border-radius: 50%;
font-weight: bold;
margin-right: 0.8rem;
    font-size: 19px;
}

.poker-section-title {
font-size: 1.25rem;
font-weight: bold;
color: #1a237e;
margin-bottom: 30px !important;
display: flex;
align-items: center;
}

.poker-section-content {
margin-left: 2.8rem;
}

/* ステップデザイン */
.poker-steps {
margin-left: 2.8rem;
}

.poker-step {
position: relative;
padding-left: 3rem;
padding-bottom: 2rem;
counter-increment: poker-step;
}

.poker-step:last-child {
padding-bottom: 0;
}

.poker-step::before {
content: counter(poker-step);
position: absolute;
left: 0;
top: 0;
width: 2rem;
height: 2rem;
background: #1a237e;
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
}

.poker-step:not(:last-child)::after {
content: '';
position: absolute;
left: 0.9rem;
top: 2.5rem;
width: 2px;
height: calc(100% - 2.5rem);
background: #e0e0e0;
}

.highlight {
color: #1a237e;
font-weight: 500;
}

/* 役のスタイル */
.poker-hands {
display: flex;
flex-direction: column;
gap: 2rem;
margin-left: 2.8rem;
}

.hand-group {
background: #f8f9fa;
padding: 1.5rem;
border-radius: 8px;
border-left: 4px solid #1a237e;
}

.hand-name {
font-weight: bold;
margin-bottom: 1rem;
color: #1a237e;
}

.poker-cards {
display: flex;
gap: 4px;
margin-bottom: 0.5rem;
}

.poker-card {
width: 44px;
height: 60px;
background: white;
border-radius: 4px;
border: 1px solid #ddd;
display: flex;
justify-content: center;
align-items: center;
font-family: Arial, sans-serif;
font-weight: bold;
font-size: 16px;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.red {
color: #e31b23;
}

.poker-black {
color: #1a237e;
}

.hand-description {
font-size: 14px;
color: #666;
}

/* タブスタイル */
.poker-tab-buttons {
display: flex;
gap: 1rem;
margin: 2rem 0;
}

.poker-tab-button {
flex: 1;
padding: 1rem;
font-size: 1rem;
background: #fff;
border: none;
border-radius: 8px;
cursor: pointer;
color: #666;
transition: all 0.3s ease;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.poker-tab-button.active {
background: #1a237e;
color: white;
}

.poker-tab-content {
display: none;
}

.poker-tab-content.active {
display: block;
}

.game-type-poker-section {
background: white;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
padding: 24px;
margin-bottom: 24px;
}

.game-type-title {
display: flex;
align-items: center;
margin-bottom: 20px;
}

.title-number {
width: 28px;
height: 28px;
background: #1a237e;
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
margin-right: 12px;
}

.title-text {
font-size: 20px;
font-weight: bold;
color: #1a237e;
}

.game-feature-list {
list-style: none;
margin-left: 40px;
}

.game-feature-list li {
position: relative;
padding-left: 16px;
margin-bottom: 12px;
line-height: 1.6;
}

.game-feature-list li::before {
content: "";
position: absolute;
left: 0;
top: 10px;
width: 6px;
height: 6px;
background: #1a237e;
border-radius: 50%;
}

.highlight {
color: #1a237e;
font-weight: bold;
}

.warning {
color: #d32f2f;
font-weight: bold;
}

.stage-list {
margin-top: 12px;
}

.stage-item {
margin-bottom: 8px;
line-height: 1.6;
color: #1a237e;
}

.one-point {
background: #f3f4f8;
border-radius: 8px;
padding: 20px;
margin-top: 24px;
}

.one-point-title {
color: #1a237e;
font-weight: bold;
margin-bottom: 12px;
}

@media (max-width: 768px) {
.poker-container {
padding: 1rem;
}

.poker-section {
padding: 1.5rem;
}

.poker-section-content {
margin-left: 0;
}

.poker-steps {
margin-left: 0;
}

.poker-hands {
margin-left: 0;
}

.poker-tab-buttons {
flex-direction: column;
}
}
.bio4-price {
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
margin: 0 auto;
padding: 20px;
text-align: center;
}

.bio4-price__heading {
color: #4834B5;
font-size: 32px;
font-weight: normal;
margin-bottom: 4px;
}

.bio4-price__subheading {
color: #333;
font-size: 14px;
margin-bottom: 40px;
}

.bio4-price__container {
display: flex;
justify-content: center;
gap: 60px;
margin-bottom: 30px;
margin-top:30px;
}

.bio4-price__plan {
flex: 0 1 280px;
text-align: center;
position: relative;
}

.bio4-price__number {
background: linear-gradient(45deg, #004080, #0080bf);
color: white;
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
font-weight: bold;
margin: 0 auto 20px;
}

.bio4-price__amount {
margin-bottom: 5px;
}

.bio4-price__value {
font-size: 36px;
font-weight: bold;
}

.bio4-price__unit {
color: #333;
font-size: 14px;
}

.bio4-price__tax {
color: #333;
font-size: 12px;
margin-bottom: 20px;
}

.bio4-price__account-box {
border-radius: 4px;
padding: 30px 20px;
position: relative;
margin-top: 20px;
background: white;
}

.bio4-price__account-box::before {
content: '';
position: absolute;
top: -2px;
right: -2px;
bottom: -2px;
left: -2px;
 background: linear-gradient(45deg, #004080, #0080bf);
border-radius: 6px;
z-index: -1;
}

.bio4-price__account-title {
color: #333;
font-size: 14px;
background: white;
padding: 0 15px;
position: absolute;
top: 0;
left: 50%;
transform: translate(-50%, -50%);
white-space: nowrap;
}

.bio4-price__account-text {
color: #4834B5;
font-size: 14px;
}

.bio4-price__save {
position: absolute;
top: -10px;
right: -10px;
width: 80px;
height: 80px;
background: linear-gradient(45deg, #004080, #0080bf);
color: white;
font-size: 12px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
line-height: 1.3;
text-align: center;
}

.bio4-price__note {
color: #333;
font-size: 14px;
line-height: 1.8;
margin: 40px 0 30px;
}

.bio4-price__features {
display: flex;
justify-content: center;
gap: 25px;
flex-wrap: wrap;
margin-top:30px;
margin-bottom:30px;
}
.price-text{
font-weight:bold;
}
.bio4-price__feature {
color: #333;
font-size: 14px;
display: flex;
align-items: center;
gap: 4px;
}
.under-lines{
	text-decoration:underline;
    color: #093bc9;
}

.bio4-price__feature::before {
content: "";
display: inline-block;
width: 16px;
height: 16px;
background-color: #4834B5;
border-radius: 50%;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
background-size: 12px;
background-position: center;
background-repeat: no-repeat;
}
.casino-official-btn {
background: linear-gradient(to bottom, #4e97ff 0%, #4e97ff 100%);
color: #ffffff;
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 4px;
padding: 14px 16px;
font-size: 14px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
font-weight: normal;
letter-spacing: normal;
line-height: 1.4;
cursor: pointer;
display: inline-flex;
align-items: center;
text-align: center;
white-space: nowrap;
position: relative;
text-decoration: none;
min-width: 200px;
font-weight:bold;
justify-content: center;
min-height: 20px;
box-shadow:
0 2px 4px rgba(0, 0, 0, 0.1),
0 4px 8px rgba(0, 0, 0, 0.1),
inset 0 1px 0 rgba(255, 255, 255, 0.15);
transition: all 0.2s ease;
}

.casino-official-btn::after {
content: '\f35d';
font-family: 'Font Awesome 5 Pro';
font-weight: 400;
margin-left: 6px;
font-size: 12px;
}

.casino-official-btn:hover {
background: linear-gradient(to bottom, #3d86ff 0%, #3d86ff 100%);
box-shadow:
0 4px 8px rgba(0, 0, 0, 0.15),
0 8px 16px rgba(0, 0, 0, 0.1),
inset 0 1px 0 rgba(255, 255, 255, 0.15);
transform: translateY(-1px);
}

.casino-official-btn:active {
background: linear-gradient(to bottom, #3075e8 0%, #3075e8 100%);
box-shadow:
0 1px 2px rgba(0, 0, 0, 0.1),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
transform: translateY(1px);
}
@media (max-width: 700px) {
.bio4-price__container {
flex-direction: column;
align-items: center;
}
.casino-official-btn {
text-decoration: none;
min-width: 130px;
}
.bio4-price__plan {
width: 100%;
max-width: 280px;
}
}
.plan2024-container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
background: linear-gradient(45deg, #004080, #0080bf);
color: #333;
}

.plan2024-content {
text-align: center;
background-color: white;
padding: 30px 10px;
border-radius: 8px;
position: relative;
}

.plan2024-text {
font-size: 16px;
line-height: 1.6;
margin-bottom: 25px !important;
font-weight: 500;
}

.plan2024-formula {
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
flex-wrap: wrap;
}

.plan2024-plan-box {
background: linear-gradient(45deg, #004080, #0080bf);
color: white;
padding: 8px 20px;
border-radius: 4px;
font-weight: bold;
}

.plan2024-equals,
.plan2024-plus {
font-size: 24px;
color: #333;
}

.plan2024-component-box {
border: 2px solid #1a237e;
color: #333;
padding: 8px 20px;
border-radius: 4px;
font-weight: 500;
}

.plan2024-badge {
position: absolute;
top: -15px;
right: -15px;
background-color: #ff6b6b;
color: white;
padding: 15px;
border-radius: 50%;
font-weight: bold;
font-size: 14px;
line-height: 1.2;
width: 80px;
height: 80px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

.plan2024-badge-small {
font-size: 12px;
}
.strong{
	font-weight:bold;
}
@media(max-width:768px){
	.plan2024-formula {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    flex-wrap: wrap;
    flex-direction: column;
}
span.plan2024-equals {
    transform: rotate3d(1, 1, 8, 90deg);
    display: block;
}
}
.sys2024-container {
max-width: 1200px;
margin: 0 auto;
padding: 40px 20px;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.sys2024-header {
text-align: center;
margin-bottom: 60px;
}

.sys2024-title {
font-size: 48px;
font-weight: 700;
margin: 0;
background: linear-gradient(135deg, #fff 0%, #a8a8a8 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
letter-spacing: -1px;
}

.sys2024-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
gap: 30px;
margin-bottom: 40px;
}

.sys2024-card {
border-radius: 20px;
padding: 30px;
position: relative;
overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
border: 1px solid rgb(0 0 0 / 10%);
transition: transform 0.3s ease, border-color 0.3s ease;
}

.sys2024-card:hover {
transform: translateY(-5px);
border-color: rgba(255, 255, 255, 0.2);
}

.sys2024-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 5px;
background: linear-gradient(45deg, #004080, #0080bf);
opacity: 0.8;
}

.sys2024-card-title {
font-size: 24px;
font-weight: 600;
margin: 0 0 20px 0;
position: relative;
}

.sys2024-price-tag {
font-size: 32px;
font-weight: 700;
margin: 15px 0;
display: flex;
align-items: baseline;
}

.sys2024-currency {
font-size: 20px;
margin-right: 4px;
opacity: 0.9;
}

.sys2024-amount {
font-family: 'SF Mono', monospace;
letter-spacing: -1px;
}

.sys2024-badge {
position: absolute;
top: 20px;
right: 20px;
background: linear-gradient(45deg, #004080, #0080bf);
padding: 8px 16px;
border-radius: 20px;
font-size: 14px;
font-weight: 600;
color:#fff;
letter-spacing: 0.5px;
text-transform: uppercase;
}

.sys2024-detail-row {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 0;
border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.sys2024-detail-row:last-child {
border-bottom: none;
}

.sys2024-detail-label {
color: #000;
font-size: 15px;
}

.sys2024-detail-value {
font-weight: 500;
font-size: 16px;
color: #fff;
}

.sys2024-note {
margin-top: 15px;
font-size: 14px;
color: #666;
line-height: 1.5;
font-style: italic;
}

.sys2024-highlight {
color: #f9cb28;
font-weight: 500;
}

@media (max-width: 768px) {
.sys2024-grid {
grid-template-columns: 1fr;
}
	.bio4-price{
		padding:0;
	}
	.sys2024-container{
padding:40px 0;
	}
.sys2024-title {
font-size: 36px;
}

.sys2024-card {
padding: 25px;
}
}
.shisha2024-container {
max-width: 1200px;
margin: 0 auto;
padding: 40px 20px;
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
color: #333;
}

.shisha2024-header {
text-align: center;
margin-bottom: 60px;
position: relative;
}

.shisha2024-title {
font-size: 48px;
font-weight: 800;
margin: 0;
background: linear-gradient(135deg, #005BAC 0%, #0088D1 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
letter-spacing: 2px;
}

.shisha2024-menu-card {
background: white;
border-radius: 24px;
box-shadow: 0 4px 30px rgba(0, 91, 172, 0.1);
overflow: hidden;
margin-bottom: 40px;
}

.shisha2024-price-table {
width: 100%;
border-collapse: separate;
border-spacing: 0;
margin-bottom: 0;
}

.shisha2024-price-table th,
.shisha2024-price-table td {
padding: 20px;
text-align: left;
border-bottom: 1px solid #e9ecef;
}

.shisha2024-price-table th {
background: linear-gradient(135deg, #005BAC 0%, #0088D1 100%);
color: white;
font-weight: 600;
font-size: 18px;
}

.shisha2024-price-table tr:last-child td {
border-bottom: none;
}

.shisha2024-price {
font-size: 24px;
font-weight: 700;
color: #005BAC;
}

.shisha2024-note {
font-size: 14px;
color: #666;
margin-top: 5px;
}

.shisha2024-guide {
padding: 40px;
background: linear-gradient(135deg, #005BAC 0%, #0088D1 100%);
color: white;
}

.shisha2024-guide-header {
text-align: center;
margin-bottom: 40px;
}

.shisha2024-guide-title {
font-size: 24px;
font-weight: 700;
color: white;
margin-bottom: 10px;
}

.shisha2024-guide-subtitle {
color:#fff !important;
font-size: 16px;
line-height: 1.6;
}

.shisha2024-steps {
display: flex;
flex-direction: column;
gap: 40px;
}

.shisha2024-step {
position: relative;
}

.shisha2024-step-header {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 30px;
padding: 20px;
background: rgba(255, 255, 255, 0.1);
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.2);
}

.shisha2024-step-number {
width: 40px;
height: 40px;
background: white;
color: #005BAC;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 20px;
}

.shisha2024-step-title {
font-size: 24px;
font-weight: 600;
color: white;
margin: 0 !important;
}

.shisha2024-flavor-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}

.shisha2024-flavor-category {
background: rgba(255, 255, 255, 0.1);
border-radius: 16px;
padding: 20px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
}

.shisha2024-category-header {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 15px;
}

.shisha2024-category-icon {
width: 32px;
height: 32px;
background: rgba(255, 255, 255, 0.2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
}

.shisha2024-category-title {
font-size: 18px;
font-weight: 600;
color: white;
margin: 0;
}

.shisha2024-flavor-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
gap: 10px;
}

.shisha2024-flavor-item {
background: rgba(255, 255, 255, 0.05);
padding: 8px 12px;
border-radius: 20px;
font-size: 14px;
transition: all 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.1);
text-align: center;
cursor: pointer;
}

.shisha2024-flavor-item:hover {
background: rgba(255, 255, 255, 0.15);
transform: translateY(-2px);
border-color: rgba(255, 255, 255, 0.3);
}

.shisha2024-step:not(:last-child)::after {
content: '';
position: absolute;
bottom: -20px;
left: 10%;
right: 10%;
height: 1px;
background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
.shisha2024-container {
padding: 0px;
margin-top:20px;
}

.shisha2024-title {
font-size: 36px;
}

.shisha2024-price-table th,
.shisha2024-price-table td {
padding: 15px;
}

.shisha2024-guide {
padding: 20px;
}

.shisha2024-flavor-grid {
grid-template-columns: 1fr;
}

.shisha2024-step-header {
padding: 15px;
}

.shisha2024-step-title {
font-size: 20px;
}
}
.menu2024-container {
margin: 0 auto;
padding: 40px 20px;
font-family: "Times New Roman", serif !important;
background: #f8f9fa;
}

.menu2024-frame {
border: 2px solid #005BAC;
position: relative;
padding: 40px;
background: white;
}

.menu2024-frame::before {
content: '';
position: absolute;
top: -2px;
left: 20px;
right: 20px;
bottom: -2px;
border: 1px solid #005BAC;
pointer-events: none;
}

.menu2024-frame::after {
content: '';
position: absolute;
top: 20px;
left: -2px;
right: -2px;
bottom: 20px;
border: 1px solid #005BAC;
pointer-events: none;
}

.menu2024-corner {
position: absolute;
width: 20px;
height: 20px;
border: 2px solid #005BAC;
background: white;
}

.menu2024-corner-tl { top: -2px; left: -2px; border-radius: 0 0 100% 0; }
.menu2024-corner-tr { top: -2px; right: -2px; border-radius: 0 0 0 100%; }
.menu2024-corner-bl { bottom: -2px; left: -2px; border-radius: 0 100% 0 0; }
.menu2024-corner-br { bottom: -2px; right: -2px; border-radius: 100% 0 0 0; }

.menu2024-title {
text-align: center;
font-size: 28px;
margin-bottom: 40px;
letter-spacing: 4px;
color: #005BAC;
}

.menu2024-section {
margin-bottom: 40px;
}

.menu2024-section:last-child {
margin-bottom: 0;
}

.menu2024-section-title {
font-size: 20px;
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 1px solid #005BAC;
color: #005BAC;
text-align:left !important;
}

.menu2024-item {
display: flex;
justify-content: space-between;
align-items: baseline;
margin-bottom: 12px;
font-size: 16px;
}

.menu2024-item:hover {
background: rgba(0, 91, 172, 0.05);
}

.menu2024-item-name {
flex: 1;
text-align:left !important;
}

.menu2024-item-jp {
font-size: 14px;
color: #666;
margin-left: 8px;
}

.menu2024-item-price {
font-family: "Times New Roman", serif;
white-space: nowrap;
margin-left: 20px;
color: #005BAC;
font-weight: 600;
}

.menu2024-note {
text-align: right;
font-size: 12px;
margin-top: 30px;
color: #666;
}

.menu2024-separator {
width: 100%;
height: 1px;
background: #005BAC;
opacity: 0.2;
margin: 30px 0;
}

.menu2024-category-label {
display: inline-block;
background: #005BAC;
color: white;
padding: 4px 12px;
border-radius: 4px;
font-size: 14px;
margin-bottom: 15px;
}
.c-balloon__text p{
	margin-bottom:0 !important;
}
#single-article h2{
    background: var(--key-Color);
    padding: .7em;
    color: #fff;
    margin: 2.5em 0 0.7em;
    font-size: 1.4em;
    line-height: 1.6;
    font-weight: 600;
}
#single-article h3 {
    margin: 2.6em 0 0.7em;
    padding: 10px 0 10px 10px;
    border-left-width: 4px;
    border-left-style: solid;
    font-size: 1.2em;
    line-height: 1.5;
}
#single-article h3 {
    border-left: solid 5px #f07008 !important;
    position: relative;
    margin-bottom: 1.5em;
}
.marker3 {
font-weight: bold;
    color: #f20000;
}
.memo_ttl {
    margin-bottom: 5px;
    color: #ffb36b;
    font-size: 1.2em;
    font-weight: bold;
}

.memo_ttl:before {
    content: "\f303";
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900;
	font-size: 17px;
}
.memo {
    margin-bottom: 1.5em;
    padding: 1em;
    background: #fff9e5;
    color: #545454;
}
.memo_ttl:before {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 0 3px 0 0;
    border-radius: 50%;
    background: #ffb36b;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    content: "\f303";
}

#single-article  h3::after {
    content: '';
    background: #ddd;
    position: absolute;
    height: 1px;
    width: 100%;
    bottom: -10px;
    left: 0;
}
@media (max-width: 768px) {
.menu2024-frame {
padding: 40px;
}

.menu2024-title {
font-size: 24px;
}

.menu2024-item {
font-size: 14px;
}
}
.cat-nav-wrapper {
margin: 0 auto;
padding: 40px 20px;
}

.cat-nav-tab-area {
margin-bottom: 40px;
width: 100%;
display: flex;
justify-content: center;
}

.cat-nav-tab-container {
width: 320px;
overflow-x: scroll;
position: relative;
}
.cat-nav-content-group{
flex-wrap:wrap;
}
.cat-nav-tab-container::-webkit-scrollbar {
height: 3px;
display: block;
}

.cat-nav-tab-container::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 2px;
}

.cat-nav-tab-container::-webkit-scrollbar-thumb {
background: #888;
border-radius: 2px;
}

.cat-nav-tab-container::-webkit-scrollbar-thumb:hover {
background: #555;
}

.cat-nav-tab-container {
scrollbar-width: thin;
scrollbar-color: #888 #f1f1f1;
}

.cat-nav-tabs {
display: flex;
padding-bottom: 12px;
width: max-content;
}

.cat-nav-tab-btn {
background: none;
border: 1px solid #1d1d1f;
border-radius: 20px;
padding: 8px 24px;
font-size: 14px;
cursor: pointer;
white-space: nowrap;
transition: all 0.3s ease;
margin-right: 12px;
flex-shrink: 0;
min-width: 80px;
text-align: center;
}

.cat-nav-tab-btn:last-child {
margin-right: 0;
}

.cat-nav-tab-btn:hover {
background-color: #1d1d1f;
color: #fff;
}

.cat-nav-tab-btn.is-active {
background-color: #1d1d1f;
color: #fff;
}
.cat-nav-item {
padding: 24px;
background-color: #fbfbfd;
transition: transform 0.3s ease;
width: 48%;
margin: 6px;
}

.cat-nav-item:hover {
transform: translateY(-4px);
}

.cat-nav-item-category {
font-size: 12px;
color: #6e6e73;
margin-bottom: 8px;
}

.cat-nav-item-title {
font-size: 17px;
font-weight: 500;
color: #1d1d1f;
margin-bottom: 8px;
}

.cat-nav-item-date {
font-size: 12px;
color: #6e6e73;
}

@media (max-width: 767px) {
.cat-nav-content {
grid-template-columns: 1fr;
}
}
@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/
.post_content{
  margin-top: 0 !important;
}
.sgb-box-simple__body {
    border: 2px solid #333;
    border-radius: 0 0 6px 6px;
    margin-top: -2px!important;
    padding: 0.7em 1.5em;
	    border-radius: 6px;
}

.wp-block-columns {
    --wp-column-gap: 0em;
    gap: 0;
    line-height: 1.6;
}
.scroll-table {
  max-width: 100%;
  white-space: nowrap;
}

.scroll-table table {
  border-collapse: collapse;
}
.post_content td, .post_content th {
    border: 1px solid var(--color_border--table, #dcdcdc) !important;
    padding: 0.5em;
}

.scroll-table th {
  background-color: #ddd;
}
table.tate .fixed01 {
  position: sticky;
  left: 0;
  color: #fff;
      background: var(--color_htag) !important;
  font-weight: bold;
  text-align: center;
z-index: 9999;
}
.tate th,td{
	text-align:center;
}
.konkyo {
    font-size: 12px !important;
    display: block;
    width: 100%;
    padding: 0 !important;
}
.box11 {
    margin: 2em 0;
    padding: 1.5em 1em;
    border-top: solid 5px #5d627b;
    background: white;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.22);
    color: #5d627b;
}
.wp-block-sgb-block-simple.sgb-box-simple.sgb-box-simple--title-overwrap.sgb-box-simple--with-border{
	position:relative;
}
div#content {
    padding: 0 10px;
}
.sgb-box-simple--title-overwrap .sgb-box-simple__title {
    background: #fff!important;
    display: inline-block;
    font-size: 19px;
    left: 263px;
    line-height: 1.4;
    margin: 0 7px;
    border-radius: 6px 6px 0 0;
    font-weight: 700;
    padding: 0 9px;
    position: absolute;
    /* top: -14px; */
    color: #5ba9f7;
    top: -13px;
}
.sgb-box-simple__body {
    padding: 20px 15px 20px 15px!important;
}
.swap-table a{
	color:#fff;
}
.red {
    color: #c11b26 !important;
    font-weight: 700;
}
.blue {
    color: #009EF3;
}
.table-blue {
    color: #3366ff;
    font-weight: bold;
}
.table-back-blue {
    background-color: #e3eaff;
}
.table-red {
    color: #ff0000;
    font-weight: bold;
}
.table-back-red {
    background-color: #fff2f2;
}
.fa-solid, .fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.fa-comments:before {
    content: "\f086";
}
.box3 {
    margin: 2em 0px;
    padding: 1.5em 1em;
    background: #eaedf29e;
    padding-top: 0px;
    padding-left: 0;
}
.box3 p{
	padding-left:1em;
}
.labeltext {
    display: inline-block;
    margin-right: 5px;
    padding: 10px;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: bold;
    line-height: 1;
	margin-bottom:10px;
}
.quote-text{
	text-align:right;
	display:block;
}
.plof-flex {
    position: relative;
    display: flex !important;
    box-sizing: border-box;
}
.editorface {
    margin-right: 10px;
}
.custom_pic {
    width: 80px;
    height: auto;
    border-radius: 100px;
}
.is-style-onborder_ttl2 .cap_box_content {
    min-height: 380px;
}
.th-blue {
    background: #579EC5 !important;
    color: #ffffff !important;
}
.th-red {
    background: #D37CAD !important;
    color: #ffffff !important;
}
.td-red {
    background: #ffeff7 !important;
}
.td-blue {
    background: #eaf4ff !important;
}
.p-termHead__desc>* {
    clear: both;
    margin-bottom: 2em;
}
.l-content {
    padding-top: 0;
}
.green-border{
	border:3px solid #055A05;
	padding:20px !important;
}
.is-style-big>.swell-block-step__item:before {
    z-index: 1000;
}
.list-rank {
    margin-top: 0!important;
    font-size: 20px !important;
    font-weight: 700;
    margin-bottom: 0px !important;
    padding-top: 0 !important;
    text-align: center;
}
[data-cell1-fixed] thead tr>:first-child{
	z-index:999;
}
.sng-box .box-content .li-chevron ul{
	border:none !important;
}
.submit-btn input {
  max-width:300px;
  background:#fff;
  padding:11px 31px 11px 31px;
  border:solid 1px #02343b;
  text-decoration: none;
  display:block;
  margin-top:17px;
  position: relative;
  z-index: 1;
  transition: .3s;
  margin:0 auto;
  margin-top:3%;
	text-align: center;
}
.submit-btn input:hover {
	background: #fff;
	color: #00142c;
}
.strong{
  font-weight: 900;
}
.big{
  font-size: 18px;
}
.swell-block-faq .faq_q:before{
  border-radius: 20px !important;
  background-color: #D55656;
  color: #fff !important;
  border-color:#D55656;
}
.swell-block-faq .faq_a:before{
    border-radius: 20px !important;
  color: #fff;
background-color: #6599B7;
}
.post_content td{
  vertical-align: middle;
}
.post_content th{
 background: var(--color_htag) !important;
 color: #fff !important;
vertical-align: middle;
	min-width: 150px;
}
.post_content .swell-block-button .swell-block-button__link[data-has-icon]{
  width: 100%;
  border-radius: 3px;
}
.post_content .is-style-btn_solid.blue_ a{
  width: 100%;
  border-radius: 3px;
}
[class*=is-style-btn_] a{
  background: #4bb739;
}
.shiny-button{
  border-bottom: 5px solid #2f8a0a;
}
.is-style-btn_shiny a {
  font-size: 20px;
}
.gray-huki {
    display: inline-block;
    position: relative;
    padding: 0 25px;
    color: #9e9e9e;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 1px;
}
.gray-huki:before {
    left: 0;
    -webkit-transform: rotate(50deg);
    transform: rotate(50deg);
    display: inline-block;
    position: absolute;
    top: 50%;
    width: 20px;
    height: 3px;
    border-radius: 3px;
    background-color: #9e9e9e;
    content: "";
}
.gray-huki:after {
    right: 0;
    -webkit-transform: rotate(-50deg);
    transform: rotate(-50deg);
    display: inline-block;
    position: absolute;
    top: 50%;
    width: 20px;
    height: 3px;
    border-radius: 3px;
    background-color: #9e9e9e;
    content: "";
}
@media (max-width: 768px){
.gray-huki {
    font-size: 16px;
}
}
.button-top {
    margin-bottom: 3px;
}
@media (min-width: 960px){
#main_content .p-toc {
    width: 100%;
}
}
/* タイムライン装飾 */
.entry-content .tl {
  margin: 1em 0;
}
.tl_marker.main-bdr.main-bc {
  border-color: var(--color_htag);
}
.tl-content {
  position: relative;
  padding: 0 0 1.5em 1.8em;
}
.tl-content:before {
  content: "";
  width: 3px;
  background: #ccd5db;
  display: block;
  position: absolute;
  top: 24px;
  bottom: 0;
  left: 6px;
}
.tl_marker {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: solid 3px;
}
.tl-content:not(:first-of-type):not(:last-of-type) .tl_marker {
  background: transparent;
}

.tl-content:last-of-type:before {
  content: none;
}
.tl_label {
  padding-top: 2px;
  color: #90969a;
  font-size: 14px;
  font-weight: bold;
}
.tl_title {
  font-size: 1.1em;
  font-weight: bold;
  line-height: 1.5;
}
.tl_main {
  margin-top: 0.5em;
  padding: 0 0 1.5em;
  font-size: 0.9em;
  line-height: 1.6;
  border-bottom: dashed 1px #ccd5db;
}
.main-bc{
  background: var(--color_htag);
}
/* 余白の調整 */
.tl_main > * {
  margin: 0.7em 0 0;
}
.tl_main > ul,
.tl_main > ol {
  margin: 0;
  padding: 0.3em 0 0.3em 1.3em;
  border: none;
}
.tl_main .sng-box {
  margin-top: 1em;
}
.tl_main .box28,
.tl_main .box30,
.tl_main .box31,
.tl_main .box32,
.tl_main .box33 {
  margin-top: 2.3em;
}
.red-title{
  background: #d33 !important;
}
.red-border{
  border-color: #d33 !important;
}
.red-background{
  background: #ffd4d4 !important;
}

.red-background .is-style-num_circle li::before{
  background: #d33 !important;
  box-shadow: none;
}

/* output-article */
.c_linkto.longc_linkto {
  max-width: 100%;
  display: table;
}
.longc_img {
  width: 40%;
}
.longc_img, .c_linkto.longc_linkto .longc_content {
  display: table-cell;
  vertical-align: middle;
}
.longc_img img {
  width: 100%;
  padding: 10px !important;
  margin: 0 !important;
}
.c_linkto .c_linkto_text {
  display: block;
  padding: 15px 13px;
  line-height: 1.6;
}
.longc_content {
  width: 60%;
}
.longc_linkto {
  margin-bottom: 1.5em;
  box-shadow: 0 1px 5px 0 rgb(0 0 0 / 25%);
}
.c_linkto {
  display: block;
  overflow: hidden;
  max-width: 400px;
  width: 100%;
  margin: 1em 0;
  padding: 0;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 2px 4px rgb(0 0 0 / 25%);
  color: #555;
  font-weight: bold;
  text-decoration: none !important;
}

@media(max-width:768px){
  .c_linkto .c_linkto_text {
    display: block;
    padding: 20px 13px 20px 13px;
    line-height: 1.6;
  }
  .longc_img img {
    padding: 10px 10px 0 10px;
  }
  .longc_img {
    width: 100%;
  }
  .longc_img, .c_linkto.longc_linkto .longc_content{
    display: block;
    width: 100%;
  }
}
.m-contents a{
  text-decoration: underline;
  font-weight: 900;
}

@media screen and (min-width: 768px){
.c-section-widget__inner {
    padding-top: 45px;
    padding-bottom: 50px;
}
}
/* .post_content div>:first-child, .post_content>:first-child{
  margin-top: 10px !important;
} */
.author-info__inner .tb{border-radius:3px;background:#fff;box-shadow:0 0 6px gray}.author-info.pastel-bc{padding:0}.tb{display:table;width:100%}.tb-right p{margin-bottom:0}.author-info__inner .tb-left{width:220px;border-right:2px #eaedf2 dashed;text-align:center;padding:20px 20px 20px 20px}.author-info__inner .tb-left .aut{display:block;width:100%;padding:0;vertical-align:middle;line-height:1.3}.author-info__inner .tb-left dt{font-size:19px;font-weight:bold;margin-top:25px}.author-info__inner .tb-left dd{padding-top:4px;color:#686868;font-size:15px;font-weight:bold}.tb-left,.tb-right{display:table-cell;vertical-align:middle}.author-info__inner .tb-right{width:calc(100% - 220px);padding:20px;font-size:1rem;line-height:1.7}.follow_btn{margin:17px 8px 13px 0}.author_label span{display:inline-block;position:relative;min-width:220px;max-width:100%;margin:0 0 15px;padding:6px 12px;border-radius:20px;background:#eaedf2;color:#555;font-size:16px;font-weight:bold;z-index:2;margin-bottom:20px}.author_label span:before{position:absolute;top:100%;left:33px;border:13px solid transparent;border-top:solid 10px #eaedf2;content:""}.author_label span::before{z-index:-1;top:calc(100% - 15px);left:50px;border:15px solid transparent;border-top:solid 30px #eaedf2;transform:rotate(-40deg)}.author-info__inner{margin-top:30px}.author_img{display:inline-block;width:100%;height:auto;margin:0;vertical-align:middle}.author_img img{margin-top:10px !important;border:solid 5px #dfe2e8;border-radius:50%;margin:0 auto;display: block;}.servise-deta01 .list-group{margin-bottom:80px}.btn-d{font-size:1rem;position:relative;padding:1rem;color: #fff !important;text-align: center;background:#4bb739;-webkit-box-shadow:0 5px 0 #2f8a0a;box-shadow:0 5px 0 #2f8a0a;font-weight:900;display:block;width:100%}.btn-d span{font-size:1.5rem;position:absolute;top:-1.25rem;left:calc(50% - 150px);display:block;width:300px;padding:.2rem 0;color:#d44114;border:2px solid #d44114;border-radius:100vh;background:#fff;-webkit-box-shadow:0 3px 3px rgba(0,0,0,0.2);box-shadow:0 3px 3px rgba(0,0,0,0.2)}a.btn-d span:before,a.btn-d span:after{position:absolute;left:calc(50% - 10px);content:""}.btn-d span:before{bottom:-10px;border-width:10px 10px 0 10px;border-style:solid;border-color:#d44114 transparent transparent transparent}.btn-d span:after{bottom:-7px;border-width:10px 10px 0 10px;border-style:solid;border-color:#fff transparent transparent transparent}.btn-d i{margin-right:1rem}.btn.btn-d{color:#fff;font-size:18px;}.author-info.pastel-bc{margin-bottom:30px}#toc_container p.toc_title{margin-top:30px}@media(max-width:768px){.btn.btn-c{font-size:21px}.author-info.pastel-bc{width:100%}.author_label{margin-top:0;margin-bottom:10px}.author-info__inner{margin-bottom:30px}.author-info__inner .tb-left{width:36%;border-right:0;margin-top:30px}.author-info__inner .tb-right{width:100%;padding: 10px 10px 20px 10px}.tb-right p{text-align:center}.author-info__inner .tb{box-shadow:0 0 4px grey}.follow_btn.dfont{text-align:center;width:100%}.servise-deta01 .list-group{margin-bottom:30px}.btn-cv a{font-size:1em}}
btn-square{display:inline-block;padding:.5em 1em;text-decoration:none;background:#4bb739;color:#FFF !important;border-bottom:solid 4px #2f8a0a;border-radius:3px;margin:0 auto;text-align:center;display:block}.btn-square:active{-webkit-transform:translateY(4px);transform:translateY(4px);border-bottom:0}.twitter-tweet.twitter-tweet-rendered{margin:0 auto}
/*吹き出し（会話形式）[say]*/
.say {
  display: table;
  overflow: hidden;
  width: 100%;
  margin: 1.5em 0;
}

.faceicon {
  display: table-cell;
  width: 110px;
  padding-right: 20px;
  text-align: center;
  vertical-align: top;
}

.faceicon img {
  width: 100%;
  background: #fff;
  height: auto;
  border: solid 3px #eaedf2;
  border-radius: 50%;
}
.faceicon span {
  font-size: 11px;
  font-weight: bold;
  margin-top: 0;
  line-height: 1;
  display: block;
  text-align: center;
}
.chatting {
  display: table-cell;
  position: relative;
  width: calc(100% - 100px);
  font-size: 0.95em;
  vertical-align: top;
}

.sc {
  display: inline-block;
  text-align: left;
  padding: 13px;
  font-size: 16px;
  border: solid 2px #d5d5d5;
  border-radius: 12px;
  background: #fff;
  word-break: break-word;
}
.sc:before {
  display: inline-block;
  position: absolute;
  top: 18px;
  left: -23px;
  border: 12px solid transparent;
  border-right: 12px solid #d5d5d5;
  content: "";
}
.sc:after {
  display: inline-block;
  position: absolute;
  top: 18px;
  left: -20px;
  border: 12px solid transparent;
  border-right: 12px solid #fff;
  content: "";
}
.sc p {
  margin: 5px 0;
  padding: 0;
}

/*吹き出し（右）*/
.right {
  text-align: right;
}
.right .faceicon {
  padding: 0 0 0 20px;
}
.right .sc:before,
.right .sc:after {
  right: -23px;
  left: auto;
  border: 12px solid transparent;
  border-left: 12px solid #d5d5d5;
}
.right .sc:after {
  right: -20px;
  border-left-color: #fff;
}
/* CTA_02 */
.cat02webpage {
  position: relative;
  margin: auto;
  display: block;
  margin-top: 3%;
  width: 100%;
  height: 400px;
  background: linear-gradient(rgba(0, 95, 160, 0.85), rgba(17, 129, 191, 0.95)), url("https://o-itoma.jp/wp-content/uploads/2021/12/oitoma-cta.png");
  z-index: 1;
  -webkit-box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.3);
}

.right-triangle {
  position: absolute;
  bottom: 0%;
  right: 0%;
  height: 100%;
  width: 50%;
  background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.6)), url("https://o-itoma.jp/wp-content/uploads/2021/12/oitoma-cta.png");
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.white-brand-box {
  position: absolute;
  width: 200px;
  top: 15%;
  left: 10.5%;
  z-index: 2;
}

.presents-text {
  position: absolute;
  top: 17%;
  left: 10.5%;
  color: #fff;
  font-size: 24px;
  font-weight: normal;
}

.cta02title {
  position: absolute;
  top: 33%;
  left: 10%;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  line-height:1.2
}

.cta02cta-button {
  position: absolute;
  width: 300px;
  display: block;
  left: 10%;
  top: 70%;
  background: #FF0000;
  border-radius: 0%;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  transition: .4s;
}

.cta02cta-button a{
  color: #fff !important;
}

.cta02cta-button:hover {
  background: #91b5fb;
}

@media(max-width:768px){
  .cta02cta-button {
    width: 80%;
  }
  .cta02cta-button{
left: 3%;
  }
  .presents-text{
    top: 8%;
  }
  .cta02title{
    top: 31%;
  }
}

@media all and (max-width: 600px) {
  .cat02webpage {
    position: relative;
    margin: auto;
    display: block;
    margin-top: 10px;
    width: 100%;
    height: 200px;
    z-index: 1;
  }

  .white-brand-box {
    border: solid 3px #ffffff;
  }

  .presents-text {
    font-size: 15px;
  }

  .cta02title {
    font-size: 24px;
  }

  .cta02cta-button {
    font-size: 16px;
  }

  .branding-logo {
    border: solid 3px #ffffff;
  }
}
.p-termHead__desc{
  border: none;
}
@media(max-width:768px){
  span.c-pageTitle__inner {
    font-size: 19px;
}
.p-termHead__desc{
  padding: 0 !important;
}
}
.memo {
    margin-bottom: 1.5em;
    padding: 1em;
    background: #fff9e5;
    color: #545454;
}
.memo_ttl {
    margin-bottom: 5px;
    color: #ffb36b;
    font-size: 1.2em;
    font-weight: bold;
}
.memo_ttl:before {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 0 3px 0 0;
    border-radius: 50%;
    background: #ffb36b;
    color: #fff;
      font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    text-align: center;
    vertical-align: middle;
    content: "\f303";
}
.memo.alert {
    background: #ffebeb;
}
.memo.alert .memo_ttl {
    color: #ff8376;
}
.memo.alert .memo_ttl:before {
    background: #ff8376;
    content: "\f12a";
}
.p-box {
    position: relative;
    background-color: #fff;
    border: 2px solid #cfd8dc;
    border-radius: 5px;
    margin: 30px 0 30px 0;
    padding: 10px 20px 15px 10px;
}
.p-box .p-box-title {
    position: absolute;
    left: -10px;
    top: -20px;
    border-radius: 15px;
    background-color: #90a4ae;
    color: #fff;
    font-family: FontAwesome, Helvetica, Yu Gothic;
    font-size: 14px;
    font-weight: 700;
    padding: 5px 20px;
}
.p-box.p-green {
    border: 2px solid #003e96;
}
.p-box.p-green .p-box-title {
    background-color: #003e96;
}
.p-box ul {
    list-style-type: none;
    border: 0;
    margin: 0;
    padding: 0;
}
.p-box ul li {
    list-style-type: none !important;
    position: relative;
    line-height: 1.5;
    padding-bottom: 9px;
    font-size: 18px;
}
.p-box.p-green ul li:before {
    content: "\f00c";
    color: #003e96;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding-right: 10px;
}
.p-box.p-red {
    border: 2px solid #d33 !important;
}
.p-box.p-red .p-box-title {
    background-color: #d33 !important;
}
.p-box.p-red ul li:before {
    content: "\f00c";
    color: #d33;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding-right: 10px;
}
.box29 {
    margin: 2em 0;
    border: solid 2px #ffc107;
    background: #fff;
}
.box-title {
    font-weight: bold;
}
.box29 .box-title {
    display: inline-block;
    position: relative;
    top: -2px;
    padding: 2px 9px;
    background: #ffc107;
    color: #fff;
    font-size: 17px;
    line-height: 1.5;
}
.box29 .box-title:before {
    padding-right: 4px;
font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    content: "\f0eb";
}
.box29 .box-content {
    padding: 15px;
}
.sc ul, .sc ol, .list-raw ul, .list-raw ol, .sng-box ul, .sng-box ol, .memo ul, .memo ol {
    margin: 5px 0;
    padding: 0 0 0 1.4em;
    border: none;
    box-shadow: none;
    background: transparent;
}
.li-check ul {
    position: relative;
    padding: 1em 0.5em 1em 2.5em;
    border: solid 2px #ffb03f;
    background: #fff;
}
.li-chevron li, .li-check li, .li-yubi li, .li-niku li {
    list-style-type: none !important;
    padding: 0.5em 0;
    line-height: 1.5;
    font-size: 18px;
}
.li-check li:before {
    position: absolute;
    left: 1em;
    color: #ffb03f;
font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    content: "\f00c";
    left: -26px;
}
.sng-box .li-check li:before{
  left: -35px;
}
h1.c-pageTitle {
    margin-bottom: 30px;
}
.sng-box .li-check ul{
  border: none !important;
}
.is-style-faq-box .swell-block-faq__item {
    border: 1px solid var(--color_border);
    background: #fff;
}
.is-style-faq-box .faq_q {
    border-bottom: 1px dashed var(--color_border);
}
.swell-block-faq .faq_q {
    font-weight: 700;
    line-height: 1.5;
    padding: 1em 1em 1em 3em;
    position: relative;
}
.is-style-faq-box .faq_a:before, .is-style-faq-box .faq_q:before, .is-style-faq-stripe .faq_a:before, .is-style-faq-stripe .faq_q:before {
    left: 1em;
    position: absolute;
    top: 1em;
}
.swell-block-faq .faq_q:before {
    border-radius: 4px;
    content: "Q";
    display: block;
    font-family: Arial,sans-serif;
    font-weight: 400;
    line-height: 2;
    position: absolute;
    text-align: center;
    width: 2em;
}
.is-style-faq-box .faq_a, .is-style-faq-box .faq_q, .is-style-faq-stripe .faq_a, .is-style-faq-stripe .faq_q {
    padding: 1.25em 1em 1.25em 4em;
}
.swell-block-faq .faq_a:before {
    border-radius: 4px;
    content: "A";
    display: block;
    font-family: Arial,sans-serif;
    line-height: 2;
    position: absolute;
    text-align: center;
    width: 2em;
}
.faq_a:before, [data-q=col-main] .faq_q:before {
    box-shadow: 0 0 0 1px currentColor;
    color: var(--color_main);
}
/*メニューをページ下部に固定*/
#sp-fixed-menu{
   position: fixed;
   width: 100%;
   bottom: -7px;
   font-size: 0;
   z-index: 996;
}

/*メニューを横並びにする*/
#sp-fixed-menu ul{
   list-style: none;
   padding:0;
   margin:0;
   width:100%;
}

#sp-fixed-menu li{
   width: 100%;
   padding:0;
   margin:0;
   font-weight: bold;
   font-size: 14px;
   letter-spacing: 4px;
}

/*ボタンを調整*/
#sp-fixed-menu li a{
   color: #fff;
   text-align: center;
   display:block;
   width: 100%;
   /* padding:14px; */
}
/*PCの場合にはメニューを表示させない*/
@media (min-width: 768px) {
   .for-sp{
      display:none;
    }
}
#cta04 {
    width: 100%;
    padding: 20px;
    background: #555;
    box-sizing: border-box;
    color: #fff;
    text-align: center;
    font-size: 120%;
}

#cta04 .cta04title {
    font-size:1.6em;
    font-weight:600;
    margin-top:0;
    line-height: 1.3;
}

#cta04 img {
    margin-top: 20px;
    margin-bottom: 30px;
}
#cta04 ul {
    margin: -10px 0 30px 0px;
    list-style: none;
    border:none;
    padding: 0;
}

#cta04 ul li:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: silver;
    content: "\f105";
    padding-left: 0;
    margin-right: 15px;
    line-height:  1.8;
}
#cta04 .gray-huki{
      color: #fff !important;
}
#cta04 .gray-huki:before,#cta04 .gray-huki:after{
    background-color: #fff !important;
}

/* #cta04 a {
    width: 100%;
    height: 60px;
    margin: 0 auto;
    line-height: 62px;
    color: #fff;
    text-align: center;
    background: #0090ff;
    box-shadow: 0 4px 0 rgba(0,95,160,1);
    display: block;
    text-decoration: none;
    text-shadow: 0 1px 1px rgba(0,0,0,.09);
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
#cta04 a:hover {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
    box-shadow: none;
}

#cta04 .ctatext04 {
    display: inline-block;
    position: relative;
    margin:0;
} */

.ctatext04:before, .ctatext04:after {
    display: inline-block;
    position: absolute;
    top: 50%;
    width: 22px;
    height: 2px;
    border-radius: 3px;
    background-color: #FFF;
    content: "";
    margin: auto -30px;
}
.ctatext04:before {
transform: rotate(50deg);
}
.ctatext04:after {
transform: rotate(-50deg);
margin-left: 10px;
}
@media screen and (min-width: 768px){
#cta04 {
    padding: 30px 60px;
}
#cta04 img {
    max-width: 100%;
    height: auto;
    width: auto;
}
#cta04 ul {
    text-align: left;
}
}
@media screen and (max-width: 600px){
#cta04 {
    padding: 20px 14px 3px;
    background: #707070;
}

#cta04 .cta04title {
     font-size: 19px;
    margin-top: 20px;
    line-height: 1.5;
}
#cta04 ul li {
    font-size: 0.8em;
    text-align: left;
    line-height: 1.4;
    margin-bottom: 15px;
}
#cta04 .ctatext04 {
    font-size: 13px;}
.ctatext04:before, .ctatext04:after {
width:15px;
}
#cta04 img {
    margin-bottom: 20px;
}
}
/* CTA_05 */
.cta05-cvset {
    padding: 0px 0 0;
}
.cta05-cvset .cta05-inner {
    background-color: #e8f3fc;
    padding: 10px 0 20px;
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.cta05-cvset .cta05-inner ul {
    list-style:none;
    margin-top: 90px;
    padding-inline-start:0;
    border: none;
    padding: 0;
}

.cta05-cvset-title {
    position: relative;
    font-size: 1.8em;
    line-height: 0.6em;
    font-weight: 800;
    font-style: normal;
    letter-spacing: .1em;
    position: absolute;
    top: 66px;
    left: 0;
    text-align: center;
    width: 100%;
}
.cta05-cvset-title .deco {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    color: #005fa0;
    white-space: nowrap;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.cta05-cvset-title .deco:before, .cta05-cvset-title .deco:after {
    display: inline-block;
    position: absolute;
    top: 42%;
    width: 28px;
    height: 2px;
    border-radius: 3px;
    background-color: #005fa0;
    content: "";
    margin: auto -35px;
}
.cta05-cvset-title .deco:before {
    left: 0;
    -webkit-transform: rotate(50deg);
    transform: rotate(50deg);
}

.cta05-cvset-title .deco:after {
    right: 0;
    -webkit-transform: rotate(-50deg);
    transform: rotate(-50deg);
}

.cta05-cvset-list {
    display: flex;
    width: 100%;
    max-width: 780px;
    justify-content: space-between;
    margin: 0 auto;
}
.cta05-cvset-list li {
    max-width: 360px;
    width: 100%;
    margin: 0 5px;
}
.cta05-cvset-list img {
    width:100%;
    text-align:center;
}
.cta05-button.dwl, .cta05-button.etm {
    background-color: #fff;
    border: 3px solid #005fa0;
    color: #005fa0;
}
.cta05-button.dwl, .cta05-button.dmo, .cta05-button.etm {
    height: 96px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4em;
    text-align: center;
    flex-direction: column;
    white-space: nowrap;
    text-decoration: none;
}
.cta05-button.dmo {
    background-color: #005fa0;
    border: 3px solid #005fa0;
    color: #fff;
}
.cta05-button {
    position: relative;
    display: flex;
    width: 100%;
    height: 72px;
    text-align: center;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 12px;
    margin: 0;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 6px 10px -2px rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.2);
    transition: 0.2s ease-in-out;
}
.cta05-button.free::after {
    content: "無料";
    position: absolute;
    display: block;
    top: -17px;
    right: 8px;
    width: 80px;
    height: 30px;
    font-size: 16px;
    font-weight: bold;
    line-height: 32px;
    text-align: center;
    background-color: #FF0000;
    color: #fff;
    border-radius: 16px;
}
.cta05-button.dwl:hover, .cta05-button.dmo:hover, .cta05-button.etm:hover {
    background-color: #6bb6ff;
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}
.cta05-button.dwl small, .cta05-button.dmo small, .cta05-button.etm small {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2em;
    letter-spacing: 0;
    margin-bottom: 4px;
    white-space: nowrap;
}
.seo-sp{display: none;}

@media screen and (max-width: 768px){
.cta05-cvset .cta05-inner {
    padding: 40px 20px 32px;
}
.cta05-cvset-list {
    flex-direction: column;
    align-items: center;
    padding-bottom: 16px;
}
.cta05-button.dwl small, .cta05-button.dmo small, .cta05-button.etm small {
    font-size: 12px;
}
.cta05-cvset-title {font-size: 24px; line-height: 1.4;top: 53px;}
.cta05-cvset-title .deco{font-size: 17px;margin-bottom: 0;}
.seo-sp{display: block;}
}
.yellow {
    color: #fff100;
    font-weight: 900;
}
#hikaku-table td, #hikaku-table th {
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}
#hikaku-table td {
    border-color: #a9a9a9!important;
}
#hikaku-table img{
  width: 100%;
  padding: 0 20px;
}
.table-cta-simple a {
    width: 75%;
    display: block;
    text-decoration: none;
    padding: 9px;
    background: #f1742c;
    color: #fff!important;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 4px 0 #d16323;
    margin: 0 auto;
    position: relative;
    transition: .3s;
}
.table-cta-simple {
    margin-top: 0!important;
    margin-bottom: 10px;
}
.tadv-color {
    color: #cf2e2e;
}
.starList {
    color: #FC3;
    display: inline-block;
}
@media(max-width:768px){
  .table-cta-simple{
    margin-top: 10px !important;
  }
  [class*=is-style-btn_] a {
    padding: 0.75em 0.5em !important;
}
}
/* YES・NO チャート */
.yn-chart{
  margin:0 auto 2rem;
  padding: 2em;
  max-width: 600px;
  background:#e2eaed;
  box-shadow: 0 3px 5px rgba(0,0,0,.07);
  font-size:0.9rem;
}
.yn-chart__add{
  background: #00142c;
  color:#fff;
  padding: 0.2em 0.9em !important;
  margin:0 !important;
  text-align:center;
  display:inline-block;
  line-height: 1.5 !important;
}
.yn-chart__title{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 0.5em 0 0.3em!important;
  margin: 0 auto !important;
  font-size:1.35em !important;
  font-weight: 600 !important;
  color:#00142c;
  letter-spacing: 1px !important;
  line-height:1.5 !important;
}
.yn-chart__title:before,.yn-chart__title:after {
  content: "";
  flex: 1;
  height: 1px;
  background: #00142c;
  display: block;
}
.yn-chart__title:before {
  margin-right: 0.7em;
}
.yn-chart__title:after {
  margin-left: 0.7em;
}
.yn-chart__ex{
  text-align:center;
  padding: 0 !important;
}
.yn-chart > div{
  display:none;
  padding-top: 100px;
  margin-top: -100px;
}
.yn-chart > div.yn-chart__display{
  display:block;
}
.yn-chart > div > figure{
  margin:1em 0 2em;
}
.yn-chart > div > figure img{
  display:block;
}
.yn-chart > div > p{
  margin:2em 0 0 !important;
  padding: 0.8em 1em 0.8em 4.3em !important;
  background:#fff;
  position:relative;
}
.yn-chart > div > p:before{
  content: "Q";
  background: #00142c;
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1em;
  min-width: 48px;
}
.yn-chart > div ul{
  margin:2em 0 0 !important;
  padding:0 !important;
  list-style:none !important;
  border:none;
}
.yn-chart > div ul li {
  margin: 0 0 1em 1em!important;
  padding: 0 !important;
}
.yn-chart > div ul li:last-child{
  margin:0 0 0 1em !important;
}
.yn-chart > div ul li a{
  background: #fff;
  display: block;
  padding: 0.8em !important;
  text-decoration: none;
  color: #333;
  box-shadow: 0 3px 5px rgba(0,0,0,.07);
}
.yn-chart > div ul li a:hover{
  box-shadow: inset 2px 2px 0 0 #ee8f81, 2px 2px 0 0 #ee8f81, 2px 0 0 0 #ee8f81, 0 2px 0 0 #ee8f81;
  transition: 0.1s ease-in-out;
  opacity:1;
}
.yn-chart > div ul li:before{
  content:unset !important;
}
.yn-chart__result{
  background:#fff;
  padding:1em;
}
.yn-chart__result-title{
  color: #00142c;
  font-size: 1.1em !important;
  font-weight:600 !important;
  padding: 0 !important;
  margin: 0 0 1em !important;
  border-bottom: 1px dashed #00142c;
}
@media screen and (max-width: 560px) {
  .yn-chart{
    padding:1.8em 1.3em;
  }
  .yn-chart > div > figure {
    margin: 0.5em 0;
  }
  .yn-chart > div > p {
    margin: 1em 0 0 !important;
    padding: 0.8em 1em 0.8em 3.3em !important;
  }
  .yn-chart > div ul {
    margin: 1em 0 0 !important;
  }
  .yn-chart__title{
    font-size:1em !important;
  }
  .yn-chart__title:before {
    margin-right:0.3em;
  }
  .yn-chart__title:after {
    margin-left:0.3em;
  }
  .yn-chart__ex,.yn-chart__add{
    font-size:0.9em !important;
  }
  .yn-chart > div > p:before{
    min-width: 30px;
  }
}
/* Twitterシェアボタンなど */
.p-tw-btn,.p-check-btn{
  text-align:center;
  margin:1.5em 5em !important;
  padding:0 !important;
}
.p-tw-btn a,.p-check-btn a{
  display:block;
  box-shadow: 0 3px 5px rgba(0,0,0,.15);
  color:#fff !important;
  font-weight:600 !important;
  text-decoration:none !important;
  padding:0.5em 0;
  border-radius:30px;
}
.p-tw-btn a{
  background: #00acee;
}
.p-check-btn a{
  background:#00142c;
}
.p-tw-btn a:hover,.p-check-btn a:hover{
  transform: translateY(3px);
  box-shadow: 0 2px 2px rgba(0,0,0,.22);
}
.yn-chart > div > p.p-check-btn{
  background: none !important;
  padding: 0 5em !important;
}
.yn-chart > div > p.p-check-btn:before{
  content:unset !important;
}
@media screen and (max-width: 800px) {
  .p-tw-btn,.p-check-btn{
    margin:1.5em 3em !important;
  }
}
@media screen and (max-width: 560px) {
  .p-tw-btn,.p-check-btn{
    margin:1.5em 1em !important;
  }
  .yn-chart > div > p.p-check-btn{
    padding: 0 3em !important;
  }
}
.single span.p-breadcrumb__text {
    display: block !important;
}
.p-profileBox__text {
    font-size: 14px;
    line-height: 2em;
}
.under-lines{
  font-weight: 900;
  text-decoration: underline;
}
.post_content iframe {
    width: 100%;
    height: 440px;
}
@media(max-width:768px){
  .post_content iframe {
    height: 210px;
}
}
#footerFloatingMenu {
  display: none;
}
@media (max-width: 768px){
  #footerFloatingMenu {
    display: block;
    position: fixed;
    z-index: -1;
    left: 0;
    right: 0;
    padding: 0 auto;
    width: 100%;
    bottom: -7px;
    font-size: 0;
  }
}
.footer_libe {
  width: 100%;
}
#footerFloatinMenu-tel-and-line,#new-footerFloatinMenu-tel-and-line{
  display: none;
}
@media(max-width:768px){
  #footerFloatinMenu-tel-and-line{
    z-index: -1;
    position: fixed;
    bottom: -7px;
    left:0;
    width: 100%;
    display: flex;
    flex-direction: row;
  }
  #footerFloatinMenu-tel-and-line img{
    margin:0;
    padding:0;
  }
  .p-fixBtnWrap{
    bottom: 8rem;
  }
}
.c-inner{
		width:100%;background:#fff;margin:0 auto;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		-moz-box-shadow: 0px 0px 40px -3px rgba(66, 69, 65, 0.13);
		-webkit-box-shadow: 0px 0px 40px -3px rgba(66, 69, 65, 0.13);
		-ms-box-shadow: 0px 0px 40px -3px rgba(66, 69, 65, 0.13);
		box-shadow: 0px 0px 40px -3px rgba(66, 69, 65, 0.13);
	}
	.c-inner .title{background-color: var(--color_main);color:#fff !important; padding:20px 0; font-size:24px !important;text-align: center !important;
	-webkit-border-top-left-radius: 5px;
-webkit-border-top-right-radius: 5px;
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright: 5px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
	}
.ctas {
    margin-bottom: 30px;
}
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.btn-wrap {
  margin: 30px 0;
}

a.btn-c {
    font-size: 32px;
  width: 93%;
  position: relative;
  padding: 40px 2rem 1.5rem 3.5rem;
  color: #fff;
  background: #e94919;
  -webkit-box-shadow: 0 5px 0 #d44114;
  box-shadow: 0 5px 0 #d44114;
      max-width: 93% !important;
}

a.btn-c span {
  line-height: 1.5;
  font-size: 20px;
  position: absolute;
  top: -1.25rem;
  left: calc(50% - 200px);
  display: block;
  width: 400px;
  padding: 0.2rem 0;
  color: #d44114;
  border: 2px solid #d44114;
  border-radius: 100vh;
  background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

a.btn-c span:before,
a.btn-c span:after {
  position: absolute;
  left: calc(50% - 10px);
  content: "";
}

a.btn-c span:before {
  bottom: -10px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #d44114 transparent transparent transparent;
}

a.btn-c span:after {
  bottom: -7px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

a.btn-c i {
  margin-right: 1rem;
}

a.btn-c:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
  color: #fff;
  background: #eb5b30;
  -webkit-box-shadow: 0 2px 0 #d44114;
  box-shadow: 0 2px 0 #d44114;
}
	.c-tel{
		border-top:1px solid #ccc;
		padding:20px 0;
		margin:0 30px;
	}
	.c-tel p{
		font-weight:600;
		color:var(--color_main);;
	}
	.c-tel .num{
		font-size:36px;
		color:#eb5b30;
	}
.fa-phone-square-alt:before {
    margin-right: 10px;
}
.br-pc{
  display: block;
}
@media(max-width:768px){
   a.btn-c {
    padding: 25px 0 20px 0;
   }
  a.btn-c span{
    width: 300px;
    font-size: 16px;
    left: calc(50% - 150px);
  }
  .c-inner .title{
    font-size: 21px !important;
  }
  .c-tel{
    margin: 0;
  }
  .c-tel p{
    font-size: 15px;
  }
.fa-line{
    margin-right: 10px !important;
}
  .fa-line:before {
    font-size: 34px;
}
   .br-pc{
  display: none;
}
}
.small {
    text-align: center;
    margin: 0 auto;
    font-size: 13px !important;
    font-weight: 900 !important;
    display: block;
    width: 100%;
    padding: 0 !important;
}
.list-rank {
    margin-top: 0!important;
    font-size: 20px !important;
    font-weight: 700;
    margin-bottom: 24px;
    padding-top: 0 !important;
    text-align: center;
}
.list-rank span {
    padding-bottom: 4px;
    border-bottom: solid 3px #2151a1;
}
.rank-table .cta-simple a {
    width: 100%;
    padding: 10px 4px;
    font-size: 16px;
}
.cta-simple a {
    width: 100%;
    display: block;
    text-decoration: none;
    padding: 16px;
    background: #f1742c;
    color: #fff !important;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 4px 0 #d16323;
    margin: 0 auto;
    position: relative;
    transition: .3s;
}
.maru-image {
    border-radius: 10px !important;
    box-shadow: 0px 3px 6px 1px #bbb;
}

.rank-table th {
    background-color: #e9f3fb!important;
    color: #000!important;
    border-color: #a9a9a9!important;
}
.rank-table td {
    border-color: #a9a9a9!important;
}
.bg-gray center{
  padding-bottom: 5px;
}
@media (max-width: 768px){
.list-rank span {
    font-size: 18px !important;
}
p.list-rank {
    margin-bottom: 16px;
}
}
.author-info {
    position: relative;
}
.grad-btn {
    z-index: 2;
    position: absolute;
    right: 0;
    bottom: 8px;
    left: 683px;
    width: 98px;
    margin: auto;
    padding: 1px 0;
    border-radius: 2px;
    background: #009e8f;
    color: #fff;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: .2s ease;
    box-shadow: 0 0 3px rgb(0 0 0 / 30%);
}
.grad-item {
  position: relative;
  overflow: hidden;
  height: 80px; /*隠した状態の高さ*/
}
.grad-item::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px; /*グラデーションで隠す高さ*/
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
  background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
  content: "";
}
.grad-trigger {
  display: none; /*チェックボックスは常に非表示*/
}
.grad-trigger:checked + .grad-btn {
  display: none; /*チェックされていたら、grad-btnを非表示にする*/
}
.grad-trigger:checked ~ .grad-item {
  height: auto; /*チェックされていたら、高さを戻す*/
}
.grad-trigger:checked ~ .grad-item::before {
  display: none; /*チェックされていたら、grad-itemのbeforeを非表示にする*/
}
@media(max-width:768px){
    .grad-btn{
        bottom: 7px;
        left: 260px;
    }
}
.text-left{
    text-align: left !important;
}
/* ipad */
@media screen and (min-width: 769px) and (max-width: 1099px) {
  .grad-btn {
    left: 463px;
}
}
.myfuki-main {
    display: inline-block;
    position: relative;
    background: var(--color_htag);
    color: white;
    font-weight: 500;
    margin: 0.5em 0;
    border-radius: 25px;
    padding: 0.3em 1em;
}
.myfuki-main:before {
    position: absolute;
    content: "";
    bottom: -0.5em;
    margin-left: 1.5em;
    border-top: 10px solid;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 0;
    border-top-color: var(--color_htag);
}

/*--------------------------------------
  クリップボードボックス
--------------------------------------*/
.crip-box {
    padding: 1.6em;
    background-color: #00579e33;
margin-bottom: 20px;
}
.crip-red{
      background-color: #f443364f !important;
}
.crip-box-in {
    box-shadow: 0 0 2px 1px rgba(42,42,42,.05);
    padding-top: 40px;
    margin-bottom: 0;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}
.crip-box-in:before, .crip-box-in:after {
    content: "";
    display: inline-block;
    position: absolute;
}
.crip-box-in:before {
    width: 72px;
    height: 30px;
    border: 4px solid #003e96;
    top: -8px;
    left: calc(50% - 40px);
}
.crip-box-in:after {
    width: 100px;
    height: 28px;
    border-radius: 4px;
    background: #003e96;
    top: -10px;
    left: calc(50% - 50px);
}
.crip-redbox-in:before{
    border: 4px solid #c91313 !important;
}
.crip-redbox-in:after{
 background: #c91313 !important;
}
p.crip-box-title {
    background: linear-gradient(transparent 60%, #fef7b7 60%, #fef7b7 90%, transparent 90%);
    margin-bottom: 0;
    color: #003e96;
    font-size: 20px;
    display: inline;
    padding: 8px 0px;
}
.crip-redbox-title{
color: #c91313!important;
}
p.crip-box-text {
    text-align: left;
    margin-bottom: 0;
    padding: 1.2em;
}
.crip-box-in ul{
border: none;
text-align: left;
margin:0 auto;
margin-top: 20px;
margin-bottom: 0;
}
.crip-box-in li{
list-style-type: none !important;
    position: relative;
    font-size: 16px;
    border-bottom: 1px dotted #b0b0b0;
    padding: 5px 0px;
    margin-left: 1.4em;
	text-indent: -1.4em;
}
.crip-box-in>ul>li:before {
    content: "\f00c";
    color: #003e96;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    background-color: #fff !important;
    padding-right: 10px;
    top: 2px;
    left: 1px;
}
.crip-redbox-in>ul>li:before {
    color: #c91313 !important;
}
@media(max-width:768px){
.crip-box-in{
  padding-bottom: 0px;
padding-top: 40px;
}
.crip-box-in ul{
padding: 10px;
margin-top: 0;
}
.crip-box {
    padding: 16px;
}
p.crip-box-title {
font-size: 16px;
}
.cap_box_content {
    padding: 15px 10px 10px;
}
.box29 .box-content {
    padding: 0 10px;
}
}
.is-style-whiteboard1 {
	position: relative;
	max-width: 520px;
	margin: 0 auto 2em;
	padding: 2em 1.5em;
	border: 10px solid transparent;
	border-radius: 4px;
	background: linear-gradient(white, white), linear-gradient(#4d4d4d, #4d4d4d) no-repeat 100% 100% / 30px 30px, linear-gradient(#4d4d4d, #4d4d4d) no-repeat 0 100% / 30px 30px, linear-gradient(#4d4d4d, #4d4d4d) no-repeat 100% 0 / 30px 30px, linear-gradient(#4d4d4d, #4d4d4d) no-repeat 0 0 / 30px 30px, linear-gradient(#e6e6e6, #e6e6e6);
	background-clip: padding-box, border-box, border-box, border-box, border-box, border-box;
	background-origin: border-box;
}
.is-style-whiteboard1:before,
.is-style-whiteboard1:after ,
.is-style-whiteboard1 .wp-block-group__inner-container:before,
.is-style-whiteboard1 .wp-block-group__inner-container:after {
	display: inline-block;
	position: absolute;
	content: "";
}
.is-style-whiteboard1:before {
	right: 10px;
	bottom: 16px;
	width: 52px;
	height: 8px;
	border-radius: 2px 2px 0 0;
	background: #5a95f5;
}
.is-style-whiteboard1:after {
	right: 11px;
	bottom: 1px;
	width: 50px;
	height: 15px;
	border-radius: 0 0 4px 4px;
	background: #d2e2fc;
}
.is-style-whiteboard1 .wp-block-group__inner-container:before {
	right: 71px;
	bottom: 1px;
	width: 48px;
	height: 8px;
	background: linear-gradient(90deg, #ea4335 8%, #f2f2f2 8%, #f2f2f2 70%, #ea4335 70%);
}
.is-style-whiteboard1 .wp-block-group__inner-container:after {
	right: 98px;
	bottom: 9px;
	width: 48px;
	height: 8px;
	background: linear-gradient(90deg, #333 8%, #f2f2f2 calc(8% + 1px), #f2f2f2 70%, #333 calc(70% + 1px));
	transform: rotate(-20deg);
}
@media(max-width:768px){
#new-footerFloatinMenu-tel-and-line {
  position: fixed;
  bottom: 0;
  left: 0;
  display: block;
  background-color: rgba(4,56,76,0.8);
  z-index: 9999;
  width: 100%;
  padding: 2%;
  box-sizing: border-box;
}
.new-fcv ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding-left:0;
}
.new-fcv li.fixcvs {
  background-color: #00b900;
  border-radius: 6px;
}
.new-fcv li {
  width: 49%;
  display: flex;
  justify-content: center;
}
.new-fcv .outline-spcv {
  display: flex;
  align-items: center;
  width: 90%;
  justify-content: center;
}
.new-fcv li a {
  font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
  display: block;
  min-height: 56px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  box-sizing: border-box;
  line-height: 1;
  text-decoration: none;
}
.new-fcv li.fixcvs .ficons {
  width: 2rem;
}
.footer-ctext {
  margin: 0 auto;
  font-size: 18px;
  width: 100%;
  text-align: center;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif !important;
}
.new-fcv .outline-spcv .ficons i {
  font-size: 29px;
}
.fa-envelope:before {
  content: "\f0e0";
}
.new-fcv li a span {
  display: block;
  padding-top: 6px;
  font-size: 13px;
  text-align: left;
  padding-left: 14px;
}
.new-fcv li.fiv_tel {
  border-radius: 6px;
  background: #ff3950;
}

.new-fcv li+li {
  margin-left: 3%;
}
i.fa.fa-phone, i.fa.fa-line{
  width: 2rem;
  font-size: 23px;
}
.flashing{
-webkit-animation:flash 0.8s ease-in-out infinite alternate;
-moz-animation:flash 0.8s ease-in-out infinite alternate;
animation:flash 0.8s ease-in-out infinite alternate;
}
@-webkit-keyframes flash{
   0% {opacity:0;}
   100% {opacity:1;}
}
@-moz-keyframes flash{
   0% {opacity:0;}
   100% {opacity:1;}
}
@keyframes flash{
   0% {opacity:0;}
   100% {opacity:1;}
}
.sp-zisseki{
font-size:13px;
font-weight:bold;
text-align:center;
color:#fff;
margin:0 auto;
display:block;
padding-bottom: 4px;
}
.tel-free {
  padding-left: 19px !important;
}
}
/* iphone-5 */
@media(max-width:375px){
  .new-fcv li a span {
padding-left: 6px;
}
.tel-free {
    padding-left: 11px !important;
}
}
.cta-green {
    display: inline-block;
    box-sizing: border-box;
    width: 45%;
    height: 60px;
    padding: 0 5px;
    margin: 1.5%;
    background: -webkit-linear-gradient(180deg, #16ce1d 0%,#00c908 100%);
    color: #fff !important;
    font-weight: bold;
    border-radius: 40px;
    font-size: 20px;
    line-height: 1.2em;
    border: 3px solid #4caf50;
    box-shadow: #c4ff7f 1px 1px 2px inset, #8bc34a -1px -1px 4px inset;
    text-shadow: #4caf50 -1px -1px 0;
    text-align: center;
    text-decoration: none;
}
.cta-green.textlights {
    animation: 3s text-light infinite linear;
}
.cta-green.width {
    width: 100%;
    margin: 1.5% 0;
    position: relative;
}
.clickbtn:before {
    content: "";
    display: block;
    position: absolute;
    transform: translateY(-50%);
    background: url(https://o-itoma.jp/wp-content/uploads/2022/08/click.png) no-repeat center center;
    background-size: 100% 100% !important;
    margin-right: 0;
    width: 35px;
    height: 45px;
    right: -10px;
    bottom: -60px;
    transform: rotate(-15deg) translate(-20%,-80%);
    animation: 3s clickbtn infinite linear;
    z-index: 3;
}
.cta-green.arrow > span {
    display: inline-block;
    width: auto !important;
    max-width: 75% !important;
}
.cta-green:after {
    content: "";
    display: inline-block;
    width: 0;
    height: 100%;
    vertical-align: middle;
}
@keyframes clickbtn {
0%{
transform: rotate(-15deg) translate(-20%,-80%) ;
}
2%{
transform: rotate(-35deg) translate(-20%,-80%) ;
}
7%{
transform: rotate(-15deg) translate(-20%,-80%) ;
}
9%{
transform: rotate(-35deg) translate(-20%,-80%) ;
}
14%{
transform: rotate(-15deg) translate(-20%,-80%) ;
}
}
@keyframes text-light {
0%{
text-shadow: #fffd3e 0 0 2px, #fffd3e 0 0 5px, #fffd3e 0 0 8px, #fffd3e 0 0 12px, #fffd3e 0 0 18px, #fffd3e 0 0 30px;
}
3%{
text-shadow: none;
}
5%{
text-shadow: #fffd3e 0 0 2px, #fffd3e 0 0 5px, #fffd3e 0 0 8px, #fffd3e 0 0 12px, #fffd3e 0 0 18px, #fffd3e 0 0 30px;
}
20%{
text-shadow: none;
}
}
@media (min-width: 576px){
.modal-dialog {
    max-width: 500px;
    margin: 0 auto;
    top: 31%;
}
}
.btn-primary,button.btn.btn-secondary{
  color: #fff !important;
}
label.col-2.d-flex.input-name {
    margin-top: 26px;
}
@media(max-width:768px){
  .modal-footer{
    display: block !important;
    width: 100%;
  }
  .modal.fade .modal-dialog {
    top: 27%;
}
.modal-footer button{
  font-size: 16px !important;
}
.row{
  display: block !important;
}
label.col-2.d-flex.align-items-center {
    width: 100% !important;
}
.col-10 {
    width: 100% !important;
}
label.col-2.d-flex.input-name {
    width: 100%;
    padding: 0;
}
.col-10,.col-sm-10{
    padding: 0 !important;
}
label.col-2.d-flex.input-name {
    margin-bottom: 6px;
}
.form-group {
    width: 90%;
    padding-top: 3px !important;

}
.input-name {
    margin-top: 28px !important;
}
input[type="text"]{
  font-weight: bold;
  color: #000 !important;
}
.form-control:placeholder-shown,.form-control::placeholder{
    color: rgba(0, 0, 0, 0.7);
    font-weight: normal;
}
}
.internal-link {
    background: #fff9e5;
    box-shadow: 0 0 0 2px rgb(255 160 138 / 0%), 2px 2px 3px 0 rgb(0 0 0 / 5%);
    border-radius: 6px;
    padding: 0.75em 1em;
    margin: 10px 0 20px 0;
    position: relative;
}.internal-link::before {
    content: "\f0c1";
    font-family: "Font Awesome 5 Free"!important;
    font-weight: 900;
    margin-right: 10px;
}
.boxzilla{
  padding: 0 !important;
  background: transparent !important;
}
.boxzilla-close-icon{only-tel-
  color: #fff !important;
  opacity: 1.0 !important;
}
/* 1012-footeronlytel */
@media (max-width: 768px){
.only-tel-new-fcv li a span {
    display: block;
    padding-top: 6px;
    font-size: 13px;
}
.only-tel-new-fcv li {
    text-align: center;
}
.only-tel-new-fcv ul {
    width: 100%;
    padding-left: 0;
    margin-bottom: 0;
}
.only-tel-new-fcv li a {
    font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
    display: block;
    padding: 12px 0;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    box-sizing: border-box;
    line-height: 1;
    text-decoration: none;
}
.only-tel-footer-ctext {
    font-size: 22px;
    text-align: center;
    text-align: center;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif !important;
}
.only-tel-new-fcv li a span {
    display: block;
    padding-top: 6px;
    font-size: 15px;
}
.only-tel-footer-ctext::before {
    content: "\f0a4";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    font-size: 34px;
    position: absolute;
    top: 48px;
    left: 6%;
    -webkit-animation: flash 0.8s ease-in-out infinite alternate;
    -moz-animation: flash 0.8s ease-in-out infinite alternate;
    animation: flash 0.8s ease-in-out infinite alternate;
}
.only-tel-new-fcv li.fiv_tel {
    border-radius: 6px;
    background: #00b900;
}
}
.crip-box .say{
  padding: 0 20px;
}
.fv_sp{
  display: none;
}
@media(max-width:768px){
  .outline-fv-cta {
    position: absolute;
    /* top: 0; */
    bottom: 9px;
}
.fv_sp {
    position: relative;
    display: block;
}
.p-breadcrumb__list {
    display: flex;
    list-style: none;
    overflow: scroll;
    width: 100%;
}
.custom-html-widget li{
  line-height: 2rem;
}
.l-footer__nav a {
    padding: 10px 20px;
}
}
.align-center {
    display: block;
    margin: 0 auto;
    text-align: center;
}
.p-profileBox__iconImg {
width: 100%;
height: 100%;
}
blockquote {
  box-sizing: border-box !important;
  position: relative;
  margin: 3em 0;
  padding: 32px 32px 10px 32px;
  background: #FFF;
border: solid 4px #b3b3b3;
  border-radius: 5px;
  color: #464646;
  font-size: 1em;
}

blockquote:before {
  color: #fff !important;
  font-size: 1em;
  margin: auto;
  width: 40px !important;
  height: 40px !important;
  text-align: center;
  position: absolute !important;
  top: -23px !important;
  left: 32px !important;
  background: #464646;
  border-radius: 100px;
  line-height: 2.3 !important;
}

blockquote:before {
  display: inline-block !important;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  content: "\f10d" !important;
}
cite a{
  text-decoration: underline;
}
span.p-pnLinks__title {
    line-height: 2em;
}
.p-toc__list li {
    line-height: 1.9;
}

.cap_box_ttl,.post_content h2 {
    z-index: 0;
}
.reviewBox__title,.socialList-type01 .socialList__link::before,.socialList-type02 .socialList__link::before{
    font-size:2rem
}
.reviewBox{
    position:relative;
    background:#f2f2f2;
    padding:20px;
    border-radius:5px
}
.reviewBox-border{
    background:#fff;
    border:1px solid rgba(0,0,0,.1)
}
.reviewBox::after{
    content:"";
    position:absolute;
    bottom:-1px;
    right:-1px;
    border-color:rgba(0,0,0,.1) #fff #fff rgba(0,0,0,.1);
    border-style:solid;
    border-width:10px
}
.reviewBox__title{
    font-weight:700;
    margin-bottom:20px;
    padding-bottom:10px;
    border-bottom:1px solid #e5e5e5;
    line-height:1.5;
    font-size: 20px;
}
.reviewBox__contents{
    position:relative
}
.reviewBox__imgBox{
    float:right;
    width:100px;
    height:auto;
    margin:0 0 20px 20px
}
.reviewBox__img{
    width:100px;
    height:100px;
    border-radius:50%;
    border:1px solid #e5e5e5;
    overflow:hidden;
    background:url(img/img_mysteryman.gif);
    background-size:contain
}
.reviewBox__img img{
    width:100px;
    height:100px;
    border-radius:50%;
    vertical-align:bottom
}
.reviewBox__name{
    display:inline-block;
    width:100%;
    text-align:center;
    margin-top:.5rem;
    font-size:1.2rem;
    color:rgba(0,0,0,.5)
}
.reviewBox__star{
    display:block;
    font-weight:700;
    margin-bottom:10px
}
a.btn_ao_b {
  display: flex;
  align-items: center;
/*   max-width: 550px; */
  margin: 0 auto;
  padding: 1.3rem 2rem;
  border: 2px solid #014897;
  background: #fff;
  text-decoration: none !important;
  transition: 0.3s;
}
a.btn_ao_b:hover {
  background-color: #e9f3fd;
}
a.btn_ao_b .b__text {
  display: block;
  flex-grow: 1;
  color: #004386;
  font-weight: bold;
  text-align: center;
  position: relative;
  padding-right: 15px;
  font-size: 23px;
}
a.btn_ao_b .b__text::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
  border-top: 3px solid #014897;
  border-right: 3px solid #014897;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  a.btn_ao_b .b__text {
    font-size: 18px;
    padding-right: 20px;
  }
  a.btn_ao_b .b__text::after {
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 736px) {
  a.btn_ao_b .b__text {
    font-size: 14px;
    padding-right: 20px;
  }
  a.btn_ao_b .b__text::after {
    width: 10px;
    height: 10px;
  }
}
.shiny-btn8 {
  display: block;
  position: relative;
  width: 100%;/*ボタンの幅*/
  padding: 10px 0;
  margin: 0px auto;
  background-color: #62d847;/*ボタンの色*/
  box-shadow: 0 3px 0 0 rgba(74, 162, 53, 1);/*影の色(rgbaの値を変更)*/
  border-radius: 80px;
  font-weight: bold;
letter-spacing: 1px;
  font-size: 18px;
  color: #fff;
  text-align: center;
  text-decoration: none !important;
  overflow: hidden;
  transition: 0.2s;
}
.shiny-btn8:hover {
  text-decoration: none;
  color: #fff;
  opacity: 0.7;
  box-shadow: none;
  -webkit-transform: translateY(3px);
}
.shiny-btn8::before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: shiny-btn8 3s ease-in-out infinite;
}
.shiny-btn8::after {
  content: "\f054";
  font-family: 'Font Awesome 5 Free';
  font-size: 18px;
  font-weight: bold;
  margin-left: 0.5em;
}
@-webkit-keyframes shiny-btn8 {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
.mini {
    font-size: 13px;
    margin-top: 10px;
}

.center {
    display: block;
}
.red {
    color: #ffc000 !important;
    font-weight: 700;
}
.back-yellow {
    font-weight: 700;
    color: #272727;
    background: linear-gradient(transparent,#fff799 0);
    border-radius: 6px;
    font-size: 20px;
    line-height: 2em;
}
.li-chevron ul {
    position: relative;
    padding: 1em 0.5em 1em 2.5em;
    border: solid 2px skyblue;
    border-radius: 5px;
}

.li-chevron li, .li-check li, .li-yubi li, .li-niku li {
    list-style-type: none !important;
    padding: 0.5em 0;
    line-height: 1.5;
}
.li-chevron li:before {
    position: absolute;
    left: -1.5em;
    color: skyblue;
font-family: "Font Awesome 5 Free" !important;
    font-weight: 900;
    content: "\f138";
        color: #002c70;
}
.bonus-table tbody th {
    background: #fff !important;
    padding: 5px;
    border: 1px solid #ddd;
}
.table-rank {
    text-align: center;
    position: relative;
    background-color: #002d69;
    color: #fff;
    width: 50px;
    font-weight: 700;
    border-radius: 20px;
    font-size: 12px;
}
.bonus-table td, .bonus-table th {
    text-align: center;
}
.ranking-table td, .ranking-table th {
    text-align: center !important;
    width: 33%;
    line-height: 2em;
    font-size: 14px;
}
.box3 ul {
    border: none;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
}
.kaigaifx-points td, .kaigaifx-points th {
    width: 50%;
    text-align: center;
}
span.rank-number {
    margin-left: 16px;
}
.table-rank::before {
    position: absolute;
    content: "\f521";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 11px;
    left: 5px;
}
table ul {
    border: none !important;
    margin: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.cta-table{
  border:1px solid #e0e0e0 !important;
box-shadow: 0px 0px 6px 0px #bbb;
}
@media(max-width:768px){
  .back-yellow {
    font-size: 17px;
    line-height: 2em;
}
}
.table-center th {
    min-width: 120px;
        padding: 0.5em 0.35em !important;
}
.table-center td {
    vertical-align: middle;
    min-width: 180px;
        padding: 0.5em 0.35em !important;
}
.batsu {
    color: #007eff;
}
.symbol {
    font-size: 40px;
    display: block;
    text-align: center;
    margin: 0 auto;
    font-family: system-ui;
}
.triangle {
    color: #05788d;
}
.single-cicrle {
    color: #ff9000;
}
.double {
    color: #ff5050;
}
.table-center {
    text-align: center !important;
}
.swell-block-button.-size-s.is-style-btn_shiny.blue_ {
    display: grid;
    margin-bottom: 0;
    --the-btn-bg: linear-gradient(100deg,var(--the-btn-color) 0%,var(--the-btn-color2) 100%);
}
/* æ¨ªã‚¹ã‚¯ãƒ­ãƒ¼ãƒ« */
.horizontal_scroll,.twiiter_horizontal_scroll {
overflow-x: scroll;
overflow-y: hidden;
-webkit-overflow-scrolling: touch;
padding: 0 0 12px 8px;
display: -ms-flexbox;
display: flex; }

.horizontal_scroll li,.twiiter_horizontal_scroll li{
background: #fff;
max-width: 270px;
display: block;
position: relative;
    min-width: 270px;
height: 270px;
}
.fa-star-half-alt:before,.icon-star-half::before {
content: "\f5c0";
font-family: "Font Awesome 5 Free";
font-weight: 900;
}
.fa-star-half-alt,.icon-star-half {
color: #f9a72b;
font-style: normal;
}
.horizontal_scroll > li,.twiiter_horizontal_scroll > li{
margin: 7px !important;
}
.horizontal_scroll > li:last-child,.twiiter_horizontal_scroll >li:last-child {
padding-right: 5px; }

@media screen and (min-width: 768px) {
.horizontal_scroll > li:last-child,.twiiter_horizontal_scroll > li:last-child {
padding-right: 0; } }

.horizontal_scroll img,.twiiter_horizontal_scroll img {
vertical-align: bottom; }

.slider_ttl {
color: #333;
text-align: inherit;
width: 100%;
height: 40px;
line-height: 40px;
padding: inherit;
margin: 0 0 20px 0;
background-color: #e5e5e5;
text-indent: 8px;
font-size: 16px;
font-weight: 700;
box-sizing: border-box; }
.horizontal_scroll,.twiiter_horizontal_scroll{
padding: 0 !important;
border: none !important;
margin-top: 0 !important;
}
.horizontal_scroll li,.twiiter_horizontal_scroll li{
list-style: none !important;
overflow-y: scroll;
}

.kuchicomi{
margin: 0 auto;
display: block;
margin-top: 4px !important;
}
.horizontal_scroll img,.twiiter_horizontal_scroll img {
vertical-align: bottom;
border: 1px solid #e5e5e5;
background: #fff;
border-radius: 50%;
}
.kuchicomi-image {
width: 35%;
display: block;
margin: 0 auto;
}
.people-name,.people-career,.people-star{
width: 100%;
display: inline-block;
text-align: center;
}
.people-star .icon-star-full,.people-star .fa-star-half-alt,.people-star .rate-star-empty{
display: inline-block;
font-size: 13px;
}
.kuchimomi-name {
font-size: 13px;
font-weight: bold;
margin-top: 10px !important;
margin: 0 auto;
text-align: center;
}
.rate-star-empty,.icon-star-empty {
color: rgba(0, 0, 0, 0.15) !important;
letter-spacing: 3px;
}
.horizontal_scroll,.twiiter_horizontal_scroll{
border: none;
background-color: #DAECF2;
}
.kuchicomi-text{
margin: 0 auto;
display: block;
width: 89%;
font-size: 12px;
margin-top: 10px !important;
line-height: 20px;
}
@media (max-width: 768px){
.people-star .icon-star-full:before {
font-size: 13px !important;
letter-spacing: 2px;
}
.entry-content {
padding: 10px 13px 0;
}
}
.out_line_scrollHint{
-webkit-animation: FloatHorizontal 2s ease-in-out infinite alternate;
animation: FloatHorizontal 2s ease-in-out infinite alternate;
margin-bottom: 2px!important;
text-align: right;
}
.out_line_scrollHint span {
align-items: center;
display: inline-flex;
font-size: 12px;
line-height: 1;
opacity: .75;
vertical-align: middle;
}
.out_line_scrollHint span i {
font-size: 16px;
margin-left: 4px;
}
@keyframes FloatHorizontal
{
50%{-webkit-transform:translate3d(-15px,0,0);transform:translate3d(-15px,0px,0px);}
}
.horizontal_scroll li::before{
content: none !important;
}
.rate-star-empty,.icon-star-empty{
font-style: normal;
}
.rate-star-empty:before,.icon-star-empty::before{
color: #cfcfcf;
content: "\f005";
font-family: "Font Awesome 5 Free";
font-weight: 900;
}

.icon-star-full {
color: #ffb500;
letter-spacing: 3px;
font-style: normal;

}
.fa-star-half-alt:before,.icon-star-half::before {
content: "\f5c0";
font-family: "Font Awesome 5 Free";
font-weight: 900
}

.icon-star-full:before {
content: "\f005";
    font-family: "Font Awesome 5 Free" !important;
font-weight: 900
}
.good-text, .bad-text {
text-align: center;
font-weight: bold;
display: block;
font-family: "æ¸¸ã‚´ã‚·ãƒƒã‚¯ä½“",YuGothic,"æ¸¸ã‚´ã‚·ãƒƒã‚¯ Medium","Yu Gothic Medium","æ¸¸ã‚´ã‚·ãƒƒã‚¯","Yu Gothic","ãƒ’ãƒ©ã‚®ãƒŽè§’ã‚´ã‚·ãƒƒã‚¯ Pro","Hiragino Kaku Gothic Pro","Noto Sans JP","ãƒ¡ã‚¤ãƒªã‚ª",Meiryo,Osaka,"ï¼­ï¼³ ï¼°ã‚´ã‚·ãƒƒã‚¯","MS PGothic",sans-serif !important;
font-size: 12px;
margin-top: 5px !important;
}
.good-text{
color: #175491;
}
.bad-text{
color: #cf2e2e;
}
.kuchicomi-title {
font-size: 12px;
text-align: center;
font-weight: bold;
margin: 0 20px;
margin-top: 8px !important;
}
@media(max-width:768px) {
.icon-star-full:before {
font-size: 16px;
letter-spacing: 2px
}
}
.sgb-css-id-8 .sng-box {
border: none;
margin: 8px auto;
font-weight: unset;
}
.sgb-css-id-8 .wp-block-columns {
box-shadow: var(--wp--custom--shadow--medium,0 6px 13px -3px rgba(0, 12, 66, 0.1), 0 0px 1px rgba(0,30,100, 0.1));
background: #fff;
padding: 0;
display: flex;
margin-bottom: 0;
border-radius: calc(var(--sgb--custom--box-radius,6)* 1px);
box-sizing: border-box;
flex-wrap: nowrap;
gap: 0;
overflow: hidden;
}
.sgb-css-id-8 .wp-block-columns > * {
width: 100%;
}
.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column {
flex-basis: 0;
flex-grow: 1;
}
.sgb-css-id-8 .sgb-heading {
margin: 0!important;
}
.sgb-css-id-8 .sng-box ul, .sgb-css-id-8 .sng-box ol {
margin: 16px 0;
padding: 0.2em 1.45em;
border: none;
}
.sgb-css-id-8 li:last-child {
border-bottom: 0;
}
.li-chevron li, .li-check li, .li-yubi li, .li-niku li {
list-style-type: none !important;
padding: 0.5em 0;
line-height: 1.5;
}
.li-check .sgb-css-id-4 li:before {
content: "\f111" !important;
font-weight: 300 !important;
position: absolute;
left: 0;
font-family: "Font Awesome 5 Free" !important;
width: 1.25em;
color: #175491 !important;
display: block !important;
transform: none;
}

.sgb-heading__inner {
display: block;
font-weight: 900;
line-height: 1.4;
}
.li-check .sgb-css-id-7 li:before {
content: "\f00d" !important;
font-weight: 900;
position: absolute;
left: 0;
font-family: "Font Awesome 5 Free" !important;
width: 1.25em;
color: #cf2e2e !important;
transform: none;
}
.sgb-css-id-8 {
border: none;
margin: 8px auto;
font-weight: unset;
}
.sgb-css-id-8 .wp-block-columns.is-not-stacked-on-mobile>.wp-block-column:not(:first-child) {
margin-left: 0;
margin-top: 0 !important;
}
ul.sgb-css-id-4,ul.sgb-css-id-7 {
padding: 0 10px 0 10px;
}
.sgb-css-id-8  li,.sgb-css-id-7  li {
border-bottom: dashed 2px #dadada;
font-size: 15px;
padding-left: 1.4em !important;
margin-top: 0 !important;
}
.outline-blockmerit{
background-color:#b4e0fa24;
	    padding: 0 !important;
}
.li-check ul{
	background:none;
}
.wp-block-sgb-list {
margin-top: 6px !important;
}
.inline-blockmerit{
background-color:#175491;
border-color:transparent;
font-size:1em;
text-align:center;
}
.outline-blockdemerit{
background-color:#ffebeb52;
    padding: 0 !important;
}
.inline-blockdemerit{
background-color:#cf2e2e;
border-color:transparent;
font-size:1em;
text-align:center;
}
.box1{
padding: 0;
}
.sgb-heading--type2 {
border: 2px solid transparent;
border-radius: 2px;
padding: 0.75em 0.65em;
}
.meritto, .demeritto {
position: relative;
padding: 0.8em 1em;
margin: 4em 0 2em !important;}
.meritto {
border: 3px solid #175491;
}
.demeritto {
border: 3px solid #cf2e2e;
}
.meritto .box-title, .demeritto .box-title {
position: absolute;
top: -44px;
left: -3px;
color: white;
line-height: 32px;
padding: 5px 13px 3px;
border-radius: 10px 10px 0 0;
}
.meritto .box-title {
background: #175491;
}
.demeritto .box-title {
background: #cf2e2e;
}
.meritto .box-title:before, .demeritto .box-title:before {
margin-right: 10px;
font-size: 1.2em;
}
.meritto .box-title:before {
content: "\f599";
}
.demeritto .box-title:before {
content: "\f119";
}
.meritto ul, .demeritto ul {
list-style: none;
}
.meritto li, .demeritto li {
padding: .5em 0 !important;
padding-left: 6px !important;
}
.meritto li:before, .demeritto li:before {
margin-left: -20px;
margin-right: 10px;
}
.meritto li:before {
content: "\f164" !important;
color: #175491 !important;
transform: none !important;
font-size: 16px;
}
.demeritto li:before {
content: "\f165" !important;
color: #cf2e2e !important;
transform: none !important;
font-size: 16px;
}
.meritto li:before, .meritto .box-title:before, .demeritto li:before, .demeritto .box-title:before {
font-family: "Font Awesome 5 Free" !important;
font-weight: 900;
}
@media(max-width:768px){
.sgb-css-id-8 li, .sgb-css-id-7 li{
font-size: 15px;
}
.sgb-css-id-8 {
max-width: 100%;
padding: 10px 0;
}
.sgb-heading--type2{
padding: 10px 0;
}
.sgb-css-id-8 .wp-block-columns{
display: block;
}
.li-chevron li, .li-check li, .li-yubi li, .li-niku li {
list-style-type: none !important;
padding: 0.5em 0;
line-height: 2em;
}
a.btn_ao_b {
padding: 20px 17px;
}
}
.twiiter_horizontal_scroll li {
    background: #fff;
    display: block;
    position: relative;
    min-width: 320px;
    height: auto !important;
    padding: 10px;
}
.profession {
    font-size: 12px;
    padding: 4px 10px;
    background-color: #06066b;
    color: #fff;
    font-weight: bold;
    border-radius: 4px;
    margin-right: 7px;
    display: block;
    padding: 0;
    text-align: center;
    margin-bottom: 6px;
}
.age {
    font-size: 12px;
    padding: 4px 6px;
    background-color: #F57C00;
    color: #fff;
    font-weight: bold;
    border-radius: 4px;
    margin-right: 7px;
}
	.three-points {
    border: 1px solid #175491;
    margin: 50px auto;
}
.three-points-content {
    display: flex;
    min-height: 90px;
}
.three-points-title {
    padding: 5px 20px;
    text-align: center;
    background-color: #175491;
    color: #fff;
    margin-bottom: 0;
    font-size: 20px;
}
.three-points-outline,.three-points-content{
    list-style-type: none;
    margin-top: 0 !important;
	    margin-bottom: 0 !important;
}
.three-points-number {
    width: 85px;
    background-color: #bed9ef33 !important;
    position: relative;
    padding-bottom: 10px;
    padding-top: 9px;
}
.three-points-content:not(:last-child) {
    border-bottom: 1px solid #175491;
}

.three-points-number .points {
    position: relative;
    font-family: math;
    padding: 11px;
    border: 1px solid #175491;
    background: #fff;
    display: inline-block;
    margin: 1rem 0 6px -15px;
    line-height: 0;

}
.three-points-number .points:before {
    position: absolute;
    width: 0;
    border-left: 16px solid transparent;
    border-top: 12px solid #175491;
    left: -1px;
    content: '';
    height: 0;
    top: 100%;
}
.three-points-outline {
    list-style-type: none;
    padding-left: 0 !important;

}
.count-number {
    display: block;
    text-align: center;
    width:50px;
    background: #175491;
    margin: 0 auto;
    border-radius: 100px;
    margin-top: 0px;
    font-size: 30px;
    margin-bottom: 10px;
    height: 50px;
    color: #fff;
    line-height: 52px;
}
.three-points-outline>li:before{
    content: none !important;
}
.three-points-section {
    padding-left: 10px;
    padding-top: 20px;
    max-width: 640px;
    /* margin: 0 auto; */
    text-align: left;
    padding-bottom: 20px;
}
.three-points-section p{
    margin-top: 0;
}
.point-title{
    font-weight: bold;
    color: #175491;
    text-decoration: underline;
}
@media(max-width:768px){
    .three-points-number .points {
    position: relative;
    font-family: math;
    margin: 1rem 0 6px -9px;
    padding: 11px;
    background: #fff;
    border: 1px solid #175491;
    display: inline-block;
    line-height: 0;
}
.three-points-number {
    width: 195px;
}
.three-points-number .points:before {
    border-top: 12px solid #175491;
    border-left: 9px solid transparent;
}
.three-points-section{
    padding: 10px;
        margin-top: 5px !important;
}
	}
	.twiiter_horizontal_scroll li {
    background: #fff;
    display: block;
    position: relative;
    min-width: 320px;
    height: auto !important;
    padding: 10px;
}
.twiiter_horizontal_scroll li:before{
	content:none !important;
}
.step-text, .kuchicomitext2 {
    text-align: center;
    font-weight: bold;
    display: block;
}
.twiiter_horizontal_scroll_comment .twitter-tweet.twitter-tweet-rendered {
    margin-top: -20px !important;
}
.Qa-Box {
  width: 100%;
  margin: 0 auto;
}

.Qa-Box .Qa {
  padding: 20px 0;
  border-bottom: 1px solid #c8c8c8;
}

.Qa-Box .Qa dt,
.Qa-Box .Qa dd {
  display: flex;
  align-items: baseline;
  margin: 15px 0;
}

.Qa-Box .Qa dt p {
  margin: 0;
  padding-left: 15px;
  width: 100%;
}

.Qa-Box .Qa dd p {
  margin: 0;
  padding-left: 15px;
  width: 100%;
  color: #000;
      font-size: 98% !important;
}

.Qa-Box .Qa:last-of-type {
  border-bottom: none;
}

.Qa-Box .Qa dt::before {
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #6699b7;
width: 35px;
height: 35px;
font-size: 18px;
font-weight: bold;
}

.Qa-Box .Qa dd::before {
  content: "A";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #d65556;
width: 35px;
height: 35px;
font-size: 18px;
font-weight: bold;
}
.fv-thumbnail, .article-thumbnail {
    background: #f1f1f1;
    margin-bottom: 5px;
}
.blue{
	    color: var(--color_link) !important;
	cursor: pointer;
}
.fv-thumbnail img {
    width: 60%;
    display: block;
    margin: 0 auto;
    border: 1px solid #032D70;
	    margin-bottom: var(--swl-block-margin,2em);
}
.mini-point {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.65em;
        border-radius: 6px;
    background-color: #eaf7ff;
    color: #0099dd;
        margin-bottom: 1.5em;
    padding: 0 0 0 10px;
    margin-top: 25px;
}
.mini-point .sng-box-msg__icon i{
   color: #0099dd;
       font-size: 21px;
}
.mini-point .mini-point-ttl {
    border-right-style: solid;
    border-width: 1px;
    font-size: 1em;
}
.mini-point .sng-box-msg__contents{
    color: #494949 !important;
    font-weight: bold;
    font-size: 16px;
    padding: 0 10px;
}
.mini-point-ttl .sng-box-msg__icon{
    color: #0099dd;
}

 .li-accentbdr ol, .li-accentbdr ul, .li-mainbdr ol, .li-mainbdr ul {
	margin: 5px 0;
    padding: 0 0 0 1.4em;
    border: none !important;
    box-shadow: none;
    background: transparent;
}
.ol-circle ol li {
list-style-type:none;
}
.c-scrollHint{
	margin-top:0;
}
.horizontal_scroll,.twiiter_horizontal_scroll {
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 12px 8px;
  display: -ms-flexbox;
  display: flex; }

.horizontal_scroll_image{
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
    padding: 10px;
  display: -ms-flexbox;
  display: flex;
    padding-left: 10px !important;
      margin-top: 0 !important;
}
.slide-image {
    min-width: 280px;
        list-style-type: none;
}
.slide-image img {
    max-width: 100%;
    height: auto;
    width: 90%;
}
.horizontal_scroll li,.twiiter_horizontal_scroll li{
    background: #fff;
    display: block;
    position: relative;
  min-width: 230px;
  height: 270px;
}

.horizontal_scroll > li,.twiiter_horizontal_scroll > li{
    margin: 7px;
}
span.slide-title {
    background-color: #DAECF2;
    width: 100%;
    display: block;
    text-align: center;
    font-weight: bold;
    padding-top: 10px;
    font-size: 18px;
    border-bottom: 1px solid #032d70;
}
.horizontal_scroll > li:last-child,.twiiter_horizontal_scroll >li:last-child {
  padding-right: 5px; }

@media screen and (min-width: 768px) {
  .horizontal_scroll > li:last-child,.twiiter_horizontal_scroll > li:last-child {
    padding-right: 0; } }

.horizontal_scroll img,.twiiter_horizontal_scroll img {
  vertical-align: bottom; }

/* タイトル */
.slider_ttl {
  color: #333;
  text-align: inherit;
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: inherit;
  margin: 0 0 20px 0;
  background-color: #e5e5e5;
  text-indent: 8px;
  font-size: 16px;
  font-weight: 700;
  box-sizing: border-box; }
.horizontal_scroll,.twiiter_horizontal_scroll{
    padding: 0 !important;
}
.horizontal_scroll li,.twiiter_horizontal_scroll li{
    list-style: none !important;
}

.kuchicomi{
    display: flex;
    margin-top: 5px;
}
.horizontal_scroll img,.twiiter_horizontal_scroll img {
    vertical-align: bottom;
    border: 1px solid #e5e5e5;
    background: #fff;
    border-radius: 50%;
}
.kuchicomi-image {
    width: 37%;
}
.people-name,.people-career{
    width: 100%;
    display: block;
}
.people-star .icon-star-full,.people-star .fa-star-half-alt,.people-star .rate-star-empty{
    display: inline-block;
    font-size: 13px;
}
.kuchimomi-name {
    width: 64%;
    font-size: 14px;
    font-weight: bold;
    padding-left: 9px;
}
.horizontal_scroll,.twiiter_horizontal_scroll,.horizontal_scroll_image{
    border: none;
    background-color: #DAECF2;
}
.kuchicomi-text{
    margin: 0 auto;
    display: block;
    width: 89%;
    font-size: 12px;
    margin-top: 10px;
    line-height: 20px;
    max-height: 150px;
    overflow-y: hidden;
}
.twiiter_horizontal_scroll li {
    background: #fff;
    display: block;
    position: relative;
    min-width: 400px;
    height: auto !important;
    padding: 10px;
}
.twitter-tweet.twitter-tweet-rendered {
    max-height: 380px;
    overflow-y: scroll;
}
@media (max-width: 768px){
.people-star .icon-star-full:before {
    font-size: 13px !important;
    letter-spacing: 2px;
}
	}
@media screen and (max-width: 960px) {
  .Qa-Box {
    width: 95%;
  }
}
.rate-title {
    padding: 5px;
    margin-top: 1em;
    font-weight: bold;
    font-size: 1.25em;
    text-align: center;
}
.rate-title:before {
	color: var(--wp--preset--color--sango-main);
    content: "\f02e";
    padding-right: 5px;
	font-family: Font Awesome\ 5 Free;
    font-weight: 900;
}
.rate-star {
    display: inline-block;
    margin: 0;
    width: 47%;
    color: #002c70;
    vertical-align: middle;
}
.rate-thing {
    display: inline-block;
    padding-right: 10px;
    width: 60%;
    max-width: 380px;
    font-weight: bold;
    vertical-align: middle;
}
.rate-box .rateline:nth-child(even) {
    background: #f3f3f3;
}
.rate-box {
    max-width: 100%;
    margin: 0 auto 1em;
    font-size: 17px;
	    border: solid 2px #e6e6e6;
}
.rateline {
    display: flex;
        justify-content: space-between;
	    padding: 10px 10px 10px 20px;
}
.rate-star .fa, .rate-star .fa-star-half-alt {
    color: #ffb500;
}
.rate-box .rateline.end-rate {
    background: #e8f4ff;
}
.onepoint{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.65em;
        border-radius: 6px;
    background-color: #ffebeb;
    color: #ff8376;
    margin-bottom: 1.5em;
    padding: 1em;
}
.onepoint_ttl {
    border-right-style: solid;
    border-width: 1px;
    font-size: 1em;
    border-right-style: solid;
    border-width: 1px;
    font-size: 1em;
}
.onepoint_ttl .sng-box-msg__icon i {
    color: inherit;
}
.onepoint_ttl .sng-box-msg__icon {
    font-size: 30px;
    background: transparent !important;
    border-radius: 50%;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    margin: 0 10px 0 0;
    text-align: center;
    vertical-align: middle;
    width: 35px;
}
.p-articleMetas.-top {
    margin-top: 0;
    margin-bottom: 20px;
}
.onepoint .sng-box-msg__contents p{
color: #545454;
margin: 0;
}
.box30, .box31, .box32, .box33 {
    margin: 2em 0;
    padding: 0 15px 10px;
    background: #002c7008;
	    border: 1px solid;
    box-shadow: 0 2px 4px rgb(0 0 0 / 15%);
}
.box30 .box-title, .box31 .box-title, .box32 .box-title, .box33 .box-title {
    margin: 0 -15px 15px;
    padding: 8px 4px;
    background: #002c70;
    color: #fff;
    font-size: 1.2em;
    text-align: center;
    line-height: 1.5;
}
.box30 .box-title:before {
    padding-right: 4px;
    content: "\f00c";
	font-family: "Font Awesome 5 Free" !important;
    font-weight: 900;
}
.table-pink-title {
    background: #D37CAD !important;
    text-align: center;
    height: 27px;
    color: #fff;
}
.table-pink-title-td {
    background: #ffeff7;
    height: 39px;
    text-align: center;
}
.table-blue-title {
    background: #579EC5 !important;
    text-align: center;
    height: 27px;
    color: #fff;
}
.table-blue-title-td {
    background: #eaf4ff;
    height: 39px;
    text-align: center;
}
.button_solid004 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    margin: 0 10px;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background: #6bb6ff;
    border-radius: 8px;
    border-bottom: solid 5px #1d7fde;
}
.button_solid004 a:after {
    position: absolute;
    top: 50%;
    right: 10px;
    font-size: 20px;
    transition: 0.2s ease-in-out;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transform: translateY(-50%);
}
@media only screen and (min-width: 481px){
.rate-star {
    width: 164px;
}
}
@media(max-width:769px){
 .rate-thing {
    max-width: 160px;
    width: 40%;
}
}
.fxbutton {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #e31c3d;
    color: #fff;
    font-weight: 700;
}
.fxbutton {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    font-size: 21px;
    -webkit-box-shadow: inset 0 2px 0 rgba(255,255,255,.2), 0 2px 2px rgba(0,0,0,.2);
    box-shadow: inset 0 2px 0 rgba(255,255,255,.2), 0 2px 2px rgba(0,0,0,.2);
    height: 66px;
    border-radius: 70px;
}
.p-pickupBanners {
    margin-bottom: 1em;
    position: relative;
    width: 100%;
}
.c-postTitle__ttl {
    font-size: 24px;
    margin-bottom: 13px;
}
.c-postTitle__ttl {
  position: relative;
  text-align: center;
  padding: 1em;
}

.btn-outline .fxbutton {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    cursor: pointer;
}
.fxbutton::before {
    content: "\f0a4";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    position: absolute;
    left: 49px;
    top: 40px;
    bottom: 0;
    display: flex;
    margin: auto;
    color: #EF3F56;
    align-items: center;
    width: 40px;
    height: 40px;
    position: absolute;
    border-radius: 100%;
    background-color: #fff;
    padding-left: 6px;
    transform: translate(-50%, -50%);
}
.fxbutton::after {
    right: 0;
    content: "\f105";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 40px;
    bottom: 0;
    display: flex;
    margin: auto;
    color: #fff;
    align-items: center;
    width: 40px;
    height: 40px;
    position: absolute;
    transform: translate(-50%, -50%);
}
.btn-text {
    font-size: 14px;
    font-weight: bold;
    position: relative;
    margin-bottom: 0.2em;
    text-align: center;
}
.btn-text:before {
    margin-right: 1rem;
    content: '＼';
}
.btn-text:after {
    margin-left: 1rem;
    content: '／';
}
/* account-open-flow */
.horizontal_scroll2 {
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 12px 8px;
  display: -ms-flexbox;
  display: flex; }
.horizontal_scroll2 li{
    background: #fff;
    display: block;
    position: relative;
min-width: 360px;
    height: 360px;
}
.horizontal_scroll2 > li{
    margin: 7px;
}
.horizontal_scroll2 > li:last-child {
    padding-right: 5px;
}
.kuchicomi2{
    margin: 10px;
}
.step-text,.kuchicomitext2{
    text-align: center;
    font-weight: bold;
    display: block;
}
.kuchicomitext2,.steplink{
    padding: 10px;
}

@media screen and (min-width: 768px) {
  .horizontal_scroll2 > li:last-child {
    padding-right: 0; } }

.horizontal_scroll2 img {
  vertical-align: bottom; }

/* タイトル */
.slider_ttl2 {
  color: #333;
  text-align: inherit;
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: inherit;
  margin: 0 0 20px 0;
  background-color: #e5e5e5;
  text-indent: 8px;
  font-size: 16px;
  font-weight: 700;
  box-sizing: border-box; }
.horizontal_scroll2{
    padding: 0 !important;
}
.horizontal_scroll2 li{
    list-style: none !important;
}
.horizontal_scroll2 img {
    vertical-align: bottom;
    border: 1px solid #e5e5e5;
    background: #fff;
}
.kuchicomi-image2 {
    box-shadow: 0 2px 8px rgb(0 0 0 / 10%), 0 4px 8px -4px rgb(0 0 0 / 20%);
}

.horizontal_scroll2{
    border: none;
    background-color: #DAECF2;
}
.kuchicomi-text2{
    margin: 0 auto;
    display: block;
    width: 89%;
    font-size: 12px;
    margin-top: 10px;
    line-height: 20px;
    max-height: 150px;
    overflow-y: hidden;
}

.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin:5px 0;
}

.tab-label {
  color: #000;
  font-weight: bold;
  background-color:lightgray;
  text-align: center;
  padding: .5em 1em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  flex: 1;
  border-radius: 2px;
  position: relative;
}

.tab-label:not(:last-of-type) {
  margin-right: 5px;
}
.align-center{
    text-align: center;
        display: block;
    margin: 0 auto;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.tab-switch:checked+.tab-label {
  color: #fff !important;
 background-color: #055a05;/*背景色*/
}
.tab-switch:checked+.tab-label:after{
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -15px;
	border: 10px solid transparent;
border-top:10px solid  #055a05;
	width: 0;
	height: 0;
}

.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  padding: 15px 0 0 0;
  opacity: 1;
  transition: .5s opacity;
}

.tab-switch {
  display: none;
}
.tab-content td{
    text-align: center;
}
.tab-content .button_solid004 a{
    max-width: 100%;
}
.sp{
    display: none;
}
@media(max-width:768px){
    .tab-label {
    font-size: 12px;
    line-height: 1.4;
}
[data-table-scrollable] thead th{
width:150px;
}
[data-table-scrollable] thead th:first-child {
  max-width: 80px; /* お好みの最大幅に調整 */
  white-space: normal;
  word-break: break-word;
}
	[data-table-scrollable]:not(.is-style-double) td, [data-table-scrollable]:not(.is-style-double) th{
min-width:150px;
max-width:150px;
text-align:center;
}
.sp{
    display: block;
}
.tab-content th,.tab-content td{
font-size: 14px;
}
}
@media(max-width:768px){
.fxbutton {
    font-size: 16px;
height:60px;
}
.fxbutton::before {
    font-size: 23px;
    padding-left: 7px;
    left: 32px;
    top: 37px;
    width: 35px;
    height: 35px;
}
.fxbutton::after {
    right: -23px;
    font-size: 24px;
}
	.c-postTitle__ttl {
    font-size: 18px;
    margin-bottom: 13px;
		padding:0.7em;
}
	.sgb-box-simple--title-overwrap .sgb-box-simple__title {
    left: 51px;
    /* top: -14px; */
    color: #5ba9f7;
    top: -13px;
}
	.plof-flex {
    display: block !important;
}
	.custom_pic {
    width: 120px;
    margin: 0 auto;
    display: block;
    text-align: center;
    margin-bottom: 10px;
}
.scroll-table table th, td {
    padding: 10px 5px;
    font-size: 13px;
    min-width: 150px;
white-space: initial;
}
}
.tablesorter {
	text-align: center
}

.tablesorter img {
	padding: 6px 0;
	vertical-align: middle;
	margin-right: 10px;
	margin-bottom: 0 !important
}
.tablesorter th {
	position: relative;
	cursor: pointer;
	text-align: left
}
.tablesorter th::before,
.tablesorter th::after {
	content: '';
	position: absolute;
	z-index: 2;
	right: 7px;
	width: 0;
	height: 0;
	    border: 8px dashed;
	border-color: #fff transparent;
	pointer-events: none
}

.tablesorter th::before {
	border-bottom-style: solid;
	border-top: 0;
	top: 22%
}

.tablesorter th::after {
	border-top-style: solid;
	border-bottom: 0;
	bottom: 17%;
}

.tablesorter th.tablesorter-headerAsc:after {
	border: 0
}

.tablesorter th.tablesorter-headerAsc:before {
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%)
}

.tablesorter th.tablesorter-headerDesc:before {
	border: 0
}

.tablesorter th.tablesorter-headerDesc:after {
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%)
}

.tablesorter th.sorter-false:before,
.tablesorter th.sorter-false:after {
	border: 0
}
.swl-inline-list {
    display: inline-block;
    line-height: 1.5;
    padding: 2px 0 2px 1.5em;
    position: relative;
    width: 100%;
    text-align: left;
}
  .swell-block-review {
    background: #d5d5d5;
    padding: 13px;
}
.swell-block-review__inner {
  max-width: 100% !important;
}
#symbolList{
  max-height: 300px;
  overflow-y: scroll;
}
.swell-block-review__rating .__stars{
	font-size:16px !important;
}
.swell-block-review__rating .__str{
	margin-right:0 !important;
}
.outline-flex {
    display: flex;
    justify-content: center;
    gap: 60px;
}
.rate-star-empty:before, .icon-star-empty::before {
    color: #cfcfcf;
    content: "\f005";
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900;
}
.fa-star-half-alt, .icon-star-half {
    color: #f9a72b;
    font-style: normal;
}
.icon-star-half::before {
    content: "\f5c0";
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900;
}
.swell-block-review__rating .__label {
    background: linear-gradient(-45deg, transparent 25%, hsla(0, 0%, 100%, .1) 0, hsla(0, 0%, 100%, .1) 50%, transparent 0, transparent 75%, hsla(0, 0%, 100%, .1) 0, hsla(0, 0%, 100%, .1));
    background-color: #111;
    background-size: 6px 6px;
    border-radius: 1px;
    color: #fff;
    display: inline-flex;
    line-height: 1;
    margin: 0 auto .5rem;
    padding: .5em;
}
.box23 {
    position: relative;
    max-width: 400px;
    margin: 2em 0 2em 40px;
    padding: 20px;
    border-radius: 30px;
    background: #fff0c6;
}
.box23:before {
    position: absolute;
    bottom: 0;
    left: -40px;
    color: #fff0c6;
    font-family: "Font Awesome 5 Free" !important;
    font-size: 15px;
    content: "\f111";
}
.box23:after {
    position: absolute;
    bottom: 0;
    left: -23px;
    color: #fff0c6;
    font-family: "Font Awesome 5 Free" !important;
    font-size: 23px;
    content: "\f111";
}
.fa5 .hh30:before, .fa5 .hh31:before, .fa5 .hh32:before, .fa5 .hh34:before, .fa5 .box23:before, .fa5 .box23:after, .fa5 .box26 .box-title:before, .fa5 .box27 .box-title:before, .fa5 .box29 .box-title:before, .fa5 .box30 .box-title:before, .fa5 .li-chevron li:before, .fa5 .li-check li:before, .fa5 .li-yubi li:before, .fa5 .li-niku li:before, .fa5 .entry-content .quote_silver:after, .fa5 .reference .refttl:before, .fa5 .memo_ttl:before, .fa5 #toc_container .toc_title:before, .fa5 .ez-toc-title-container:before, .fa5 .cstmreba .kaerebalink-link1 a:before, .fa5 .booklink-link2 > div a:before {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900;
}
.sidebarbox{
	margin-bottom: 1.5em;
    padding: 1em;
    background: #fff9e5;
    color: #545454;
}

.sidebarbox img{
  margin-bottom: 10px;
}

.sidebarbox_title{
   margin-bottom: 5px;
   color: #ffb36b;
   font-size: 1.15em;
   font-weight: bold;
}

.sidebarbox_title p{
  margin: 0 0 0.5em;
}

.sidebarbox_title::before{
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 0 3px 0 0;
    border-radius: 50%;
    background: #ffb36b;
    color: #fff;
    font-family: FontAwesome;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    content: "\f040";
}

.fa5 .sidebarbox_title::before{
	font-family: "Font Awesome 5 Free" !important;
    font-weight: 900;
	content: "\f303";
    font-size: 17px;
}

.sidebarfont{
 font-size:20px;
}

.marker2{
  background:linear-gradient(transparent 70%, #5bb6ffdb 60%);
  font-weight:bold;
}

.marker{
  background:linear-gradient(transparent 70%, #ffff2bd9 60%);
  font-weight:bold;
}

.marker3{
  background:linear-gradient(transparent 70%, #ffff2bd9 60%);
  font-weight: bold;
  color: red;
}

.brnone{
	display:none
}

.boxcontinue{
	padding: 0.5em 1em;
    border-top: solid 3px #6bb6ff;
    border-bottom: solid 3px #6bb6ff;
    background: #eef7ff;
    color: #2c2c2f;
    text-align: center;
    line-height: 2;
	font-weight: bold;
	text-decoration: underline;
    text-decoration-color: #6bb6ff;

}

/****************** トップページ用の横並びボックス *******************/
.scroll_content { /* リスト全体のスタイル */
  display: flex;
  max-width: 800px;
  margin: auto;
  overflow-x: auto;
}

.scroll_content li { /* 各リストのスタイル */
  width: 66%;
  padding: 8px;
  margin: 3px;
  flex-shrink: 0;
  list-style: none;
}

.scroll_content img { /* 画像のスタイル */
  width: 100%;
  max-height: 291px;
  object-fit: cover;
}

.scroll_content::-webkit-scrollbar {
  height: 12px; /* スクロールバーの高さ */
}

.scroll_content::-webkit-scrollbar-thumb {
  background: #aaa; /* ツマミの色 */
  border-radius: 6px; /* ツマミ両端の丸み */
}

.scroll_content::-webkit-scrollbar-track {
  background: #ddd; /* トラックの色 */
  border-radius: 6px; /* トラック両端の丸み */
}


@media screen and (min-width: 450px) {

  .scroll_content li {
    width: 45%;
  }

}

/****************** ランキング用のテーブル *******************/
.ranking_table{
	font-size:13px;
}

.kotei{
  position: sticky;
  left: 0;
  color: black;
	background:white;
  &:before{
    content: "";
    position: absolute;
	 top: -1px;
    left: -1px;
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
	  pointer-events: none;
  }
}
}

/****************** 口コミ *******************/
.good, .bad, .ungood{/*ボックス共通部分*/
    border: 2px solid #f4f4f5;/*枠線*/
    color: #252525;/*文字色*/
    padding: 1.5em 1em;/*内側余白*/
    margin: 2em 0;/*外側余白*/
}
.good .box-title, .ungood .box-title {/*タイトル部分*/
    display: flex;/*配置しやすい種類に変更*/
    align-items: center;/*縦方向を真ん中に*/
    line-height: 1;/*行の高さ*/
    margin-bottom: 5px;/*外側　下の余白*/
}
.good .box-title, .good .box-title:before {/*タイトルとアイコンの色*/
    color: #fda359;/*文字色*/
}
.ungood .box-title, .ungood .box-title:before {/*タイトルとアイコンの色*/
    color: #4cb1bf;/*文字色*/
}
.good .box-title:before ,.ungood .box-title:before {/*アイコン*/
    font-family: "font awesome 5 free";/*種類*/
    margin-right: 5px;/*外側　右余白*/
    font-size: 1.7em;/*文字の大きさ*/
}
.good .box-title:before {/*メリットのアイコン*/
    content: "\f599";/*アイコンの種類*/
}
.ungood .box-title:before {/*デメリットのアイコン*/
    content: "\f5c8";/*アイコンの種類*/
}
.blockquotenone{
	display:contents;
}

/****************** トップページの各ランキングボックス *******************/

.top-main-box {
  padding-left: 58px; /* 左側の余白を30pxに設定 */
  line-height: 50px!important; /* 行の高さを30pxに設定 */
  background: url('https://bosque-ltd.co.jp/casino/wp-content/uploads/2023/08/ranking-100-×-100-px-50-×-50-px-1.png') no-repeat left top; /* 背景色と画像を設定 */
  display: block; /* displayプロパティはブロック要素に適用されるので、特に必要ありませんが、明示的に指定する場合もあります */
   font-weight: bold;
   color: royalblue;
    border-bottom: 2px solid #9e9e9e;
    padding-bottom: 10px;
	font-size: 22px;
}

.top-nyukinhuyo-box {
  padding-left: 58px; /* 左側の余白を30pxに設定 */
  line-height: 50px!important; /* 行の高さを30pxに設定 */
  background: url('https://bosque-ltd.co.jp/casino/wp-content/uploads/2023/08/2.png') no-repeat left top; /* 背景色と画像を設定 */
  display: block; /* displayプロパティはブロック要素に適用されるので、特に必要ありませんが、明示的に指定する場合もあります */
   font-weight: bold;
   color: royalblue;
    border-bottom: 2px solid #9e9e9e;
    padding-bottom: 10px;
	font-size: 22px;
}

.top-syokainyukin-box {
  padding-left: 58px; /* 左側の余白を30pxに設定 */
  line-height: 50px!important; /* 行の高さを30pxに設定 */
  background: url('https://bosque-ltd.co.jp/casino/wp-content/uploads/2023/08/3.png') no-repeat left top; /* 背景色と画像を設定 */
  display: block; /* displayプロパティはブロック要素に適用されるので、特に必要ありませんが、明示的に指定する場合もあります */
   font-weight: bold;
   color: royalblue;
    border-bottom: 2px solid #9e9e9e;
    padding-bottom: 10px;
	font-size: 22px;
}

.top-slot-box {
  padding-left: 58px; /* 左側の余白を30pxに設定 */
  line-height: 50px!important; /* 行の高さを30pxに設定 */
  background: url('https://bosque-ltd.co.jp/casino/wp-content/uploads/2023/08/ranking-100-×-100-px-50-×-50-px-2.png') no-repeat left top; /* 背景色と画像を設定 */
  display: block; /* displayプロパティはブロック要素に適用されるので、特に必要ありませんが、明示的に指定する場合もあります */
   font-weight: bold;
   color: royalblue;
    border-bottom: 2px solid #9e9e9e;
    padding-bottom: 10px;
	font-size: 22px;
}

.top-bookmaker-box {
  padding-left: 58px; /* 左側の余白を30pxに設定 */
  line-height: 50px!important; /* 行の高さを30pxに設定 */
  background: url('https://bosque-ltd.co.jp/casino/wp-content/uploads/2023/09/ranking-100-×-100-px-50-×-50-px-3.png') no-repeat left top; /* 背景色と画像を設定 */
  display: block; /* displayプロパティはブロック要素に適用されるので、特に必要ありませんが、明示的に指定する場合もあります */
   font-weight: bold;
   color: royalblue;
    border-bottom: 2px solid #9e9e9e;
    padding-bottom: 10px;
	font-size: 22px;
}

.top-bitcoin-box {
  padding-left: 58px; /* 左側の余白を30pxに設定 */
  line-height: 50px!important; /* 行の高さを30pxに設定 */
  background: url('https://bosque-ltd.co.jp/casino/wp-content/uploads/2023/09/ranking-100-×-100-px-50-×-50-px-4.png') no-repeat left top; /* 背景色と画像を設定 */
  display: block; /* displayプロパティはブロック要素に適用されるので、特に必要ありませんが、明示的に指定する場合もあります */
   font-weight: bold;
   color: royalblue;
    border-bottom: 2px solid #9e9e9e;
    padding-bottom: 10px;
	font-size: 22px;
}

.top-nihongo-box {
  padding-left: 58px; /* 左側の余白を30pxに設定 */
  line-height: 50px!important; /* 行の高さを30pxに設定 */
  background: url('https://bosque-ltd.co.jp/casino/wp-content/uploads/2023/09/ranking-100-×-100-px-50-×-50-px-5.png') no-repeat left top; /* 背景色と画像を設定 */
  display: block; /* displayプロパティはブロック要素に適用されるので、特に必要ありませんが、明示的に指定する場合もあります */
   font-weight: bold;
   color: royalblue;
    border-bottom: 2px solid #9e9e9e;
    padding-bottom: 10px;
	font-size: 22px;
}

.top-title{
    font-size: 22px;
    font-weight: bold;
    border-bottom: 3px solid;
    padding-bottom: 8px;
	margin-bottom: 6px!important
}

/****************** トップページのミニスライダーからタイトルを抜く*******************/

.not_title .detail-title {
  display:none
}

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap");

:root {
  --key-Color: #212327;
  --corner: 2.46em;
  --row-space : 4.25vw;
  --col-space : 5.25vh;
  --w50-space: 45%;
  --s1-space: 7.5vh;
  --s2-space: 5vh;
  --s3-space: 2.5vh;
  --h1 :2.0rem;
  --h2 :2.0rem;
  --h3 : 1.8rem;
  --h4 : 1.25rem;
  --h2_en : 5.0rem;
  --flex_hurf : calc(96% / 2);
  --flex_third : calc((100% - 5vw) / 3);
  --flex_third_space : calc((100% - 6%) / 3);
  --flex_four : calc((100% - 5vw) / 4);
  --flex_five : calc((100% - 5vw) / 5);
  --flex_six : calc(100% / 3);
  }


  @media screen and (min-width: 768px) and (max-width: 1024px) {

    :root {
      --logo_wide: 200px;
      --h3: 1.6rem;
      --nav_ft_size: 16px;
      --row-space : 1.5em;
      --col-space : 5vh;
      --s2-space: 3vh;
      --negative_margin_bottom: -10vh;
      --w50-space :100%;
      --h2_en: 3.4rem;
    }


  }

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

    :root {
      --row-space : 4vw;
      --col-space : 5vh;
      --s1-space: 5vh;
      --s2-space: 2.5vh;
      --s3-space: 1.5vh;
      --containner: 1200px;
      --negative_margin_bottom: -5vh;
      --h1 :1.8rem;
      --h2 :1.6rem;
      --h3 : 1.25rem;
      --h4 : 1.1rem;
      --Text-normal: 15px;
      --flex_hurf : 100%;
      --flex_third : calc(96% / 2);
      --flex_third_space : calc(100% / 1);
      --flex_four : calc(100% / 2);
      --flex_five : calc(100% / 1);
      --flex_six : calc(100% / 2);
      --flex_third :100%;
      --sp-none: none;
      --fix_head_margin: 50px;
      --flex_concept01 : calc(100% / 2);
      --flex_concept02 : calc(100% / 2);
      --w50-space: 100%;
      }

      .sp-none{
        display:none;
      }
	  .brnone{
	display:block
}
  .top-main-box {
  padding-left: 58px; /* 左側の余白を30pxに設定 */
  line-height: 50px!important; /* 行の高さを30pxに設定 */
  background: url('https://bosque-ltd.co.jp/casino/wp-content/uploads/2023/08/ranking-100-×-100-px-50-×-50-px-1.png') no-repeat left top; /* 背景色と画像を設定 */
  display: block; /* displayプロパティはブロック要素に適用されるので、特に必要ありませんが、明示的に指定する場合もあります */
   font-weight: bold;
   color: royalblue;
    border-bottom: 2px solid #9e9e9e;
    padding-bottom: 10px;
	font-size: 17px;
}

.top-nyukinhuyo-box {
  padding-left: 58px; /* 左側の余白を30pxに設定 */
  line-height: 50px!important; /* 行の高さを30pxに設定 */
  background: url('https://bosque-ltd.co.jp/casino/wp-content/uploads/2023/08/2.png') no-repeat left top; /* 背景色と画像を設定 */
  display: block; /* displayプロパティはブロック要素に適用されるので、特に必要ありませんが、明示的に指定する場合もあります */
   font-weight: bold;
   color: royalblue;
    border-bottom: 2px solid #9e9e9e;
    padding-bottom: 10px;
	font-size: 17px;
}

.top-slot-box {
  padding-left: 58px; /* 左側の余白を30pxに設定 */
  line-height: 50px!important; /* 行の高さを30pxに設定 */
  background: url('https://bosque-ltd.co.jp/casino/wp-content/uploads/2023/08/ranking-100-×-100-px-50-×-50-px-2.png') no-repeat left top; /* 背景色と画像を設定 */
  display: block; /* displayプロパティはブロック要素に適用されるので、特に必要ありませんが、明示的に指定する場合もあります */
   font-weight: bold;
   color: royalblue;
    border-bottom: 2px solid #9e9e9e;
    padding-bottom: 10px;
	font-size: 17px;
}

.top-syokainyukin-box {
  padding-left: 58px; /* 左側の余白を30pxに設定 */
  line-height: 50px!important; /* 行の高さを30pxに設定 */
  background: url('https://bosque-ltd.co.jp/casino/wp-content/uploads/2023/08/3.png') no-repeat left top; /* 背景色と画像を設定 */
  display: block; /* displayプロパティはブロック要素に適用されるので、特に必要ありませんが、明示的に指定する場合もあります */
   font-weight: bold;
   color: royalblue;
    border-bottom: 2px solid #9e9e9e;
    padding-bottom: 10px;
	font-size: 17px;
}
.top-bookmaker-box {
  padding-left: 58px; /* 左側の余白を30pxに設定 */
  line-height: 50px!important; /* 行の高さを30pxに設定 */
  background: url('https://bosque-ltd.co.jp/casino/wp-content/uploads/2023/09/ranking-100-×-100-px-50-×-50-px-3.png') no-repeat left top; /* 背景色と画像を設定 */
  display: block; /* displayプロパティはブロック要素に適用されるので、特に必要ありませんが、明示的に指定する場合もあります */
   font-weight: bold;
   color: royalblue;
    border-bottom: 2px solid #9e9e9e;
    padding-bottom: 10px;
	font-size: 17px;
}

.top-bitcoin-box {
  padding-left: 58px; /* 左側の余白を30pxに設定 */
  line-height: 50px!important; /* 行の高さを30pxに設定 */
  background: url('https://bosque-ltd.co.jp/casino/wp-content/uploads/2023/09/ranking-100-×-100-px-50-×-50-px-4.png') no-repeat left top; /* 背景色と画像を設定 */
  display: block; /* displayプロパティはブロック要素に適用されるので、特に必要ありませんが、明示的に指定する場合もあります */
   font-weight: bold;
   color: royalblue;
    border-bottom: 2px solid #9e9e9e;
    padding-bottom: 10px;
	font-size: 17px;
}

.top-nihongo-box {
  padding-left: 58px; /* 左側の余白を30pxに設定 */
  line-height: 50px!important; /* 行の高さを30pxに設定 */
  background: url('https://bosque-ltd.co.jp/casino/wp-content/uploads/2023/09/ranking-100-×-100-px-50-×-50-px-5.png') no-repeat left top; /* 背景色と画像を設定 */
  display: block; /* displayプロパティはブロック要素に適用されるので、特に必要ありませんが、明示的に指定する場合もあります */
   font-weight: bold;
   color: royalblue;
    border-bottom: 2px solid #9e9e9e;
    padding-bottom: 10px;
	font-size: 17px;
}
.top-title {
    font-size: 18px;
    font-weight: bold;
    border-bottom: 3px solid;
    padding-bottom: 8px;
    margin-bottom: 6px!important

  }
}

p.Center{
  text-align: center;
}

p.Center img{
  margin-left: auto;
  margin-right: auto;
}

.main-bdr, #inner-content .main-bdr{
  border-color: #000000 !important;
}

.widgettitle{
  background:#212327 !important;
  color:#fff !important;
}

.entry-content ul, .entry-content ol{
	border:none;
}

/* what's new */
.whatsnew {
	font-size: 0.8em !important;
}
.whatsnew h2 {
	margin-top: 0 !important;
	margin-bottom: 20px !important;
}
.whatsnew hr {
	border-top: 1px dashed #9C9C9C;
}
.whatsnew dd {
	border: none !important;
	padding-left: 10px !important;
}
.whatsnew p, .whatsnew br {
	display: none;
}

@media screen and (max-width: 599px) {
	.whatsnew h2 {
    	font-size: 1.4em !important;
	}
}

/* トップ　topic */
ul.toptopic {
	display: flex;
	flex-wrap: wrap;
	padding-left: 0;
}
ul.toptopic li {
	width: calc(100%/3);
	padding: 0 20px !important;
	box-sizing: border-box;
}
ul.toptopic li img {
	max-width: 100%;
	height: auto;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 0;
}
ul.toptopic li img:hover{
	transform: rotateY( 360deg );
	transition-duration: 0.8s;
}
@media screen and (max-width: 480px){
	ul.toptopic li {
		width: calc(100%/2);
		padding: 0 8px !important;
	}
	}


@media only screen and (min-width: 1240px){
  .wrap, .maximg, .single #inner-content, .page #inner-content, .inner-footer {
      width: 1140px;
  }
}

@media only screen and (min-width: 1030px){
  .article-header {
      margin: 0 0 10px;
  }
  .entry-content{
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px){
  .entry-content {
    padding: 10px 0 0;
  }
}

/****************** マイクロコピー *******************/

.arrow_box {
	position: relative;
	background: #fff;
	border: 2px solid #121212;
  margin-bottom: 2em;
  padding: .5em;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
}
.arrow_box:after, .arrow_box:before {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.arrow_box:after {
	border-color: rgba(255, 255, 255, 0);
	border-top-color: #fff;
	border-width: 15px;
	margin-left: -15px;
}
.arrow_box:before {
	border-color: rgba(18, 18, 18, 0);
	border-top-color: #121212;
	border-width: 18px;
	margin-left: -18px;
}

/************ 画像処理 *****************/

img.border{
  border:1px solid #ddd;
}
.entry-content td{
border-bottom: 2px solid #e0e0e0;
}
/************ ナビゲーション *****************/

nav.gloval{
 background:#121212;
 font-weight: 500;
}

nav.gloval .menu {
  position: relative;
  width: 100%;
  height: 50px;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
}

nav.gloval .menu > li {
  width: 25%;
  background: #121212;
}

nav.gloval .menu > li.double a::before{
	content:'';
	background:url(img/crown.png)no-repeat;
	position:absolute;
	width:20px;
	height:20px;
	background-size:contain;
	top:5px;
	left:0;
}

nav.gloval .menu > li a {
  display: block;
  color: #fff;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.35;
  padding: 15px 5px;
  position:relative;
}

nav.gloval .menu li.double a{
	padding:5px 5px 5px 25px;
}

nav.gloval .menu > li a:hover {
  color: #999;
}

ul.sub-menu {
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}

nav.gloval .menu > li:hover {
  background: #454545;
  -webkit-transition: all .5s;
  transition: all .5s;
  color:#fff;
  text-decoration: none;
}

.sub-menu li {
  border-top: 1px solid #454545;
}

.sub-menu li a:hover {
  background: #b4001e;
  color:#fff;
  text-decoration: none;
}

/* 下矢印 */
.init-bottom > a:after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0 0 15px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

nav.gloval .menu {
  *zoom: 1;
}

nav.gloval .menu > li.menu__single {
  position: relative;
}

li.menu__single ul.sub-menu {
  position: absolute;
  top: 20px;
  width: 100%;
  background: #8f0018;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

li.menu__single:hover ul.sub-menu {
  top: 32px;
  visibility: visible;
  opacity: 1;
}

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

  nav.gloval{
    display: none;
  }

  #entry{
    padding-left: 1em;
    padding-right: 1em;
  }

}

/************ 固定ページ トップヘッダースライダー*****************/

.slider-container{
  background: #000;
  width:100%;
}

.slider{
  max-width: 1280px;
  margin: auto;
}

.slick-img{
  position: relative;
  max-width: 1280px;
  margin: auto;
  height:33.5vh;
}
.slick-img .Inner{
z-index: 2;
position: relative;
padding: 1em;
display: flex;
flex-direction: column;
justify-content: center;
color:#fff;
height: 100%;
}
.slick-img .title{
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: .5em;
  font-family:'Noto Sans JP',游ゴシック体, 'Yu Gothic', YuGothic,'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

.slick-img .text{
  font-size: 0.9rem;
  font-weight: 400;
  font-family:'Noto Sans JP',游ゴシック体, 'Yu Gothic', YuGothic,'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;

}

.slick-img:after{
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
  top:0;
  left:0;
  width:100%;
  height:100%;
}

.slick-img img{
  width:100%;
  height:100%;
  margin: auto;
  object-fit: cover;
  position: absolute;
  bottom:0;
  z-index: 0;
}

a.header_btn{
  border-radius: 5px;
    background: #38bd00;
    border: 1px solid #31dc46;
  display: block;
  max-width: 200px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  padding: 10px;
  margin-top: .75em;
  font-family:'Noto Sans JP',游ゴシック体, 'Yu Gothic', YuGothic,'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-weight: 400;
}

a.header_btn:hover{
    background: #4cff00;
}

.thumbnail{
  max-width: 1140px;
  margin:1em auto;
}

.thumbnail-img{
  width:33.33%;
}

.thumbnail-img img{
  max-height: 150px;
  object-fit: cover;
}

/**************ドロワーメニュー****************/

#menu-sp-navi{
  margin-top: 50px;
  margin-bottom: 50px;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  border-bottom: solid 1px gray;
}
/* ハンバーガーメニュー */
.header__hamburger {
  width: 48px;
  height: 48px;

}

.hamburger {
  background-color: #ddd;
  border-color: transparent;
  z-index: 9999;
  position: absolute;
  top: 0;
}

@media screen and (min-width: 960px) {
  .hamburger {
    display: none;
  }
}


.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #000;
  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;
}
.header__nav {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #121212;
  transition: ease .4s;
  overflow-y: scroll;
}

.hamburger.active{
  position: fixed;
}

.nav-items {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
}

/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}

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

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

}

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

.global-nav__item a{
  display: block;
  padding: 10px;
  width:80%;
}

.full a{
	width:100%;
	position:relative;
    padding-left:30px;
}

.full a:before{
	content:'';
	background:url(img/crown.png)no-repeat;
	position:absolute;
	width:20px;
	height:20px;
	background-size:contain;
    top: 15px;
    left: 5px;
}

.global-nav__link {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

body.active {
  height: 100vh;
  position:fixed;
}

.nav-open .sub-menu{
  display:none;
}

.nav-open.active .sub-menu{
  display: block;
  visibility: inherit;
  opacity: 1;
}

.nav-open{
	position: relative;
}

.global-nav__item a{
  position: relative;
}

.nav-open.global-nav__item a::before{
	content: "＋";
	position: absolute;
  top: 50%;
  transform: translateY(-50%);
	right: -60px;
  color: #fff;
  z-index: 5;
  padding: 5px;
  background: #000;
  pointer-events: none;
}
.nav-open.active.global-nav__item a::before{
	content: "－";
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  color:#fff;
  z-index: 5;
  padding: 5px;
  background: #000;
  pointer-events: none;
}

.sub-menu a:before, .sub-menu:after{
  display: none;
}

.nav-open.active .sub-menu{
  max-width: 95%;
  margin: auto;
}

.nav-open.active .sub-menu a{
  width:100%;
  padding: .5em;
  background: #fff;
  color:#121212;
  margin: 1px auto;
}

/************ 固定ページトップページおすすめランキング *****************/

table.table-recommend th {
  background: #fffde3;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 4px;
  margin-right: 7px;
}

table.table-recommend td.grid_1 {
  width: 25%;
  position:relative;
}

table.table-recommend td.grid_3 {
  width: 36%;
  padding: 0 5px;
}


table.table-recommend td.grid_2 {
    position: relative;
    width: 16%;
}

table.table-recommend td.grid_4 {
  width: 16%;
}

table.table-recommend td.grid_1 span.recommend-no {
  position: absolute;
  display: inline-block;
  background: #FFEE15;
  font-size: 15px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 0 0 7px 0;
  top: 10px;
  left: 0;
}

table.table-recommend td.grid_1 .recommend-logo {
  display: flex;
  margin-bottom: 0px;
  -ms-align-items: center;
  align-items: center;
}

table.table-recommend td.grid_1 .recommend-logo img {
  width: 120px;
  height: 120px;
  margin:auto;
  object-fit:cover;
}


table.table-recommend td.grid_1 .recommend-logo .recommend-casinoname {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
	text-align:center;
}

table.table-recommend td.grid_1 .recommend-logo .recommend-casinoname p{
  margin: 0 auto;
  line-height:1.455;
  text-align:center;
}

.ratingPoint .red {
  font-size: 16px;
  color: red;
  padding: 0 5px;
}

span.fa-stack {
  width: auto!important;
  margin-right: 13px;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.ratingStar i.fa-empty {
  color: #ccc;
}

table.table-recommend td.grid_1 dl.recommend-rtp {
  display: flex;
  border: 2px solid #028BF0;
  font-weight: 700;
  font-size: 12px;
  margin-top:0;
  margin-bottom: 0;
}

ul.list-check-gr li::before {
  position: absolute;
  left: 0;
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  font-weight: 900;
  content: '\f058';
  color: #4BD37B;
}

.recommend-bonus {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  border: 1px solid #f07008;
  background: #f07008;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}

.recommend-bonus div {
  width: 100%;
  margin-top: -4px;
  background: #fff;
  color:#121212;
}

.recommend-bonus p {
  margin-bottom: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
}


.recommend-bonus p.txt-jyouken {
    display: block;
    border-top: 1px solid #CCC;
    text-align: center;
    width: 97%;
    margin: 0 auto;
    padding: 5px;
}

table.table-recommend td.grid_4 a.btn-recommend-official {
  display: block;
  background: #F44C01;
  color: #FFF;
  font-weight: 700;
  text-align: center;
  padding: 8px;
  margin-bottom: 8px;
  font-size: 0.855rem;
}

table.table-recommend td.grid_4 a.btn-recommend-detail {
  display: block;
  background: #EFEFEF;
  color: #111;
  text-align: center;
  padding: 8px 4px;
  font-size: 0.755rem;
}

ul.list-check-gr li{
  position: relative;
  font-size: 0.9rem;
  padding-left: 20px;
}

table.table-recommend td.grid_1 dl.recommend-rtp dt {
  background: #028BF0;
  color: #FFF;
  text-align: center;
  width: 50%;
  padding: 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

table.table-recommend td.grid_1 dl.recommend-rtp dd{
  text-align: center;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.new-list.ranking .img{
  position: relative;
}

.new-list.ranking:nth-of-type(1) .img:before {
  content: '';
  background: url(img/icon/gold_icon.png) no-repeat;
  background-size: contain;
  position: relative;
  width: 45px;
  height: 40px;
  margin: 0 auto -15px;
  display: block;
}

.new-list.ranking:nth-of-type(2) .img:before {
  content: '';
  background: url(img/icon/silver_icon.png) no-repeat;
  background-size: contain;
  position: relative;
  width: 45px;
  height: 40px;
  margin: 0 auto -15px;
  display: block;
}

.new-list.ranking:nth-of-type(3) .img:before {
  content: '';
  background: url(img/icon/bronz_icon.png) no-repeat;
  background-size: contain;
  position: relative;
  width: 45px;
  height: 40px;
  margin: 0 auto -15px;
  display: block;
}
.new-list.ranking:nth-of-type(4) .img:before {
  content: '';
  background: url(img/icon/other_icon.png) no-repeat;
  background-size: contain;
  position: relative;
  width: 45px;
  height: 40px;
  margin: 0 auto -15px;
  display: block;
}
.new-list.ranking:nth-of-type(5) .img:before {
  content: '';
  background: url(img/icon/other_icon_five.png) no-repeat;
  background-size: contain;
  position: relative;
  width: 45px;
  height: 40px;
  margin: 0 auto -15px;
  display: block;
}

@media screen and (max-width: 767px) {
  .table-scroll{
    overflow-x: scroll;
  }

  table.table-recommend{
    min-width: 600px;
  }
  table.table-recommend td.grid_1 .recommend-logo .recommend-casinoname{
    font-size: 13px;
	padding-left:5px;
  }
  table.table-recommend th{
    font-size: 11px;
  }

  a.header_btn{
    margin-left: auto;
    margin-right: auto;
    font-size: 0.785rem;
  }
	.single-title{
		font-size: 18px!important;
		margin: 16px 0 0 0;
	    margin-bottom: -14px!important;
	}

}

/************ 固定ページ *****************/
.mb__box{
  margin-top: 40px;
}

.flex__box{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex__box .Item{
  width:var(--flex_hurf);
  margin-bottom: 2em;
}

dl.new-list{
  display: flex;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

dl.new-list dt.img{
  width: 90px;
  margin-right: 10px;
}

dl.new-list dt.img img{
  object-fit: cover;
  width: 90px;
  height: 90px;
  border: 1px solid #ddd;
  padding: 5px;
}

dl.new-list dd{
  width:calc(100% - 100px);
  font-size: 0.9rem;
}

dl.new-list dd span.time{
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

a.arrow{
  text-align: right;
  display: block;
  font-size: 0.9rem;
  position: relative;
  background: #121212;
  border:1px solid #121212;
  text-align: center;
  color:#fff;
  width:100%;
  padding: .3em;
}

a.arrow:hover{
  text-decoration: none;
  background: #fff;
  color:#121212;
  border:1px solid #121212;
}

.bg-gray{
  background: #f9f9f9;
  padding: 1em;
}

/************ 投稿ページ *****************/

/**** 見出し ****/

.single-title, .page-title{
  padding: 15px;
  font-size: 22px;
  font-weight: 700;
  border-top: 4px solid #f07008;
  border-image: linear-gradient(to right,#f07008 0%,#e60b03 100%);
  border-image-slice: 1;
  position: relative;
  margin-bottom: 20px;
}

.entry-content h2, h2.home, h1.home{
  background: var(--key-Color);
  padding: .7em;
  color:#fff;
  font-weight: 600;
}

.cardtype__article h2{
  background: transparent;
  padding: 0;
  color: #121212;
}

h2.home, h1.home{
  font-size: 1.15rem;
  margin-bottom: 1em;
}

h2.home:first-child, h1.home{
  margin-top: 0;
}

h2.square {
  position: relative;
  text-align: center;
  margin-bottom: 1em;
  }

  h2.square .inner{
    background-color: #fff;
    position: relative;
    z-index: 2;
  }
  h2.square .inner img{
    width:35px;
    vertical-align: middle;
    margin-right: 10px;
  }

  h2.square:before {
  content:'';
  height: 100px;
  width: 100px;
  border: solid 1px #121212;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 0;
  }


h3.border{
  padding-bottom: .5em;
  font-size: 1.1rem;
  border-bottom: 5px solid #efefef;
  padding-left:0;
}

h3.border img{
  max-width: 50px;
  margin-right: 5px;
}

.entry-meta{
  border-top: 1px solid #ddd;
  padding-top: 1em;
}

.entry-content h3{
  border-left:solid 5px #f07008 !important;
  position: relative;
  margin-bottom: 1.5em;
}

.entry-content h3::after{
  content: '';
  background: #ddd;
  position: absolute;
  height:1px;
  width: 100%;
  bottom:-10px;
  left:0;
}

/**** 目次 ****/

#toc_container p.toc_title{
  padding-left: 60px;
}

#toc_container .toc_title:before{
  margin-right: .5em;
}

/**** 執筆者 ****/

.Supervisor__wrap, .widget_author_box {
  border: 1px solid #121212;
  border-top-left-radius: 1.4em;
  border-bottom-right-radius: 1.4em;
  padding: 2em;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: var(--s3-space);
  margin-bottom: var(--s3-space);
  font-size: 0.9rem;
  background: #fafafa;
}

.author-box {
  margin-bottom: 0 !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.author-box .Icon {
  width: 90px;
  margin-right: 10px;
}

.author-content {
  margin-left: 0;
  flex-grow: 2;
  max-width:calc(100% - 100px);
}

.author-box .author-name {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 0.4em;
}

.author-description {
    margin-bottom: 1em;
}

.Supervisor__wrap p, .author-description p {
  font-size: 0.9rem;
  margin-bottom: 0.75em;
}

.supervisor__name, .author-widget-name {
  position: relative;
  background-color: #121212;
  font-family: 'Noto Sans JP',游ゴシック体, 'Yu Gothic', YuGothic,'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  padding: 0.355em;
  font-weight: 400;
  line-height: 1.0;
  text-align: center;
  width: 90px;
  font-size: 0.75rem;
  color: #fff;
  margin: 0px auto;
  }

  .Supervisor__wrap .Icon img, .author-box .Icon img {
    border-radius: 50%;
    overflow: hidden;
    width: 90px;
    height: 90px;
    object-fit: cover;
}

.Supervisor__wrap p.name, .author-name {
  font-size: 1.0rem;
  font-weight: 700;
  padding-left: 1em;
  border-left: 8px solid var(--key-Color);
}

/************ ランキングボックス *****************/

.flex_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex_box .Item{
  width: var(--flex_hurf);
}

.rank-box-wrap{
  border:2px solid var(--key-Color);
  border-radius: 0.86em;
  background: #fff;
  overflow: hidden;
}

.rank-box-wrap .Inner{
  padding: 1em;
}

.rank-box-wrap .head__title{
  background: var(--key-Color);
  padding: 1em 1em 1em 110px;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-top: 0;
  border-left: 0 !important;
  margin-bottom: 0;
}

.rank-box-wrap .head__title:after{
  display: none;
}

/************ ランキングアイコン *****************/

.rank-box-wrap .head__title::before{
  content: '';
   position: absolute;
   left: .5em;
   top:0px;
   width:90px;
   height:90px;
}

.rank-box-wrap:first-child .head__title::before{
  background: url(img/rank/one.png)no-repeat;
  background-size: contain;
}

.rank-box-wrap:nth-of-type(2) .head__title::before{
  background: url(img/rank/two.png)no-repeat;
  background-size: contain;
}

.rank-box-wrap:nth-of-type(3) .head__title::before{
  background: url(img/rank/three.png)no-repeat;
  background-size: contain;
}

.rank-box-wrap:nth-of-type(4) .head__title::before{
  background: url(img/rank/four.png)no-repeat;
  background-size: contain;
}

.rank-box-wrap:nth-of-type(5) .head__title::before{
  background: url(img/rank/five.png)no-repeat;
  background-size: contain;
}

.rank-box-wrap:nth-of-type(6) .head__title::before{
  background: url(img/rank/six.png)no-repeat;
  background-size: contain;
}

.rank-box-wrap:nth-of-type(7) .head__title::before{
  background: url(img/rank/seven.png)no-repeat;
  background-size: contain;
}

.rank-box-wrap:nth-of-type(8) .head__title::before{
  background: url(img/rank/eight.png)no-repeat;
  background-size: contain;
}

.rank-box-wrap:nth-of-type(9) .head__title::before{
  background: url(img/rank/nine.png)no-repeat;
  background-size: contain;
}

.rank-box-wrap:nth-of-type(10) .head__title::before{
  background: url(img/rank/ten.png)no-repeat;
  background-size: contain;
}

.rank-box-wrap:nth-of-type(11) .head__title::before{
  background: url(img/rank/11.png)no-repeat;
  background-size: contain;
}

.rank-box-wrap:nth-of-type(12) .head__title::before{
  background: url(img/rank/12.png)no-repeat;
  background-size: contain;
}

.rank-box-wrap:nth-of-type(13) .head__title::before{
  background: url(img/rank/13.png)no-repeat;
  background-size: contain;
}

.rank-box-wrap:nth-of-type(14) .head__title::before{
  background: url(img/rank/14.png)no-repeat;
  background-size: contain;
}

.rank-box-wrap:nth-of-type(15) .head__title::before{
  background: url(img/rank/15.png)no-repeat;
  background-size: contain;
}

.rank-box-wrap:nth-of-type(16) .head__title::before{
  background: url(img/rank/16.png)no-repeat;
  background-size: contain;
}

.rank-box-wrap:nth-of-type(17) .head__title::before{
  background: url(img/rank/17.png)no-repeat;
  background-size: contain;
}

.rank-box-wrap:nth-of-type(18) .head__title::before{
  background: url(img/rank/18.png)no-repeat;
  background-size: contain;
}

.rank-box-wrap:nth-of-type(19) .head__title::before{
  background: url(img/rank/19.png)no-repeat;
  background-size: contain;
}

.rank-box-wrap:nth-of-type(20) .head__title::before{
  background: url(img/rank/20.png)no-repeat;
  background-size: contain;
}

.rank-box-wrap .head__title.single::before{
  background: url(img/rank/crown.png)no-repeat;
  background-size: contain;
}

.rank-box-wrap + .rank-box-wrap{
  margin-top: var(--s3-space);
}

.rank-box-wrap .flex__wrap{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 1em;
}

.rank-box-wrap .flex__wrap .Item{
  width: var(--flex_hurf);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rank-box-wrap .flex__wrap .Item.border{
  border:2px solid #ddd;
  padding: 1em;
}

.ratingStar i {
  color: #fc0;
}

.ratingStar i.fa-empty {
  color: #ccc;
}

.rankingRatingItem{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  font-size: 0.925rem;
}

.ratingStar{
  background: #f9f9f9;
  position: relative;
  z-index: 1;
  padding: 1px 5px;
}

.txt_bold {
  font-weight: 700;
}

.rank-box-wrap dl.ranking_payout {
  display: flex;
  -ms-align-items: center;
  align-items: center;
  text-align: center;
  background: #f07008;
  background: -moz-linear-gradient(left,#f07008 0%,#e60b03 100%);
  background: -webkit-linear-gradient(left,#f07008 0%,#e60b03 100%);
  background: linear-gradient(to right,#f07008 0%,#e60b03 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f07008',endColorstr='#e60b03',GradientType=1);
  padding: 2px;
  margin-bottom: 0;
  margin-top:0;
}

dl.ranking_payout dt {
  color: #fbff00;
  font-size: 17px;
  line-height: 1.3;
  padding:0 5px;
  width:60%;
  font-weight: bold;
}
.rank-box-wrap dl.ranking_payout dt p {
  margin: 0;
  padding: 0;
}

.rank-box-wrap dl.ranking_payout dd {
  color: #fa0001;
  background: #FFF;
  font-size: 170%;
  padding: .25em;
  width:100%;
  margin:0;
  font-weight: bold;
  line-height: 1.455;
}

.rankingTotal {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #d8d8d8;
  margin-top: 15px;
  padding: 19px 0px 0;
}

.rankingTotalTtl {
  font-weight: bold;
  font-size: 20px;
}

.rankingTotal .rating{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rankingTotal .ratingPoint {
  font-size: 16px;
  font-weight: bold;
}

.rankingTotal .rating span.red{
  font-size: 24px;
  color:#fa0001;
}


ul.ranking_btn {
  margin: 20px 0 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  border: none;
}

ul.ranking_btn li{
  width:100%;
  max-width:var(--flex_hurf);
  padding: 0;
}


ul.ranking_btn li a.btn_regist {
  color: #FFF;
  background: #fc9c21;
  background: -moz-linear-gradient(top,#fc9c21 0%,#f63202 100%);
  background: -webkit-linear-gradient(top,#fc9c21 0%,#f63202 100%);
  background: linear-gradient(to bottom,#fc9c21 0%,#f63202 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fc9c21',endColorstr='#f63202',GradientType=0);
}

.ranking-box p, article.txtbody .ranking-box li {
  font-size: 15px;
}

ul.ranking_btn li a.btn_regist, ul.ranking_btn li a.btn_detail, a.btn_official {
  display: block;
  font-weight: 700;
  text-align: center;
  border-radius: 10px;
  font-size: 20px;
  line-height: 1.3em;
  width: 100%;
  position: relative;
  box-shadow: 1px 1px 2px 1px rgba(255,255,255,0.6) inset;
  text-decoration: none;
}

ul.ranking_btn li a.btn_regist br, ul.ranking_btn li a.btn_detail, a.btn_official br{
  display: none;
}

ul.ranking_btn li a.btn_regist:hover, ul.ranking_btn li a.btn_detail:hover{
  opacity: 0.5;
  text-decoration: none;
}


ul.ranking_btn li a.btn_regist, ul.ranking_btn li a.btn_detail {
  padding: 20px 12px;
  list-style: none;
  display: block;
}

ul.ranking_btn li a.btn_regist::after, a.btn_official::after {
  font-family: "Font Awesome 5 Free";
  content: "\f35d";
  padding: 0 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

ul.ranking_btn li a.btn_detail::after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  padding: 0 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.balloon_bonus {
  position: absolute;
  top: -27px;
  left: 0;
  right: 0;
  margin: auto;
  width:95%;
  height: 35px;
  background: #F7F7F7;
  padding: 5px;
  text-align: center;
  border: 2px solid #F44C01;
  color: #f44c01;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  box-shadow: 1px 1px 2px #666;
}

ul.ranking_btn li a.btn_regist span, ul.ranking_btn li a.btn_detail span {
  display: block;
  font-size: 80%;
}

ul.ranking_btn li a.btn_detail {
  color: #333;
  border: 2px solid #D7DED5;
  box-sizing: border-box;
  background: #fff;
  background: -moz-linear-gradient(top,#fff 34%,#c4c0c0 100%);
  background: -webkit-linear-gradient(top,#fff 34%,#c4c0c0 100%);
  background: linear-gradient(to bottom,#fff 34%,#c4c0c0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#c4c0c0',GradientType=0);
}

.campaign_wrap{
  border-radius: 0.446em;
  border:2px solid #df2a4a;
  overflow: hidden;
  margin-bottom: 2em;
}

.campaign_wrap .title{
  background:#df2a4a;
  color: #f7e700 !important;
  padding:.3em .3em .3em 1em;
  color:#fff;
  font-size: 1.25rem;
  font-weight: bold;
}

.campaign_wrap .text{
  padding: .5em;
}

.campaign_wrap ul{
  list-style: none;
  margin: 0;
  padding: 0;
  border:none;
}

.campaign_wrap ul p{
  margin-bottom: 0;
  margin-left: .5em;
}

.campaign_wrap ul li{
  display: block;
  flex-wrap: nowrap;
  font-weight: bold;
  align-items: flex-start;
}

.detail-title {
  position: relative;
  padding: .5em .7em;
  background-color: #003357;
  color: #fff;
  margin-top: 0.7em;
  margin-bottom:.5em;
    font-weight: bold;
    font-size: 1.2rem;
}

div.ranking{
	margin-top:2em;
}


.detail-title::before {
  position: absolute;
  top: 100%;
  left: 0;
  border-bottom: solid 10px transparent;
  border-right: solid 20px #002347;
  content: '';
}

.review_title {
  display: flex;
  justify-content: start;
  align-items: center;
  position: relative;
  padding: .5em .7em;
  overflow: hidden;
  border: 2px solid #0d0d0d;
  border-radius: 5px;
  color: #333333;
  margin: 0 auto 1em;
  position: relative;
  z-index: 5;
  font-weight: bold;
}

.review_title:before {
  position: absolute;
  top: -50%;
  left: -30px;
  z-index: 0;
  transform: rotate(25deg);
  width: 100px;
  height: 200%;
  background-color: #0d0d0d;
  content: '';
}

.review_title span {
  margin-right: 1.1em;
  color: #fff;
  font-size: 1.1em;
  position: relative;
  z-index: 3;
}

dl.ranking_limited dd ul li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px dotted #b5b5b5;
  padding: 10px 0;
  line-height: 1.6em;
  list-style: none;
}

dl.ranking_limited dd ul li p span {
  color: #fb4872;
}

span.icon-cam {
  border-radius: 5px;
  background: #fb4872;
  color: #FFF;
  text-align: center;
  padding: 2px 7px;
  flex-shrink: 0;
}

.point_wrap{
  margin-bottom: var(--s2-space);
}

.detail_wrap, .mb30{
 margin-bottom: 2em;
}

article.txtbody.main a.link_box {
  font-size: 15px;
  line-height: 1.6em;
}

a.link_box, a.link_box {
  display: block;
  border: 1px solid var(--key-Color);
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  padding: 10px;
  background: var(--key-Color);
  color:#fff;
}

a.link_box:hover{
  background: #fff;
  color:var(--key-Color);
}

.rev__good{
  padding: .5em .7em;
  border-top: 2px solid #ff3100;
  border-bottom: 2px solid #ff3100;
  background-color: #ff7200;
  background-size: 20px 20px;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
}

.bad__good{
  padding: .5em .7em;
  border-top: 2px solid #1e3a56;
  border-bottom: 2px solid #1e3a56;
  background: #3d67a1;
  background-size: 20px 20px;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
}

.detail_text{margin-top: 2em;}

ul.good, ul.bad{
  list-style: none;
  margin: 0;
  padding: 0;
  border:none;
}
ul.good li, ul.bad li{
padding: 0;
margin-top: .5em;
font-weight: normal;
line-height: 1.255;
}

ul.good li:before{
  content:'●';
  color:#ff7200;
  font-size:  30px;
  display: inline-block;
  margin-right: .25em;
}

ul.bad li:before{
  content:'●';
  color:#3d67a1;
  font-size:  30px;
  display: inline-block;
  margin-right: .25em;
}

a.btn_official {
  color: #FFF;
  border: 2px solid #ffaebc;
  box-sizing: border-box;
  background: #fea794;
  background: -moz-linear-gradient(top,#fea794 7%,#ff1349 99%);
  background: -webkit-linear-gradient(top,#fea794 7%,#ff1349 99%);
  background: linear-gradient(to bottom,#fea794 7%,#ff1349 99%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fea794',endColorstr='#ff1349',GradientType=0);
}

a.btn_official {
  display: block;
  font-weight: 700;
  text-align: center;
  border-radius: 10px;
  font-size: 20px;
  line-height: 1.3em;
  width: 100%;
  position: relative;
  box-shadow: 1px 1px 2px 1px rgba(255,255,255,0.6) inset;
}

a.btn_official {
  padding:1.2em 12px;
}

a.btn_official:hover{
  text-decoration: none;
  opacity: 0.55;
}

table.shipping-wrap{
  border:1px solid #ddd;
  margin: 1em auto 0;
  border-collapse: collapse;
}

table.shipping-wrap th.red {
    background: #d36565;
}

.entry-content tr:not(:last-child){
  border: none;
}

.transparent-bothends {
  position: relative;
  width: 100%;
  margin: 1em 0 1em;
  padding: 10px 0;
  color: #1475d6;
  font-size: 1.25rem;
  text-align: center;
  font-weight: bold;
}

.transparent-bothends::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  margin: 0 auto;
  text-align: center;
  background-image: -webkit-linear-gradient(left, transparent, #1475d6 25%, #1475d6 75%, transparent);
  background-image: linear-gradient(to right, transparent, #1475d6 25%, #1475d6 75%, transparent);
  background-position: center;
  background-repeat: no-repeat;
}

table.shipping-wrap th{
  background:#779eed;
  padding: .5em;
  text-align: center;
  color:#fff;
  vertical-align: middle;
  width:20%;
  border:none;
  border-bottom:1px solid #fff;
}

table.shipping-wrap td{
  border: none;
  border-bottom:1px solid #ddd;
  padding: .5em;
  text-align: left;
  vertical-align: middle;
}

table.shipping-wrap tr:last-child th{
  border-bottom: 0;
}

table.shipping-wrap td img{
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 0;
  max-width: 50px !important;
}

table.shipping-wrap td p{
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
}

.ranking_gamebox {
  background: #f9f9f9;
  border: 1px solid #d5e4f3;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  padding: 1em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  margin:1em auto;
}

.ranking_gamebox::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 90px 90px 0;
  border-color: transparent #1475d6 transparent transparent;
  content: "";
  padding: 0 10px;
  position: absolute;
  top: -10px;
  right: -10px;
}

.ranking_gamebox .image{
  width: 32%;
}

.ranking_gamebox dl {
  width: 63%;
}

.ranking_gamebox dl dt {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
}

.ranking_gamebox dl dt span {
  display: block;
  color: #35529a;
  margin-bottom: 10px;
}

.ranking_gamebox dl dd{
  margin-bottom: 0;
}

.ranking_gamebox::after {
  font-family: "Font Awesome 5 Free";
  content: "\f185";
  color: #fcff00;
  font-size: 20px;
  font-weight: 900;
  padding: 0 10px;
  position: absolute;
  top: 12%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

article.txtbody.main .ranking_gamebox dd {
  font-size: 15px;
}

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

	table.table-recommend td.grid_1{
		vertical-align:top;
		padding-top:5px;
	}

  ul.ranking_btn li:first-child{
    margin-bottom: 1em;
  }

	.ratingStar{
	padding: 1px 0;
	}

	.campaign_wrap ul li{
		display:block;
	}

	.campaign_wrap ul{
		padding:0 !important;
	}

	.campaign_wrap ul p{
		margin-left:0;
	}

  .transparent-bothends{
    font-size: 1.1rem;
  }

  .flex_box .Item:first-child, .rank-box-wrap .flex__wrap .Item{
    margin-bottom: 1em;
  }

  .rank-box-wrap div.head__title{
    padding: .55em .55em .55em 70px;
  }

  .rank-box-wrap div.head__title::before{
     left: 5px;
     top:1px;
     width:60px;
     height:60px;
  }

  .rank-box-wrap .flex__wrap .Item.border:last-child{
    margin-bottom: 0;
  }

  .campaign_wrap .title{
    font-size: 1.15rem;
  }

  a.btn_official{
    font-size: 1.25rem;
  }

  a.btn_official span{
    display: block;
  }

  table.shipping-wrap th{
   line-height: 1.5;
    font-size: 0.8rem;
  }

  table.shipping-wrap td img{
    margin-top: 2px;
    margin-bottom: 2px;
  }

  .ranking_gamebox .image {
    width: 100%;
    margin-bottom: 1em;
  }

  .ranking_gamebox dl{
    width: 100%;
  }

  .ranking_gamebox::after{
    top:5%;
  }

}

/************ ミニスライダー *****************/
.min-ranking{
  counter-reset: number 0;}

.min-ranking {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  margin: 1em 0 1.5em;
  padding-bottom: 1em;
}

.min-ranking__item {
  width: 150px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  align-items: center;
  position:relative;
  padding-bottom:65px;
}

.min-ranking__head {
  text-align: center;
  font-weight: bold;
  color: #1475d6;
  position:relative;
  padding-top:30px;
}

.min-ranking__head .postdate{
	font-weight:bold;
	color:#fe0000;
	text-align:center;
    position: relative;
    padding-top: 3px;
}

.min-ranking__sitename{
 color: #1475d6;
 padding-top:10px;
 border-top:1px solid #1475d6;
 font-weight:bold;
 font-size:1.0rem;
 width:100%;
 text-align:center;
}

.min-ranking__item:first-child .min-ranking__head:before{
	position:absolute;
	top:0;
	content:'';
	background:url(img/min-slider/min-one.png)no-repeat;
	background-size:contain;
	width:45px;
	height:45px;
	left: 50%;
    transform:translateX(-50%);
}

.min-ranking__item:nth-of-type(2) .min-ranking__head:before{
	position:absolute;
	top:0;
	content:'';
	background:url(img/min-slider/min-two.png)no-repeat;
	background-size:contain;
	width:45px;
	height:45px;
	left: 50%;
    transform:translateX(-50%);
}

.min-ranking__item:nth-of-type(3) .min-ranking__head:before{
	position:absolute;
	top:0;
	content:'';
	background:url(img/min-slider/min-three.png)no-repeat;
	background-size:contain;
	width:45px;
	height:45px;
	left: 50%;
    transform:translateX(-50%);
}

.min-ranking__item:nth-of-type(4) .min-ranking__head:before{
	position:absolute;
	top:0;
	content:'';
	background:url(img/min-slider/min-four.png)no-repeat;
	background-size:contain;
	width:45px;
	height:45px;
	left: 50%;
    transform:translateX(-50%);
}
.min-ranking__item:nth-of-type(5) .min-ranking__head:before{
	position:absolute;
	top:0;
	content:'';
	background:url(img/min-slider/min-five.png)no-repeat;
	background-size:contain;
	width:45px;
	height:45px;
	left: 50%;
    transform:translateX(-50%);
}
.min-ranking__item:nth-of-type(6) .min-ranking__head:before{
	position:absolute;
	top:0;
	content:'';
	background:url(img/min-slider/min-six.png)no-repeat;
	background-size:contain;
	width:45px;
	height:45px;
	left: 50%;
    transform:translateX(-50%);
}
.min-ranking__item:nth-of-type(7) .min-ranking__head:before{
	position:absolute;
	top:0;
	content:'';
	background:url(img/min-slider/min-seven.png)no-repeat;
	background-size:contain;
	width:45px;
	height:45px;
	left: 50%;
    transform:translateX(-50%);
}
.min-ranking__item:nth-of-type(8) .min-ranking__head:before{
	position:absolute;
	top:0;
	content:'';
	background:url(img/min-slider/min-eight.png)no-repeat;
	background-size:contain;
	width:45px;
	height:45px;
	left: 50%;
    transform:translateX(-50%);
}
.min-ranking__item:nth-of-type(9) .min-ranking__head:before{
	position:absolute;
	top:0;
	content:'';
	background:url(img/min-slider/min-nine.png)no-repeat;
	background-size:contain;
	width:45px;
	height:45px;
	left: 50%;
    transform:translateX(-50%);
}
.min-ranking__item:nth-of-type(10) .min-ranking__head:before{
	position:absolute;
	top:0;
	content:'';
	background:url(img/min-slider/min-ten.png)no-repeat;
	background-size:contain;
	width:45px;
	height:45px;
	left: 50%;
    transform:translateX(-50%);
}
.min-ranking__item:nth-of-type(11) .min-ranking__head:before{
	position:absolute;
	top:0;
	content:'';
	background:url(img/min-slider/min-eleven.png)no-repeat;
	background-size:contain;
	width:45px;
	height:45px;
	left: 50%;
    transform:translateX(-50%);
}
.min-ranking__item:nth-of-type(12) .min-ranking__head:before{
	position:absolute;
	top:0;
	content:'';
	background:url(img/min-slider/min-eleven.png)no-repeat;
	background-size:contain;
	width:45px;
	height:45px;
	left: 50%;
    transform:translateX(-50%);
}
.min-ranking__item:nth-of-type(13) .min-ranking__head:before{
	position:absolute;
	top:0;
	content:'';
	background:url(img/min-slider/min-13.png)no-repeat;
	background-size:contain;
	width:45px;
	height:45px;
	left: 50%;
    transform:translateX(-50%);
}
.min-ranking__item:nth-of-type(14) .min-ranking__head:before{
	position:absolute;
	top:0;
	content:'';
	background:url(img/min-slider/min-14.png)no-repeat;
	background-size:contain;
	width:45px;
	height:45px;
	left: 50%;
    transform:translateX(-50%);
}
.min-ranking__item:nth-of-type(15) .min-ranking__head:before{
	position:absolute;
	top:0;
	content:'';
	background:url(img/min-slider/min-15.png)no-repeat;
	background-size:contain;
	width:45px;
	height:45px;
	left: 50%;
    transform:translateX(-50%);
}
.min-ranking__head span {
  font-size: 1.2em;
  padding: 0 0.2em;
}

.min-ranking__head span:before{
  counter-increment: number 1;
  content: counter(number) " ";
}

.min-ranking__item a {
  text-decoration: none;
  text-align: center;
  border: 2px solid;
  padding: 1em 0.5em;
}

.min-ranking__item a p {
  background: #ffeb00;
  margin: 0;
  color: #333;
  font-weight: bold;
  font-size: 14px;
}

.min-ranking__item img {
  margin: 0 auto;
    display: block;
    max-height: 89px;
    object-fit: cover;
    width: 100%;
    min-width: 130px;
}

.min-ranking__bonus {
  text-align: center;
  width: 90%;
  margin: 0 auto;
}

.min-ranking__bonus p:nth-child(1) {
  font-size: 13px;
  color: #333;
  border: 2px solid #009bdf;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  margin-bottom: 0;
  margin-top: 0;
  font-weight: 500;
}

.min-ranking__bonus p:nth-child(2) {
  background: #009bdf;
  color: white;
  border-radius: 0 0 4px 4px;
  margin-bottom: 10px;
  margin-top: 0;
  font-weight: bold;
}

.min-ranking__bonus p.bonus{
	    min-height: 86px;
margin-top:0;
margin-bottom:0;
}

.big-font {
    font-size: 18px;
    line-height: 1.25;
    display: inline-block;
    padding-top: 5px;
}

.min-ranking__bonus p.bonus .big-font{
	font-size:16px;
}

.cvbtn-green {
  background: linear-gradient(90deg,#18dc00,#87f55a,#18dc00);
  color: #fff;
  border: 3px solid #eaff8d;
}

.min-ranking__item .ranking-linkbtn {
  width: 100%;
  position:absolute;
  bottom:0;
}

.min-ranking__item a {
  text-decoration: none;
  text-align: center;
  border: 2px solid;
  display: block;
}

.cvbtn {
  padding: 0.5em;
  display: block;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  font-size: 17px;
  font-weight: bold;
  border-radius: 16px;
  text-shadow: 0 2px 4px #000000aa;
  box-shadow: 0 3px 3px #00000064, 0 2px #ffffff88 inset, 0 -2px #00000033 inset;
  box-sizing: border-box;
  line-height: 1.5;
}

.rpwe-title a{
  font-weight: 700;
  font-size: 15px;
}



/************ スクロールモーダル *****************/

.Bnr{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	display: none;
	background-color: rgba(0, 0, 0, 0.8);
}

.Bnr__img{
	display:flex;
	justify-content:center;
	height:100vh;
}

.Bnr__img__inner{
  max-width: 800px;
  position:relative;
  margin:auto;
}

.Bnr .Bnr__img p.close-btn{
  position: absolute;
  right: 0px;
  top:-30px;
  width:35px;
  height:35px;
}

.Bnr .Bnr__img p.close-btn a{
  display: block;
  width: 35px;
  height: 35px;
  text-align: center;
}
.Bnr .Bnr__img p.close-btn a span{
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.Bnr .Bnr__img p.close-btn a i{
  font-size: 30px;
  z-index: 888;
  color: #fff;
}

/******************* 吹き出し ********************/

/*------------------------------
  画像付き吹き出し(解説用)
------------------------------*/
/*全体*/
.description {
  margin:2em 0;
  padding:10px;
  position:relative;
  display:-webkit-flex;
  display:flex;
}

.description:before , .description:after {
  clear: both;
  content: "";
  display: block;
}

/*画像部分*/
.description-image {
  max-width:70px;
  margin:0 20px 5px 0;
  padding:0;
}
.description-image img{
height:70px;
width:70px;
object-fit: cover;
border-radius: 50%;
margin-bottom: 5px;
}

/*画像の説明*/
.description-image figcaption {
  padding:2px;
  font-size:12px;
  text-align:center;
}

/*吹き出し部分*/
.text-box {
  margin:0;
  padding:0;
  max-width:calc(100% - 90px);
  min-width:200px;
}

.description-text {
   float:left;
  position:relative;
  margin:0;
  padding:10px;
  border:2px solid #aaa;
  border-radius:0.5em;
  background:#fff;
}

.description p {
  margin:0;
  padding:0;
}

.description-text:before {
  position: absolute;
  content: '';
  border: 10px solid transparent;
  border-right: 10px solid #aaa;
  top: 25px;
  left: -22px;
}

.description-text:after {
  position: absolute;
  content: '';
  border: 10px solid transparent;
  border-right: 10px solid #fff;
  top: 25px;
  left: -19px;
}

td.table-central, .table-central td{
  vertical-align: middle !important;
  text-align:center !important;
}

@media screen and (max-width:560px) {
  .description {
        -webkit-flex-direction:column;
        flex-direction:column;
  }

  .description-image {
        margin:0 0 20px;
        max-width:100%;
        min-width:120px;
        text-align:center
  }

  .text-box {
        max-width:100%;
        min-width:120px;
  }

  /*スマホ用三角部分*/
  .description-text:before {
        position: absolute;
        content: '';
        border: 10px solid transparent;
        border-bottom: 10px solid #aaa;
        top: -22px;
        left:47%;
  }

  .description-text:after {
        position: absolute;
        content: '';
        border: 10px solid transparent;
        border-bottom: 10px solid #fff;
        top: -19px;
        left:47%;
  }
  }

  /**************** この記事で分かること *******************/

  .point-wrap{
    position: relative;
    background: #fcf4ed;
    border-radius: 0.46em;
    overflow: hidden;
    padding: 1em;
    margin:var(--s3-space) auto;
  }

  .point-wrap .title{
    content: '';
    background: #323130;
    position: absolute;
    top:0;
    left:0;
    padding: .55em 1em;
    color: #fff;
    font-weight: bold;
    border-bottom-right-radius: 0.46em;
    border-top-left-radius: 0.46em;
    font-size: 0.9rem;
  }

  .point-wrap ul{
    margin:2em 0 0 0 !important;
    list-style: none;
    border: none;
    padding: 0 !important;
  }

  .point-wrap li{
    font-weight: 500;
  }

  .point-wrap li:before{
    content:'─';
    color:#999;
    display: inline-block;
    margin-right: 5px;
  }


    /**************** ランキングスライダー *******************/

    .main-ranking{
      border: 2px solid #C3BD7F;
    padding: 5px;
    }
    .main-ranking .title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 5px;
    }

    .main-ranking p{
      display: none;
    }

    .main-ranking .title .rank-head {
      font-size: 22px;
      font-weight: 700;
  }
     .main-ranking .Inner{
      border: 1px solid #C3BD7F;
      padding: .5em;
    }

    .main-ranking .Inner .thumbnail{
      background: #212121;
      padding: .55em;
    }

    .main-ranking-slider-sub{
      background: #434343;
      padding: .5em;
      color:#fff;
      font-weight: bold;
      font-size: 1.1rem;
    }

    table.spec th{
      background: #fafaf9;
    }

    .review__slider {
      display: flex;
      width: 100%;
      overflow-x: auto;
    }

   .review_box{
    background: #fff;
    border: solid #EDEDED 2px;
    border-radius: 10px;
    margin: 10px 20px 10px 0px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: calc(96% / 3);
   }

   .review__title__wrap{
    border-bottom: solid 2px #54544F;
    padding: 5px 0;
    margin: 5px 0;
    font-weight: bold;
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.review__title__wrap p{
  padding-bottom: 0;
}

.review__title__wrap .human {
  color: #85CDD6;
  line-height: 1.8;
    font-size: 35px;
}
.review-item-point-wrap {
  display: flex;
  padding: 5px 0;
  margin: 5px 0;
  justify-content: space-between;
  border-bottom: solid 2px #EDEDED;
  align-items: center;
  font-weight: bold;
}

.item-point-label {
  font-size: 14px;
}

.review-item-point-content {
  display: flex;
  align-items: center;
}

.review-item-point-content div{
  margin-left: 10px;
}

.label-num {
  color: #ED9C9C;
  font-size: 30px;
  font-weight: bold;
}
span.score{
line-height: 1.8;
font-size: 15px;
}

.fa-star{
  color: #FFD800;
}

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

  .review_box{
    min-width: calc(100% / 1);
  }

}

 /**************** 比較表 *******************/

 .breadcrumb{
  margin-top: .5em;
 }

@media only screen and (min-width: 768px){
  .dataTables_scrollHead table.tablepress {
    display: table;
    overflow-x: visible;
    width: auto;
    border: 2px solid #e0e0e0;
    white-space: normal;
  }

  .dataTables_scroll{
    white-space: nowrap;
  }
}

.tablepress>:where(thead,tfoot)>*>th{
  font-size: 0.8rem;
}

.tablepress td{
  font-size: 0.9rem;
}

.tablepress td p{
  margin: 0;
}

td.column-1{
  width:90px;
  text-align: center;
}

.table-2-filter-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.table-2-filter-list li{
  list-style: none;
}

.table-2-filter-list button{
  background: #fff;
  border: 1px solid #121212;
  border-radius: 20px;
  font-size: 13px;
  padding: 0.2em 1em;
  color: #121212;
  font-weight: 700;
  transition: .3s;
}

.table-2-filter-list li {
  margin: 0 0.5em;
}

.dataTables_filter{
  display: none;
}

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

  .tablepress>:where(thead,tfoot)>*>th{
    min-width:90px;
  }

  .table-2-filter-list{
    padding: 1em !important;
  }

  .table-2-filter-list li {
    margin: 0 0.15em;
}

}

 /**************** 流れ *******************/
 .history {
  position: relative;
margin:0 auto;
padding:0;
}

.history:before {
  content: "";
  width: 1px;
  height: 100%;
  background: orange;
  position: absolute;
  transform: translateX(-50%);
}
  .history__item {
    position: relative;
    display: flex;
    padding: 0 0 35px 20px;
  }

  .history .history__item:before {
    content: "";
    width: 8px;
    height: 8px;
    background: orange;
    position: absolute;
    border-radius: 50%;
    left: 0;
    transform: translateX(-50%);
}

.history .history__iamge img {
  box-shadow: 0 0 15px rgba(30, 29, 29, 0.33);
  display: block;
  margin-bottom: 1em;
}

 @media screen and (min-width: 768px) {

  .history .history__item:nth-of-type(2n) {
    justify-content: flex-end;
}

  .history .history__item:before {
    left: 50%;
    top: 0;
    width: 10px;
    height: 10px;
}

.history .history__item:before {
  left: 50%;
  top: 0;
  width: 10px;
  height: 10px;
}

  .history .history__inner {
    max-width: 45%;
  }

   .history:before{
  left: 50%;
  }

    .history:before{
            left: 50%;
            top: 0;
    }

      .history:nth-of-type(2n) {
        justify-content: flex-end;
    }
 }




 /****************** CTA *******************/

.cta-button {
  transition: all 0.3s ease 0s;
  will-change: transform;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2em;
  margin-bottom: 2em;
position:relative;
overflow:hidden;
text-align:center;
}

.shiny:before {
position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    transition: 300ms;
    animation: shinyshiny 2.5s ease-in-out infinite;
}

.shiny{
    display: inline-block;
    font-size:18px;
    font-weight:400;
    margin: 20px 0;
    background: #54dcef;
    border-radius: 50px;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0px 5px 15px -5px #ccc;
    text-align: center;
  background: linear-gradient(107.61deg, #2CB84C 7.99%, #2CB84C 91.12%);
  padding: 18px 60px;
font-family:'Noto Sans JP',游ゴシック体, 'Yu Gothic', YuGothic,'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

@-webkit-keyframes shinyshiny {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

@media screen and (max-width: 767px) {
	.shiny{
		padding:18px 30px;
        font-size:17px;
	}

}

 /****************** flex *******************/

 .Flex__wrap{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content:space-between;
  position: relative;
  z-index: 6;
}

.Flex__wrap.center{
  justify-content: center;
}

.Flex__wrap .Item{
  margin: 5px .5em;
  max-width: calc(100% / 2);
}

footer .Flex__wrap{
	margin:2em auto;
    align-items:center;
}

 /****************** 設問 *******************/

.question_border_wrap{
	padding:1em;
	border:1px solid #212121;
    overflow:hidden;
}

.yesno_q dt span{
	padding:.5em;
}

.yesno_q dd{
	background: #fafaf9;
}

ul#choices{
	display:flex;
    justify-content:space-between;
	flex-wrap:wrap;
}

ul#choices li{
	min-width:calc(95% / 2);
	max-width:calc(95% / 2);
    margin:0 1% !important;
}

ul#choices li button{
	    background: #0d1e63 !important;
border:2px solid #0d1e63;
}

ul#choices #back button{
	 background: #686868 !important;
border:2px solid #686868;
margin-left:auto;
margin-right:auto;
}

.yesno_q dt span{
	font-size:1.4rem !important;
	background:#121212 !important;
}

.yesno_q{
border: 1px #ccc solid !important;
}

/* start button */
.shiny-btn3 {
    display: block;
    position: relative;
    width: 80%;/*ボタンの幅*/
    padding: 10px 0;
    margin: 30px auto;
    background-color: #FF9933;/*ボタンの色*/
    box-shadow: 0 3px 0 0 rgba(0, 0, 255, 0.5);/*影の色(rgbaの値を変更)*/
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
}
.shiny-btn2:hover {
    text-decoration: none;
    color: #fff;
    box-shadow: none;
    -webkit-transform: translateY(3px);
}
.shiny-btn2::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    transition: 0.2s;
    animation: shiny-btn2 3s ease-in-out infinite;
}
@-webkit-keyframes shiny-btn2 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

.shiny-btn2 {
    display: block;
    position: relative;
    width: 80%;/*ボタンの幅*/
    padding: 10px 0;
    margin: 30px auto;
    background-color: #33CD32;/*ボタンの色*/
    box-shadow: 0 3px 0 0 rgba(0, 255, 0, 0.5);/*影の色(rgbaの値を変更)*/
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
}
.shiny-btn2:hover {
    text-decoration: none;
    color: #fff;
    box-shadow: none;
    -webkit-transform: translateY(3px);
}
.shiny-btn2::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    transition: 0.2s;
    animation: shiny-btn2 3s ease-in-out infinite;
}
@-webkit-keyframes shiny-btn2 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

.btn-copy {
	font-size: 1.5rem;
	font-weight: bold;
	position: relative;
	margin-bottom: .2em;
	text-align: center;
}

.margin_bottom_small{
  margin: 0px 0px -20px 0px!important;
  font-size: 1rem;
}

.margin_top_small{
  margin: -20px 0px 0px 0px!important;
}

.btn-copy:before {
	margin-right: 1rem;
}

.btn-copy:after {
	margin-left: 1rem;
}

.jin-flexbox .jsb-visual-shiny {
  position: relative;
}
.jin-flexbox .jsb-visual-shiny:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.5);
  width: 60px;
  height: 130px;
  opacity: 0.5;
  filter: blur(30px);
  transform: skewX(-15deg);
  animation: 3s jin-shiny ease infinite;
}
.jin-flexbox .jsb-visual-float {
  animation: 2s jin-float ease infinite;
}
.jin-flexbox .jsb-visual-bound {
  animation: 2s jin-bound ease infinite;
}
.jin-flexbox div:not(.jsb-visual-shiny).jsb-hover-down a,
.jin-flexbox div:not(.jsb-visual-shiny).jsb-hover-up a,
.jin-flexbox div:not(.jsb-visual-shiny).jsb-hover-hop a {
  will-change: transform;
}
.jin-flexbox .jsb-hover-down a:hover {
  transform: scale(0.95);
}
.jin-flexbox .jsb-hover-up a:hover {
  transform: scale(1.05);
}
.jin-flexbox .jsb-hover-hop a:hover {
  transform: translateY(-7px);
  box-shadow: 0px 5px 15px -5px #ddd;
}

@media (max-width: 767px) {
  .jsb-sp-2col-off {
    display: block !important;
    text-align: center;
  }
  .jsb-sp-2col-off .jin-shortcode-button a {
    padding: 16px 80px;
    margin: 6px 0;
  }
  .jsb-sp-2col-off p {
    padding-bottom: 0;
  }
  .jsb-sp-2col-on .jin-shortcode-button a {
    padding: 12px 24px;
    font-size: 14px;
  }
}
.jin-shortcode-button {
  transition: all 0.3s ease 0s;
  will-change: transform;
  margin-left: 5px;
  margin-right: 5px;
  text-align:center;
}

.jin-flexbox{
	margin:2em auto;
}

.jin-shortcode-button a {
  display: inline-block;
  font-size: 17px;
  margin: 20px 0;
  background: #54dcef;
  border-radius: 50px;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0px 5px 15px -5px #ccc;
  text-align: center;
}
@media (max-width: 767px) {
  .jin-shortcode-button a {
    padding: 15px 40px;
  }
}
@media (min-width: 768px) {
  .jin-shortcode-button a {
    padding: 15px 40px;
  }
}
@media (min-width: 1024px) {
  .jin-shortcode-button a {
    padding: 19px 80px;
  }
}

.gb-two-button-box {
  margin-top: 30px;
  text-align: center;
}
.gb-two-button-box .jin-flexbox {
  display: inline-block;
}
.gb-two-button-box .jin-shortcode-button {
  display: inline;
}
@media (max-width: 767px) {
  .gb-two-button-box .jin-shortcode-button a {
    padding: 12px 30px;
  }
}
@media (min-width: 768px) {
  .gb-two-button-box .jin-shortcode-button a {
    padding: 15px 30px;
  }
}
@media (min-width: 1024px) {
  .gb-two-button-box .jin-shortcode-button a {
    padding: 15px 60px;
  }
}
@keyframes jin-shiny {
  0% {
    transform: translateX(-100px);
  }
  20% {
    transform: translateX(300px);
  }
  100% {
    transform: translateX(300px);
  }
}
@keyframes jin-float {
  50% {
    transform: scale(1.07);
  }
}

/* end button */

/****************** タブ切り替え  ************************/

.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin:20px 0;
}
.tab-wrap:after {
  content: '';
  width: 100%;
  height: 3px;
  background: #eabe54;
  display: block;
  order: -1;
}
.tab-label {
  color: White;
  background: LightGray;
  font-weight: bold;
  text-shadow: 0 -1px 0 rgba(0,0,0,.2);
  white-space: nowrap;
  text-align: center;
  padding: 10px .5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  flex: 1;
}
.tab-label:not(:last-of-type) {
  margin-right: 5px;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
/* アクティブなタブ */
.tab-switch:checked+.tab-label {
  background: #eabe54;
}
.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  padding: 15px;
  opacity: 1;
  transition: .5s opacity;
  box-shadow: 0 0 3px rgba(0,0,0,.2);
}
/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}
/****************** 目次 ************************/

#toc_container, #ez-toc-container, .li-mainbdr ul, .li-mainbdr ol {
  border-color: #121212 !important;
}

#toc_container .toc_title{
  color: #121212 !important;
}

#toc_container .toc_title:before{
  background: #121212 !important;
}

/****************** 表組 横スクロール ************************/

.table-wrap {
  overflow-x: scroll;
}
table.table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}

table.table img{
	max-width:130px !important;
}
@media (max-width: 767px) {
/*.fixed-menu{
	display:none;
}*/
}
/****************** アコーディオン ************************/
.accordion_one .accordion_header {
  background-color: #eabe54;
  color: #fff;
  font-size:19px;
  font-weight: bold;
  padding: 1em;
  text-align: center;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition-duration: 0.2s;
}

.accordion_one .accordion_inner {
  display: none;
  margin-top:1em;
}

h3.not_border{
	border-left:none !important;
}
.accordion-004 {
    margin-bottom: 7px;
    border: 2px solid #d0d0d0;
    border-radius: 5px;
	background:#fff;
}

.accordion-004 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.accordion-004 summary::-webkit-details-marker {
    display: none;
}

.accordion-004 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .3s;
}

.accordion-004[open] summary::after {
    transform: rotate(225deg);
}

.accordion-004 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion-004[open] p {
    transform: none;
    opacity: 1;
}
.bonus-calc-wrapper {
font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(20px);
border-radius: 18px;
padding: 2rem;
box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.bonus-calc-heading {
color: #1d1d1f;
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 1.5rem;
opacity: 0;
animation: bonus-calc-fade-in 0.8s ease-out forwards;
}

.bonus-calc-formula {
font-size: 2rem;
color: #1d1d1f;
padding: 1rem;
border-radius: 12px;
background: rgba(0, 0, 0, 0.03);
margin-bottom: 1rem;
opacity: 0;
animation: bonus-calc-slide-in 0.8s ease-out forwards 0.3s;
}

.bonus-calc-total {
font-size: 2.5rem;
color: #06c;
font-weight: 600;
text-align: right;
padding: 1rem;
opacity: 0;
animation: bonus-calc-slide-in 0.8s ease-out forwards 0.6s;
}

@keyframes bonus-calc-fade-in {
from { opacity: 0; }
to { opacity: 1; }
}

@keyframes bonus-calc-slide-in {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.merit-box {
margin: 20px auto;
padding: 24px;
background: #f0f9ff;
border: 2px solid #3b82f6;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.merit-title {
font-size: 20px;
font-weight: bold;
color: #1f2937;
padding-bottom: 12px;
margin-bottom: 16px;
border-bottom: 2px solid #3b82f6;
display: flex;
align-items: center;
gap: 12px;
position: relative;
padding-left: 32px;
}

.merit-title::before {
content: '\f03a';
font-family: 'Font Awesome 5 Free';
font-weight: 900;
color: #3b82f6;
position: absolute;
left: 0;
}

.merit-list {
list-style: none;
padding: 0 !important;
margin: 0;
}

.merit-item {
display: flex;
align-items: flex-start;
gap: 12px;
margin-bottom: 16px;
padding: 12px;
background: white;
border-radius: 6px;
position: relative;
padding-left: 36px;
}

.merit-item:last-child {
margin-bottom: 0;
}

.merit-item::before {
content: '\f00c';/* check */
font-family: 'Font Awesome 5 Free';
font-weight: 900;
color: #3b82f6;
position: absolute;
left: 12px;
}

.merit-text {
color: #374151;
font-size: 16px;
}
.demerit-box {
margin: 20px auto;
padding: 24px;
background: #fff5f5;
border: 2px solid #ef4444;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.demerit-title {
font-size: 20px;
font-weight: bold;
color: #1f2937;
padding-bottom: 12px;
margin-bottom: 16px;
border-bottom: 2px solid #ef4444;
display: flex;
align-items: center;
gap: 12px;
position: relative;
padding-left: 32px;
}

.demerit-title::before {
content: '\f03a';
font-family: 'Font Awesome 5 Free';
font-weight: 900;
color: #ef4444;
position: absolute;
left: 0;
}

.demerit-list {
list-style: none;
padding: 0 !important;
margin: 0;
}

.demerit-item {
display: flex;
align-items: flex-start;
gap: 12px;
margin-bottom: 16px;
padding: 12px;
background: white;
border-radius: 6px;
position: relative;
padding-left: 36px;
}

.demerit-item:last-child {
margin-bottom: 0;
}

.demerit-item::before {
content: '\f00d';/* times */
font-family: 'Font Awesome 5 Free';
font-weight: 900;
color: #ef4444;
position: absolute;
left: 12px;
}

.demerit-text {
color: #374151;
font-size: 16px;
}
.appleui-support-container {
margin: 20px auto;
padding: 24px;
border-radius: 12px;
background: linear-gradient(135deg, #2196F3, #1976D2);
box-shadow: 0 4px 16px rgba(33, 150, 243, 0.3);
color: #ffffff;
}

.appleui-support-title {
font-size: 24px;
font-weight: 600;
margin-bottom: 24px;
letter-spacing: -0.5px;
color: #ffffff;
padding-left: 36px;
position: relative;
}

.appleui-support-title::before {
content: '\f590';
font-family: 'Font Awesome 5 Pro';
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
font-size: 24px;
}

.appleui-support-list {
list-style: none;
padding: 0;
margin: 0;
}

.appleui-support-item {
padding: 16px;
margin-bottom: 12px;
background: rgba(255, 255, 255, 0.1);
border-radius: 8px;
transition: all 0.2s ease;
backdrop-filter: blur(5px);
}

.appleui-support-item:hover {
transform: translateY(-2px);
background: rgba(255, 255, 255, 0.2);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.appleui-support-link {
color: #ffffff;
text-decoration: none;
font-size: 16px;
line-height: 1.5;
display: block;
padding-left: 36px;
position: relative;
}

.appleui-support-link::before {
content: '\f4ad';
font-family: 'Font Awesome 5 Pro';
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
font-size: 20px;
}

.appleui-support-link:hover {
text-decoration: underline;
}

.appleui-support-text {
color: #ffffff;
font-size: 16px;
line-height: 1.5;
display: block;
padding-left: 36px;
position: relative;
}

.appleui-support-text::before {
content: '\f0e0';
font-family: 'Font Awesome 5 Pro';
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
font-size: 20px;
}
.warning-container {
    margin: 20px auto;
    padding: 20px;
    border-radius: 12px;
    background: #FFF3E0;
    border: 1px solid #FFB74D;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.1);
}

.warning-title {
    font-size: 18px;
    font-weight: 600;
    color: #E65100;
    margin: 0 0 16px;
    padding-left: 30px;
    position: relative;
}

.warning-title::before {
    content: '\f071';
    font-family: 'Font Awesome 5 Pro';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #FF9800;
}

.warning-list {
margin: 0;
padding-left: 0 !important;
list-style: none;
}

.warning-item {
    color: #455A64;
    font-size: 15px;
    line-height: 1.6 !important;
    margin-bottom: 12px !important;
    position: relative;
    padding-left: 28px;
}

.warning-item::before {
    content: '\f06a';
    font-family: 'Font Awesome 5 Pro';
    position: absolute;
    left: 0;
    top: 2px;
    color: #FF9800;
    font-size: 14px;
}

.warning-item:last-child {
    margin-bottom: 0;
}
.consult2024-container {
    text-align: center;
    font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
	max-width: 400px;
    margin: 0 auto;
    position: relative;
    padding-top: 12px;
	margin-bottom:20px;
}

.consult2024-stats {
    background-color: white;
    padding-top:3px;
	padding-bottom:3px;
    border-radius: 999px;
    font-size: 14px;
    color: #333;
    border: 1px solid #ccc;
    display: inline-block;
    position: absolute;
    top: 3px;
    left: 50%;
    width: 80%;
    transform: translateX(-50%);
    z-index: 2;
}

.consult2024-button {
    display: block;
    background: linear-gradient(to bottom, #ff3f3f, #e10000);
    color: white;
    padding: 22px 30px 15px 30px;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    position: relative;
    width: 100%;
    box-sizing: border-box;
    font-weight: bold;
    font-size: 16px;
    margin-top: 10px;
    overflow: hidden;  /* 光るエフェクトが親要素からはみ出ないように */
}

/* キラッと光るエフェクト用の擬似要素 */
.consult2024-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.3) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
    pointer-events: none;
}

/* キラッと光るアニメーション */
@keyframes shine {
    0% {
        transform: translateX(-200%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/*

/* .consult2024-button:hover {
    background: linear-gradient(to bottom, #45a049, #409444);
} */

.consult2024-note {
    font-size: 12px;
    color: #fff;
    margin-top: 8px;
}

@media(max-width:768px){
table {
width: 100%;
overflow-x: auto;
white-space: nowrap;
border-collapse: collapse;
margin: 20px 0;
    display: block;
}
[data-table-scrollable] table {
    border-collapse: separate;
    max-width: var(--table-width, 100%) !important;
    min-width: 100%;
    width: var(--table-width, 100%) !important;
    table-layout: fixed;
}
.fv-image{
width:100%;
}
/* スクロールバーのスタイリング */
table::-webkit-scrollbar {
height: 12px;
}

table::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 6px;
}

table::-webkit-scrollbar-thumb {
background: #888;
border-radius: 6px;
}

table::-webkit-scrollbar-thumb:hover {
background: #555;
}
}
.event-box {
background: #ffffff;
border-radius: 12px;
box-shadow:
0 4px 20px rgba(78, 151, 255, 0.15),
0 0 40px rgba(78, 151, 255, 0.1);
padding: 24px;
width: 100%;
border: 1px solid rgba(78, 151, 255, 0.2);
position: relative;
}

.event-title {
color: #4e97ff;
font-size: 20px;
font-weight: 700;
margin-bottom: 20px;
display: flex;
align-items: center;
padding-bottom: 15px;
border-bottom: 2px solid rgba(78, 151, 255, 0.2);
padding-left: 36px;
position: relative;
}

.event-title::before {
content: '\f521';
font-family: 'Font Awesome 5 Free';
font-weight: 900;
position: absolute;
left: 0;
font-size: 24px;
color: #4e97ff;
}

.event-period {
background: rgba(255, 255, 255, 0.9);
border: 1px solid rgba(78, 151, 255, 0.2);
border-radius: 8px;
padding: 20px;
display: flex;
align-items: center;
box-shadow: 0 4px 15px rgba(78, 151, 255, 0.1);
position: relative;
padding-left: 56px;
}

.event-period::before {
content: '\f133';
font-family: 'Font Awesome 5 Free';
font-weight: 400;
position: absolute;
left: 20px;
font-size: 28px;
color: #4e97ff;
}

.event-period__content {
flex: 1;
}

.event-period__label {
color: #4e97ff;
font-size: 14px;
margin-bottom: 6px;
font-weight: 600;
letter-spacing: 0.05em;
}

.event-period__date {
color: #333333;
font-size: 18px;
font-weight: 600;
line-height: 1.4;
}
.scroll-hint-icon {
    z-index: 9999;
}
.event-period__status {
padding: 5px 10px;
border-radius: 4px;
font-size: 13px;
font-weight: 700;
margin-left: 12px;
display: inline-block;
}

.event-period__status--active {
background: #4CAF50;
color: #ffffff;
}

.event-period__status--ended {
background: #9e9e9e;
color: #ffffff;
}

/* レスポンシブ対応 */
@media (max-width: 480px) {
.event-box {
margin: 16px;
padding: 20px;
}

.event-title {
font-size: 18px;
}

.event-period {
padding: 15px 15px 15px 50px;
}

.event-period__date {
font-size: 16px;
}
}
.bonus_table_table-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.bonus_table_table-container {
    max-width: 100%;
    background: #ffffff;
    border-radius: 16px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.08);
    padding: 1px;
}

.bonus_table_casino-table {
    width: 100%;
    min-width: 1200px;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
}

.bonus_table_casino-table th {
    background: #4e97ff;
    color: #ffffff;
    font-weight: 600;
    padding: 20px 25px;
    text-align: left;
    position: sticky;
    top: 0;
    z-index: 10;
    white-space: nowrap;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.bonus_table_casino-table th:first-child,
.bonus_table_casino-table td:first-child {
    position: sticky;
    left: 0;
    background: #ffffff;
    z-index: 1;
    width: 180px;
    min-width: 180px;
    max-width: 180px;
}

.bonus_table_casino-table th:first-child {
    background: #4e97ff;
    z-index: 11;
}

.bonus_table_casino-table td:first-child::after,
.bonus_table_casino-table th:first-child::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    bottom: 0;
    width: 10px;
    pointer-events: none;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
}

.bonus_table_casino-table td {
    padding: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    vertical-align: middle;
    background: #ffffff;
}

.bonus_table_casino-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
	gap:0px;
}

.bonus_table_casino-logo {
    width: 120px;
    height:auto;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.bonus_table_casino-title {
    font-size: 14px;
    color: #1a1a1a;
    margin: 8px 0 0;
    font-weight: 600;
    line-height: 1.4;
}

.bonus_table_official-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 7px;
    background: #4e97ff;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 8px rgba(78, 151, 255, 0.2),
        0 2px 4px rgba(78, 151, 255, 0.1);
}

.bonus_table_official-link:hover {
    background: #3d86ff;
    transform: translateY(-2px);
    box-shadow:
        0 6px 12px rgba(78, 151, 255, 0.3),
        0 4px 8px rgba(78, 151, 255, 0.2);
}

.bonus_table_official-link::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.bonus_table_official-link:hover::after {
    transform: translateX(4px);
}

.bonus_table_bonus-amount {
    font-size: 18px;
    font-weight: 700;
    color: #2e7d32;
    padding: 8px;
    border-radius: 8px;
    display: inline-block;
}

.bonus_table_condition-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 14px;
    color: #666;
    border: 1px solid #e0e0e0;
}

.bonus_table_period-status {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.bonus_table_period-date {
    font-size: 15px;
    color: #333;
}

.bonus_table_status-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.bonus_table_status-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 6px;
}

.bonus_table_status-badge--active {
    background: rgba(46, 125, 50, 0.1);
    color: #2e7d32;
}

.bonus_table_status-badge--active::before {
    background: #2e7d32;
}

.bonus_table_status-badge--ended {
    background: rgba(117, 117, 117, 0.1);
    color: #757575;
}

.bonus_table_status-badge--ended::before {
    background: #757575;
}

.bonus_table_show-more-container {
    text-align: center;
    margin-top: 20px;
}

.bonus_table_toggle-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: #4e97ff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 8px rgba(78, 151, 255, 0.2),
        0 2px 4px rgba(78, 151, 255, 0.1);
    min-width: 160px;
    justify-content: center;
}

.bonus_table_toggle-btn:hover {
    background: #3d86ff;
    transform: translateY(-2px);
    box-shadow:
        0 6px 12px rgba(78, 151, 255, 0.3),
        0 4px 8px rgba(78, 151, 255, 0.2);
}

.bonus_table_hidden {
    display: none;
}

@media (max-width: 768px) {
    .bonus_table_table-container {
        margin: 0;
        border-radius: 8px;
    }
.bonus_table_casino-table th {
    padding: 10px 4px;
    max-width: 150px;
    white-space: pre-wrap;
}
	.bonus_table_bonus-amount {
    font-size: 13px;
}
[data-cell1-fixed] tr>:first-child:not(.-no1) {
    left: 0;
    position: sticky !important;
    top: 0;
	min-width:80px;
    z-index: 3;
    white-space: normal;
}

    .bonus_table_casino-logo {
        width: 100px;
        height: 65px;
    }

    .bonus_table_casino-table th:first-child,
    .bonus_table_casino-table td:first-child {
        width: 150px;
        min-width: 150px;
        max-width: 150px;
    }
}
/* 口コミコンテナ */
.appl-reviews-container {
max-width: 1200px;
margin: 40px auto;
position: relative;
}

.appl-reviews-title {
font-size: 40px;
font-weight: 600;
margin-bottom: 16px;
text-align: center;
}

.appl-reviews-subtitle {
font-size: 20px;
font-weight: 400;
margin-bottom: 40px;
text-align: center;
color: #86868b;
}

/* スクロールコンテナ */
.appl-reviews-scroll {
position: relative;
padding: 0 60px;
margin: 0 auto;
}

/* スクロールエリア */
.appl-scroll-area {
display: flex;
overflow-x: auto;
scroll-snap-type: x mandatory;
gap: 20px;
  width: 100%;
padding: 10px 0;
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* IE, Edge */
}

.appl-scroll-area::-webkit-scrollbar {
display: none; /* Chrome, Safari, Opera */
}

/* レビューカード */
.appl-review-card {
 flex: 0 0 calc((100% - 20px) / 2); /* gapを引いて2等分 */
  max-width: calc((100% - 20px) / 2);
scroll-snap-align: start;
background-color: #ffffff;
border-radius: 18px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
padding: 30px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.appl-review-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

/* 星評価 */
.appl-review-rating {
display: flex;
margin-bottom: 16px;
}

.appl-star {
color: #0071e3;
font-size: 18px;
margin-right: 2px;
}

/* ユーザー情報 */
.appl-review-user {
display: flex;
align-items: center;
margin-bottom: 16px;
}

.appl-user-avatar {
width: 40px;
height: 40px;
border-radius: 50%;
background-color: #f5f5f7;
margin-right: 12px;
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
color: #0071e3;
}

.appl-user-info {
flex-grow: 1;
}

.appl-user-name {
font-weight: 600;
font-size: 16px;
}

.appl-review-date {
font-size: 14px;
color: #86868b;
}

/* レビュータイトル */
.appl-review-title {
font-size: 17px;
font-weight: 600;
margin-bottom: 8px;
line-height: 1.3;
}

/* レビュー内容 */
.appl-review-content {
font-size: 15px;
line-height: 1.5;
color:#000 !important;
margin-bottom: 16px;
overflow: hidden;
transition: max-height 0.3s ease;
position: relative;
}

.appl-review-content.collapsed {
max-height: 80px;
-webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.appl-review-content.expanded {
max-height: 500px;
-webkit-mask-image: none;
mask-image: none;
}

/* 続きを見るボタン */
.appl-read-more {
color: #0071e3;
font-size: 14px;
font-weight: 500;
cursor: pointer;
display: inline-block;
transition: color 0.2s ease;
}

.appl-read-more:hover {
color: #0058b0;
text-decoration: underline;
}

/* スクロールボタン */
.appl-scroll-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 40px;
height: 40px;
border-radius: 50%;
background-color: #0071e3;
border: none;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
z-index: 10;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: background-color 0.2s;
}

.appl-scroll-btn.disabled {
background-color: #c1c1c6;
cursor: not-allowed;
opacity: 0.5;
}

.appl-scroll-btn.disabled:hover {
background-color: #c1c1c6;
}

.appl-scroll-btn svg {
width: 20px;
height: 20px;
fill: white;
}

.appl-scroll-prev {
left: 10px;
}

.appl-scroll-next {
right: 10px;
}
@media(max-width:768px){
	.bonus_table_casino-table td{
	        max-width: 150px !important;
        white-space: normal;
	}
.bonus_table_official-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 12px;
}
  .appl-review-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* --- メタ情報と見出しを白文字に --- */
 /* .p-postList__meta,
#content h2 {
  color: #ffffff;
} */



body {
  /* background-color: #0b0917;  */
  font-family: "Times New Roman", serif;
  color: #1c1c1c !important;
}

.p-mainVisual__slideTitle {
  font-family: Times New Roman;
  font-size: 55px;
  font-weight: bold;
}

p {
  color: #1c1c1c !important;
  fill: #1c1c1c !important;
}
.post_content
  h3:where(:not([class^="swell-block-"]):not(.faq_q):not(.p-postList__title)) {
  color: #1c1c1c !important;
}
.post_content
  h4:where(:not([class^="swell-block-"]):not(.faq_q):not(.p-postList__title)) {
  color: #1c1c1c !important;
}
.post_content li {
  color: #1c1c1c !important;
}
.c-postTitle__ttl {
  color: #1c1c1c !important;
}
.p-breadcrumb__text .__home {
  color: #1c1c1c !important;
}
.p-breadcrumb .p-breadcrumb__text,
span.p-breadcrumb__text {
  color: #1c1c1c !important;
}
.flow-item ol,
.flow-item ol li,
.flow-item ol > li > ul,
.flow-item ol > li > ul li {
  color: #1c1c1c !important;
}

h2.p-postList__title{
color: #333 !important;
}
.company .post_content td {
    color: #333;
}
.l-fixHeader__inner{
  max-width: 1200px;
}
@media (min-width: 960px) {
    .-series-right .l-header__inner {

        max-width: 1200px;
    }
}
