/*
Theme Name: WhiteCube
Version: 1.0.1
Note: All content are copyrighted by author. Please, don't steal anything.
*/
/**
TABLE OF CONTENTS
- Global
	- bootstrap-theme
	- utility
- UI
	- header
	- footer
	- headline
	- box
	- list
	- form
	- table
	- nav
	- slider
	- shopping-guide
- Pages
	- cart
	- products
	- shopping
	- windowcolumn
*/
/* ------------------------------------- */
/*   bootstrap-theme   */
/* ------------------------------------- */
/*  eccube style  */
/*--------------------------------- */
.attention,
.point {
  color: #E64E4E;
}

.message {
  color: #5B5B5B;
  font-size: 14px;
}

.box60 {
  width: 60px;
}
@media (max-width: 767px) {
  .box60 {
    width: 50px;
  }
}

.box80 {
  width: 80px;
}

.box120 {
  width: 100%;
}
@media (min-width: 768px) {
  .box120 {
    width: 120px;
  }
}

.box300 {
  width: 100%;
}
@media (min-width: 768px) {
  .box300 {
    width: 300px;
  }
}

.box380 {
  width: 100%;
}
@media (min-width: 768px) {
  .box380 {
    width: 380px;
  }
}

/*  body  */
/*--------------------------------- */
body {
  font-family: "小塚ゴシック Pro","Kozuka Gothic Pro", "游ゴシック", "YuGothic","Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #333333;
  font-size: 14px;
  background-color: #fff;
}

/*  link  */
/*--------------------------------- */
a {
  transition: .2s;
  color: #5B5B5B;
}
a:hover {
  text-decoration: none;
  color: #c32927;
}

/*  headline  */
/*--------------------------------- */
h1 {
  font-size: 32px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 12px;
}

/*  list  */
/*--------------------------------- */
dl dt {
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 14px;
}
dl.dl-horizontal dt {
  margin-top: 0;
}

/*  img  */
/*--------------------------------- */
.img-responsive {
  margin: 0 auto;
}

/*  table  */
/*--------------------------------- */
table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
table thead > tr > th,
table tbody > tr > th,
table tfoot > tr > th,
table thead > tr > td,
table tbody > tr > td,
table tfoot > tr > td {
  padding: 8px;
  line-height: 1.4;
  vertical-align: top;
  border-top: 1px solid #ECEAEB;
}
@media (max-width: 991px) {
  table thead > tr > th,
  table tbody > tr > th,
  table tfoot > tr > th,
  table thead > tr > td,
  table tbody > tr > td,
  table tfoot > tr > td {
    padding: 4px;
  }
}

/*  form  */
/*--------------------------------- */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  border-radius: 0;
  border: 1px solid #ECEAEB;
  background-color: #fafafa;
}

select {
  width: 100%;
  border-radius: 0;
}

@media (min-width: 768px) {
  .input-group {
    display: inline-block;
  }
  .input-group .form-control {
    width: 150px;
  }
  .input-group .input-group-btn {
    width: auto;
  }
}

/*  well  */
/*--------------------------------- */
.well {
  margin-bottom: 30px;
  border-radius: 0;
  border: none;
  color: #444;
  background-color: #f4f4f4;
  box-shadow: none;
}
.well p {
  margin-bottom: 0;
}

/* ------------------------------------- */
/*   utility: global class   */
/*		- display
/*		- position
/*		- padding
/*		- margin
/*		- border
/*		- font
/*		- background
/* ------------------------------------- */
/**
 *	display
 */
.div-inline > div {
  display: inline-block;
}

/**
 *	position
 */
.position-relative {
  position: relative;
}

.top-left {
  position: absolute;
  top: 15px;
  left: 15px;
}

.top-left-fit {
  position: absolute;
  top: 0;
  left: 0;
}

.top-left-xs {
  position: absolute;
  top: 5px;
  left: 5px;
}

.top-left-sm {
  position: absolute;
  top: 10px;
  left: 10px;
}

.top-left-lg {
  position: absolute;
  top: 30px;
  left: 30px;
}

.top-right {
  position: absolute;
  top: 15px;
  right: 15px;
}

.top-right-fit {
  position: absolute;
  top: 0;
  right: 0;
}

.top-right-xs {
  position: absolute;
  top: 5px;
  right: 5px;
}

.top-right-sm {
  position: absolute;
  top: 10px;
  right: 10px;
}

.top-right-lg {
  position: absolute;
  top: 30px;
  right: 30px;
}

.bottom-left {
  position: absolute;
  bottom: 15px;
  left: 15px;
}

.bottom-left-fit {
  position: absolute;
  bottom: 0;
  left: 0;
}

.bottom-left-xs {
  position: absolute;
  bottom: 5px;
  left: 5px;
}

.bottom-left-sm {
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.bottom-left-lg {
  position: absolute;
  bottom: 30px;
  left: 30px;
}

.bottom-right {
  position: absolute;
  bottom: 15px;
  right: 15px;
}

.bottom-right-fit {
  position: absolute;
  bottom: 0;
  right: 0;
}

.bottom-right-xs {
  position: absolute;
  bottom: 5px;
  right: 5px;
}

.bottom-right-sm {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.bottom-right-lg {
  position: absolute;
  bottom: 30px;
  right: 30px;
}

/**
 *	padding
 */
.padding-none {
  padding: 0;
}

.padding-row {
  padding-top: 15px;
  padding-bottom: 15px;
}
.padding-row.ui-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.padding-row-xs {
  padding-top: 5px;
  padding-bottom: 5px;
}
.padding-row-xs.ui-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.padding-row-sm {
  padding-top: 10px;
  padding-bottom: 10px;
}
.padding-row-sm.ui-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.padding-row-lg {
  padding-top: 30px;
  padding-bottom: 30px;
}
.padding-row-lg.ui-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.padding-row-none {
  padding-top: 0;
  padding-bottom: 0;
}

.padding-box {
  padding: 15px;
}
.padding-box.ui-section {
  padding: 60px;
}

.padding-box-xs {
  padding: 5px;
}
.padding-box-xs.ui-section {
  padding: 20px;
}

.padding-box-sm {
  padding: 10px;
}
.padding-box-sm.ui-section {
  padding: 30px;
}

.padding-box-lg {
  padding: 30px;
}
.padding-box-lg.ui-section {
  padding: 120px;
}

.padding-box-none {
  padding: 0;
}

.padding-gutter {
  padding-left: 15px;
  padding-right: 15px;
}
.padding-gutter.row {
  padding: 0;
  margin-left: -15px;
  margin-right: -15px;
}
.padding-gutter.row > div {
  padding-left: 15px;
  padding-right: 15px;
}

.padding-gutter-xs {
  padding-left: 5px;
  padding-right: 5px;
}
.padding-gutter-xs.row {
  padding: 0;
  margin-left: -5px;
  margin-right: -5px;
}
.padding-gutter-xs.row > div {
  padding-left: 5px;
  padding-right: 5px;
}

.padding-gutter-sm {
  padding-left: 10px;
  padding-right: 10px;
}
.padding-gutter-sm.row {
  padding: 0;
  margin-left: -10px;
  margin-right: -10px;
}
.padding-gutter-sm.row > div {
  padding-left: 10px;
  padding-right: 10px;
}

.padding-gutter-lg {
  padding-left: 30px;
  padding-right: 30px;
}
.padding-gutter-lg.row {
  padding: 0;
  margin-left: -30px;
  margin-right: -30px;
}
.padding-gutter-lg.row > div {
  padding-left: 30px;
  padding-right: 30px;
}

.padding-gutter-none {
  padding-left: 0;
  padding-right: 0;
}
.padding-gutter-none.row {
  padding: 0;
  margin-left: 0;
  margin-right: 0;
}
.padding-gutter-none.row > div {
  padding-left: 0;
  padding-right: 0;
}

/**
 *	margin
 */
.margin-none {
  margin: 0;
}

.margin-row {
  margin-top: 15px;
  margin-bottom: 15px;
}
.margin-row.ui-section {
  margin-top: 60px;
  margin-bottom: 60px;
}

.margin-row-xs {
  margin-top: 5px;
  margin-bottom: 5px;
}
.margin-row-xs.ui-section {
  margin-top: 20px;
  margin-bottom: 20px;
}

.margin-row-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}
.margin-row-sm.ui-section {
  margin-top: 30px;
  margin-bottom: 30px;
}

.margin-row-lg {
  margin-top: 30px;
  margin-bottom: 30px;
}
.margin-row-lg.ui-section {
  margin-top: 120px;
  margin-bottom: 120px;
}

.margin-row-none {
  margin-top: 0;
  margin-bottom: 0;
}

.margin-section {
  margin-bottom: 60px;
}

.margin-section-xs {
  margin-bottom: 20px;
}

.margin-section-sm {
  margin-bottom: 30px;
}

.margin-section-lg {
  margin-bottom: 120px;
}

.margin-section-none {
  margin-bottom: 0;
}

.margin-content {
  margin-bottom: 15px;
}

.margin-content-xs {
  margin-bottom: 5px;
}

.margin-content-sm {
  margin-bottom: 10px;
}

.margin-content-lg {
  margin-bottom: 30px;
}

.margin-content-none {
  margin-bottom: 0;
}

/**
 *	border
 */
.border-none {
  border: none;
}

.border-box {
  border: 1px solid #ECEAEB;
}

.divider {
  border-bottom: 1px solid #ECEAEB;
}

.divider-dotted {
  border-bottom: 1px dotted #ECEAEB;
}

.border-radius {
  border-radius: 0;
}

.border-radiusp-top {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.border-radiusp-bottom {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.border-radiusp-left {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.border-radiusp-right {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/**
 *	font
 */
.headline-h1 {
  font-size: 32px;
}

.headline-h2 {
  font-size: 24px;
}

.headline-h3 {
  font-size: 18px;
}

.headline-h4 {
  font-size: 16px;
}

.headline-h5 {
  font-size: 14px;
}

.headline-h6 {
  font-size: 12px;
}

.text-size-xs {
  font-size: 10px;
}

.text-size-sm {
  font-size: 12px;
}

.text-size-lg {
  font-size: 18px;
}

.text-bold {
  font-weight: bold;
}

.text-italic {
  font-style: italic;
}

.color-black {
  color: #000;
}

.color-gray-darker {
  color: #222222;
}

.color-gray-dark {
  color: #333333;
}

.color-gray {
  color: #555555;
}

.color-gray-light {
  color: #777777;
}

.color-gray-lighter {
  color: #eeeeee;
}

.color-main {
  color: #ECEAEB;
}

.color-sub {
  color: #fff;
}

.color-accent {
  color: #D02C2A;
}

.color-link {
  color: #D02C2A;
}

.color-hover {
  color: #c32927;
}

.hover-color-main:hover {
  color: #ECEAEB;
}

.hover-color-sub:hover {
  color: #fff;
}

.hover-color-accent:hover {
  color: #D02C2A;
}

.hover-color-link:hover {
  color: #D02C2A;
}

.hover-color-hover:hover {
  color: #c32927;
}

/**
 *	background
 */
.fill-black {
  background-color: #000;
}

.fill-gray-darker {
  background-color: #222222;
}

.fill-gray-dark {
  background-color: #333333;
}

.fill-gray {
  background-color: #555555;
}

.fill-gray-light {
  background-color: #777777;
}

.fill-gray-lighter {
  background-color: #eeeeee;
}

.fill-main {
  background-color: #ECEAEB;
}

.fill-sub {
  background-color: #fff;
}

.fill-accent {
  background-color: #D02C2A;
}

.fill-link {
  background-color: #D02C2A;
}

.fill-hover {
  background-color: #c32927;
}

.hover-fill-black:hover {
  background-color: #000;
}

.hover-fill-gray-darker:hover {
  background-color: #222222;
}

.hover-fill-gray-dark:hover {
  background-color: #333333;
}

.hover-fill-gray:hover {
  background-color: #555555;
}

.hover-fill-gray-light:hover {
  background-color: #777777;
}

.hover-fill-gray-lighter:hover {
  background-color: #eeeeee;
}

.hover-fill-main {
  background-color: #ECEAEB;
}

.hover-fill-sub {
  background-color: #fff;
}

.hover-fill-accent {
  background-color: #D02C2A;
}

.hover-fill-link {
  background-color: #D02C2A;
}

.hover-fill-hover {
  background-color: #c32927;
}

/* ------------------------------------- */
/*  header: ヘッダーのスタイル
/*		- ui-header
/*		- ui-topbar
/* ------------------------------------- */
/*  layout  */
/*--------------------------------- */
.ui-header #site_description {
  margin-bottom: 0;
  font-size: 12px;
}
.ui-header .logo .title {
  margin: 0;
  font-size: 32px;
}
.ui-header .logo img {
  max-width: 100%;
}

/**
 *	ui-topbar
 */
.ui-topbar .topbar-body {
  padding: 3px 0;
  border-top: 3px solid #ECEAEB;
  border-bottom: 1px solid #ECEAEB;
  font-size: 12px;
}
.ui-topbar .topbar-body ul,
.ui-topbar .topbar-body p {
  margin-bottom: 0;
}
.ui-topbar .topbar-body .btn {
  padding: 0 3px;
}
.ui-topbar .topbar-body .header-login-block {
  text-align: right;
}
@media (min-width: 768px) {
  .ui-topbar .topbar-body input[type="text"],
  .ui-topbar .topbar-body input[type="email"],
  .ui-topbar .topbar-body input[type="password"] {
    width: 130px;
  }
}

/* ------------------------------------- */
/*  footer: フッターのスタイル
/*		- ui-footer
/*		- footerbottomcolumn
/* ------------------------------------- */
.ui-footer {
  font-size: 12px;
  background-color: #ECEAEB;
  margin-top: 120px;
}
.ui-footer .footer-body {
    border-top: 3px solid #E50012;
    background: white;
    padding-top: 0;
    padding-bottom: 0;
}
#foot_link_area {
    display: flex;
    justify-content: space-around;
    margin-bottom: 75px;
    margin-top: 35px;
}
#foot_link_area .flex_br{
    height: 0;
    width: 100%;
}
#foot_link_area .foot_link_group_l {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    width: 25%;
}
#foot_link_area .foot_link_group_m {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    width: fit-content;
}
#foot_link_area .foot_link_L {
    width: fit-content;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
