@charset "UTF-8";


/* ==============================================
 ###　ヘッダーおよびグローバルナビ
=================================================*/

.headRibbon {
  border-bottom: 1px solid #E6E6E6;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  font-family: var(--ff-en);
  letter-spacing: 0.05em;
}
.headerAside {
  padding: 19px var(--pc-lr);
  border-bottom: 1px solid #E6E6E6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.headerAsideNav {
  display: flex;
}
.headerAsideNav li {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}
.headerAsideNav li + li:before {
  content: '';
  margin: 0 24px;
  display: block;
  width: 1px;
  height: 12px;
  background-color: #000;
}
.headerAsideSNS {
  display: flex;
  gap: 0 12px;
}
.headerAsideSNS li {
  width: 16px;
  height: 16px;
}
.headerAsideSNS li img {
  vertical-align: top;
}

@media screen and (min-width: 751px) and (max-width: 1159px) {
  .headerAsideSNS {
    gap: 0 6px;
  }
}

@media screen and (max-width: 750px) {
  .headRibbon {
    height: 40px;
    font-size: 1.3rem;
  }
  .headerAsideSNS {
    margin-top: 30px;
    justify-content: center;
  }
  .headerAsideSNS li {
    width: 24px;
    height: 24px;
  }
}



.globalHeader {
  padding: 0 var(--pc-lr);
  display: flex;
  align-items: center;
  position: relative;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  background-color: #fff;
  height: 100px;
  transition: transform ease .3s;
}
.globalHeader input[type="text"] {
  border: none;
}

.headerFixed.scrollDown .globalHeader {
  transform: translateY(-100%);
}
.headerFixed.scrollUp .globalHeader {
  transform: translateY(0);
}
.headerFixed.scrollDown .globalHeader:hover {
  transform: translateY(0);
}
.searchArea {
  padding: 25px var(--pc-lr);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100vh;
  background-color: rgba(230, 230, 230, .6);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity ease .3s,visibility ease .3s;
}
.searchOpen .searchArea {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.searchOpen .globalHeader:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.searchAreaInner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0 10px;
  max-width: 960px;
}
.searchAreaMain {
  border: 1px solid #e8e8e1;
  flex-grow: 1;
  background-color: #fff;
}
.searchAreaMain form {
  display: flex;
  align-items: center;
  width: 100%;
}
.keywordEntry {
  padding: 8px 16px;
  padding-right: 0;
  flex-grow: 1;
  height: 50px;
}
.searchDo {
  padding: 8px 16px;
  width: 60px;
  flex-shrink: 0;
}
.searchClose {
  width: 30px;
  cursor: pointer;
}
@media screen and (min-width: 751px) {
  .globalHeader .siteLogo {
    margin-right: 70px;
    width: 76px;
  }
  .glabalNavi {
    width: calc(100% - 360px);
  }
  .mainNav {
    display: flex;
    align-items: center;
    gap: 0 30px;
  }
  .mainNavBody {
    display: flex;
    gap: 0 36px;
  }
  .mainNavPrimary {
  }
  .mainNavPrimaryLabel {
    font-size: 1.4rem;
    font-family: var(--ff-en);
    letter-spacing: 0.05em;
    cursor: pointer;
    white-space: nowrap;
  }
  .mainNavPrimaryLabel a {
    padding: 0 10px;
    position: relative;
    display: flex;
    align-items: center;
    height: 100px;
  }
  .mainNavPrimaryLabel a:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 34px;
    left: calc(10px + .3em);
    width: 0;
    height: 2px;
    background-color: #000;
    transition: width ease .3s;
  }
  .mainNavSecondary {
    position: absolute;
    top: 100px; 
    background-color: #fff;
    transition: opacity ease .3s;
    opacity: 0;
    pointer-events: none;
  }
  .mainNavPrimary:hover .mainNavSecondary {
    opacity: 1;
    pointer-events: all;
  }
  .mainNavPrimary:hover .mainNavPrimaryLabel a:after {
    width: calc(100% - .6em - 20px);
  }
  .mainNavSecondary.megamenu {
    padding: 0 var(--pc-lr);
    display: block !important;
    left: 0;
    width: 100%;
  }
  .megamenuInner {
    padding: 40px 100px 60px;
    border-top: 1px solid #E6E6E6;
    display: flex;
    flex-wrap: wrap;
    gap: 40px 150px;
  }
  .mainNavSecondaryList {
  }
  .mainNavSecondaryLabel {
    margin-bottom: 30px;
    line-height: 1.5;
    font-size: 1.6rem;
    font-weight: bold;
  }
  .mainNavSecondaryMenu {
    margin-top: 20px;
    line-height: 1.4;
    font-size: 1.5rem;
  }
  .guideNav {
    margin-left: 30px;
  }
  .guideNav ul {
    display: flex;
    align-items: center;
    gap: 0 24px;
  }
  .guideNav ul li {
    width: 28px;
    line-height: 1;
  }
  .touchdevice .mainNavPrimaryLabel:not(.normalLink) a {
    pointer-events: none;
  }
}



