@charset "UTF-8";
/*----------------------------------------
    content
----------------------------------------*/
#header, #content, #footer {
  width: 100%;
  /* max-width: 1024px; */
  margin: 0 auto;
}

#header .title {
  font-family: ShinGoPro-Regular, sans-serif !important;
  /* font-weight: bold;
  font-size: 20px;
  line-height: 34px; */
  text-align: center;
  padding-top: .625em;
  margin-top: 24px;
  margin-bottom: 40px;
  font-size: 2.5714285714em;
  line-height: 1.1666666667;
  color: #343434;
}
#header .sub-item {
  display: flex;
  margin: 0px auto 30px;
  width: 864px;  
  /* height: 80px; */
  gap: 16px;
  
  > a {
    width: 32%;
    text-decoration: none;
  }
}
#header .sub-item a .item {
  width: 277px;
  height: 80px;
  position: relative;  
  text-align: center;
  color: #000;
  cursor: pointer;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: box-shadow 0.3s cubic-bezier(0.77, 0, 0.18, 1), color 0.3s cubic-bezier(0.77, 0, 0.18, 1);
  > img {
    width: 40px; 
    margin: 8px;
    display: block; 
  }
  .txt {
    font-family: "AOTFSGP Regular";
    font-size: 14px;
    line-height: 24px;  
    letter-spacing: 0.9px;
    white-space: nowrap;
  }
  &:focus-visible {
    box-shadow: 0 0 0 4px #5485F0;
    outline: 2px solid transparent;
  }
  &.active {
    color: #B70100;
    /* outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); */
  }
  &::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    border-bottom: #B70100 2px solid;
    transition: width 0.4s ease, left 0.4s ease;
  }
  &:hover::after {
    width: 100%;
    left: 0;
  }
  &.active::after {
    width: 100%;
    left: 0;
  }
}
#content .section .banner{  
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  height: 380px;
  background-size: cover;
  /* background-position: center 10%; */
  background-repeat: no-repeat;
  &.banner-1 {
    background-position: center;
    background-image: url('../images/banner_01.jpg');
  }
  &.banner-2 {
    background-position: center;
    background-image: url('../images/banner_02.jpg');
  }
  &.banner-3 {
    background-position: center 10%;
    background-image: url('../images/banner_03.jpg');
  }
}
#content .section {  
  display: none;
  /* transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out; */
  transition: opacity 0.4s ease-in-out;
  opacity: 0;
  /* transform: translateY(10px); */
  &.active {
    display: block;
    opacity: 1;
    /* transform: translateY(0); */
  }
}
#content .section .inner .txt{
  font-family: "AOTFSGP Light";
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.9px;
  color: #000;
  margin: 30px auto 10px;
  max-width: 636px;
}
/* #content .section .inner .con_01{
  margin: 20px auto;  
} */
.min-title {
  font-family: "AOTFSGP Bold";
  font-size: 16px;
  line-height: 26px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #000;
  text-align: center;
  margin: 4% 0;
}

#content .section .inner .callapce {
  max-width: 864px;
  /* padding:20px; */
  margin: 30px auto;
  --img-down: 16px;
  padding: 60px 0;
}
#content .section .inner .callapce .collapse-item {
  background-color: #fff;
  border-bottom: 1px solid #ebeef5;
  color: #303133;
  font-size: 13px;
  text-align: justify;
  > a {
    text-decoration: none;
  }
}
#content .section .inner .callapce .collapse-item:first-child {
  border-top: 1px solid #ebeef5;
}
#content .section .inner .callapce .item-hd {
  position:relative;
  display: flex;
  justify-content: space-between;  
  padding: 24px 0;
  cursor: pointer;
  /* outline: none; */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  &:hover {
    text-decoration: underline;
  }
}
#content .section .inner .callapce .item-hd .title {
  display:inline-block;
  font-family: "AOTFSGP Medium";
  font-size: 16px;
  font-weight: bold;
  /* line-height: 26px; */
  letter-spacing: 0.9px;
  color: #000;
}
#content .section .inner .callapce .item-hd .collapse-down {
  /* float: right; */
  display:inline-block;
  margin-right: 8px;
}
#content .section .inner .callapce .item-hd .downImg {
  width:var(--img-down);
  height:var(--img-down);
  vertical-align: middle;
  /* transform:rotate(-90deg); */
  /* transition: all .4s linear; */
}
#content .section .inner .callapce .item-hd .downImg.rotate {
  transform: rotate(0);
}
#content .section .inner .callapce .item-mn {
  overflow: hidden;
  max-height: 0;
  box-sizing: border-box;
  font-family: "AOTFSGP Light";
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.6px;
  color: #000;
  transition: all .3s cubic-bezier(0.77, 0, 0.18, 1);
  text-align: left;
  ul {
    list-style: disc;
    padding-left: 20px; /* Ensure there is sufficient left margin */
    margin: 0; /* Remove default margin */
  }
  .list {
    font-family: "AOTFSGP Regular";
  }
  .min-list {
    font-family: "AOTFSGP Light";
  }
}
#content .section .inner .callapce .open {
  /* Here, the max height is set to a sufficiently large number, but not too large */
  /* transition: all .3s cubic-bezier(0.77, 0, 0.18, 1); */
  max-height: 100rem;
  padding-bottom: 20px;
}