#foot_link_area .foot_link_L img{
    display: inline-block;    
    margin-right: 0.5em;
}
#foot_link_area .foot_link_L span{
    display: inline-block;
    font-size: 15px;
    font-weight: bold;
    color: #333333;
    vertical-align: text-top;
}
.foot_link_L_1column .foot_link_L:not(:first-child){
    margin-top: 35px;
}
#foot_link_area .foot_link_M_2column,
#foot_link_area .foot_link_M_1column{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
#foot_link_area .foot_link_M_1column .Col_inner {
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    width: 100%;
    justify-content: flex-start;
}

#foot_link_area .foot_link_M_2column .Col_inner {
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    width: 50%;
    justify-content: flex-start;
}
#foot_link_area .foot_link_M {
    width: fit-content;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 21px;
}
#foot_link_area .foot_link_M img{
    display: inline-block;    
    margin-right: 0.5em;
}
#foot_link_area .foot_link_M span{
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    vertical-align: text-top;
}

#foot-foot {
    background: #E50012;
    padding: 10px;
    color: white;
    font-size: 15px;
}
#foot-foot .container{
    display: flex;
    justify-content: space-between;
}
#foot-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    line-height: 35px;
    width: 100%;
}
#foot-left a,
#foot-left a:active,
#foot-left a:hover,
#foot-left a:visited,
#foot-left a:hover,
#foot-left a:link{
    color:white;
}
#foot-left a span{
    text-decoration: underline;
}
#foot-privacy {
    margin-left: 30px;
    margin-right: auto;
}
#copyright {
    font-size: 14px;
    width: 100%;
    text-align: right;
}
#foot-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 0 0 100px;
}
.ui-footer #pagetop {
  margin-bottom: 10px;
}

/**
 *	footer bottom column
 */
#footerbottomcolumn {
  border-top: 1px solid #ECEAEB;
}

/* ------------------------------------- */
/*  hadline: 見出しのスタイル
/*		- ui-headline
/*		- page-title
/*		- section-title
/*		- content-title
/* ------------------------------------- */
.ui-headline {
  position: relative;
}
.ui-headline .title {
  display: inline-block;
  margin: 0;
}
.ui-headline .title.title-colored {
  font-size: 18px;
}
.ui-headline .list-link {
  position: absolute;
  right: 15px;
  bottom: 15px;
  margin: 0;
}

/**
 *	page-title
 */