@media screen and (min-width: 751px) and (max-width: 1159px) {
  .globalHeader .siteLogo {
    margin-right: 30px;
  }
  .glabalNavi {
    width: calc(100% - 244px);
  }
  .mainNavBody {
    gap: 0 12px;
  }
  .guideNav ul {
    gap: 0 10px;
  }
  .guideNav ul li {
    width: 20px;
  }
}



@media screen and (max-width: 750px) {
  .globalHeader {
    padding: 0 var(--sp-lr);
    justify-content: space-between;
    height: 60px;
  }
  .globalHeader .siteLogo {
    width: 60px;
  }
  .glabalNavi {
    padding-top: 75px;
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    height: 100vh;
    background-color: #fff;
    transition: transform ease .3s;
    transform: translateX(100%);
  }
  .humOpen .glabalNavi {
    transform: translateX(0);
  }
  body:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, .3);
    transition: opacity ease .3s,visibility ease .3s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .humOpen:before {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  .navInner {
    width: 100%;
    height: 100%;
    overflow: auto;
  }
  .mainNav {
    margin-bottom: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(157, 157, 157, .3);
  }
  .mainNavBody {
    display: flex;
    flex-direction: column;
    gap: 36px 0;
  }
  .mainNavPrimary {
  }
  .mainNavPrimaryLabel {
  }
  .mainNavPrimaryLabel a {
    margin: 0 30px 0 50px;
    display: block;
    position: relative;
    line-height: 1.4285714285714286;
    font-size: 2.1rem;
    font-family: var(--ff-en);
    letter-spacing: 0.05em;
  }
  .mainNavPrimaryLabel a:after {
    content: '';
    display: block;
    position: absolute;
    top: calc(50% - 6.5px);
    right: 15px;
    width: 13px;
    height: 13px;
    background: url(../img/common/ico_arrow.svg) 0 0 / contain no-repeat;
    transform: rotate(90deg);
    transition: transform ease .3s;
  }
  .mainNavPrimaryLabel a.open:after {
    transform: rotate(-90deg);
  }
  .mainNavPrimaryLabel.normalLink a:after {
    transform: rotate(0);
  }
  .mainNavPrimaryLabel a:after {
  }
  .mainNavSecondary {
    padding: 10px 0 0;
    display: none;
  }
  .mainNavSecondary.megamenu {
  }
  .megamenuInner {
    padding: 20px 30px 0 50px;
    border-top: 1px solid rgba(157, 157, 157, .3);
  }
  .mainNavSecondaryList + .mainNavSecondaryList {
    margin-top: 27px;
  }
  .mainNavSecondaryLabel {
  }
  .mainNavSecondaryMenu {
    margin-top: 15px;
    margin-left: 20px;
  }
  .mainNavSecondaryMenu a {
    display: block;
    position: relative;
    line-height: 2.142857142857143;
    font-size: 1.4rem;
  }
  .mainNavSecondaryMenu a:after {
    content: '';
    display: block;
    position: absolute;
    top: calc(50% - 6.5px);
    right: 15px;
    width: 13px;
    height: 13px;
    background: url(../img/common/ico_arrow.svg) 0 0 / contain no-repeat;
  }
  .subNav {
    padding-bottom: 60px;
  }
  .subNav .banner {
    margin: 0 35px;
  }
  .subNav .banner + .banner {
    margin-top: 20px;
  }
  .subNav ul {
    margin: 45px 50px;
    display: flex;
    flex-direction: column;
    gap: 20px 0;
  }
  .subNav ul li {
  }
  .subNav ul li a {
    display: inline-flex;
    align-items: center;
    gap: 0 10px;
    font-size: 1.6rem;
    font-weight: 500;
  }
  .subNav ul li .icon {
    width: 16px;
    height: 16px;
  }
  .subNav ul li .icon img {
    vertical-align: top;
  }
  .guideNav {
    margin-right: 49px;
  }
  .guideNav ul {
    display: flex;
    gap: 0 20px;
  }
  .guideNav ul li {
  }
  .humBtn {
    position: absolute;
    top: 22px;
    right: calc(12px + var(--sp-lr));
    width: 17px;
    height: 16px;
  }
  .humBtn span {
    border-radius: 1000px;
    position: absolute;
    top: 7.5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
  }
  .humBtn span:before,
  .humBtn span:after {
    content: '';
    display: block;
    border-radius: 1000px;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
    transition: transform ease .3s;
  }
  .humBtn span:before {
    top: -7.5px;
  }
  .humBtn span:after {
    top: 7.5px;
  }
  .humOpen .humBtn span {
    background-color: transparent;
  }
  .humOpen .humBtn span:before {
    top: 0;
    transform: rotate(45deg);
  }
  .humOpen .humBtn span:after {
    top: 0;
    transform: rotate(-45deg);
  }
  .searchArea {
    padding: 10px var(--sp-lr);
  }
  .searchAreaInner {
  }
  .keywordEntry {
    padding: 4px 8px;
    padding-right: 0;
    height: 40px;
  }
  .searchDo {
    padding: 4px 8px;
    display: flex;
    align-items: center;
    width: 30px;
  }
  .searchDo button {
    width: 14px;
    height: 14px;
  }
  .searchDo button img {
    vertical-align: top;
  }
  .searchClose {
    width: 24px;
  }
  .searchClose button {
    width: 14px;
    height: 14px;
  }
  .humOpen .globalHeader {
    transform: translateY(0) !important;
  }
}
@media screen and (hover: hover) {
  .mainNavSecondaryLabel a:hover,
  .mainNavSecondaryMenu:hover {
    text-decoration: underline;
  }
}