.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  overflow: hidden;
  z-index: 1000;
}
.modal-content {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  width: 100%;
  height: 100%;
  max-width: 1024px;
  background-color: white;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  -webkit-animation: slideUp 0.5s forwards;
  animation: slideUp 0.5s forwards;
  z-index: 1001;
}

.modal-header {
  width: 100%;
  height: 50px;
  background-color: #B70100;  
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

#map {
  width: 100%;
  height: 100%;
}

/* Customize InfoWindow Style */
.custom-info-window {
  background-color: white;
  padding: 10px 5px;
  border-radius: 5px;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
  /* min-width: 350px !important; */

  .title {
    font-family: "AOTFSGP Regular";
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.9px;
    color: #000;
    text-decoration: underline;    
  }
  .phone {
    margin: 10px 0;
    > p {
      font-family: "NissanBrand Regular";
      font-size: 16px;
      font-weight: 400;
      line-height: 26px;
      letter-spacing: 0.9px;
      color: #000;
      
      &::before {
        content: '';
        display: inline-block;
        vertical-align: middle;
        margin-right: 10px;
        width: 22px;
        height: 22px;
        background-image: url('../images/icon_15.png'); 
        background-size: contain;
        background-repeat: no-repeat;
      }
    }    
  }
  .address {
    font-family: "NissanBrand Regular";
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.9px;
    color: #000;
    padding: 0 2px;
  }
  .cta {
    text-decoration: none;
    cursor: pointer;
    border-radius: 40px;
    /* outline: none; */
    z-index: 99;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

    .cta-text {
      font-family: "AOTFSGP Medium";
      font-size: 16px;
      line-height: 26px;
      font-weight: bold;
      letter-spacing: 0.9px;
      color: #fff;
      width: 314px;
      height: 50px;
      background-color: #B70100;
      border-radius: 40px;
      padding: 12px 30px;
      text-align: center;
      margin: 10px auto;

      &:hover {
        background: #920023;
      }
      &:focus-visible {  
        /* outline: none; */
        box-shadow: 0 0 0 4px #5485F0;
      }
    }    
  }   
}
.gm-style-iw-chr {
  height: 20px;

  .gm-ui-hover-effect {
    opacity: 1;
    >span {
      margin: 0px;
    }
  }
}
.gm-style .gm-style-iw-c { 
  min-width: 350px !important;
  max-width: 350px !important;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  > img {
    width: 16px;
  }
}
.modal-content.animate-slide-down {
  -webkit-animation: slideDown 0.5s forwards;
  animation: slideDown 0.5s forwards;
}

.model-show {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@keyframes slideUp {
  from {
      bottom: -100%;
  }
  to {
      bottom: 0;
  }
}
@keyframes slideDown {
  from {
      bottom: 0;
  }
  to {
      bottom: -100%;
  }
}

#footer .inner {
  height: 200px;
}

/************************************* sec_01 *************************************/
#content #sec_01 .inner .con_01{
  margin: 0px auto;  
  overflow: hidden;
}
.video-box {
  width: 648px;
  height: 360px;
  margin: 0 auto;
}

#openModalBtn {
  text-decoration: none;
  cursor: pointer;
  border-radius: 40px;
  z-index: 99;
  position: -webkit-sticky !important;
  position: sticky !important;
  display: block;
  /* left: 50%;
  transform: translateX(-50%); */
  bottom: 16px;
  /* position: fixed;
  left: 50%;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  bottom: 40px; */

  .cta-text {
    font-family: "AOTFSGP Regular";
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.9px;
    color: #fff;
    text-align: center;
    width: 335px;
    height: 50px;
    background-color: #B70100;
    border-radius: 40px;  
    margin: 0px auto;
    padding: 12px 0;    
    
    &:hover {
      background: #920023;
    }
    
    &:focus-visible {  
      box-shadow: 0 0 0 4px #5485F0;
    }
  }  
}
/*#content #sec_01 .inner .con_01 .cta { 
  text-decoration: none;
  cursor: pointer;
  border-radius: 40px;
  z-index: 99;
  position: fixed;
  left: 50%;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  bottom: 40px;
  position: relative;

  .cta-text {
    font-family: "AOTFSGP Regular";
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.9px;
    color: #fff;
    text-align: center;
    width: 335px;
    height: 50px;
    background-color: #B70100;
    border-radius: 40px;  
    margin: 0px auto;
    padding: 12px 0;    
    
    &:hover {
      background: #920023;
    }
    
    &:focus-visible {  
      box-shadow: 0 0 0 4px #5485F0;
    }
  }   
}*/
#content #sec_01 .inner .con_01 .video-box .video {
  position: relative;  
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;  /*16:9 Aspect Ratio (divide 9 by 16 = 0.5625)*/
  
  > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
}