.page-title {
  padding-bottom: 10px;
  margin-bottom: 40px;
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
.page-title .title {
  color: #5B5B5B;
  font-size: 32px;
  font-weight: normal;
}

/**
 *	section-title
 */
.section-title {
  margin-bottom: 25px;
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
.section-title .title {
  color: #5B5B5B;
  font-size: 18px;
}
.section-title .title img {
  margin-left: 20px;
}

.ui-content .section-title:before {
  content: "";
  display: block;
  border-top: solid 1px #ECEAEB;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  z-index: 1;
}
.ui-content .section-title .title {
  background: #fff;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 20px;
  position: relative;
  z-index: 5;
}
.ui-content .section-title.text-center .title {
  padding-left: 20px;
}

/**
 *	side-title
 */
.side-title {
  margin-bottom: 0;
  padding: 10px;
  background-color: #ECEAEB;
}
.side-title .title {
  color: #5B5B5B;
  font-size: 14px;
  font-weight: bold;
}

/* ------------------------------------- */
/*  button: ボタンのスタイル
/*		- ui-form 	
/*		- @block: search_products, login
/*		- @plugin: 
/* ------------------------------------- */
.btn {
  border-radius: 2px;
}
@media (max-width: 767px) {
  .btn {
    width: 100%;
    padding: 8px 12px;
  }
}

div.btn,
li.btn,
p.btn {
  padding: 0;
  border: none;
  cursor: none;
}
div.btn:active,
li.btn:active,
p.btn:active {
  box-shadow: none;
}

/**
 *	btn style
 */
.btn-default {
  color: #5B5B5B;
  background-color: #fff;
  border: 1px solid #ECEAEB;
}
.btn-default:hover {
  border: 1px solid #ECEAEB;
  background-color: #ECEAEB;
}

.btn-black {
  color: #fff;
  border: 1px solid #333;
  background-color: #333;
}
.btn-black:hover {
  color: #fff;
  background-color: #444;
}

.btn-border {
  color: #5B5B5B;
  background-color: #fff;
  border: 1px solid #ECEAEB;
}
.btn-border:hover {
  background-color: #ECEAEB;
}

/* ------------------------------------- */
/*  content box: 商品リストのスタイル
/*		- ui-box
/*		- ui-side > ui-box
/*		- @block: recommend
/*		- @plugin: plg_ranking, plg_newProduct
/* ------------------------------------- */
.ui-box {
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .ui-box {
    font-size: 12px;
  }
}
.ui-box .box-image {
  margin-bottom: 10px;
}
.ui-box .box-title {
  margin-bottom: 5px;
}
.ui-box .box-title .title {
  color: #333333;
  font-size: 13px;
}
.ui-box .box-title .title a {
  color: #333333;
}
.ui-box .box-title .title a:hover {
  color: #D02C2A;
}
.ui-box .description,
.ui-box ul, .ui-box p {
  margin-bottom: 5px;
}
.ui-box .rank_num {
  padding: 2px 4px;
  margin-right: 5px;
  border: 1px solid #ECEAEB;
  color: #5B5B5B;
  font-size: 10px;
}
.ui-box .item-price {
  color: #5B5B5B;
  font-weight: bold;
}
.ui-box .item-price del {
  color: #777777;
  font-weight: normal;
}
.ui-box .item-price .price {
  color: #5B5B5B;
}
@media (min-width: 768px) {
  .ui-box .col-left-fit {
    padding-right: 0;
  }
  .ui-box .col-left-sm {
    padding-right: 10px;
  }
  .ui-box .col-left-lg {
    padding-right: 30px;
  }
}

.ui-side .ui-box {
  text-align: left;
}

@media (max-width: 767px) {
  .ui-box .status-icon img {
    width: 50px;
    margin-bottom: 3px;
  }
}

/* ------------------------------------- */
/*  list: リストコンテンツのスタイル
/*		- ui-list
/*		- list-category
/*		- @block: news, category
/*		- @plugin: 
/* ------------------------------------- */
.ui-list .date {
  font-size: 12px;
}
.ui-list.list-news .list-body {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ECEAEB;
}
.ui-list.list-scroll {
  overflow-y: scroll;
  max-height: 300px;
  padding: 5px 15px;
  border: 1px solid #ECEAEB;
}

/**
 *	list-category
 */
.ui-list.list-category {
  padding: 0;
  margin-bottom: 0;
  list-style: none;
}
.ui-list.list-category li {
  padding: 5px 0;
}
.ui-list.list-category a {
  font-size: 14px;
  font-weight: bold;
}
.ui-list.list-category ul {
  list-style: disc;
  padding-left: 15px;
}

/* ------------------------------------- */
/*  form: フォームのスタイル
/*		- ui-form 	
/*		- @block: search_products, login
/*		- @plugin: 
/* ------------------------------------- */
.ui-form .formlist dt {
  color: #5B5B5B;
  font-size: 12px;
}

/* ------------------------------------- */
/*  table: tableのスタイル
/*		- ui-table
/*		- @block: calendar
/*		- @plugin: 
/*		- @page: contact, cart
/* ------------------------------------- */
.ui-table {
  border: none !important;
}
.ui-table tr th {
  border: none !important;
  color: #5B5B5B;
  background-color: #f4f4f4;
}
.ui-table tr td {
  border: none !important;
}
.ui-table tr td select {
  margin-bottom: 10px;
  max-width: 150px;
}
.ui-table tr td input {
  padding: 2px 6px;
}

/**
 *	carendar
 */
.ui-side .ui-table caption {
  text-align: center;
}
@media (min-width: 768px) {
  .ui-side .ui-table > thead > tr > th {
    padding: 3px;
    font-size: 12px;
  }
}
@media (min-width: 992px) {
  .ui-side .ui-table > thead > tr > th {
    padding: 6px;
  }
}
.ui-side .ui-table > tbody > tr > td {
  border: none;
}
.ui-side .ui-table > tbody > tr > td.off {
  background-color: #FFCFCF;
}
@media (min-width: 768px) {
  .ui-side .ui-table > tbody > tr > td {
    padding: 3px;
    font-size: 12px;
  }
}
@media (min-width: 992px) {
  .ui-side .ui-table > tbody > tr > td {
    padding: 6px;
  }
}

/* ------------------------------------- */
/*  nav: ナビゲーションのスタイル
/*		- ui-nav
/*		- @block: 
/*		- @plugin: plg_Tetra_PulldownNav
/* ------------------------------------- */
.ui-nav {
  min-height: 0;
  border-radius: 0;
  border: none;
  border-top: 1px solid #ECEAEB;
  border-bottom: 1px solid #ECEAEB;
  background-color: #fff;
}
.ui-nav .navbar-brand {
  color: #5B5B5B;
  font-size: 14px;
  font-weight: normal;
}
.ui-nav .navbar-toggle {
  border: none;
}
.ui-nav .navbar-toggle:hover, .ui-nav .navbar-toggle:active, .ui-nav .navbar-toggle:focus {
  background-color: transparent;
}
.ui-nav .navbar-toggle .icon-bar {
  background-color: #5B5B5B;
}
@media (min-width: 768px) {
  .ui-nav .nav > li {
    margin: 0 1px;
    color: #ECEAEB;
    background-color: #fff;
  }
  .ui-nav .nav > li:hover, .ui-nav .nav > li:focus {
    color: #5B5B5B;
  }
  .ui-nav .nav > li.active > a {
    color: #5B5B5B;
    font-weight: normal;
    background-color: #ECEAEB;
  }
  .ui-nav .nav > li > a {
    padding: 15px 20px;
    color: #5B5B5B;
  }
  .ui-nav .nav > li > a:hover, .ui-nav .nav > li > a:focus {
    color: #5B5B5B;
    background-color: #ECEAEB;
  }
  .ui-nav .nav .dropdown-menu > li > a:hover {
    background-color: #ECEAEB;
  }
}

/**
 *	hover-open
 */
@media (min-width: 768px) {
  .ui-nav.open-hover .dropdown:hover > .dropdown-menu {
    display: block;
  }
}

/**
 *	submenu
 */
.ui-nav .dropdown-submenu {
  position: relative;
}
.ui-nav .dropdown-submenu > .dropdown-menu {
  top: 0 !important;
  left: 101%;
  margin-left: -1px;
  -webkit-border-radius: 0 6px 6px 6px;
  -moz-border-radius: 0 6px 6px 6px;
  border-radius: 0 6px 6px 6px;
}
.ui-nav .dropdown-submenu:hover > .dropdown-menu {
  display: block;
}
.ui-nav .dropdown-submenu > a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #cccccc;
  margin-top: 5px;
  margin-right: -10px;
}
.ui-nav .dropdown-submenu:hover > a:after {
  border-left-color: #ffffff;
}
.ui-nav .dropdown-submenu.pull-left {
  float: none;
}
.ui-nav .dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}

/* ------------------------------------- */
/*  slider: スライダーのスタイル
/*    - ui-slider
/*    - @block: 
/*    - @plugin: plg_Tetra_slider_area
/* ------------------------------------- */
.ui-slider .carousel-indicators li {
    border: 1px solid #D0D0D0;
    background: RGBA(255,255,255,0.63);
}
.ui-slider .carousel-indicators li.active {
    border: 1px solid RGBA(255,255,255,0.63);
    background: RGBA(229,0,18,0.43);
}
.carousel-indicators li,
.carousel-indicators li.active{
    width: 13px;
    height: 13px;
    margin:1px;
}
.ui-slider .carousel-inner .item {
  text-align: center;
}
.ui-slider .carousel-inner .item img {
  display: inline-block;
  width: 100%;
}
.ui-slider .carousel-control {
  opacity: 1;
  width: 8%;
  text-shadow: none;
}
.ui-slider .carousel-control .glyphicon {
  opacity: .3;
}
.ui-slider .carousel-control:hover {
  color: #ECEAEB;
  background-color: transparent;
}
.ui-slider .carousel-control:hover .glyphicon {
  opacity: 1;
}
.ui-slider .carousel-control.left {
  filter: none;
  background-image: none;
}
.ui-slider .carousel-control.right {
  filter: none;
  right: 0;
  background-image: none;
}

/* ------------------------------------- */
/*  shoppingu guide: ガイドのスタイル
/*    - shopping_guide
/*    - @block: 
/*    - @plugin: plg_Tetra_FotterGuide_area 
/* ------------------------------------- */
#shopping_guide {
  margin-bottom: 40px;
  padding: 20px;
  border: 1px solid #ECEAEB;
  font-size: 12px;
}
#shopping_guide .footer_title {
  padding-bottom: 5px;
  padding-left: 20px;
  margin: -10px -20px 0 -20px;
  border-bottom: 1px solid #ECEAEB;
  color: #5B5B5B;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
}
#shopping_guide .footer_title span {
  font-size: 10px;
}
#shopping_guide .guide_title {
  padding: 6px 10px;
  margin-top: 20px;
  margin-bottom: 10px;
  border: 1px solid #ECEAEB;
}
#shopping_guide .guide_body ul li {
  margin-bottom: 5px;
}
#shopping_guide .guide_body img {
  max-width: 100%;
  max-height: 100%;
}

/* ------------------------------------- */
/*   Cart: カートページのスタイル
/* ------------------------------------- */
#undercolumn_cart .point_announce {
  margin-bottom: 20px;
}
#undercolumn_cart .point_announce .price {
  color: #f00;
  font-weight: bold;
  padding: 0 5px;
}
#undercolumn_cart .totalmoney_area {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  #undercolumn_cart .form_area table #quantity_level li {
    padding: 0;
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
#undercolumn_cart .form_area table #quantity_level li a i {
  font-size: 18px;
}

/* ------------------------------------- */
/*  products: 商品ページのスタイル
/*    - page-navi
/*    - product-list
/*    - product-detail
/* ------------------------------------- */
/**
 *	page-navi
 */
#undercolumn #page_navi_top,
#undercolumn #page_navi_bottom {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  #undercolumn #page_navi_top,
  #undercolumn #page_navi_bottom {
    margin-top: 20px;
  }
}
#undercolumn #page_navi_top .item_num,
#undercolumn #page_navi_bottom .item_num {
  margin-bottom: 15px;
  color: #5B5B5B;
  font-weight: bold;
}
#undercolumn #page_navi_top .change,
#undercolumn #page_navi_bottom .change {
  text-align: right;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ECEAEB;
}
@media (max-width: 767px) {
  #undercolumn #page_navi_top .change,
  #undercolumn #page_navi_bottom .change {
    text-align: center;
  }
}
#undercolumn #page_navi_top .change a,
#undercolumn #page_navi_bottom .change a {
  margin-right: 5px;
  padding: 6px 12px;
  border-radius: 2px;
  border: 1px solid #ECEAEB;
  font-size: 12px;
}
#undercolumn #page_navi_top .change a:hover,
#undercolumn #page_navi_bottom .change a:hover {
  color: #fff;
  text-decoration: none;
  border-color: #5B5B5B;
  background-color: #5B5B5B;
}
#undercolumn #page_navi_top .change select,
#undercolumn #page_navi_bottom .change select {
  width: 80px;
  height: 30px;
  border: 1px solid #ECEAEB;
  background-color: #fff;
}
@media (max-width: 767px) {
  #undercolumn #page_navi_top .change select,
  #undercolumn #page_navi_bottom .change select {
    width: 100%;
    margin-top: 20px;
  }
}
#undercolumn #page_navi_top .navi,
#undercolumn #page_navi_bottom .navi {
  text-align: center;
  color: #5B5B5B;
}
#undercolumn #page_navi_top .navi a,
#undercolumn #page_navi_bottom .navi a {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 2px;
  border: 1px solid #ECEAEB;
  font-size: 12px;
}
#undercolumn #page_navi_top .navi a:hover,
#undercolumn #page_navi_bottom .navi a:hover {
  color: #fff;
  text-decoration: none;
  border-color: #5B5B5B;
  background-color: #5B5B5B;
}

