@charset "utf-8";
/* common */
.cf::after {
  content: "";
  display: block;
  clear: both;
}
.inner {
  width: 94%;
  max-width: 152rem;
  margin: 0 auto;
}
.pt-clr01 {
  color: var(--primary) !important;
}
.scrollbox {
  height: 100%;
  overflow: auto;
  scrollbar-track-color: #dbdbdb;
  scrollbar-base-color: #dbdbdb;
}
.scrollbox::-webkit-scrollbar-track {
  border-radius: 0;
  background-color: #dbdbdb;
}
.scrollbox::-webkit-scrollbar {
  width: 11px;
  background-color: #dbdbdb;
}
.scrollbox::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: #c2c2c2;
}
:root {
  --primary: rgba(235, 97, 32, 100);
  --primary-25: rgba(255, 0, 0, 1);
  --black: #000;
  --white: #ffffff;
  --darkgrey: #333;
  --lightgrey: #f5f5f5;
  --midgrey: rgba(102, 100, 100);
  --weight: 600;
  --thinweight: 100;
  --lightweight: 300;
  --regularweight: 400;
  --mediumweight: 500;
  --boldweight: 700;
  --blackweight: 900;
  --12fontsize: 12px;
  --14fontsize: 14px;
  --15fontsize: 15px;
  --16fontsize: 16px;
  --18fontsize: 18px;
  --20fontsize: 20px;
  --22fontsize: 22px;
  --24fontsize: 24px;
  --30fontsize: 30px;
  --36fontsize: 36px;
  --50fontsize: 50px;
  --60fontsize: 60px;
}
/* slide */
.slide-box {
  position: relative;
}
.slide-box .navi-w .navi-btn {
  width: 6.2rem;
}
.slide-box .navi-w .navi-btn:after {
  display: none;
}
.slide-box .navi-w .navi-btn.prev {
  left: -11rem;
}
.slide-box .navi-w .navi-btn.next {
  right: -11rem;
}
.navi-btn {
  cursor: pointer;
}
/* radio */
.radiobox {
  position: relative;
  display: inline-block;
}
.radiobox input[type="radio"],
.radiobox input[type="checkbox"] {
  width: 100%;
  cursor: pointer;
  height: 2.7rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  margin: 0;
  z-index: 1;
  opacity: 0;
  transform: translateY(-50%);
}
.radiobox input[type="radio"] + label,
.radiobox input[type="checkbox"] + label {
  position: relative;
  cursor: pointer;
  font-weight: normal;
  padding: 0 0 0 2.5rem;
  margin-left: 2.5rem;
  line-height: 1.3;
}
.radiobox input[type="radio"] + label:before,
.radiobox input[type="checkbox"] + label:before {
  content: "";
  display: inline-block;
  background: none;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 1.8rem;
  height: 1.8rem;
  line-height: 1.8rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.radiobox input[type="radio"]:checked + label:before,
.radiobox input[type="checkbox"]:checked + label:before {
  content: "";
  border: 5px solid #c441c4;
}
/* checkbox */
.ck-box {
  display: inline-block;
  position: relative;
  font-size: 1.6rem;
  color: #333;
  font-weight: 400;
}
.ck-box .checkbox {
  background: none;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 1.8rem;
  height: 1.8rem;
  cursor: pointer;
}
.ck-box .checkbox + label {
  position: relative;
  display: inline-block;
  z-index: 5;
  padding-left: 2.5rem;
  color: #676e70;
}
.ck-box .checkbox + label::before {
  content: "";
  display: inline-block;
  z-index: 5;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid #ddd;
}
.ck-box .checkbox:checked + label::before {
  background: url("../img/common/ico_check_on.png") no-repeat center;
  border: 1px solid #aa15ff;
}
/* header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 6rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  height: 10rem;
  transition: all 0.3s ease-in-out;
}
.header .logo {
  display: inline-block;
  width: 14.8rem;
  height: 3rem;
  line-height: 3rem;
}
.header .logo svg {
  height: 30px;
}
.header .logo .cls-1 {
  fill: #eee;
}
.header .logo .cls-3 {
  fill: #eee;
}
.header .logo .cls-2 {
  fill: var(--primary);
}
.header .gnb {
  display: flex;
  align-items: center;
  height: 100%;
}
.header .gnb > li {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}
.header .gnb > li.has-fulldep2 {
  position: inherit;
}
.header .gnb > li > a {
  padding: 0 3rem;
  font-size: 1.65rem;
  color: #fff;
}
.header .gnb li a {
  display: inline-block;
  text-decoration: none;
}
.header .gnb li .dep2 {
  display: none;
  position: fixed;
  top: 99px;
  left: 0;
  right: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
}
@media (max-width: 1440px) {
  .header .gnb li .dep2 {
    top: 90px;
  }
}

.header .gnb li.has-dep2 {
  position: relative;
}

.header .gnb li.has-dep2::after {
  display: none;
}

.header .gnb li.has-dep2.on .dep2,
.header .gnb li.has-dep2:hover .dep2 {
  display: block;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.header .dep2 {
  background: var(--color-bg);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(235, 97, 32, 0.1);
  overflow: hidden;
}

.header .dep2-inner {
  display: flex;
  gap: 8px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
}
.header .dep2-inner.longx .dep2-item {
  width: 30%;
}

.header .dep2-item {
  max-width: 300px;
  display: flex !important;
  align-items: center;
  gap: 20px;
  box-sizing: border-box;
  padding: 20px 24px;
  background: #fff;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.header .dep2-item:hover {
  background: linear-gradient(135deg, #fff 0%, #fef9f7 100%);
  border-color: rgba(235, 97, 32, 0.15);
  box-shadow: 0 8px 24px rgba(235, 97, 32, 0.1);
}

.header .dep2-item:hover .dep2-icon {
  background: linear-gradient(135deg, var(--primary) 0%, #ff8c42 100%);
  transform: scale(1.1);
}

.header .dep2-item:hover .dep2-icon svg {
  color: #fff;
}

.header .dep2-item:hover .dep2-title {
  color: var(--primary);
}

.header .dep2-item:hover .dep2-arrow {
  opacity: 1;
  transform: translateX(4px);
  color: var(--primary);
}

.header .dep2-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: rgba(235, 97, 32, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
}

.header .dep2-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
  transition: color 0.3s ease;
}

.header .dep2-content {
  flex: 1;
  min-width: 0;
}

.header .dep2-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.header .dep2-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.header .dep2-arrow {
  width: 24px;
  height: 24px;
  color: #ccc;
  opacity: 0;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.header .dep2-arrow svg {
  width: 100%;
  height: 100%;
}
.smart-guide-btnw {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 20px;
  color: #fff;
}
.smart-guide-btnw svg {
  width: 18px;
}
.smart-guide-btnw .search {
  cursor: pointer;
}
.smart-guide-btnw .global {
  display: flex;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}
.smart-guide-btnw .global svg {
  margin-right: 5px;
}
.smart-guide-btnw:before {
  display: block;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 600;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -110px;
  opacity: 0;
  transition: 0.3s;
  font-family: "Arial", "Montserrat";
}
.smart-guide-btnw:hover:before {
  opacity: 1;
  transition: 0.3s;
}
.smart-btn {
  position: relative;
  width: 1.6rem;
  height: 1.6rem;
  z-index: 999;
  border: none;
  background: none;
}
.smart-btn .dot {
  display: inline-block;
  position: absolute;
  width: 0.6rem;
  height: 0.6rem;
  background: #fff;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.smart-btn .dot:nth-child(1) {
  top: 0;
  left: 0;
}
.smart-btn .dot:nth-child(2) {
  bottom: 0;
  left: 0;
  background: var(--primary);
}
.smart-btn .dot:nth-child(3) {
  top: 0;
  right: 0;
}
.smart-btn .dot:nth-child(4) {
  bottom: 0;
  right: 0;
}
.header.on {
  background: #fff;
  border-bottom: 1px solid #ddd;
}
.header.on:nth-child(6) {
  background: transparent;
}
.header.on .logo .cls-1 {
  fill: var(--midgrey);
}
.header.on .logo .cls-3 {
  fill: var(--midgrey);
}
.header.on .logo .cls-2 {
  fill: var(--primary);
}
.header.on .smart-guide-btnw {
  color: var(--darkgrey);
}
.header.on .gnb > li > a {
  color: var(--midgrey);
}
.header.on .smart-btn .dot:not(:nth-child(2)) {
  background: #5c5b5c;
}
.header.on .smart-guide-btnw .txt {
  color: #333;
}
.header.on .smart-guide-btnw:before {
  color: #002e5f;
}
.header.gnb-on {
  background: #fff;
  border-bottom: 1px solid #ddd;
}
.header.gnb-on .logo .cls-1 {
  fill: var(--midgrey);
}
.header.gnb-on .logo .cls-3 {
  fill: var(--midgrey);
}
.header.gnb-on .logo .cls-2 {
  fill: var(--primary);
}
.header.gnb-on .smart-guide-btnw {
  color: var(--darkgrey);
}
.header.gnb-on .gnb > li > a {
  color: var(--darkgrey);
}
.header.gnb-on .smart-btn .dot:not(:nth-child(2)) {
  background: #5c5b5c;
}
.header.gnb-on .smart-guide-btnw .txt {
  color: var(--darkgrey);
}
.mb-full-nav {
  display: none;
}
.mb-full-nav.active {
  left: 0;
}
.mb-full-nav .logo svg {
  height: 25px;
}
.mb-full-nav .logo svg {
  height: 25px;
}
.mb-full-nav .logo .cls-1 {
  fill: var(--midgrey);
}
.mb-full-nav .logo .cls-3 {
  fill: var(--midgrey);
}
.mb-full-nav .logo .cls-2 {
  fill: var(--primary);
}
.mb-full-nav.active .top .btn-box .txt {
  font-size: 1.4rem;
  color: #222;
  font-weight: 600;
  margin-right: 1.5rem;
}
.mb-full-nav.active .top .btn-box .smart-btn .dot {
  background: #ddd;
}
.mb-full-nav.active .top .btn-box .smart-btn .dot:nth-child(1),
.mb-full-nav.active .top .btn-box .smart-btn .dot:nth-child(4) {
  display: none;
}
.mb-full-nav.active .top .btn-box .smart-btn .dot:nth-child(2) {
  background: #002e5f;
}
.mb-full-nav {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 99;
  transition: 0.5s;
  background-color: #fff;
}
.mb-full-nav .top {
  border-bottom: solid 1px #f1f1f1;
  padding: 1em 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 8rem;
}
.mb-full-nav .top .logo img {
  width: 14.8rem;
  height: 3rem;
  line-height: 3rem;
}
.mb-full-nav .cont {
  display: flex;
  height: 100%;
  background: #f1f1f1;
}
.mb-full-nav .cont .list {
  width: 100%;
  padding: 3em 0 3em 3em;
  background: #fff;
}
.mb-full-nav .cont .list .dep1 > li {
  margin-bottom: 3em;
}
.mb-full-nav .cont .list .dep1 > li.active h2 {
  font-weight: 700;
  color: var(--primary);
}
.mb-full-nav .cont .list .dep1 > li.active h2:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid #fff;
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.mb-full-nav .cont .list .dep1 > li h2 {
  font-size: 2.4rem;
  position: relative;
  cursor: pointer;
  color: #5c5b5c;
}
.mb-full-nav .cont .list .dep1 > li .dep2 {
  display: none;
  position: absolute;
  width: 60%;
  height: 100%;
  right: 0;
  top: 8rem;
  background: #f1f1f1;
  padding: 3em;
}
.mb-full-nav .cont .list .dep1 > li .dep2.active {
  display: block;
}
.mb-full-nav .cont .list .dep1 > li .dep2 > li {
  margin-bottom: 1.5em;
  font-size: 1.6rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.mb-full-nav .cont .list .dep1 > li .dep2 > li h3 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  cursor: pointer;
}
.mb-full-nav .cont .list .dep1 > li .dep2 > li .dep3 {
  display: none;
}
.mb-full-nav .cont .list .dep1 > li .dep2 > li .dep3 > li {
  margin-bottom: 1.5rem;
}
.mb-full-nav .cont .list .dep1 > li .dep2 > li .dep3 > li a {
  font-size: 1.8rem;
}
.mb-br {
  display: none;
}
@media (max-width: 1400px) {
  .header .gnb li .dep2 .inner .txtbox {
    flex-wrap: wrap;
  }
  .header .gnb li .dep2 .inner .txtbox .box {
    width: 46%;
    margin: 0 2%;
  }
  .pc-br {
    display: none;
  }
}
@media (max-width: 1024px) {
  .header {
    padding: 0 4rem;
  }
  .header .gnb {
    margin: 0;
  }
  .header .gnb li .dep2 .inner {
    flex-direction: column;
  }
  .header .gnb li .dep2 .inner .imgbox {
    display: none;
  }
  .header .gnb li .dep2 .inner .txtbox {
    width: 100%;
    flex-wrap: unset;
    margin: 0 -2%;
    padding: 5rem 0;
  }
  .header .gnb li .dep2 .inner .txtbox .box {
    width: 22%;
  }
  .header .smart-guide-btnw .txt {
    display: none;
  }
}
@media (max-width: 768px) {
  .header {
    height: 8rem;
    padding: 0 2rem;
  }
  .header .gnb {
    display: none;
  }
  .smart-guide-cont > div {
    display: none;
  }
  .mb-full-nav {
    display: block;
  }
  .mb-full-nav .cont .list .dep1 > li .dep2 > li.current h3 a {
    color: var(--primary);
  }
}
@media (max-width: 500px) {
  .header {
    height: 6rem;
  }
  .mb-full-nav .cont .list {
    padding: 6vw;
  }
  .mb-full-nav .cont .list .border {
    display: none;
  }
  .mb-full-nav .cont .list a {
    font-size: 16px;
  }
  .mb-full-nav .cont .list .dep1 > li h2 {
    font-size: 2rem;
  }
  .mb-full-nav .cont .list .dep1 > li .dep2 > li h3 {
    font-size: 1.8rem;
  }
  .mb-full-nav .cont .list .dep1 > li .dep2 > li .dep3 > li a {
    font-size: 1.6rem;
  }
  .mb-full-nav .cont .list .dep1 > li .dep2 {
    padding: 2em 3em;
  }
  .mb-full-nav .cont .list .dep1 > li .dep2 > li {
    margin-bottom: 1rem;
  }
  .mb-full-nav .cont .list .dep1 > li .dep2 > li h3 {
    margin-bottom: 1.5rem;
  }
  .mb-br {
    display: block;
  }
}
.smart-guide-cont {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.smart-guide-cont .bar-cont {
  width: 42rem;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  right: -42rem;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  z-index: 99;
  transition: all 0.3s;
}
.smart-guide-cont .bar-cont .top-title {
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 10rem;
  padding: 0 2.5rem;
  font-family: "Arial", "Montserrat";
}
.smart-guide-cont .bar-cont .top-title .title {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 600;
}
.smart-guide-cont .bar-cont .top-title .btn-box .txt {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 600;
  opacity: 1;
  margin-right: 1.5rem;
}
.smart-guide-cont .bar-cont .top-title .btn-box .smart-btn .dot:nth-child(1),
.smart-guide-cont .bar-cont .top-title .btn-box .smart-btn .dot:nth-child(4) {
  display: none;
}
.smart-guide-cont .bar-cont .top-title .btn-box .smart-btn .dot:nth-child(2) {
  background: #31a8e1;
}
.smart-guide-cont .bar-cont .list-w {
  overflow-y: scroll;
  height: calc(100vh - 10rem);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.smart-guide-cont .bar-cont .list-w::-webkit-scrollbar {
  display: none;
}
.smart-guide-cont .bar-cont .link-list {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.smart-guide-cont .bar-cont .link-list li {
  height: 11.111%;
  position: relative;
  border-bottom: 1px solid #3e3e40;
  background: rgba(255, 255, 255, 0.1);
}
.smart-guide-cont .bar-cont .link-list li:last-child {
  border-bottom: none;
}
.smart-guide-cont .bar-cont .link-list li:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #002e5f, rgba(0, 0, 0, 0));
  z-index: -1;
  transform: translateX(-42rem);
  transition: all 0.6s;
}
.smart-guide-cont .bar-cont .link-list li .border {
  position: absolute;
  width: 100%;
  height: 100%;
}
.smart-guide-cont .bar-cont .link-list li .border span {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background: #fff;
  transition: all 0.3s;
  opacity: 0.5;
}
.smart-guide-cont .bar-cont .link-list li .border span.top {
  height: 1px;
}
.smart-guide-cont .bar-cont .link-list li .border span.right {
  right: 0;
  left: initial;
}
.smart-guide-cont .bar-cont .link-list li .border span.bottom {
  top: initial;
  bottom: 0;
  left: initial;
  right: 0;
  height: 1px;
}
.smart-guide-cont .bar-cont .link-list li .border span.left {
  top: initial;
  bottom: 0;
}
.smart-guide-cont .bar-cont .link-list li .border span.right,
.smart-guide-cont .bar-cont .link-list li .border span.left {
  width: 1px;
}
.smart-guide-cont .bar-cont .link-list li:hover .border span.top {
  width: 100%;
}
.smart-guide-cont .bar-cont .link-list li:hover .border span.right {
  height: 100%;
  transition-delay: 0.2s;
}
.smart-guide-cont .bar-cont .link-list li:hover .border span.bottom {
  width: 100%;
  transition-delay: 0.4s;
}
.smart-guide-cont .bar-cont .link-list li:hover .border span.left {
  height: 100%;
  transition-delay: 0.6s;
}
.smart-guide-cont .bar-cont .link-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.8rem;
  color: #fff;
  z-index: 1;
  width: 100%;
  height: 100%;
  font-weight: 300;
  opacity: 0.6;
  padding: 0 2.5rem;
  position: relative;
  overflow: hidden;
}
.smart-guide-cont .bar-cont .link-list li a::after {
  display: block;
  content: "";
  width: 15.6rem;
  height: 15.6rem;
  background: url(../img/common/smart-guide-logo.png) no-repeat center/contain;
  position: absolute;
  opacity: 0;
  transform: translateX(-3rem);
  transition: all 0.3s;
  bottom: -80px;
  right: 20px;
  animation: rot 15s linear infinite;
}
.smart-guide-cont .bar-cont .link-list li:hover:before {
  transform: translateX(0);
}
.smart-guide-cont .bar-cont .link-list li:hover a {
  font-weight: 600;
  opacity: 1;
}
.smart-guide-cont .bar-cont .link-list li:hover a::after {
  opacity: 0.5;
  transform: translateX(0);
}
.smart-guide-cont .dark-bg {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.65);
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  z-index: 98;
  transition: opacity 0.3s;
}
.smart-guide-cont.active,
.smart-guide-cont.active .bar-cont {
  opacity: 1;
  visibility: visible;
  right: 0;
}
.smart-guide-cont.active .dark-bg {
  visibility: visible;
  opacity: 1;
}
.footer .ft-01 {
  background: #5b5f64;
  padding: 8rem 0;
}
.footer .ft-01 .inner {
  display: flex;
  justify-content: space-between;
  column-gap: 5rem;
}
.footer .ft-01 .accordi .tit {
  display: block;
  font-size: 1.65rem;
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.5rem;
}
.footer .ft-01 .sitemap-listw {
  display: flex;
  margin-top: 2rem;
}
.footer .ft-01 .sitemap-listw .box {
  margin-right: 3rem;
}
.footer .ft-01 .sitemap-listw .box > a {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Arial", "Montserrat";
}

.footer .ft-01 .sitemap-listw .box > a:hover {
  text-decoration: underline;
  text-underline-position: under;
}

.footer .ft-01 .sitemap-listw .box > a .linkicon {
  width: 15px;
  height: 15px;
  fill: rgba(255, 255, 255, 0.7);
  margin-left: 5px;
}

.footer .ft-01 .sitemap-listw .box ul li a {
  display: block;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 1rem 0;
}
.footer .ft-01 .sitemap-listw .box ul li a:hover {
  text-decoration: underline;
  text-underline-position: under;
}
.footer .ft-01 .accordi:first-child {
  max-width: 72rem;
  flex-shrink: 0;
}
.footer .ft-01 .accordi:not(:first-child) .sitemap-listw {
  flex-wrap: wrap;
}
.footer .ft-01 .accordi:not(:first-child) .sitemap-listw .box {
  width: calc(50% - 1.5rem);
}
.footer .ft-01 .right {
  display: flex;
  width: 100%;
  column-gap: 5rem;
}
.footer .ft-01 .right .accordi {
  width: auto;
  flex-shrink: unset;
  max-width: unset;
  flex: 1;
}
.footer .ft-01 .right .accordi .sitemap-listw {
  flex-wrap: wrap;
}
.footer .ft-01 .right .accordi .sitemap-listw .box {
  width: 100%;
  margin: 0.5rem 0;
}
.footer .ft-01 .mb-accordi {
  display: none;
}
.footer .ft-02 {
  background: #4a4e52;
  padding: 8rem 0;
  position: relative;
}
.footer .ft-02 .top-btn {
  position: absolute;
  top: -2.5rem;
  right: 6rem;
  width: 5rem;
  height: 5rem;
}
.footer .ft-02 .top-btn button {
  background: url("../img/common/ico-topbtn.png") var(--primary) no-repeat center;
  border: none;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.footer .ft-02 .top-btn button:hover {
  background: url("../img/common/ico-topbtn.png") var(--darkgrey) no-repeat center;
}
.footer .ft-02 .inner {
  display: flex;
  justify-content: space-between;
}
.footer .ft-02 .left {
  flex-shrink: 0;
}
.footer .ft-02 .left .logo {
  display: block;
  margin-bottom: 2rem;
}
.footer .ft-02 .left .logo {
  display: block;
  margin-bottom: 2rem;
}
.footer .ft-02 .left .logo .cls-1 {
  fill: #898c90;
}
.footer .ft-02 .left .logo .cls-2 {
  fill: var(--primary);
}
.footer .ft-02 .left .logo .cls-3 {
  fill: var(--midgrey);
}
.footer .ft-02 .left .logo svg {
  height: 35px;
}
.footer .ft-02 .left .family-site {
  position: relative;
  display: inline-block;
  width: auto;
}
.footer .ft-02 .left .family-site .family-btn {
  position: relative;
  background: #54585c;
  cursor: pointer;
  width: 22.4rem;
  height: 5rem;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  color: #b2b5b9;
}
.footer .ft-02 .left .family-site .family-btn .arr {
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
}
.footer .ft-02 .left .family-site .dep2 {
  display: none;
  z-index: 1;
  position: absolute;
  top: 4.9rem;
  left: 0;
  width: 100%;
  padding: 1rem;
  border: 1px solid #5c6065;
  background: #5c6065;
}
.footer .ft-02 .left .family-site .dep2.active {
  display: block;
}
.footer .ft-02 .left .family-site .family-btn.active .arr img {
  transform: rotate(180deg);
}
.footer .ft-02 .left .family-site .dep2 a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer .ft-02 .left .family-site .dep2 a:last-child {
  border-bottom: none;
}
.footer .ft-02 .info {
  margin-left: 17rem;
  margin-right: 14.5rem;
  width: 100%;
  font-size: 16px;
}
.footer .ft-02 .info .link {
  display: flex;
  margin-bottom: 2.5rem;
}
.footer .ft-02 .info .link a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.6);
}
.footer .ft-02 .info .link a::after {
  display: inline-block;
  content: "";
  width: 1px;
  height: 1.3rem;
  background: rgba(255, 255, 255, 0.15);
  vertical-align: middle;
  margin: 0 1.5rem;
}
.footer .ft-02 .info .link a:last-child::after {
  display: none;
}
.footer .ft-02 .info .link a strong {
  color: #ccc;
  font-weight: 400;
}
.footer .ft-02 .info ul {
  display: flex;
  flex-wrap: wrap;
}
.footer .ft-02 .info ul li {
  margin-bottom: 1rem;
  margin-right: 2rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer .ft-02 .info ul li strong {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}
.footer .ft-02 .info ul li.copy {
  width: 100%;
  margin-top: 2.2rem;
}
.footer .ft-02 .sns {
  flex-shrink: 0;
}
.footer .ft-02 .sns a {
  margin: 0 1rem;
  background: #303237;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.footer .ft-02 .sns a:last-child {
  margin-right: 0;
}
.footer .ft-02 .sns a svg {
  fill: #ccc;
}
.footer .ft-02 .sns a:nth-child(1) svg {
  width: 21px;
}
.footer .ft-02 .sns a:nth-child(2) svg {
  width: 18px;
}
.footer .ft-02 .sns a:nth-child(3) svg {
  width: 13px;
}
.footer .ft-02 .sns a:nth-child(4) svg {
  width: 17px;
}
@media (max-width: 1600px) {
  .footer .ft-01 .right {
    column-gap: 3rem;
  }
  .footer .ft-01 .sitemap-listw .box {
    margin-right: 2rem;
  }
}
@media (max-width: 1280px) {
  .footer .ft-01 .inner {
    flex-direction: column;
  }
  .footer .ft-01 .inner > .accordi:first-child {
    width: 100%;
    max-width: unset;
    margin-bottom: 3rem;
  }
  .footer .ft-01 .sitemap-listw .box {
    flex: 1;
  }
  .footer .ft-01 .right .accordi .sitemap-listw .box {
    flex: unset;
  }
  .footer .ft-02 .info {
    margin-left: 7rem;
    margin-right: 7rem;
  }
}
@media (max-width: 1024px) {
  .footer .ft-02 .inner {
    flex-direction: column;
  }
  .footer .ft-02 .info {
    margin: 3rem 0;
  }
}
@media (max-width: 768px) {
  .footer .ft-01 .accordi,
  .footer .ft-01 .right {
    display: none;
  }
  .footer .ft-01 .mb-accordi {
    display: block;
  }
  .footer .ft-01 .mb-accordi .item-list {
    display: flex;
    flex-direction: column;
  }
  .footer .ft-01 .mb-accordi .item-list .item {
    color: #fff;
    padding: 1.5rem;
    font-size: 1.8rem;
    border-bottom: solid 1px #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer .ft-01 .mb-accordi .item-list .item:first-child {
    padding-top: 0;
  }
  .footer .ft-01 .mb-accordi .item-list .item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .footer .ft-01 .mb-accordi .item-list .item:after {
    content: "";
    background: url("../img/common/ico-more-btn.png") no-repeat right center;
    width: 23px;
    height: 12px;
    display: block;
  }
}
@media (max-width: 500px) {
  .footer .ft-02 .info .link {
    display: none;
  }
}
@media (max-width: 1300px) {
  html {
    font-size: 57%;
  }
}
@media (max-width: 980px) {
  body {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 54%;
  }
}
@media all and (max-width: 500px) {
  html {
    font-size: 53%;
  }
}
.more-box {
  position: relative;
  display: inline-block;
}
.more-box:before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  background: #5c5b5c;
  top: 0;
  left: 0;
  transition: 0.3s;
  opacity: 0.7;
}
.more-box:after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  background: #5c5b5c;
  bottom: 0;
  right: 0;
  transition: 0.3s;
  opacity: 0.7;
}
.more-box:hover:before {
  width: 0;
}
.more-box:hover:after {
  width: 0;
}
.more-box.ta-c {
  text-align: center;
}
.more-box .more-btn {
  color: #fff;
  font-family: "Arial", "Montserrat";
  padding: 1.5rem 6rem 1.5rem 3.5rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20rem;
  height: 5.6rem;
  position: relative;
  cursor: pointer;
}
.more-box .more-btn::after {
  background: url("../img/common/ico-plus-white.png") no-repeat center / cover;
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 20%;
  transition: 0.3s;
  top: 50%;
  transform: translateY(-50%);
}
.more-box .more-btn:hover:after {
  background: url("../img/common/ico-more-btn.png") no-repeat center / cover;
  content: "";
  display: block;
  width: 23px;
  height: 12px;
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
}
.more-box.c-blk .more-btn {
  color: #5c5b5c;
}
.more-box.c-blk:before,
.more-box.c-blk:after {
  background: #5c5b5c;
}
.more-box.c-blk .more-btn::after {
  background: url("../img/common/ico-plus-gray.png") no-repeat center / cover;
}
.more-box.c-blk .more-btn:hover:after {
  background: url("../img/common/ico-more-btn-gray.png") no-repeat center / cover;
}
@media all and (max-width: 500px) {
  .more-box .more-btn {
    padding: 1.5rem 6rem 1.5rem 1.5rem;
    width: 17rem;
    height: 5rem;
  }
}
.mainProductSlide-wrap .banner-slider {
  margin-bottom: 0 !important;
}
.mainProductSlide-wrap .product-slide-main {
  margin-bottom: 5rem;
}
.mainProductSlide-wrap .product-slide-main .slick-arrow {
  display: none !important;
}
.mainProductSlide-wrap .product-slide-main .slick-slide .slider-banner-image img {
  height: 49rem;
  object-fit: cover;
  margin: 0 auto;
}
.mainProductSlide-wrap .product-slide-thumb .slick-arrow {
  background-color: unset;
  border: unset;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.mainProductSlide-wrap .product-slide-thumb .slick-arrow.slick-prev {
  left: -25px;
}
.mainProductSlide-wrap .product-slide-thumb .slick-arrow.slick-next {
  right: -25px;
}
.mainProductSlide-wrap .product-slide-thumb .slick-slide {
  border: solid 1px #dddddd;
  background-color: #fff;
  height: 12rem;
  padding: 1rem;
  display: flex;
  justify-content: center;
}
.mainProductSlide-wrap .product-slide-thumb {
  width: 75%;
  margin: 0 auto;
}
.mainProductSlide-wrap .product-slide-thumb .slick-slide {
  margin: 0 10px;
}
.mainProductSlide-wrap .product-slide-thumb .slick-slide .thumbnail-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.mainProductSlide-wrap .product-slide-thumb .slick-slide .thumbnail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mainProductSlide-wrap .product-slide-thumb .slick-slide.slick-current {
  border-color: #004098;
}
@media all and (max-width: 500px) {
  .mainProductSlide-wrap .product-slide-thumb {
    width: 85%;
  }
}
