@charset "utf-8";

/*===============================================
MVエリア～ナビ
===============================================*/
.textMv {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-bottom: solid #63dbdd 6px;
}
.textMv::before {
    background: initial;
}
.textMv__textWrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 110px 0 0;
    color: #FFF;
    text-shadow: 0 0 8px rgb(0 0 0 / 30%);
}
.textMv__title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}
.textMv__subTitle {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-top: 5px;
}
.Nav {
    position: relative;
    display: block;
}
.Nav__list {
    max-width: 95%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 10px 0;
    list-style: none;
    font-size: 1.2rem;
    font-weight: bold;
}
.Nav__list li {
    position: relative;
    margin: 0 auto;
    padding: 10px 0;
    text-align: center;
    width : calc(100% / 3);
}
.Nav__list .active {
    background-color: #f33b51;
    color: #fff;
}
.Nav__list .active::after {
    content: "";
    height: 9px;
    border-top: 9px solid #f33b51;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    display: block;
    margin: 0 auto;
    position: absolute;
    bottom: -17px;
    left: calc(50% - 7px);
}
.Nav__list a{
    color: #000;
    text-decoration: none;
}
.Nav__list a:hover{
    text-decoration: underline #f33b51 5px;
}
.lead{
    padding: 20px;
    margin-top: 5px;
    background-image: linear-gradient(
    -45deg,
    #fff 25%,
    #d9ebf1 25%,
    #d9ebf1 50%,
    #fff 50%,
    #fff 75%,
    #d9ebf1 75%,
    #d9ebf1);
    background-size: 4px 4px;
    background-attachment: fixed;
}
.lead p{
    font-size: 1rem;
    line-height: 1.5;
}
.sectionNav{
    width: 90%;
    border: 1px solid #000;
    margin: 13px auto;
    padding: 7px 8px;
    box-shadow: 3px 3px 0px 0 rgb(215, 215, 215);
    font-size: 0.8rem;
    line-height: 1.8;
}
.sectionNav ul{
    display: flex;
    flex-wrap: wrap;
}
.sectionNav li{
    margin-right: 12px;
}
.sectionNav li:last-child{
    margin-right: 0;
}
.sectionNav a{
    color: #000;
    text-decoration: none;
    padding-left: 16px;
    background: url(../images/arrow_bottom_f33b51.png) no-repeat left center;
}

/*===============================================
商品エリア
===============================================*/
.heading--title {
    font-size: 1.7rem;
    padding: 5px 0 20px;
    margin: 0;
    text-align: center;
    line-height: 1.4;
}
.heading--title span {
    border-bottom: solid 4px #63dbdd;
}
.section__lead {
    margin-bottom: 20px;
    line-height: 1.5;
}
.section__lead img {
    width: 100%;
}
.section__lead--heading {
    font-size: 1.1rem;
    width: 90%;
    margin: 18px auto 3px;
    font-weight: bold;
}
.section__lead--text {
    font-size: 1rem;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 13px;
    border-bottom: 1px dashed #000;
}
.grid-row {
    width: 90%;
    margin: 0 auto;
}
.grid-col3 {
    padding: 0 0 8px;
}
.grid-col__link {
    display: block;
    height: 100%;
    flex-direction: column;
    text-decoration: none;
    color: #333;
    transition: all .25s ease-out;
    padding-bottom: 16px;
    margin-bottom: 16px;
}
.imgBox {
    width: 35%;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 16px;
    float: left;
}
.imgTag {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 10px;
    background: #333;
    color: #FFF;
    padding: 2px 8px;
    z-index: 100;
}
.imgTag_none {
    display: none;
}
.tourImg {
    width: 100%;
    height: 100px;
    float: left;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0 0 0 0;
    /*position: absolute;*/
}
.grid-col__body {
    display: flex;
    flex-direction: column;
    width: 65%;
    padding: 0 0 0 12px;
}
.grid-col__body .heading--md {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 4px;
}
.grid-col__body p {
    font-size: .86rem;
    margin-bottom: 6px;
}
.price {
    font-size: 1.17rem;
    font-weight: bold;
    color: #F01C1C;
    float: right;
    padding-left: 5px;
}
.discount {
    font-size: .89rem;
    background-color: #F01C1C;
    color: #fff;
    float: right;
    padding: 1px 5px;
    margin-right: 5px;
}
.discount_none {
	display: none;
}


/*===============================================
sectionコンテナ
===============================================*/
.section__container {
    padding: 24px 0;
}

/*===============================================
注記エリア
===============================================*/
.section__container--caution {
    margin-top: -24px;
}
.caution {
    border: solid 1px #888;
    padding: 10px;
    width: 90%;
    margin: 20px auto;
}
.caution ul {
    font-size: 0.8rem;
    color: #333;
    line-height: 1.4;
}
.caution li {
    margin-left: 0.8rem;
    text-indent: -0.8rem;
}
.caution li::before {
    content: "※";
}
/*===============================================
Q&A
===============================================*/
.tableList-QA {
    width: 90%;
    margin: 0 auto;
}
.tableList-QA>li:first-child {
    border-top: none;
}
.tableList-QA>li {
    display: block;
    border-top: 1px solid #333;
}
.tableList_Q {
    font-weight: 700;
    padding-top: 12px;
}
.tableList_A {
    padding: 9px 0 12px;
}

/*===============================================
その他エリア
===============================================*/
.tableList {
    width: 90%;
    margin: 0 auto;
}
.media__wrapper {
    width: 90%;
    margin: 0 auto;
}
.girdTextLink {
    position: relative;
    display: flex;
    height: 100%;
    min-height: 32px;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: all .25s ease-out;
    padding: 16px 0;
    background-image: url(https://www.his-j.com/cmn/icon/icon_arrow_right.svg);
    background-size: 24px 24px;
    background-position: right 0 center;
    background-repeat: no-repeat;
}

/*===============================================
ボタン
===============================================*/
.button {
    margin-top: 20px;
}
.button:hover {
    color: #333;
    border-color: #888;
    background-color: #E2E2E2;
}
.collapseBtn {
    position: relative;
    width: 100%;
    max-width: 228px;
    min-height: 48px;
    padding: 4.5px 24px;
    text-align: center;
    transition: all .25s ease-out;
    border-radius: 24px;
    -webkit-appearance: none;
    background: #FFF;
    color: #333;
    border: 1px solid #888;
    line-height: 1.5;
    z-index: 100;
    margin-top: 10px;
}
.collapseBtn::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    top: 11px;
    right: 4px;
    background: url(https://www.his-j.com/cmn/icon/icon_arrow_right.svg);
    background-size: 24px 24px;
    transition: all .25s ease-out;
}

/*===============================================
画像
===============================================*/
.media__img {
    width: 56px;
    height: 56px;
    margin-right: 8px;
    border-radius: 0;
    overflow: hidden;
}
.column {
    width: 56px;
    height: 56px;
    object-fit: cover;
}
.column img {
    width: 150%;
}
.imgContainer--full {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 0;
}

/*===============================================
非表示
===============================================*/