#content #sec_01 .inner .con_02 .con_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  max-width: 864px;
  margin: 0 auto;
  padding: 20px 0 40px;

  .arrow_right {
    width: 25px;
    text-align: center;
    > img {
      width: 7px;
      margin: auto;
    }
  }
}
#content #sec_01 .inner .con_02 .con_box .box .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
#content #sec_01 .inner .con_02 .con_box .box {
  width: 197px;
  height: 436px;
  border-radius: 8px;
  /* padding: 8px 20px 20px 8px;
  margin-bottom: 20px; */
  background-color: #f6f6f6;
  .text_01 {
    font-family: "NissanBrand Bold";
    font-size: 12px;
    line-height: 18px;
    font-weight: bold;
    letter-spacing: 0.9px;
    color: #B70100;
    margin-left: 8px;
    margin-top: 8px;
  }
  .text_02 {
    font-family: "AOTFSGP Light";
    font-size: 16px;
    line-height: 26px;
    color: #000;
    letter-spacing: 0.9px;
    >div:nth-child(1){
      width: 174px;
      height: 55px;  
      font-family: "AOTFSGP Medium";  
      font-size: 16px;
      font-weight: bold;
      /* margin-bottom: 5px;  */
    }
    >div:nth-child(2){
      width: 170px;
    }
  }
}

#content #sec_01 .inner .con_02 .con_box .box .container .img {
  text-align: center;
  margin: auto;  
  /* height: 165px; */
  > img {
    width: 148px;
  }
}

#content #sec_01 .inner .con_03 {
  padding: 60px 0;
}

#content #sec_01 .inner .con_03 .con_box {
  display: flex;
  align-items: center; 
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 864px;
  margin: 0 auto;
  gap: 24px;
}

#content #sec_01 .inner .con_03 .con_box .box .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center; 
}
#content #sec_01 .inner .con_03 .con_box .box {
  width: 420px;
  height: 380px;
  border-radius: 8px;
  background-color: #f6f6f6;
  padding-bottom: 16px;
  
  .text_02 {
    font-family: "AOTFSGP Light";
    font-size: 16px;
    line-height: 26px;
    font-weight: normal;
    letter-spacing: 0.9px;
    color: #000;
    padding: 16px;

    >div:nth-child(1){
      font-family: "AOTFSGP Medium";
      margin-bottom: 5px;
      font-weight: bold;
    }
  }
}

#content #sec_01 .inner .con_03 .con_box .box .container .img {
  text-align: center;
  margin: 0 auto;
  width: 420px;
  height: 236px;
  > img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    width: 420px;
  }
}
#content #sec_01 .inner .con_04 {
  padding: 60px 0;
  .min-title {
    margin: 2% 0;
  }
}
#content #sec_01 .inner .con_04 .con_box .box {
  width: 864px;
  /* height: 88px; */
  border-radius: 8px;
  padding: 12px 24px;
  /* gap: 12px; */
  background-color: #f6f6f6;
  margin: 15px auto;
}
#content #sec_01 .inner .con_04 .con_box .box .text {
  font-family: "AOTFSGP Medium";
  font-size: 16px;
  line-height: 26px;
  font-weight: bold;
  letter-spacing: 0.9px;
  color: #000;

  .icon {
    display: inline-block;
    width: 26px;
    height: 26px;
    text-align: center;
  }
  .accordion-q {
    margin-bottom: 10px;
    .icon_01 {
      color: #000;
      background-color: #ccc;
      vertical-align: top;
      margin-right: 5px;
    }
    .title {
      display: inline-block;
    }
  }

  .accordion-a { 
    .icon_02 {
      color: #fff;
      background-color: #B70100;
      vertical-align: top;
      margin-right: 5px;
    }
    .context {
      width: 93%;
      display: inline-block;
      font-family: "AOTFSGP Light";
      font-size: 14px;
      line-height: 24px;
      font-weight: normal;
      letter-spacing: 0.9px;
      color: #000;
    }
  }
}
/************************************* sec_02 *************************************/
#content #sec_02 .inner .txt {
  margin: 30px auto 30px;  
  max-width: 636px;
}
#content #sec_02 .inner .con_01 {
  max-width: 864px;
}