/* ==============================================
 ###　フッター
=================================================*/

.globalFooter {
  margin-top: 120px;
  padding: 80px var(--pc-lr) 40px;
  border-top: 1px solid rgba(157, 157, 157, .3);
}

.footerNav {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
}
.footerNavLabel {
  line-height: 1.5;
  font-weight: bold;
}
.footerNavBody {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 0 1em;
}
.footerNavBody ul {
  flex-grow: 1;
}
.footerNavBody li {
  margin-top: 20px;
  line-height: 1.4;
  font-size: 1.5rem;
}
.footerContact {
}
.footerContact .tel {
  font-size: 2.8rem;
  font-weight: 500;
  font-family: var(--ff-en);
  letter-spacing: 0.05em;
}
.footerContact .businesstime {
  margin: 4px 0 24px;
  line-height: 1.5;
  font-size: 1.3rem;
}
.contactLink a {
  border: 1px solid #9d9d9d;
  display: inline-flex;
  align-items: center;
  justify-content: center;  
  width: 250px;
  height: 54px;
  font-size: 1.5rem;
}
.footerNavSub {
  padding: 50px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 90px;
  width: 100%;
}
.footerNavSubSNS {
  display: flex;
  gap: 0 12px;
}
.footerNavSubSNS li {
  width: 16px;
  line-height: 1;
}
.footerNavSubSNS li img {
  vertical-align: top;
}
.copyright {
  border-top: 1px solid rgba(157, 157, 157, .3);
  padding: 20px 0 9px;
  color: #9D9D9D;
  font-size: 1.2rem;
  font-family: var(--ff-en);
  text-align: center;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 751px) {
  .footerNavBody {
    display: flex !important;
  }
  .footerNavList.-list01 {
    margin-right: 40px;
    flex-shrink: 0;
    width: 120px;
  }
  .footerNavList.-list02 {
    width: calc(100% - 450px);
    max-width: 540px;
  }
  .footerNavList.-list03 {
    margin-left: 40px;
    flex-shrink: 0;
    width: 250px;
  }
  .footerNavSubList {
    display: flex;
    gap: 0 48px;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
  }
  .bottomLine {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-bottom: 20px;
  }
  .bottomLineList {
    display: flex;
    gap: 0 48px;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
  }
  .copyright {
  }
}