/**
 *	product-list
 */
.list-products {
  text-align: left;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ECEAEB;
}
.list-products:last-child {
  border: none;
}
.list-products .status_icon li {
  padding-right: 0;
}
.list-products .product-title {
  margin-bottom: 30px;
}
.list-products .product-title .title {
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  color: #5B5B5B;
  font-size: 24px;
}
.list-products .normal_price,
.list-products .sale_price {
  margin-bottom: 15px;
  color: #5B5B5B;
  font-weight: bold;
}
.list-products .normal_price .price,
.list-products .sale_price .price {
  font-size: 18px;
}
.list-products .listcomment {
  margin-bottom: 15px;
}
.list-products .cart_area {
  padding-top: 15px;
  border-top: 2px solid #ECEAEB;
}
@media (min-width: 768px) {
  .list-products .cart_area select {
    width: 130px;
  }
}
@media (min-width: 768px) {
  .list-products .cart_area input[type="text"] {
    width: 100px;
    margin-left: 6px;
  }
}
.list-products .cart_area dl {
  margin-bottom: 0;
}
.list-products .cart_area dl:last-child {
  margin-bottom: 15px;
}
.list-products .cart_area dl dt {
  display: inline-block;
  width: auto;
  color: #333333;
}
.list-products .cart_area dl dd {
  display: inline-block;
}
.list-products .cart_area .quantity {
  margin-bottom: 15px;
  margin-right: 15px;
}
.list-products .cart_area .cartin_btn .btn {
  width: 150px;
}
@media (max-width: 767px) {
  .list-products .cart_area .cartin_btn .btn {
    width: 100%;
    padding: 8px 12px;
  }
}
.list-products .description {
  margin-bottom: 15px;
}
.list-products .detail_btn .btn {
  margin-bottom: 15px;
}

/**
 *	product-detail
 */
#detailarea #detailphotobloc {
  margin-bottom: 20px;
}
#detailarea #detailphotobloc img {
  margin-bottom: 5px;
}
#detailarea #detailrightbloc .status_icon li {
  padding-right: 0;
}
#detailarea #detailrightbloc .product-title {
  margin-bottom: 30px;
}
#detailarea #detailrightbloc .product-title .title {
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  color: #5B5B5B;
  font-size: 24px;
}
#detailarea #detailrightbloc .dl-horizontal {
  margin-bottom: 5px;
}
#detailarea #detailrightbloc .dl-horizontal dt {
  display: inline-block;
  width: 100px;
  color: #5B5B5B;
  font-size: 12px;
}
@media (min-width: 768px) {
  #detailarea #detailrightbloc .dl-horizontal dt {
    width: 100px;
  }
}
#detailarea #detailrightbloc .dl-horizontal dd {
  display: inline-block;
}
@media (min-width: 768px) {
  #detailarea #detailrightbloc .dl-horizontal dd {
    margin-left: 0;
  }
}
#detailarea #detailrightbloc .price-area,
#detailarea #detailrightbloc .spec-area,
#detailarea #detailrightbloc .main_comment {
  margin-bottom: 15px;
}
#detailarea #detailrightbloc .normal_price .price,
#detailarea #detailrightbloc .sale_price .price {
  color: #5B5B5B;
  font-size: 18px;
  font-weight: bold;
}
#detailarea #detailrightbloc .cart_area {
  padding-top: 15px;
  border-top: 2px solid #ECEAEB;
}
@media (min-width: 768px) {
  #detailarea #detailrightbloc .cart_area select {
    width: 130px;
  }
}
@media (min-width: 768px) {
  #detailarea #detailrightbloc .cart_area input[type="text"] {
    width: 100px;
    margin-left: 6px;
  }
}
#detailarea #detailrightbloc .cart_area .quantity {
  margin-bottom: 15px;
}
#detailarea #detailrightbloc .cart_area .quantity dt {
  display: inline-block;
  width: auto;
  color: #333333;
}
#detailarea #detailrightbloc .cart_area .quantity dd {
  display: inline-block;
}
@media (min-width: 768px) {
  #detailarea #detailrightbloc .cart_area .quantity dd {
    margin-left: 20px;
  }
}
#detailarea #detailrightbloc .cart_area .cartin_btn {
  margin-bottom: 15px;
}
#detailarea #detailrightbloc .cart_area .cartin_btn .btn {
  width: 250px;
}
@media (max-width: 767px) {
  #detailarea #detailrightbloc .cart_area .cartin_btn .btn {
    width: 100%;
    padding: 8px 12px;
  }
}

#subcomment_area {
  margin-bottom: 60px;
}
#subcomment_area .sub_area {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ECEAEB;
}
#subcomment_area .sub-title {
  margin-bottom: 15px;
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 16px;
}
#subcomment_area .mini {
  display: inline-block;
  margin-top: 5px;
}

#customervoice_area {
  margin-bottom: 40px;
}
#customervoice_area .review_bloc {
  padding: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ECEAEB;
}
#customervoice_area .review_bloc p {
  display: inline-block;
  margin: 0;
  font-size: 12px;
}
#customervoice_area .review_bloc .review_btn {
  display: inline-block;
  float: right;
}
@media (max-width: 767px) {
  #customervoice_area .review_bloc .review_btn {
    display: block;
    float: none;
    margin-top: 10px;
  }
}
#customervoice_area .review_bloc .review_btn a {
  padding: 4px 8px;
  font-size: 12px;
}
#customervoice_area .review_bloc .review_btn a:hover {
  text-decoration: none;
}
@media (max-width: 767px) {
  #customervoice_area .review_bloc .review_btn a {
    width: 100%;
    font-size: 14px;
  }
}
#customervoice_area ul {
  list-style: none;
  padding: 15px;
  font-size: 12px;
}
#customervoice_area ul li {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
#customervoice_area ul li .recommend_level {
  color: #ffbd30;
}

@media (max-width: 767px) {
  #cboxOverlay {
    max-width: 100% !important;
  }

  #colorbox,
  #cboxWrapper,
  #cboxContent {
    max-width: 100% !important;
    background-color: transparent;
  }

  #cboxLoadedContent {
    max-width: 100% !important;
    margin-left: auto;
    margin-right: auto;
    background-color: transparent;
  }

  .cboxPhoto {
    max-width: 100% !important;
    height: auto !important;
    border: 1px solid #333;
  }
}
/* ------------------------------------- */
/*  mypage: マイページのスタイル
/*    - mynavi_area
/* ------------------------------------- */
/**
 *  index
 */
@media (max-width: 767px) {
  #mynavi_area .mynavi_list li {
    display: block;
  }
  #mynavi_area .mynavi_list li a {
    display: block;
    padding: 8px 10px;
    border: 1px solid #ECEAEB;
    border-bottom: none;
    background-color: #f4f4f4;
  }
  #mynavi_area .mynavi_list li:last-child a {
    border-bottom: 1px solid #ECEAEB;
  }
}

/* ------------------------------------- */
/*  shopping: 購入ページのスタイル
/*    - shopping
/*    - login
/*    - customer
/* ------------------------------------- */
/**
 *  shopping
 */
#undercolumn_shopping .shopping-flow {
  padding-left: 0;
  margin-bottom: 30px;
}
#undercolumn_shopping .shopping-flow li {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  width: 25%;
  height: 45px;
  margin-left: -4px;
  color: #5B5B5B;
  line-height: 45px;
  background-color: #ECEAEB;
}
#undercolumn_shopping .shopping-flow li.current {
  color: #fff;
  background-color: #5B5B5B;
}
#undercolumn_shopping .shopping-flow li.row2 {
  line-height: 14px;
  padding-top: 10px;
}
@media (max-width: 767px) {
  #undercolumn_shopping .shopping-flow li {
    width: 100%;
  }
}
#undercolumn_shopping .pay_area,
#undercolumn_shopping .pay_area02,
#undercolumn_shopping .point_area {
  margin-bottom: 40px;
}
#undercolumn_shopping .delivdate select {
  display: inline-block;
  width: 150px;
}
#undercolumn_shopping .radio-button li {
  margin-bottom: 15px;
}
#undercolumn_shopping .radio-button li input {
  margin-right: 5px;
}
#undercolumn_shopping .btn_area {
  text-align: center;
}
#undercolumn_shopping textarea {
  width: 100%;
}

/**
 *  login
 */
#undercolumn_login .login_area {
    width: 100%;
    padding: 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border: 1px solid #333;
    border-radius: 20px;
    background-color: #fff;
}
#undercolumn_login .login_area .inputbox {
  margin: 30px 0;
}
#undercolumn_login .login_area .inputbox .btn_area {
  text-align: center;
}
#undercolumn_login .login_area .inputbox .btn_area ul {
  margin-bottom: 0;
}

/**
 *  customer
 */
