/* SECTION CUSTOM CODES START */
/*For Custom Three-Col Layout*/
.section-main{
display: flex;
flex-wrap: wrap;
}
.section-col{
flex: 33.3%;
max-width: 33.3%;
padding: 0 40px;
}
.section-caption{
font-size: 1em;
padding: 15px 0;
}
.section-smaller-caption{
font-size: 13px;
padding: 20px 0;
}
/*Custom Table Two-Col Layout*/
.section-two-col{
flex: 50%;
}
/* CUSTOM ORDERED LIST */
.custom-ol {
padding-left: 20px;
}
.custom-ol .custom-list-item::before {
content: "\2022 ";
font-weight: bold;
color: #000;
display: inline-block;
width: 1em;
}
.custom-list-item {
display: custom-list-item;
/* Hide the default marker (bullet/number) */
list-style-type: none;
}
.section-list-container{
display: flex;
}
.custom-list-content{
padding: 0 20px 20px 0;
}
.section-text-caption{
color: #7d7d7d;
}
/* BACK TO TOP BUTTON */
.section-smaller-caption, .section-smaller-caption-2{
font-size: 13px;
}
#backToTopBtn {
position: fixed;
right: 30px;
bottom: 30px;
width: 36px;
height: 36px;
line-height: 66px;
font-family: Uniqlo Pro Light, ヒラギノ角ゴPro W3, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, sans-serif;
text-align: center;
background-color: #fff;
visibility: hidden;
cursor: pointer;
-webkit-transition: opacity .3s ease;
transition: opacity .3s ease;
background: url(/jp/ja/news/_nuxt/src/assets/images/sp/img/pagetop.jpg) 0 0 / contain;
font-size: 0;
}
#backToTopBtn.show {
	visibility: visible;
}
/* CUSTOM CAROUSEL (FOR MULTIPLE) */
.carousel-container {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
}
.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.carousel-slide { 
    min-width: 100%; 
}
.carousel-slide img { 
    width: 100%; 
    display: block; 
}
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}
.prev-btn { 
    left: 10px; 
}
.next-btn { 
    right: 10px; 
}
.thumbnail-container { 
    display: flex; 
    justify-content: center; 
    margin-top: 10px; 
}
.thumbnail { 
    width: 60px; 
    margin: 0 5px; 
    cursor: pointer; 
    opacity: 0.6; 
}
.thumbnail.active { 
    opacity: 1; 
    border: 2px solid #333; 
}
/* CUSTOM ACCORDION */
.section-accordion {
    margin: 2rem auto;
    font-family: sans-serif;
}
.section-accordion-item {
    border-bottom: 1px solid #ddd;
}
/* Hide the default checkbox */
.section-accordion-toggle {
    display: none;
}
.section-accordion-header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}
.icon {
    position: relative;
    width: 16px;
    height: 16px;
}
.icon::before,
.icon::after {
    content: "";
    position: absolute;
    background-color: #333;
}
/* Vertical bar (Plus) */
.icon::before {
    top: 0;
    left: 7px;
    width: 2px;
    height: 16px;
}
/* Horizontal bar (Minus/Plus) */
.icon::after {
    top: 7px;
    left: 0;
    width: 16px;
    height: 2px;
}
/* Toggle icon state (Minus) when checked */
/* .section-accordion-toggle:checked + .section-accordion-header .icon::before {
    mask-image: url(/jp/ja/special-feature/feature/common/icons/icon-minus@3.0.0.svg#minus);
} */
.section-accordion-toggle:checked + .section-accordion-header .icon::before {
    transform: rotate(90deg); /* Makes it disappear in combination with the next line */
    background-color: transparent; 
}
/* Smooth expansion of content */
.section-accordion-content {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
.section-accordion-content p {
    padding: 10px 20px 20px;
    margin: 0;
}
.section-accordion-toggle:checked ~ .section-accordion-content {
    max-height: none; /* Adjust if your content is longer */
}
.section-accordion-toggle:checked ~ .section-accordion-header {
    font-weight: 700;
}
.section-text-link {
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: underline;
}
.section-simple-link {
	color: #ff0000;
	text-decoration: underline;
}

.section-simple-link:hover {
	color: #000;
}
@media screen and (max-width: 768px){
.section-col{
flex: 100%;
max-width: 100%;
}
.section-two-col{
flex: 100%;
}
.section-col, .section-two-col{
padding: 20px 0;
}
.section-smaller-caption{
    font-size: 10px;
}
#backToTopBtn{
    position: fixed;
    bottom: 100px;
    right: 15px;
    width: 42px;
    height: 42px;
    z-index: 97;
    pointer-events: auto;
}
.section-accordion-question {
    width: 80%;
}
}
/* SECTION CUSTOM CODES END */