/**
 * Custom Styles for ginga-sys
*/

body {
	background-color: #yellow;
}

/* フォーム関連 */
.smf-item__label__text .sme-badge {
	margin-right: 1em;
}

.smf-text-control input {
	width: 100%;
}

.privacy-policy-frame {
	padding: 20px;
	height: 330px;
	background-color: #f5f5f5;
	border: 1px solid #e3e3e3;
	border-radius: 4px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
}

.privacy-policy-frame h3 {
	font-size: 100%;
	font-weight: normal;
	margin: 0 0 10px 0;
}

.iframe-container {
	width:100%;
	height:260px;
	overflow:auto;
	-webkit-overflow-scrolling:touch;	
	display: inline-block;
	background-color: #fff;
}

iframe {
	border: none;
}

.privacy-frame {
	width:100%;
	height:100%;
	border:none;
	display:block;
}

.privacy-policy .smb-accordion__item__title {
	background-color: transparent;
	text-align: right;
	color: var(--smb-section--color);
	margin-right: 0;
	width: auto;
}

.privacy-policy .smb-accordion__item__body {
	padding:0;
}

.grecaptcha-badge { visibility: hidden; }


.smb-alert--success {
	background-color:#d8e7ef;
	border: none 0;
}

.smf-form--simple-table .smf-item.is-hybrid-download,
.smf-form--simple-table .is-whitepaper-download {
	display: none;
}

.wp-admin .smf-form--simple-table .smf-item.is-hybrid-download,
.wp-admin .smf-form--simple-table .is-whitepaper-download {
	display: block;
}


/* フッター */

.l-footer {
	background-color: #665E51;
	color: #fff;
}

.l-footer a {
	color:#fff;
	text-decoration: none;
}

.l-footer a:hover {
	text-decoration: underline;
}

.footer-list {
	list-style: none;
	padding-left: 0;
	margin-top: 0;
}

.footer-col-title {
	margin-top: 24px;
}

.c-copyright--inverse {
	background-color: #665E51;
	color: #fff;
}

.c-widget__title {
/*
	font-size: 40px; !important;
	border-bottom: 1px solid #333;
*/
}


/* アーカイブページ一覧を3列に */
@media (min-width: 64em) {
	.p-archive .c-entries .c-entries__item {
		flex: 0 1 33%;
		max-width: 33%;
	}
}

/* 投稿詳細画面の更新日を非表示に */
/*
.c-meta__item--modified {
  display: none;
}
*/

/* サムネ画像がトリミングされないように */
/*
.c-entry-summary__figure>img, .c-entry-summary__figure>picture>img {
	object-fit: contain;
}
*/

/* サムネイルを 16:9 に変更 */
.c-entry-summary .c-entry-summary__figure::before {
  padding-top: 56.25%;
}


/* 改行 */
.br-pc {
	display: none;
}

.br-md {
	display:none;
}

.nowrap {
	white-space: nowrap;
}

.nowrap-pc {
	white-space: normal;
}

@media(min-width:1024px) {
	.br-pc {
		display: inline;
	}
	.br-sp {
		display: none;
	}
	.nowrap-pc {
		white-space: nowrap;
	}
}


.c-meta__item--author {
	display: none;
}

/* logo Ticker Splide */
.splide__slide img {
  height: auto;
  width: 100%;
}

.side-banner {
	position: fixed;
	bottom:114px;
	right: 17px;
	width: 232px;
	height: auto;
	z-index: 1031;
}

.side-banner#banner-camp {
	bottom: 300px;
}

.side-banner a:hover img {
  filter: brightness(1.03); /* 明るくする */
  opacity: 1;
}

.side-banner .side-banner-close-btn {
	position: absolute;
	top: -18px;
	right: -13px;
	cursor: pointer;
}

.dropshadow-btn {
	box-shadow: 3px 3px 3px 1px rgba(0, 0, 0, 0.20);
}

.hover-hilite img,
.hover-darken img {
  transition: filter 0.3s ease;
  filter: brightness(
    1
  ); /* デフォルト値なのでこの一行は省略してもOK */
}

.hover-hilite img:hover {
	filter: brightness(1.75);  /* 明るくする */
}

.hover-darken img:hover {
	filter: brightness(0.85); /* 暗くする */
}

#hybrid-conf-kv {
	background-color: #333;
}


/* Footer CTA */

.p-footer-cta .c-btn {
	font-weight: 700;
	font-size: 16px;
}

.c-btn .c-btn--full .p-footer-cta__secondary-btn,
.p-footer-cta__secondary-btn {
	color: var(--sub-accent-color);
}

.p-footer-cta {
	display: none;
}

.page-id-1694 .p-footer-cta,
.page-id-1730 .p-footer-cta  {
  display: block;
}

/* PC・タブレットでは表示しない */
@media (min-width:640px) {
  .p-footer-cta,
  .page-id-1694 .p-footer-cta,
  .page-id-1730 .p-footer-cta  {
    display: none;
  }
}

/* Mega Menu */
.snow-monkey-mega-menu>a::after{
    /* 擬似要素で三角アイコンをつくる */
    content: '';
    display: inline-block;
    border-style: solid;
/*
    border-width: 8px 0 8px 8px;
    border-color: transparent transparent transparent #000;
*/
    border: 6px solid transparent;
    border-top: 7px solid #555;  

    display: inline-block;
    width: 0;
    height: 0;
    /* 矢印アイコンの位置を設定 */
    position: absolute;
    top: 50%;
    right: 4px;
    transform: translateY(-17%); /* translateYのみ */
}

.snow-monkey-mega-menu--mega-menu-1>.c-navbar__submenu>.c-navbar__subitem>.c-navbar__submenu>.c-navbar__subitem>a::before {
	content: "";
    position: absolute;
    top: 16px;
    left: 5px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

@media screen and (min-width: 640px) {
    top: calc(var(--_half-leading)* 1rem + 4px);	
}

.footer_sitemap {
	background-color: #EDE8E4;
	font-size: 14.2222px;
}

.footer_sitemap li {
	list-style-type: none;
}

.footer_sitemap li > a {
	padding-left: 17px;
	position: relative;
	color: #777;
	text-decoration: none;
	font-weight: bold;
}

.footer_sitemap li > a:hover {
	color: #333;
}


.footer_sitemap li > a::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 7px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    border-top: 2px solid #c3c3c3;
    border-right: 2px solid #c3c3c3;		
}

.footer-products-hd {
/* 	padding-left: 14px; */
	position: relative;
}

.footer-products-hd:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 5em;
  width: calc(100% - 5em);
  height: 1px;
  background-color: #b4b0ac;	
}

.footer-products-map {
	border-bottom: 1px solid #b4b0ac;
}

#omakase {
	position: relative;
}

.down-arrow-box {
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: -325px;
}

#omakase {
	margin-top: 0;
}

/*
@media (min-width: 40em)(タブレットサイズ)
@media (min-width: 64em)(PCサイズ)
*/

@media screen and (min-width: 640px) { // 640px〜1023pxまで
}
@media screen and (min-width: 1024px) { // 1024px〜1279pxまで
}
@media screen and (min-width: 1280px) { // 1280px〜
}