#undercolumn_customer .shopping-flow {
  padding-left: 0;
}
#undercolumn_customer .shopping-flow li {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  width: 25%;
  height: 45px;
  margin-left: -4px;
  color: #5B5B5B;
  line-height: 45px;
  background-color: #ECEAEB;
}
#undercolumn_customer .shopping-flow li.current {
  color: #fff;
  background-color: #5B5B5B;
}
#undercolumn_customer .shopping-flow li.row2 {
  line-height: 14px;
  padding-top: 10px;
}
@media (max-width: 767px) {
  #undercolumn_customer .shopping-flow li {
    width: 100%;
  }
}
#undercolumn_customer form table select {
  margin: 5px 0;
}
#undercolumn_customer form table select[name="order_year"],
#undercolumn_customer form table select[name="order_month"],
#undercolumn_customer form table select[name="order_day"] {
  width: 60px;
  margin-right: 5px;
}
@media (max-width: 767px) {
  #undercolumn_customer form table select[name="order_year"],
  #undercolumn_customer form table select[name="order_month"],
  #undercolumn_customer form table select[name="order_day"] {
    width: 110px;
  }
}
#undercolumn_customer form table td select {
  width: 130px;
}
#undercolumn_customer .btn_area {
  text-align: center;
}

/* ------------------------------------- */
/*  windowcolumn: ポップアップページのスタイル
/* ------------------------------------- */
#windowcolumn #forgot {
  padding: 10px;
}
#windowcolumn #forgot .name {
  margin-left: 49px;
}
@media (max-width: 767px) {
  #windowcolumn #forgot .name {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  #windowcolumn table {
    widows: 300px;
  }
  #windowcolumn table textarea {
    width: 200px;
  }
}

/*　VVV　サイドメニュー　VVV　*/

#side_menu{
    position: fixed;
    z-index: 11;
    top: 210px;
    right: -5px;
}

#side_nemu a,
#side_nemu a:active,
#side_nemu a:hover,
#side_menu a:link,
#side_nemu a:visited{
    display :block;
    margin-bottom:10px;
}

#side_menu a img{
    display:block;
    width:62px;
}

/*　AAA　サイドメニュー　AAA　*/

/* VVV　ヘッダ　VVV　*/
#header_wrap{
    padding : 0;
    height:62px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#logo_area{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#logo_area img{
    height: 37px;
}

#plg_Tetra_PulldownNav .ui-nav{
    border: none;
    border-top: none;
    border-bottom: none;
    background-color: #E50012;
    color:#FFF;
}
#plg_Tetra_PulldownNav{
    height:60px;
}
#plg_Tetra_PulldownNav .navbar-nav{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
#plg_Tetra_PulldownNav .dropdown{
    width:20%;
    background-color: #E50012;
}
#plg_Tetra_PulldownNav .dropdown:hover .fa-angle-down:before{
    content:"\f106";
}
#plg_Tetra_PulldownNav .dropdown .dropdown-menu{
    width: 19em;
    text-align: center;
    background: #FFF;
    padding: 0;
    font-size: 18px;
    left: min(0px,calc((100% - 19em)/2));
}
#plg_Tetra_PulldownNav .dropdown-menu>li>a{
    color: #E50012;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    padding: 0.25em 1em;
}
#plg_Tetra_PulldownNav .dropdown-menu>li>a:hover {
    background: #E50012;
    color: white;
}
#plg_Tetra_PulldownNav .dropdown-toggle{
    background: #E50012;
    color:#FFF;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    line-height: 60px;
    padding: 0;
}
/*　AAA　ヘッダ　AAA　*/

/* VVV サイドメニュー VVV */
.sidemenu_title{
    width: 100%;
    line-height: 5em;
    background: #E50012;
    text-align: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}
.sidemenu_list img {
    margin-right: 10px;
}
.sidemenu_list a,
.sidemenu_list a:active,
.sidemenu_list a:hover,
.sidemenu_list a:link,
.sidemenu_list a:visited{
    line-height: 45px;
    width: 100%;
    display: block;
    background: #EEEEEE;
    padding: 0 15px;
    font-size: 15px;
    color: black;
    border-bottom: 1px solid #D1D1D1;
}
.sidemenu_list a.side_active,
.sidemenu_list a.side_active:active,
.sidemenu_list a.side_active:hover,
.sidemenu_list a.side_active:link,
.sidemenu_list a.side_active:visited{
    background: #E50012;
    color: white;
}
/* AAA サイドメニュー AAA */