#content #sec_02 .inner .con_02 {
  margin-top: 80px;
}
#content #sec_02 .inner .con_02 .con_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  max-width: 864px;
  margin: 0 auto;

  .arrow_right {
    width: 25px;
    text-align: center;
    > img {
      width: 7px;
      margin: auto;
    }
  }
}
#content #sec_02 .inner .con_02 .con_box .box .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
#content #sec_02 .inner .con_02 .con_box .box {
  width: 266px;
  height: 600px;
  border-radius: 8px;
  padding: 20px 12px;
  margin-bottom: 20px;
  background-color: #f6f6f6;
  .text_01 {
    font-family: "NissanBrand Bold";
    font-size: 12px;
    line-height: 18px;
    font-weight: bold;
    letter-spacing: 0.9px;
    color: #B70100;
    margin-bottom: 10px;
  }
  
  .text_02 {
    font-family: "AOTFSGP Light";
    font-size: 16px;
    line-height: 26px;
    color: #000;
    letter-spacing: 0.9px;
    width: 242px;
    >div:nth-child(1){
      font-family: "AOTFSGP Medium";
      font-size: 16px;
      line-height: 26px;
      letter-spacing: 0.9px;
      font-weight: bold;
      color: #000;
      /* width: 246px; */
      padding: 8px 0px;
      /* margin-bottom: 5px;       */
    }
    >div:nth-child(2){
      font-family: "AOTFSGP Light";
      font-size: 16px;
      line-height: 26px;
      letter-spacing: 0.9px;
      color: #000;
      width: 240px;
      padding: 0px;
    }
  }
}

#content #sec_02 .inner .con_02 .con_box .box .container .img {
  text-align: center;
  margin: 0 auto;
  width: 246px;
  height: 246px;
  > img {
    width: 246px;
  }
}
#content #sec_02 .inner .con_04 {
  margin-top: 100px;
}
/************************************* sec_03 *************************************/
#content #sec_03 .inner .txt {
  margin: 30px auto 80px;  
  max-width: 636px;
}

#content #sec_03 .inner .con_02 .con_box {
  max-width: 884px;
  display: flex;
  align-items: center;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  margin: 0 auto 80px; 
  position: relative;
  /* padding: 0 20px; */

  /* .arrow_right {
    width: 25px;
    text-align: center;
    > img {
      width: 7px;
    }
  } */
}

#content #sec_03 .inner .con_02 .con_box .box { 
  position: relative;
  border-radius: 8px;
  width: 272px;
  height: 519px;  
  background-color: #f6f6f6;
  
  .img {
    img {
      border-top-right-radius: 8px;
      border-top-left-radius: 8px;
      width: 100%;
    }    
  }
  
  .text_02 {
    font-family: "AOTFSGP Light";
    font-size: 16px;
    line-height: 26px;
    color: #000;
    letter-spacing: 0.9px;
    padding: 0 16px;

    >div:nth-child(1){
      font-family: "AOTFSGP Medium";
      font-size: 16px;
      line-height: 26px;
      font-weight: bold;
      color: #000;
      margin-top: 15px;  
      margin-bottom: 5px;   
    }
    >div:nth-child(2){
      font-family: "AOTFSGP Light";
      font-size: 16px;
      line-height: 26px;
      color: #000;
      /* width: 240px; */
      margin: 0 auto 60px;
    }
    
    .button {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translate(-50%);
      -webkit-transform: translate(-50%);
      -moz-transform: translate(-50%);
      -ms-transform: translate(-50%);
      -o-transform: translate(-50%);
      text-decoration: none;
      border-radius: 40px;      
      cursor: pointer;

      -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
      .button-text {
        font-family: "AOTFSGP Medium";
        font-size: 16px;
        line-height: 26px;
        font-weight: bold;
        color: #B70100;
        width: 240px;
        height: 50px;
        border-radius: 40px;
        border: #B70100 1px solid;
        background-color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;        
        text-align: center;      
        &:hover {        
          transition: border-width 0.3s cubic-bezier(0.77, 0, 0.18, 1);
          border-width: 3px;
        }
        &:focus-visible {  
          border: 2px solid #B70100;
          box-shadow: 0 0 0 4px #5485F0;      
        }
      }
    }
    .button-2 {
      bottom: 90px;
    }
  }
}


.swiper { 
  /* margin-right: 0; */
  overflow: auto;
  padding: 0 20px;
}
.swiper-wrapper {
  transition-timing-function: cubic-bezier(0.77, 0, 0.18, 1);
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.swiper-pagination-bullet {
  width: 111px;
  height: 2px;
  background-color: #ccc;
  border-radius: 0;
  opacity: 1;
  margin: 0 5px;
}

.swiper-pagination-bullet-active {
  background-color: #000;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 35px;
}