@media screen and (min-width: 751px) and (max-width: 1159px) {
  .footerNavList.-list01 {
    margin-right: 15px;
  }
  .footerNavList.-list02 {
    width: calc(100% - 400px);
  }
  .footerNavList.-list03 {
    margin-left: 15px;
  }
  .footerNavList.-list02 .footerNavBody {
    flex-wrap: wrap;
    gap: 0 .5em;
  }
  .footerNavList.-list02 .footerNavBody ul {
    width: calc(50% - .25em);
  }
}

@media screen and (max-width: 750px) {
  .globalFooter {
    margin-top: 60px;
    padding: 0 var(--sp-lr) 40px;
    border-top: none;
    border-bottom: none;
  }
  
  .footerNav {
    margin: 0 auto;
    flex-direction: column;
  }
  .footerNavList {
    border-top: 1px solid #E6E6E6;
  }
  .footerNavLabel {
    padding: 20px 10px;
    position: relative;
    font-size: 1.5rem;
  }
  .footerNavLabel:after {
    content: '';
    display: block;
    position: absolute;
    top: calc(50% - 6.5px);
    right: 15px;
    width: 13px;
    height: 13px;
    background: url(../img/common/ico_arrow.svg) 0 0 / contain no-repeat;
    transform: rotate(90deg);
    transition: transform ease .3s;
  }
  .footerNavLabel.open:after {
    transform: rotate(-90deg);
  }
  .footerNavBody {
    margin-top: 0;
    padding-bottom: 24px;
    display: none;
  }
  .footerNavBody ul {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
    
    margin-bottom: 20px;
  }
  .footerNavBody ul:last-of-type {
    margin-bottom: 0;
  }
  
  .footerNavBody ul + ul {
    margin-top: 20px;
  }
  .footerNavBody li {
    margin-top: 0;
    padding: 0 10px;
    font-size: 1.4rem;
  }
  .footerContact {
    text-align: center;
  }
  .footerContact .tel {
    font-size: 3.4rem;
  }
  .footerContact .businesstime {
    line-height: 1.5;
    font-size: 1.2rem;
  }
  .contactLink a {
    width: 240px;
    height: 40px;
    font-size: 1.4rem;
  }
  .footerNavSub {
    padding: 0;
    flex-direction: column;
    gap: 36px 0;
  }
  .footerNavSubList {
    border-top: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
    width: 100%;
  }
  .footerNavSubList li a {
    padding: 20px 10px;
    position: relative;
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
  }
  .footerNavSubList li a:after {
    content: '';
    display: block;
    position: absolute;
    top: calc(50% - 6.5px);
    right: 15px;
    width: 13px;
    height: 13px;
    background: url(../img/common/ico_arrow.svg) 0 0 / contain no-repeat;
  }
  .footerNavSubSNS {
    justify-content: center;
  }
  .bottomLine {
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .bottomLineList {
    display: flex;
    gap: 0 30px;
    letter-spacing: 0.05em;
    font-size: 1.1rem;
  }
  .copyright {
    padding: 10px 0 30px;
    font-size: 1.1rem;
  }
}
@media screen and (hover: hover) {
  .footerNavBody li a:hover,
  .footerNavSubList a:hover {
    text-decoration: underline;
  }
}

.ctm_history__title {
    margin-bottom: 30px;
    line-height: 1.4583333333333333;
    font-size: 2.4rem;
    font-weight: 500;
}
@media screen and (max-width: 750px) {
    .ctm_history__title {
        margin-bottom: 24px;
        font-size: 2.1rem;
    }
}
.recentlyViews {
}
.recentlyViewsSlider {
}
@media screen and (min-width: 751px) {
    /*
    .recentlyViewsSlider .slick-track {
        display: flex !important;
        gap: 0 min(17.14px,calc(17/1480*var(--window-width)));
    }
    .recentlyViewsSlider .slick-track:before,
    .recentlyViewsSlider .slick-track:after {
        display: none !important;
    }
    */
    .recentlyViewsSlider ul {
        display: flex;
        gap: 0 calc(17/1400*100%);
    }
    .recentlyViewsSlider ul li {
        width: calc(160/1400*100%);
    }
}
@media screen and (max-width: 750px) {
    .recentlyViewsSlider ul li {
        margin-right: calc(24/750*100vw);
        width: calc(240/750*100vw);
    }
}