/* VVV ぱんくず VVV */
.breadcrumb_block {
    margin-top: 20px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.breadcrumb_block>a,
.breadcrumb_block>span{
    color: #000000;    
}
.breadcrumb_block img {
        margin-bottom: 4px;
}

/* AAA ぱんくず AAA */



/* VVV 汎用タイトル VVV */
.utilTitle {
    font-size: 20px;
    border-left: 7px solid #E50012;
    border-bottom: 1px solid #E50012;
    line-height: 40px;
    padding-left: 15px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 30px;
}
.utilSubTitle {
    font-size: 20px;
    border-left: 6px solid #E50012;
    line-height: 25px;
    padding-left: 15px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 20px;
}
.utilSubTitle::before {
    content: "";
    position: relative;
    top: 0;
    font-size: 17px;
    left: -13px;
    border: 1px solid #E50012;
}

.utilTitle_backGray {
    font-size: 20px;
    border-left: 7px solid #E50012;
    background-color: #F8F8F8;
    line-height: 40px;
    padding-left: 15px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 30px;
}
/* AAA 汎用タイトル AAA */

.utilTitle_top{
    font-size: 28px;
    border-left: 7px solid #E50012;
    border-bottom: 1px solid #E50012;
    line-height: 40px;
    padding-left: 15px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    width: 100%;
    height: fit-content;
    justify-content: space-between;
}


.utilTitle_top .utilBtn,
.utilTitle_top .utilBtn:active,
.utilTitle_top .utilBtn:link,
.utilTitle_top .utilBtn:hover,
.utilTitle_top .utilBtn:visited {
        margin-top: 0;
    margin-bottom: 7px;
    height: 37px;
    font-size: 14px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
        width: 170px;
}

.utilTitle_pagetit {
    font-size: 34px;
    line-height: 40px;
    padding-left: 10px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 15px;
}

.utilTitle_pagein {
    font-size: 24px;
    border-left: 7px solid #E50012;
    line-height: 34px;
    padding-left: 15px;
    font-weight: bold;
    margin: 25px 0 20px;
}

.underline_red{
    background-color: #E50012;
    width: 100%;
    display: inline-block;
    height: 2px;
    margin-bottom: 1em;
}

.pdf_box_full{
    display: flex;
    background: #F7F7F7;
    border: 1px solid #B7B7B7;
    padding: 2em;
    justify-content: space-around;
    align-items: center;
    border-radius: 1em;
}

.pdf_box_full .left {
    width: 70%;
}

.pdf_box_full .tit{
    font-size: 20px;
    font-weight: 600;
    line-height: 1em;
    color: #333;
}

.pdf_box_full hr{
    border-top: 1px solid #B7B7B7;
}

.pdf_box_full .txt{
    font-size: 17px;
    font-weight: 600;
    color: #333;
}

.pdf_box_full .right{
    
}

.pdf_box_full .right img{
    height: 150px;
}




@media (max-width: 767px) {
.underline_red{
    background-color: #E50012;
    width: 100%;
    display: inline-block;
    height: 2px;
    margin-bottom: 1em;
}

.pdf_box_full{
    display: flex;
    background: #F7F7F7;
    border: 1px solid #B7B7B7;
    padding: 1em;
    justify-content: space-around;
    align-items: center;
    border-radius: 1em;
}

.pdf_box_full .left {
    width: 70%;
}

.pdf_box_full .tit{
    font-size: 17px;
    font-weight: 600;
    line-height: 1em;
    color: #333;
}

.pdf_box_full hr{
    border-top: 1px solid #B7B7B7;
    margin: 0 0 7px;
}

.pdf_box_full .txt{
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.pdf_box_full .right{
    
}

.pdf_box_full .right img{
    height: 100px;
}

}

.tit_underline{
    display: flex;
    width: 100%;
    gap:5px;
    height: 3px;
}

.tit_underline .line1,
.tit_underline .line2{
    display: inline-block;
    height: 3px;
    margin: 0;
    border: none;
}

.tit_underline .line1{
    background-color: #E50012;
    width: 40%;
}

.tit_underline .line2{
    background-color: #EBEBEB;
    width: 60%;
}

/* VVV 汎用ボタン VVV */
.utilBtn,
.utilBtn:active,
.utilBtn:link,
.utilBtn:hover,
.utilBtn:visited
{
    background: url(../img/button/utilBtn.svg);
    background-repeat: no-repeat;
    text-decoration: none;
    height: 45px;
    width: 320px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    color: white!important;
    line-height: 21px;
    /* margin-left: 15px; */
    /* margin-right: 15px; */
    gap: 15px;
    border: none;
}

.utilBtn.rev{
    background: url(../img/button/utilBtn_rev.svg);    
}
.utilBtn.next{
    background: url(../img/button/utilBtn_next.svg);    
}
.utilBtn.line{
    background: url(../img/button/utilBtn_line.svg);    
}
.utilBtn.linerev{
    background: url(../img/button/utilBtn_line_rev.svg);    
}
.utilBtn.linenext{
    background: url(../img/button/utilBtn_line_next.svg);    
}
.utilBtn.min{
    background: url(../img/button/utilBtn_min.svg);    
    width: 205px;
}
.utilBtn.minrev{
    background: url(../img/button/utilBtn_min_rev.svg);   
    width: 205px;  
}
.utilBtn.minnext{
    background: url(../img/button/utilBtn_min_next.svg);    
    width: 205px; 
}

.utilBtn2,
.utilBtn2:active,
.utilBtn2:link,
.utilBtn2:hover,
.utilBtn2:visited
{
    background: #E50012;
    text-decoration: none;
    height: 45px;
    width: 320px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    color: white!important;
    line-height: 21px;
    /* margin-left: 15px; */
    /* margin-right: 15px; */
    gap: 15px;
    border: none;
    position: relative;
}

.utilBtn2::after{
    content: '▼';
    display: inline-block;
    position: absolute;
    right: 1em;
    transform: rotate(-90deg);
}

.utilBtn.rev{
    background: url(../img/button/utilBtn_rev.svg);    
}

.utilBtn_rightDelta_w49{
    width: 49.7%;
    background: #E50012;
    font-size: 16px;
    font-weight: 500;
    color: white!important;
    line-height: 21px;
    position: relative;
    padding: 0.8em 0 0.7em 2.5em;
    margin-bottom: 0.6%;
}

.utilBtn_rightDelta_w49::before{
    content: "▼";
    position: absolute;
    left: 1em;
}

.utilBtn_rightDelta_w32{
    width: 32.8%;
    background: #E50012;
    font-size: 16px;
    font-weight: 500;
    color: white!important;
    line-height: 21px;
    position: relative;
    padding: 0.8em 0 0.7em 2.5em;
    margin-bottom: 0.6%;
}

.utilBtn_rightDelta_w32::before{
    content: "▼";
    position: absolute;
    left: 1em;
}

.slide_link_btn,
.slide_link_btn:active,
.slide_link_btn:link,
.slide_link_btn:hover,
.slide_link_btn:visited{
    background: url(../img/button/utilBtn_line_next.svg);
    background-repeat: no-repeat;
    text-decoration: none;
    height: max(45px,calc(45 * 100vw / 1920));
    width: max(330px,calc(330 * 100vw / 1920));
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: max(16px,calc(16 * 100vw / 1920));
    font-weight: bold;
    color: white!important;
    line-height: max(21px,calc(21 * 100vw / 1920));
    border: none;
    position: fixed;
    top: calc(461 * 100vw / 1920);
    left: calc(324 * 100vw / 1920);
}
/* AAA 汎用ボタン AAA */

/* VVV 汎用テーブル VVV */
.utilTable {
    width: 100%;
}
.utilTable tr{
    height:50px;
}
.utilTable tr,
.utilTable th,
.utilTable td{
    border-top: none;
    vertical-align: middle;
}
.utilTable .tips{
    padding-top: 0;
    vertical-align: top;
    color:#4B4B4B;
    font-size:14px;
}
.utilTable th {
    text-align: center;
    vertical-align: middle;
    font-size: 18px;
    font-weight: 600;
    color: #4B4B4B;
}
.utilTable input {
    height: 37px;
    padding: 0 0.5em;
    border: #B7B7B7 solid 1px;
}
.utilTable input.sizeL {
    width: 100%;
}
.utilTable input.sizeM {
    width: 75%;
}
.utilTable input.sizeS {
    width: 50%;
}
/* AAA 汎用テーブル AAA */

/* VVV LP部分 VVV */
.main_img {
    width: 100%;
}
.lp_split,
.lp_split3,
.lp_split4{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.lp_split .split_inner {
    width: calc(49.99% - 10px);
}
.lp_split3 .split_inner {
    width: calc(33.29% - 13.4px);
}
.lp_split4 .split_inner {
    width: calc(49.99% - 10px);
}

.lp_split_ex_btnArea{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.lp_split .split_inner {
    width: calc(49.99% - 10px);
}

.lp_split5 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.lp_split5 .split_inner {
    width: calc(49.99% - 10px);
}

.lp_split5  .split_inner_ex5_img{
    width: 40%;
}

.lp_split5  .split_inner_ex5_text{
    width: 55%;
}

.lp_split5  .split_inner_ex5_text p{
    margin: 0;
    margin-left: 1em;
    font-size: 15px;
    line-height: 22.5px;
    font-weight:500;
}

.lp_split5  .split_inner_ex5_img img{
    width: 100%;
    max-width: 100%;
}
    
.balance_table{
    justify-content: flex-start!important;
    gap: 1.3em!important;
}

.split_inner img {
    max-width: 100%;
}
.split_inner p{
    margin: 0;
    margin-left: 1em;
    font-size: 15px;
    line-height: 22.5px;
    font-weight:500;
}

.lp_split_toplink{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:1em;
}

.lp_split_toplink:after{
    display: block;
    content:"";
    width: 32%;
}

.lp_split_toplink .inner{
    display: flex;
    justify-content: start;
    font-size: 17px;
    font-weight: 600;
    border: 1px solid #E50012;
    align-items: center;
    width: 32%;
    padding: 1em 1.2em;
}

.lp_split_toplink .inner p{
    margin: 0;
    color: #333;
}

.lp_split_toplink .inner p:active,
.lp_split_toplink .inner p:hover{
    color: #333;
}

.lp_split_toplink .inner img:first-child{
    width: 65px;
    margin-right: 1em;
}

.lp_split_toplink .inner img:last-child{
    width: 25px;
    margin-left: auto;
}

@media (max-width: 767px) {
    .lp_split_toplink{
        display: block;
    }

    .lp_split_toplink .inner{
        width: 100%;
        margin-bottom: 1em;
    }

}


.lp_easyTab {
    display: flex;
    gap: 3em;
    justify-content: flex-start;
}
.lp_easyTab.em11 div:first-child{
    width: 11em;
}
.img_w100 {
    width: 100%;
}
.m50TB {
    margin-top: 50px;
    margin-bottom: 50px;
}
.m50B {
    margin-bottom: 50px;
}
.m10B {
    margin-bottom: 10px;
}
.m20B {
    margin-bottom: 20px;
}
.lp_txt{
    font-size: 15px;
    line-height: 22.5px;
    font-weight: 500;
}

.lp_txt span{
    color: #E50012;
    font-weight: bold;
}

.lp_txt .mini{
    font-size: 12px;
    color: #333;
    font-weight: 500;
}

.lp_txt .right{
    text-align: right;
    display: block;
    color: #333;
    font-weight: 500;
    font-size: 15px;
}




.lp_txt_mini{
    font-size: 12px;
    line-height: 22.5px;
    font-weight: 500;
}
.deco {
    margin-right: 0.5em;
}
a.pagelink {
    color: #000;
    font-size: 15px;
}
.lp_table th, .lp_table td {
    border: 1px solid #B7B7B7;
    padding: 15px;
    font-size: 15px;
    font-weight: 500;
    line-height: 28.8px;
}
.lp_table th{
    background: #F7F7F7;
    width: 25%;
}
.lp_table td{
    width: 75%;
}

.lp_table2 th,
.lp_table2 td{
    padding: 5px 25px 3px;
    height: 40px;
    font-size: 15px;
    font-weight: bold;
    line-height: 28.8px;
    text-align: right;
    border: 1px solid #fff;
}

.lp_table2 tr:nth-child(2n-1) .lp_table2 td{
    border: 2px solid #555;
}

.lp_table2 tr:nth-child(2n){
    background-color: #F3F3F3;
}

.lp_table2 tr:nth-child(2n-1) td{
    box-shadow: 0 0 0 2px #F3F3F3 inset;
}

.lp_table2 tr:first-child,
.lp_table2 tr:last-child{
    background-color: #E6E6E6;
}

.lp_table2 tr:first-child td,
.lp_table2 tr:last-child td{
    box-shadow: none;
}

.lp_table2 tr:first-child th{
    text-align: left;
}

.lp_table2 td:first-child{
    text-align: left;
}

/* AAA LP部分 AAA */

.contact_titimg{
    max-width: 800px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

.contact_tit{
    font-size: 17px;
    line-height: 22.5px;
    font-weight: 600;
    text-align: center;
}

/* VVV form VVV */
.utilForm th,
.utilForm td {
    text-align: left;
    font-size: 15px;
    border: 2px solid #fff;
    padding: 10px 2em;
}
.utilForm td {
    background: #F6F6F6;
    line-height: 55px;
}
.utilForm th {
    vertical-align: middle;
    font-weight: bold;
    line-height: 38px;
    background: #E6E6E6;
    width: 100%;
    justify-content: space-between;
    border: 2px solid #fff;
    font-size: 17px;
}

.utilForm th div{
    display: flex;
    justify-content: space-between;
}

.thpink{
    background: #FFE8E8!important;
}

.tdpink{
    background: #FFFAFA!important;
}

.utilForm th img {
    padding-left: 1em;
}
.utilForm .inputL{
    width: 100%;
}
.utilForm .inputM{
    width: min(40%,8em);
}
.utilForm .inputS{
    width: min(25%,5em);
}
.utilForm input,
.utilForm textarea{
    border: 1px solid #B7B7B7;
    background-color: #FFF;
    line-height: 17px;
    padding: 10px;
}
.utilForm .attention{
    line-height: initial;
}
.utilForm .tips{
    padding: 10px;
    line-height: initial;
}
.utilForm .tipsT{
    padding: 10px 10px 0 10px;
    line-height: initial;
}


.select-wrap select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    border-radius: 0.5em;
    padding: 0 0.5em;
    border: #B7B7B7 solid 1px;
    line-height: 30px;
    width: 100%;
    text-align: center;
    padding-right: 25px;
    height: 39px;
}
.select-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 30px;
}
.select-wrap.PREF{
    width: 165px;
}
.select-wrap:after {
    content: url(../img/design/select_arrow.svg);
    position: absolute;
    right: 15px;
    top: 12px;
    pointer-events: none;
}
.radio-group {
    display: flex;
    align-items: center;
    width: fit-content;
}
.radio-group input {
    margin: 0 0.5em;
}

.radio-group label {
    font-size: 15px;
    line-height: 30px;
    display: inline-block;
    margin-right: 0.7em;
}
/* AAA form AAA */
/* VVV XXXXXXX VVV */

/* AAA XXXXXXX AAA */




.flexbox{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flexbox .leftimg{
    width: 140px;
    margin: 0 3em 0 1em;    
}

.flexbox .righttext{
    margin: 0;
}

.flexbox .rightimg{
    width: 38%;
}

.flexbox .righttext{
    margin: 0;
}



.tex-c{
    text-align: center;
}

.utilSubTitle_square{
    font-size: 17px;
    line-height: 1.3em;
    padding-left: 1.2em;
    font-weight: bold;
    margin-bottom: 0.3em;
    position: relative;
}

.utilSubTitle_square::before{
    content: "■";
    position: absolute;
    left: 0;
    color: #E50012;
}

.utilSubTitle_square_min{
    font-size: 17px;
    line-height: 16px;
    padding-left: 1.5em;
    font-weight: bold;
    margin-bottom: 0.3em;
    position: relative;
    line-height: 1.5em;
}

.utilSubTitle_square_min::before{
    content: "■";
    position: absolute;
    left: 0;
    color: #E50012;
}

.text-red-c{
    color: #E50012;
    font-size: 1.4em;
    text-align: center;
    font-weight: bold;
    margin-bottom: 3%;
}

.text-red-l{
    color: #E50012;
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 3%;
}

.flexbox-left{
    display: flex;
    align-items: center;
}

.text-checkicon-mini{
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 1%;
}

.text-checkicon-mini::before{
    vertical-align: middle;
    padding-right: 5px;
    content: url(../img/design/list_deco.svg);
}

.flexbox-left .leftimg_ex_icon{
    margin: 0 3%;
}

.m0{
    margin: 0;
}

.border_d0{
    color: #d0d0d0;
}

.red_right_arrow{
    font-size: 20px;
    line-height: 25px;
    padding-left: 0.7em;
    padding-bottom: 0.2em;
    font-weight: bold;
    margin-top: 10px;
    border-bottom: 2px solid #E50012;
}

.red_right_arrow::before{
    content: url(../img/design/red_arrow.svg);
    margin: 0 1em 0 0;
}

.text-checkicon{
    font-size: 1.3em;
    font-weight: 500;
    padding: 1.5% 0;
    margin-bottom: 1%;
    border-bottom: 1px solid #D7D7D7;
}

.text-checkicon::before{
    content: '';/*何も入れない*/
    display: inline-block;
    width: 25px;/*画像の幅*/
    height: 25px;/*画像の高さ*/
    background-image: url(../img/design/list_deco.svg);
    background-size: contain;
    vertical-align: text-bottom;
    margin: 0 0.8em;
}

.glayline_pb1em{
border-bottom: 1px solid #D7D7D7;
    padding-bottom: 1em;
}

.pcnone{
    display: none;
}

.spnone{
    display: block;
}

.mb1em{
    margin-bottom: 1em;
}

.mw100{
    max-width: 100%;
}

.sp_ofimg{
    
}

@media (max-width: 1200px) {
    .utilBtn_rightDelta_w32{
        width: 49.7%;
    }
}

@media (max-width: 767px) {
    .pcnone{
        display: block;
    }

    .spnone{
        display: none;
    }
    
    .utilBtn_rightDelta_w49{
        width: 100%;
        display: block;
        text-align: center;
        padding: 0.6em 0 0.5em 2.5em;
    }

    .flexbox{
        display: block;
    }
    .flexbox .leftimg{
        width: 140px;
        margin: 2em auto 2em;
        display: block;
    }
    
    .w100_sp{
        width: 100%!important;
    }
    
    .lp_split_ex_btnArea{
        display: block;
    }
    
    .utilBtn_rightDelta_w32{
        width: 100%;
        display: block;
        text-align: center;
        padding: 0.6em 0 0.5em 2.5em;
    }
    
    .flexbox-left{
        display: block;
    }
    
    .flexbox-left .leftimg_ex_icon{
        width: 140px;
        margin: 1em auto 0;
        display: block;
    }
    
    .utilTitle {
        font-size: 17px;
        border-left: 7px solid #E50012;
        border-bottom: 1px solid #E50012;
        line-height: 30px;
        padding-left: 5px;
        font-weight: bold;
        margin-top: 20px;
    }
    
    .text-red-c{
        font-size: 1.1em;
        margin-bottom: 1.2em;
    }
    
    .utilTitle_backGray{
        font-size: 17px;
    }
    
    .red_right_arrow{
        font-size: 17px;
    }
    
    .text-checkicon {
        font-size: 1.1em;
        font-weight: 500;
        padding: 2.5% 0;
        margin-bottom: 1%;
        border-bottom: 1px solid #D7D7D7;
        text-indent: -3.2em;
        padding-left: 3.2em;
    }
    
    .utilSubTitle {
        font-size: 17px;
    }
    
    .sp_ofimg{
        overflow-y: auto;
    }
    
    .sp_ofimg .w700{
        width: 700px;
    }
    
    .sp_ofimg .w600{
        width: 600px;
    }
    
    .sp_ofimg:before {
        content: '';
        display: block;
        width: 179px;
        height: 110px;
        background: url(../img/design/sp_scroll.svg);
        background-size: contain;
        background-repeat: no-repeat;
        position: relative;
        top: 50px;
        left: calc(50% - 89.5px);
        margin-bottom: -110px;
    }
    .sp_ofimg:before {
        opacity:1;
        transition: all 0.1s ease-out;
    }
    .sp_ofimg:hover:before {
        opacity:0;
    }
    
    .utilTitle_backGray {
        border-left: 11px solid #E50012;
        background-color: #F8F8F8;
        line-height: 33px;
        padding-left: 15px;
        font-weight: bold;
        margin-top: 20px;
    }
    
    .utilSubTitle_square_min{
        font-size: 13px;
        line-height: 16px;
        padding-left: 1.2em;
        font-weight: bold;
        margin-bottom: 0.3em;
        position: relative;
        line-height: 1.5em;
    }

    .utilSubTitle_square_min::before{
        content: "■";
        position: absolute;
        left: 0;
        color: #E50012;
    }
    
    .lp_split,
    .lp_split3 {
        display: block;
    }
    .lp_split .split_inner {
        width: 100%;
        margin-bottom: 2%;
    }
    
    .lp_split4 {
    }
    .lp_spli4 .split_inner {

    }
    
    .sp_m0{
        margin: 0!important;
    }
    
    .lp_table th,
    .lp_table td{
        width: 100%;
        display: block;
    }
    
    .lp_table th, .lp_table td {
        border: 1px solid #B7B7B7;
        padding: 2% 3%;
        font-size: 14px;
        font-weight: 500;
        line-height: 25px;
    }
    .lp_table th{
    }
    .lp_table td{
    }
   
    .lp_split5 {
        display: block;
    }

    .lp_split5 .split_inner {
        width: 100%;
        margin-bottom: 2%;
    }

    .lp_split5  .split_inner_ex5_img{
        width: 100%;
        margin-bottom: 2%;
    }

    .lp_split5  .split_inner_ex5_text{
        width: 100%;
        margin-bottom: 2%;
    }

}

/* 
    サイドメニュー等ブロック系SP対応
*/

@media (max-width: 767px) {
    #side_menu {
        display:none;
    }
    .sidemenu_noSP{
        display:none;
    }
    .breadcrumb_block {
        padding: 0;
        font-size: 12px;
        background: #FFF;
    }
    .breadcrumb_block img {
        margin: 0 5px;
    }
}
/*topPageSlider*/

.carousel-indicators {
    bottom: 0;
}
.ui-slider .carousel-inner .item img.forPC{
    display: inline-block;
}
.ui-slider .carousel-inner .item img.forSP{
    display: none;
}
@media (max-width: 767px) {
    #plg_Tetra_PulldownNav{
        display:none;
    }
    .ui-slider .carousel-inner .item img.forPC{
        display: none;
    }
    .ui-slider .carousel-inner .item img.forSP{
        display: inline-block;
    }
    .slide_link_btn, 
    .slide_link_btn:active, 
    .slide_link_btn:link, 
    .slide_link_btn:hover, 
    .slide_link_btn:visited {
        background: url(../img/design_sp/top_page/to_detail.png);
        background-size: contain;
        background-repeat: no-repeat;
        height: min(45px,calc(45 * 100vw / 428));
        width: min(330px,calc(330 * 100vw / 428));
        left: calc(50 * 100vw / 428);
    }
    .slide_link_btn span {
        display:none;
    }
    .slide_link_btn.toCAR{
        top: calc(320 * 100vw / 428);
    }
    .slide_link_btn.toCARD{
        top: calc(260 * 100vw / 428);
    }
    .slide_link_btn.toLEASE{
        top: calc(270 * 100vw / 428);
    }
}

.nexticon{
    content: '';
    border: 0;
    margin-top: 13px;
    margin-right: 7px;
    margin-left: 7px;
    border-top: solid 1px #333;
    border-right: solid 1px #333;
    display: block;
    width: 6px;
    height: 6px;
    transform: translateY(-50%) rotate(45deg);
}

.contentsheader{
    width: 100%;
}

.contentsheader_pc{
    display: block;
}

.contentsheader_sp{
    display: none;
}

.contentsheader_pc img{
    width: 100%;
}

.contentsheader_sp img{
    width: 100%;
}

@media (max-width: 767px) {
    .contentsheader_pc{
        display: none;
    }

    .contentsheader_sp{
        display: block;
    }
}






/* 
    フッター対応
*/
#foot-right {
    padding: 0 0 0 30px;
}
#PAGETOP {
    position: fixed;
    z-index: 11;
    right: 15px;
    bottom: 30px;
}

#foot_link_area_SP {
    display: none;
}
#PAGETOP img{
    width:50px;
}

/*じゃばら*/
.sp_acd_check{
    display:none;
}

.tabs {
  margin-top: 20px;
}

/*タブのスタイル*/
.tab_item {
    background-color: #BBBBBB;
    font-size: 16px;
    color: #fff;
    display: block;
    float: left;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 0.5em 1.5em 0.3em;
    border-radius: 3em;
    margin-right: 5px;
    color: #fff;
}
.tab_item:hover {
  opacity: 0.75;
}

.clear_h{
    clear: both;
    height: 1em;
    display: block;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;    
  clear: both;
  overflow: hidden;
}


/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #141414;
    color: #fff;
}

.h1em{
    height: 1em;
}

@media (max-width: 767px) {
    #foot_link_area_SP {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding-bottom: 40px;
    }
    
    #foot_link_area_SP a,
    #foot_link_area_SP a:link, 
    #foot_link_area_SP a:visited, 
    #foot_link_area_SP a:hover, 
    #foot_link_area_SP a:active, 
    #foot_link_area_SP a:focus,
    #foot_link_area_SP .sp_foot_menu_p{
        display: block;
        cursor: pointer;
        width:100%;
        height: 40px;
        line-height: 40px;
        background: #EEEEEE;
        font-size: 15px;
        color: #000;
        text-decoration: none;
        margin:0;
        font-weight: 600;
        box-shadow: 0 3px 5px 0 rgb(0 0 0 / 12%);
    }
    #foot_link_area_SP .sp_foot_menu_p {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: -10px;
    }
    .sp_foot_menu_c{
        display: flex;
        flex-wrap: wrap;
        cursor: pointer;
        width:100%;
        height: 0;
        line-height: 0;
        gap: 0;
        background: #FFF;
        font-size: 15px;
        color: #000;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease-out;
        padding-top: 0;
    }
    .sp_foot_menu_txt{
        width:8em;
    }
    .sp_foot_menu_dummy,
    .sp_foot_menu_icon{
        width: 15px;
        transition: all 0.3s ease-out;
    }
    #foot_link_area_SP .sp_foot_menu_c a{
        display:none;
    }
    
    .ui-footer .footer-body {
        border-top: none;
    }
    .ui-footer {
        font-size: 15px;
        background-color: #FFF;
        margin-top: 80px;
    }
    #foot-foot #foot-guide,
    #foot-foot #foot-privacy{
        display:none;
    }
    #foot-left {
        justify-content: center;
    }
    #copyright {
        text-align: center;
        font-size: 12px;
    }
    #PAGETOP img{
        width:45px;
    }
    #foot_link_area {
        display: none;
    }
    /*じゃばら*/
    
    .sp_acd_check:checked + .acd_lbl > .sp_foot_menu_icon {
        rotate: 45deg;
    }
    .sp_acd_check:checked + .acd_lbl + .sp_foot_menu_c{
        gap: 10px;
        height: auto;
        line-height: 40px;
        padding-top: 10px;
    }
    .sp_acd_check:checked + .acd_lbl + .sp_foot_menu_c a{
        display:block!important;
    }
}

/*SPHEADじゃばら*/
.sp_nemu_bk{
    opacity:0;
}
.sp_headmenu_box{
    left:100%;
}
.sp_headmenu_box .sp_headmenu_menu,
.sp_headmenu_box .sp_headmenu_linkimgs,
.sp_headmenu_box .logout{
    display:none;
}
@media (max-width: 767px) {
    /*じゃばら*/
    .sp_nemu_bk {
        opacity: 0;
        display:none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 100;
        background: RGBA(0,0,0,0.3);
    }
    .sp_acd_check:checked + .sp_nemu_bk {
        opacity: 1;
        display:block;
    }
    .sp_headmenu_box{
        left:100%;
        top: 85px;
        height: 100vh;
        position: fixed;
        z-index: 151;
        width: calc(100vw - 46 * 100vw / 428 + 1px);
        background: #FFF;
        padding: 0 15px;
        transition: all 0.3s ease-out;
    }
    .sp_acd_check:checked + .sp_nemu_bk + .sp_headmenu_box {
        left: calc(46 * 100vw / 428);
    }
    .sp_headmenu_box .sp_headmenu_menu,
    .sp_headmenu_box .sp_headmenu_menu:link, 
    .sp_headmenu_box .sp_headmenu_menu:visited, 
    .sp_headmenu_box .sp_headmenu_menu:hover, 
    .sp_headmenu_box .sp_headmenu_menu:active{
        color:#000;
        text-decoration: none;
    }
    .sp_headmenu_box .sp_headmenu_menu {
        display: flex;
        justify-content: space-between;
        height: 55px;
        line-height: 55px;
        font-size: 16px;
        font-weight: 600;
        border-bottom: 1px solid #CCCCCC;
    }
    .sp_headmenu_box .sp_headmenu_icon {
        width: 11px;
        margin-right: 15px;
    }
    .sp_headmenu_box .sp_headmenu_linkimgs {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 40px;
    }
    .sp_headmenu_box .sp_headmenu_linkimgs a {
        display:block;
    }
    .sp_headmenu_box .sp_headmenu_linkimgs a img{
        width: min(100%,349px);
        object-fit: contain;
        margin-right: auto;
        display: block;
    }
    .sp_headmenu_box .logout{
        border: none;
        font-weight: 600;
        font-size: 1em;
        background: #fff;
        padding: 1em 0;
        text-align: left;
        margin: auto auto auto 0;
        display: block;
        color: #000;
    }
    .sp_acd_check + .acd_lbl + .sp_head_menu_c{
        width:100%;
        display: flex;
        flex-wrap: wrap;
        line-height: 0;
        height: 0;
        overflow: hidden;
        transition: all 0.3s ease-out;
    }
    .sp_acd_check:checked + .acd_lbl + .sp_head_menu_c{
        line-height: 55px;
        height: fit-content;
    }
    .sp_acd_check + .acd_lbl + .sp_head_menu_c .sp_headmenu_menu{
        width:100%;
        line-height: 0;
        height: 0;
        padding-left: 15px;
        font-size: 13.5px;
        background:#EEEEEE;
        transition: all 0.3s ease-out;
    }
    .sp_acd_check:checked + .acd_lbl + .sp_head_menu_c .sp_headmenu_menu{
        line-height: 50px;
        height: 50px;
    }
    .sp_acd_check:checked + .acd_lbl .sp_headmenu_icon{
        transition: all 0.3s ease-out;
        rotate: 45deg;
    }
}
.acd_lbl {
    margin-bottom: 0;
}

/* ボタン縦2連修正 */
@media (max-width: 767px) {
    .utilBtn {
        margin-bottom: 10px;
    }
}

.category_red{
    background-color: #E50012;
}

.category_blue{
    background-color: #0089E5;
}

.category_purple{
    background-color: #7C588D;
}

.category_pink{
    background-color: #F5CDDF;
    color: #EB63A2!important;
}

.category_yellow{
    background-color: #F9B122;
}

.tx_c{
    text-align: center;
}

.listbox{
    max-width: 1000px;
    margin: 0 auto;
    display: block;
}

.listpage_row{
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.listpage_row .newspage_date{
    margin-right: 1em;
    min-width: 10em;
    color: #333;
}

.news_splitcategory {
    display: inline-block;
    color: #fff;
    min-width: 5em;
    text-align: center;
    font-size: 13px;
    padding: 0.4em 0 0.2em;
    margin-top: 1em;
}

.listpage_row .news_splitcategory {
    padding: 0.2em 0 0.1em;
    margin-top: 0;
}

.listpage_row .news_splitcategory {
    margin-right: 1em;
}

.listpage_row p{
    display: inline-block;
    margin: 0;
}

.listpage_row:active,
.listpage_row:hover,
.listpage_row:visited{
    color: #333;
}

@media (max-width: 767px) {
    .listpage_row p{
        display: block;
    }
}
    
.news_block{
    padding: 25px 15px;
    border-bottom: 1px #BBBBBB solid;
}

.newspage_detail .news_block{
    padding: 25px 0;
    border-bottom: 1px #BBBBBB solid;
}

.newspage_detail h2{
    font-size: 35px;
    font-weight: 600;
}

.category_list_box{
    background-color: #F6F6F6;
    padding: 1em 2em 2em 2em;
}

.category_list_box a{
    font-size: 15px;
    font-weight: 600;
    padding: 0.4em 2em 0.3em;
    margin-right: 0.5em;
}

.category_list_box a:active,
.category_list_box a:hover{
    color: #fff;
}

@media (max-width: 767px) {
    .category_list_box a{
        padding: 0.4em 1em 0.3em;
    }
}

.login_input{
    width: 100%;
    border: 1px solid #B7B7B7!important;
    background-color: #FFF!important;
    line-height: 17px;
    padding: 10px;
}

.login_area .inputbox{
    width: 100%;
    max-width: 500px;
}

.login_area .inputbox p{
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0;
}

.login_area .inputbox p a,
.login_area .inputbox p a:active,
.login_area .inputbox p a:hover{
    color: #0089E5;
}

.login_page_bk{
    background: #F6F6F6;
}

hr{
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 2px solid #eee;
}

.tit_right_remarks{
    display: flex;
    justify-content: space-between;
}

.tit_right_remarks span{
    font-size: 15px;
}

.pieces_count span{
    font-weight: 600;
    color: #333;
}

.detail_img{
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    display: block;
}

.report_list hr{
    margin: 0;
}

.record_tit_box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color:#5B5B5B;
}

.record_tit_box:hover{
    color:#5B5B5B;
}

.record_tit_box .left div .box_txt{
    border: 2px solid #B7B7B7;
    border-radius: 5px;
    padding: 2px 0 0;
    min-width: 70px;
    text-align: center;
    line-height: revert;
    margin: 0 1em 0 0.5em;
}

.record_tit_box .left div p{
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    color:#5B5B5B;
}

.record_tit_box .left div p:hover{
    color:#5B5B5B;
}

.record_border_box_r,
.record_border_box_g{
    border-radius: 10px;
}

.record_border_box_r hr,
.record_border_box_g hr{
    margin: 10px;
}

.record_border_box_r h3,
.record_border_box_g h3{
    color: #fff;
    margin: 0;
    border-radius: 8px 8px 0 0;
    padding: 0.3em 0.7em 0.2em;
    border-left: none;
}

.record_border_box_r{
    border: 1px solid #E50012;
}

.record_border_box_r h3{
    background-color: #E50012;
}

.record_border_box_g{
    border: 1px solid #629A0F;
}

.record_border_box_g h3{
    background-color: #0F5E0F;
}

.record_border_box_r .lp_txt,
.record_border_box_g .lp_txt{
    padding: 1em;
}

#plg_Tetra_PulldownNav .logout input{
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #E50012;
    color: #fff;
    font-size: 1em;
    font-weight: 500;
    border: none;
    text-decoration: underline;
}
