@charset "UTF-8";
/*import
------------------------------------------*/
/*数値の設定
------------------------------------------*/
/*上記数値の設定を呼び出しているmixin
------------------------------------------*/
/*
よく使用するmixin
------------------------------------------*/
/*
PCのみhover
------------------------------------------*/
/*
フォントサイズ相対変更
------------------------------------------*/
:root {
  --leading-trim: calc((1em - 1lh) / 2);
}

:root,
main {
  background: #F6F6F6;
}

.sec-pickup {
  background: #fff !important;
  transform: translateY(-1px);
}

h3 {
  margin: 48px 0 64px;
}
@media only screen and (max-width: 1024px) {
  h3 {
    margin: 24px 0 32px;
  }
}
h3 span {
  display: block;
  line-height: 120%;
}
h3 span.jp {
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(2.0779220779vw, 32px);
  font-weight: 700;
}
@media only screen and (max-width: 1024px) {
  h3 span.jp {
    font-size: 21px;
    line-height: 120%; /* 25.2px */
  }
}
h3 span.en {
  margin-top: 12px;
  color: var(--NICE_green, #007440);
  font-size: min(1.038961039vw, 16px);
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  h3 span.en {
    margin-top: 8px;
    padding-left: 4px;
    font-size: 13px;
    line-height: 120%; /* 15.6px */
  }
}

a.linkBtn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 360px;
  height: 80px;
  background: #007440;
  font-size: min(1.1688311688vw, 18px);
  font-weight: 700;
  color: #fff;
  border-radius: 40px;
  overflow: hidden;
  cursor: pointer;
  transition: all ease-out 0.3s;
}
@media only screen and (max-width: 1200px) {
  a.linkBtn {
    width: 335px;
    height: 54px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 1024px) {
  a.linkBtn {
    justify-content: flex-start;
    width: 100%;
    max-width: 335px;
    margin-block: var(--leading-trim);
    padding-left: 24px;
    line-height: normal;
  }
}
@media only screen and (max-width: 767px) {
  a.linkBtn {
    max-width: inherit;
  }
}
a.linkBtn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
  display: block;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 100%;
  transition: all ease-out 0.3s;
}
@media only screen and (max-width: 1024px) {
  a.linkBtn::before {
    right: 24px;
  }
}
a.linkBtn .btnText {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}
a.linkBtn .arrow {
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-70%);
  opacity: 0;
  transition: all ease-out 0.3s;
}
a.linkBtn .arrow svg {
  fill: #007440;
}
a.linkBtn.orange {
  background: #F4774E;
}
a.linkBtn.black {
  background: #1E2549;
}
a.linkBtn.black::before {
  background: #00FFA9;
}
@media (hover: hover) and (pointer: fine) {
  a.linkBtn:hover {
    background: #fff;
    color: #007440;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  }
  a.linkBtn:hover::before {
    transform: translateY(-50%) scale(53.1666666667);
  }
  a.linkBtn:hover .arrow {
    transform: translateY(-40%);
    opacity: 1;
  }
  a.linkBtn:hover.orange {
    background: #fff;
    color: #F4774E;
  }
  a.linkBtn:hover.black {
    background: #00FFA9;
    color: #1E2549;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  a.linkBtn:hover {
    background: #fff;
    color: #007440;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  }
  a.linkBtn:hover::before {
    transform: translateY(-50%) scale(53.1666666667);
  }
  a.linkBtn:hover .arrow {
    transform: translateY(-40%);
    opacity: 1;
  }
  a.linkBtn:hover.orange {
    background: #fff;
    color: #F4774E;
  }
  a.linkBtn:hover.black {
    background: #00FFA9;
    color: #1E2549;
  }
}

.bgGreen {
  background: #007440;
  border-radius: 24px;
}
@media only screen and (max-width: 1024px) {
  .bgGreen {
    border-radius: 16px;
  }
}

.bgRightGreen {
  background: #4CA73F;
  border-radius: 24px;
}
@media only screen and (max-width: 1024px) {
  .bgRightGreen {
    border-radius: 16px;
  }
}

.bgWhite {
  background: #fff;
  border-radius: 24px;
}
@media only screen and (max-width: 1024px) {
  .bgWhite {
    border-radius: 16px;
  }
}

/*sec-pagejump
------------------------------------------*/
section.sec-pagejump {
  padding: 18px 40px;
}
@media only screen and (max-width: 1024px) {
  section.sec-pagejump {
    position: fixed;
    top: 69px;
    left: 0;
    width: 100%;
    max-height: calc(100% - 69px);
    padding: 20px;
    border-bottom: 1px solid var(--white, #FFF);
    background: rgba(246, 246, 246, 0.9);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    overflow: scroll;
    z-index: 99;
  }
}
section.sec-pagejump details {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}
@media only screen and (max-width: 1024px) {
  section.sec-pagejump details {
    position: relative;
    display: block;
    pointer-events: all;
  }
  section.sec-pagejump details::before {
    content: url("../img/pages/top/icn_nav_arrow.svg");
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    transition: all ease-out 0.3s;
    pointer-events: none;
  }
  section.sec-pagejump details::after {
    content: url("../img/pages/top/icn_nav_arrow.svg");
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    transition: all ease-out 0.3s;
    transform: rotate(180deg);
    opacity: 0;
    pointer-events: none;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-pagejump details[open]::before {
    opacity: 0;
  }
  section.sec-pagejump details[open]::after {
    opacity: 1;
  }
}
section.sec-pagejump details summary {
  font-size: min(1.5584415584vw, 24px);
  font-weight: 700;
  list-style: none;
}
section.sec-pagejump details summary::-webkit-details-marker {
  display: none;
}
@media only screen and (max-width: 1024px) {
  section.sec-pagejump details summary {
    color: var(--Soutetsu-Navy, #1E2549);
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
  }
}
section.sec-pagejump details .pagejumpContents {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  pointer-events: all;
}
@media only screen and (max-width: 1024px) {
  section.sec-pagejump details .pagejumpContents {
    flex-flow: column;
    align-items: flex-start;
    padding: 32px;
  }
}
section.sec-pagejump details .pagejumpContents .pagejumpList {
  display: flex;
  flex-flow: row wrap;
}
@media only screen and (max-width: 1024px) {
  section.sec-pagejump details .pagejumpContents .pagejumpList {
    flex-flow: column;
    width: 100%;
  }
}
section.sec-pagejump details .pagejumpContents .pagejumpList li + li {
  margin-left: 40px;
}
@media only screen and (max-width: 1024px) {
  section.sec-pagejump details .pagejumpContents .pagejumpList li + li {
    margin-top: 32px;
    margin-left: 0;
  }
}
section.sec-pagejump details .pagejumpContents .pagejumpList li a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 40px;
  color: #1E2549;
  font-size: min(1.038961039vw, 16px);
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  section.sec-pagejump details .pagejumpContents .pagejumpList li a {
    margin-block: var(--leading-trim);
    font-size: 14px;
    line-height: 14px; /* 100% */
  }
}
section.sec-pagejump details .pagejumpContents .pagejumpList li a::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  width: 100%;
  height: 1px;
  background: #007440;
  bottom: 0;
  transform: scale(0, 1) translateX(-50%);
  transform-origin: left top;
  transition: all ease-out 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  section.sec-pagejump details .pagejumpContents .pagejumpList li a:hover::after {
    transform: scale(1, 1) translateX(-50%);
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  section.sec-pagejump details .pagejumpContents .pagejumpList li a:hover::after {
    transform: scale(1, 1) translateX(-50%);
  }
}
section.sec-pagejump details .pagejumpContents .btnList {
  display: flex;
  flex-flow: row wrap;
  margin-left: 40px;
}
@media only screen and (max-width: 1024px) {
  section.sec-pagejump details .pagejumpContents .btnList {
    flex-flow: column;
    width: 100%;
    margin-top: 32px;
    margin-left: 0;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-pagejump details .pagejumpContents .btnList li + li {
    margin-top: 8px;
  }
}
section.sec-pagejump details .pagejumpContents .btnList li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 40px;
  border-radius: 20px;
  font-size: min(0.9090909091vw, 14px);
  font-weight: 500;
  transition: all ease-out 0.3s;
}
@media only screen and (max-width: 1024px) {
  section.sec-pagejump details .pagejumpContents .btnList li a {
    width: 100%;
    height: 40px;
    font-size: 14px;
  }
}
section.sec-pagejump details .pagejumpContents .btnList li a.black {
  background: var(--Soutetsu-Navy, #1E2549);
  color: #fff;
}
section.sec-pagejump details .pagejumpContents .btnList li a.orange {
  background: #F4774E;
  color: #fff;
}
section.sec-pagejump details .pagejumpContents .btnList li a.line {
  margin-left: 8px;
  background: #fff;
  border: 2px solid #06C755;
  color: #06C755;
}
@media only screen and (max-width: 1024px) {
  section.sec-pagejump details .pagejumpContents .btnList li a.line {
    margin-left: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  section.sec-pagejump details .pagejumpContents .btnList li a:hover.orange {
    background: #fff;
    color: #F4774E;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  }
  section.sec-pagejump details .pagejumpContents .btnList li a:hover.line {
    background: #06C755;
    color: #fff;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  section.sec-pagejump details .pagejumpContents .btnList li a:hover.orange {
    background: #fff;
    color: #F4774E;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  }
  section.sec-pagejump details .pagejumpContents .btnList li a:hover.line {
    background: #06C755;
    color: #fff;
  }
}

section.sec-pagejump details .pagejumpContents .btnList li a.black .icn {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 4px;
}
section.sec-pagejump details .pagejumpContents .btnList li a.black .icn svg {
  fill: #fff;
  transition: all ease-out 0.3s;
}
/*sec-kv
------------------------------------------*/
section.sec-kv {
  padding: 0 40px 104px;
}
@media only screen and (max-width: 1024px) {
  section.sec-kv {
    margin-top: 61px;
    padding: 24px 20px 84px;
  }
}
section.sec-kv .kvWrap {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
}
section.sec-kv .kvWrap .kvTxt {
  position: absolute;
  top: calc(50% - 80px);
  left: 0;
  transform: translateY(-50%);
  width: 725px;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  section.sec-kv .kvWrap .kvTxt {
    position: relative;
    top: inherit;
    left: inherit;
    transform: inherit;
    width: 100%;
  }
}
section.sec-kv .kvWrap .kvTxt h2 {
  font-size: min(3.6363636364vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}
@media only screen and (max-width: 1200px) {
  section.sec-kv .kvWrap .kvTxt h2 {
    font-size: min(3.2467532468vw, 50px);
  }
}
@media only screen and (max-width: 991px) {
  section.sec-kv .kvWrap .kvTxt h2 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-kv .kvWrap .kvTxt h2 {
    margin-block: var(--leading-trim);
    font-size: 24px;
    line-height: normal;
  }
}
section.sec-kv .kvWrap .kvTxt h2 span {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 16px;
  background: linear-gradient(#007440, #007440 50%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: background-size 1.5s;
}
@media only screen and (max-width: 1024px) {
  section.sec-kv .kvWrap .kvTxt h2 span {
    margin-top: 8px;
    padding: 8px 16px;
  }
}
section.sec-kv .kvWrap .kvTxt h2 span::last-child {
  margin-top: 0;
}
section.sec-kv .kvWrap .kvImg {
  position: relative;
  width: 1221px;
  z-index: 0;
}
@media only screen and (max-width: 1919px) {
  section.sec-kv .kvWrap .kvImg {
    width: 1020px;
  }
}
@media only screen and (max-width: 1536px) {
  section.sec-kv .kvWrap .kvImg {
    width: 980px;
  }
}
@media only screen and (max-width: 1440px) {
  section.sec-kv .kvWrap .kvImg {
    width: 800px;
  }
}
@media only screen and (max-width: 1280px) {
  section.sec-kv .kvWrap .kvImg {
    width: 740px;
  }
}
@media only screen and (max-width: 1200px) {
  section.sec-kv .kvWrap .kvImg {
    width: 680px;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-kv .kvWrap .kvImg {
    width: 75%;
    margin-top: -23px;
  }
}
section.sec-kv .kvWrap .kvImg .kv {
  border-radius: 24px;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  section.sec-kv .kvWrap .kvImg .kv {
    aspect-ratio: 1;
    height: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-kv .kvWrap .kvImg .kv img {
    height: 100% !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
section.sec-kv .kvWrap .kvImg .badge {
  position: absolute;
  max-width: 424px;
  bottom: -40px;
  right: 40px;
}
@media only screen and (max-width: 1440px) {
  section.sec-kv .kvWrap .kvImg .badge {
    max-width: 370px;
  }
}
@media only screen and (max-width: 1200px) {
  section.sec-kv .kvWrap .kvImg .badge {
    max-width: 300px;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-kv .kvWrap .kvImg .badge {
    max-width: 450px;
    right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-kv .kvWrap .kvImg .badge {
    width: calc(100% - 50px);
    max-width: inherit;
    bottom: -32px;
    right: inherit;
    left: 50%;
    transform: translateX(-50%);
  }
}
section.sec-kv .kvWrap .kvImg .badge .caption {
  margin-left: 55px;
  font-size: 11px;
  font-weight: 500;
  line-height: 140%;
}
@media only screen and (max-width: 1440px) {
  section.sec-kv .kvWrap .kvImg .badge .caption {
    margin-left: 40px;
  }
}
@media only screen and (max-width: 1200px) {
  section.sec-kv .kvWrap .kvImg .badge .caption {
    margin-left: 25px;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-kv .kvWrap .kvImg .badge .caption {
    margin-left: 55px;
  }
}
@media only screen and (max-width: 991px) {
  section.sec-kv .kvWrap .kvImg .badge .caption {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-kv .kvWrap .kvImg .badge .caption {
    margin-left: 10px;
    font-size: 10px;
  }
}
section.sec-kv .kvWrap .kvBtn {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 1024px) {
  section.sec-kv .kvWrap .kvBtn {
    position: relative;
    bottom: inherit;
    left: inherit;
    width: 100%;
    margin-top: 54px;
  }
}

/*sec-contents-nav
------------------------------------------*/
section.sec-contents-nav {
  padding: 0 40px 168px;
}
@media only screen and (max-width: 1024px) {
  section.sec-contents-nav {
    padding: 0 20px 84px;
  }
}
section.sec-contents-nav .contentsNavWrap {
  border-top: 1px solid #E4E4E4;
}
section.sec-contents-nav .contentsList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 0px;
}
@media only screen and (max-width: 1024px) {
  section.sec-contents-nav .contentsList {
    grid-template-columns: 1fr;
    grid-column-gap: 2px;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-contents-nav .contentsList li + li {
    margin-top: 2px;
  }
}
section.sec-contents-nav .contentsList li > a {
  display: flex;
  padding: 32px 32px 32px 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  flex-shrink: 0;
  height: 100%;
  border-radius: 8px;
  transition: all ease-out 0.3s;
}
@media only screen and (max-width: 1280px) {
  section.sec-contents-nav .contentsList li > a {
    padding: 25px 25px 25px 33px;
  }
}
@media only screen and (max-width: 1200px) {
  section.sec-contents-nav .contentsList li > a {
    padding: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-contents-nav .contentsList li > a {
    gap: 0;
    padding: 12px 12px 12px 24px;
  }
}
section.sec-contents-nav .contentsList li > a * {
  transition: all ease-out 0.3s;
}
section.sec-contents-nav .contentsList li > a dl {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  section.sec-contents-nav .contentsList li > a dl {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
  }
}
section.sec-contents-nav .contentsList li > a dl dt, section.sec-contents-nav .contentsList li > a dl dd p {
  color: var(--Soutetsu-Navy, #1E2549);
}
section.sec-contents-nav .contentsList li > a dl dt {
  font-family: Inter;
  font-size: min(3.1168831169vw, 48px);
  font-weight: 600;
  line-height: 120%;
  margin-block: var(--leading-trim);
}
@media only screen and (max-width: 1024px) {
  section.sec-contents-nav .contentsList li > a dl dt {
    width: 30px;
    margin-block: var(--leading-trim);
    font-size: 22px;
  }
}
section.sec-contents-nav .contentsList li > a dl dd {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 32px;
}
@media only screen and (max-width: 1200px) {
  section.sec-contents-nav .contentsList li > a dl dd {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-contents-nav .contentsList li > a dl dd {
    width: calc(100% - 30px - 16px);
    margin-top: 0;
    margin-left: 16px;
  }
}
section.sec-contents-nav .contentsList li > a dl dd p {
  width: calc(100% - 40px);
  font-size: min(1.2987012987vw, 20px);
  font-weight: 700;
  line-height: 120%; /* 24px */
}
@media only screen and (max-width: 1024px) {
  section.sec-contents-nav .contentsList li > a dl dd p {
    width: calc(100% - 36px);
    margin-block: var(--leading-trim);
    font-size: 14px;
  }
}
section.sec-contents-nav .contentsList li > a dl dd p .green {
  color: #007440;
}
section.sec-contents-nav .contentsList li > a dl dd .arrow {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 20px;
}
@media only screen and (max-width: 1024px) {
  section.sec-contents-nav .contentsList li > a dl dd .arrow {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
  }
}
section.sec-contents-nav .contentsList li > a dl dd .arrow svg {
  width: 100%;
}
section.sec-contents-nav .contentsList li.yellow > a {
  background: #f6dd00;
}
section.sec-contents-nav .contentsList li.yellow > a dl dt, section.sec-contents-nav .contentsList li.yellow > a dl dd p, section.sec-contents-nav .contentsList li.yellow > a dl dd p span {
  color: #fff;
}
section.sec-contents-nav .contentsList li.yellow > a dd .arrow svg path {
  fill: #f6dd00;
}
@media (hover: hover) and (pointer: fine) {
  section.sec-contents-nav .contentsList li.yellow > a:hover {
    background: #fff;
  }
  section.sec-contents-nav .contentsList li.yellow > a:hover dl dt, section.sec-contents-nav .contentsList li.yellow > a:hover dl dd p, section.sec-contents-nav .contentsList li.yellow > a:hover dl dd p span {
    color: #f6dd00;
  }
  section.sec-contents-nav .contentsList li.yellow > a:hover dl dd .arrow svg rect {
    fill: #f6dd00;
  }
  section.sec-contents-nav .contentsList li.yellow > a:hover dl dd .arrow svg path {
    fill: #fff;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  section.sec-contents-nav .contentsList li.yellow > a:hover {
    background: #fff;
  }
  section.sec-contents-nav .contentsList li.yellow > a:hover dl dt, section.sec-contents-nav .contentsList li.yellow > a:hover dl dd p, section.sec-contents-nav .contentsList li.yellow > a:hover dl dd p span {
    color: #f6dd00;
  }
  section.sec-contents-nav .contentsList li.yellow > a:hover dl dd .arrow svg rect {
    fill: #f6dd00;
  }
  section.sec-contents-nav .contentsList li.yellow > a:hover dl dd .arrow svg path {
    fill: #fff;
  }
}
section.sec-contents-nav .contentsList li.green > a {
  background: #007440;
}
section.sec-contents-nav .contentsList li.green > a dl dt, section.sec-contents-nav .contentsList li.green > a dl dd p, section.sec-contents-nav .contentsList li.green > a dl dd p span {
  color: #fff;
}
section.sec-contents-nav .contentsList li.green > a dl dd p span.yellow {
  color: #f6dd00;
}
section.sec-contents-nav .contentsList li.green > a dd .arrow svg path {
  fill: #007440;
}
@media (hover: hover) and (pointer: fine) {
  section.sec-contents-nav .contentsList li.green > a:hover {
    background: #fff;
  }
  section.sec-contents-nav .contentsList li.green > a:hover dl dt, section.sec-contents-nav .contentsList li.green > a:hover dl dd p, section.sec-contents-nav .contentsList li.green > a:hover dl dd p span {
    color: #007440;
  }
  section.sec-contents-nav .contentsList li.green > a:hover dl dd .arrow svg rect {
    fill: #007440;
  }
  section.sec-contents-nav .contentsList li.green > a:hover dl dd .arrow svg path {
    fill: #fff;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  section.sec-contents-nav .contentsList li.green > a:hover {
    background: #fff;
  }
  section.sec-contents-nav .contentsList li.green > a:hover dl dt, section.sec-contents-nav .contentsList li.green > a:hover dl dd p, section.sec-contents-nav .contentsList li.green > a:hover dl dd p span {
    color: #007440;
  }
  section.sec-contents-nav .contentsList li.green > a:hover dl dd .arrow svg rect {
    fill: #007440;
  }
  section.sec-contents-nav .contentsList li.green > a:hover dl dd .arrow svg path {
    fill: #fff;
  }
}
section.sec-contents-nav .contentsOther {
  display: flex;
  padding: 40px 120px 40px 40px;
  align-items: center;
  gap: 94px;
  margin-top: 24px;
  background: #fff;
  border-radius: 16px;
}
@media only screen and (max-width: 1536px) {
  section.sec-contents-nav .contentsOther {
    gap: 80px;
  }
}
@media only screen and (max-width: 1440px) {
  section.sec-contents-nav .contentsOther {
    padding: 40px;
    gap: 30px;
  }
}
@media only screen and (max-width: 991px) {
  section.sec-contents-nav .contentsOther {
    padding: 24px 12px 24px 24px;
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-contents-nav .contentsOther {
    flex-flow: column;
    margin-top: 16px;
    padding: 24px;
    gap: 0;
  }
}
section.sec-contents-nav .contentsOther figure {
  width: 370px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}
@media only screen and (max-width: 1200px) {
  section.sec-contents-nav .contentsOther figure {
    width: 290px;
  }
}
@media only screen and (max-width: 991px) {
  section.sec-contents-nav .contentsOther figure {
    width: 240px;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-contents-nav .contentsOther figure {
    width: 100%;
  }
}
section.sec-contents-nav .contentsOther p {
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(1.5584415584vw, 24px);
  font-weight: 700;
  line-height: 140%; /* 33.6px */
}
@media only screen and (max-width: 767px) {
  section.sec-contents-nav .contentsOther p {
    margin: 16px 0;
    font-size: 16px;
  }
}
section.sec-contents-nav .contentsOther p span {
  color: var(--NICE_green, #007440);
}

/*nav-scroll
------------------------------------------*/
.navScrollWrapBox {
  padding-bottom: 168px;
}
@media only screen and (max-width: 1024px) {
  .navScrollWrapBox {
    padding-bottom: 84px;
  }
}
.navScrollWrapBox .nav-scroll {
  position: sticky;
  top: 168px;
  left: 40px;
  display: flex;
  gap: 32px;
  padding: 40px 0 40px 32px;
  width: 240px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 4px;
  border-top: 1px solid var(--NICE_green, #007440);
  border-right: 1px solid var(--NICE_green, #007440);
  border-bottom: 1px solid var(--NICE_green, #007440);
  background: #fff;
  z-index: 99;
}
.navScrollWrapBox .nav-scroll h3, .navScrollWrapBox .nav-scroll h3 span {
  margin: 0;
}
.navScrollWrapBox .nav-scroll .pagejumpContents {
  position: relative;
  width: 100%;
  padding: 0 32px 0 0;
}
.navScrollWrapBox .nav-scroll .pagejumpContents .pagejumpList ul li {
  margin-block: var(--leading-trim);
}
.navScrollWrapBox .nav-scroll .pagejumpContents .pagejumpList ul li + li {
  margin-top: 24px;
}
.navScrollWrapBox .nav-scroll .pagejumpContents .pagejumpList ul li a {
  position: relative;
  color: var(--Pale-Green, #9BA49F);
  font-size: min(0.9090909091vw, 14px);
  font-weight: 500;
  line-height: normal;
  transition: all ease-out 0.3s;
}
.navScrollWrapBox .nav-scroll .pagejumpContents .pagejumpList ul li a.active {
  color: var(--Soutetsu-Navy, #1E2549);
}
@media (hover: hover) and (pointer: fine) {
  .navScrollWrapBox .nav-scroll .pagejumpContents .pagejumpList ul li a:hover {
    color: var(--Soutetsu-Navy, #1E2549);
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .navScrollWrapBox .nav-scroll .pagejumpContents .pagejumpList ul li a:hover {
    color: var(--Soutetsu-Navy, #1E2549);
  }
}
.navScrollWrapBox .nav-scroll .pagejumpContents .btnList {
  margin-top: 24px;
}
.navScrollWrapBox .nav-scroll .pagejumpContents .btnList li + li {
  margin-top: 8px;
}
.navScrollWrapBox .nav-scroll .pagejumpContents .btnList li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  border-radius: 20px;
  font-size: min(0.9090909091vw, 14px);
  font-weight: 500;
  transition: all ease-out 0.3s;
}
.navScrollWrapBox .nav-scroll .pagejumpContents .btnList li a.black {
  background: #1E2549;
  color: #fff;
}
.navScrollWrapBox .nav-scroll .pagejumpContents .btnList li a.black .icn {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 4px;
}
.navScrollWrapBox .nav-scroll .pagejumpContents .btnList li a.black .icn svg {
  fill: #fff;
  transition: all ease-out 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .navScrollWrapBox .nav-scroll .pagejumpContents .btnList li a.black:hover {
    background: #00FFA9;
    color: #1E2549;
  }
  .navScrollWrapBox .nav-scroll .pagejumpContents .btnList li a.black:hover .icn svg {
    fill: #1E2549;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .navScrollWrapBox .nav-scroll .pagejumpContents .btnList li a.black:hover {
    background: #00FFA9;
    color: #1E2549;
  }
  .navScrollWrapBox .nav-scroll .pagejumpContents .btnList li a.black:hover .icn svg {
    fill: #1E2549;
  }
}
.navScrollWrapBox .nav-scroll .pagejumpContents .btnList li a.orange {
  background: #F4774E;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .navScrollWrapBox .nav-scroll .pagejumpContents .btnList li a.orange:hover {
    background: #fff;
    color: #F4774E;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .navScrollWrapBox .nav-scroll .pagejumpContents .btnList li a.orange:hover {
    background: #fff;
    color: #F4774E;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  }
}
.navScrollWrapBox .nav-scroll .pagejumpContents .btnList li a.line {
  background: #fff;
  border: 2px solid #06C755;
  color: #06C755;
}
@media (hover: hover) and (pointer: fine) {
  .navScrollWrapBox .nav-scroll .pagejumpContents .btnList li a.line:hover {
    background: #06C755;
    color: #fff;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .navScrollWrapBox .nav-scroll .pagejumpContents .btnList li a.line:hover {
    background: #06C755;
    color: #fff;
  }
}
.navScrollWrapBox .nav-scroll .pagejumpContents #nowArrow {
  position: absolute;
  right: 0;
  stroke-width: 1px;
  stroke: var(--NICE_green, #007440);
  transition: all ease-out 0.3s;
}
.navScrollWrapBox .nav-scroll .pagejumpContents #nowArrow.navScrollLinkNews {
  top: 5px;
}
.navScrollWrapBox .nav-scroll .pagejumpContents #nowArrow.navScrollLinkAchievements {
  top: 50px;
}
.navScrollWrapBox .nav-scroll .pagejumpContents #nowArrow.navScrollLinkTripleAppraisal {
  top: 92px;
}
.navScrollWrapBox .nav-scroll .pagejumpContents #nowArrow.navScrollLinkNewPropertyInfo {
  top: 134px;
}
.navScrollWrapBox .nav-scroll .pagejumpContents #nowArrow.navScrollLinkSearch {
  top: 176px;
}
.navScrollWrapBox .nav-scroll .pagejumpContents #nowArrow.navScrollLinkStoreInfo {
  top: 218px;
}
.navScrollWrapBox .nav-scroll .pagejumpContents #nowArrow.navScrollLinkOurStaff {
  top: 260px;
}
@media screen and (max-height: 770px) {
  .navScrollWrapBox .nav-scroll {
    top: 118px;
    padding: 30px 0 30px 32px;
    gap: 22px;
  }
  .navScrollWrapBox .nav-scroll .pagejumpContents .btnList li a {
    height: 30px;
  }
}
.navScrollWrapBox .navScrollWrap {
  position: relative;
  padding-left: 349px;
}
@media only screen and (max-width: 1024px) {
  .navScrollWrapBox .navScrollWrap {
    padding-left: 0;
  }
}

/*sec-news
------------------------------------------*/
section.sec-news {
  padding-bottom: 168px;
  border-top: 1px solid var(--gray, #E4E4E4);
}
@media only screen and (max-width: 1024px) {
  section.sec-news {
    margin-left: 20px;
    padding-bottom: 84px;
    border-top: none;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-news h3 {
    margin-top: 0;
    margin-right: 20px;
    margin-bottom: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray, #E4E4E4);
  }
}
section.sec-news .newsListWrap {
  position: relative;
}
section.sec-news .newsListWrap .splide__arrows .splide__arrow {
  top: -130px;
  transform: none;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: #fff;
  opacity: 1;
  transition: all ease-out 0.3s;
}
@media only screen and (max-width: 1024px) {
  section.sec-news .newsListWrap .splide__arrows .splide__arrow {
    top: -84px;
    width: 36px;
    height: 36px;
  }
}
section.sec-news .newsListWrap .splide__arrows .splide__arrow svg {
  fill: #007440;
  transition: all ease-out 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  section.sec-news .newsListWrap .splide__arrows .splide__arrow:hover {
    background: #007440;
  }
  section.sec-news .newsListWrap .splide__arrows .splide__arrow:hover svg {
    fill: #fff;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  section.sec-news .newsListWrap .splide__arrows .splide__arrow:hover {
    background: #007440;
  }
  section.sec-news .newsListWrap .splide__arrows .splide__arrow:hover svg {
    fill: #fff;
  }
}
section.sec-news .newsListWrap .splide__arrows .splide__arrow--prev {
  left: inherit;
  right: 119px;
}
@media only screen and (max-width: 1024px) {
  section.sec-news .newsListWrap .splide__arrows .splide__arrow--prev {
    right: 60px;
  }
}
section.sec-news .newsListWrap .splide__arrows .splide__arrow--next {
  right: 39px;
}
@media only screen and (max-width: 1024px) {
  section.sec-news .newsListWrap .splide__arrows .splide__arrow--next {
    right: 20px;
  }
}
section.sec-news .newsListWrap .newsListSlider a .newsImg {
  aspect-ratio: 448/295;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
section.sec-news .newsListWrap .newsListSlider a .newsImg img {
  width: 100%;
  height: 100% !important;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all ease-out 0.3s;
}
section.sec-news .newsListWrap .newsListSlider a .newsContents {
  padding: 0 24px;
}
@media only screen and (max-width: 1024px) {
  section.sec-news .newsListWrap .newsListSlider a .newsContents {
    padding: 0 16px;
  }
}
section.sec-news .newsListWrap .newsListSlider a .newsContents .newsTitle {
  margin-top: 32px;
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(1.2987012987vw, 20px);
  font-weight: 500;
  line-height: 140%; /* 28px */
}
@media only screen and (max-width: 1024px) {
  section.sec-news .newsListWrap .newsListSlider a .newsContents .newsTitle {
    margin-top: 16px;
    font-size: 12px;
  }
}
section.sec-news .newsListWrap .newsListSlider a .newsContents .newsDetail {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--NICE_green, #007440);
}
@media only screen and (max-width: 1024px) {
  section.sec-news .newsListWrap .newsListSlider a .newsContents .newsDetail {
    margin-top: 16px;
    padding-top: 8px;
  }
}
section.sec-news .newsListWrap .newsListSlider a .newsContents .newsDetail .newsCategory {
  display: flex;
  padding: 3px 8px;
  flex-direction: column;
  align-items: flex-end;
  border-radius: 4px;
  border: 1px solid var(--NICE_green, #007440);
  color: var(--NICE_green, #007440);
  text-align: center;
  font-size: min(0.9090909091vw, 14px);
  font-weight: 500;
  line-height: 140%; /* 19.6px */
}
@media only screen and (max-width: 1024px) {
  section.sec-news .newsListWrap .newsListSlider a .newsContents .newsDetail .newsCategory {
    font-size: 13px;
  }
}
section.sec-news .newsListWrap .newsListSlider a .newsContents .newsDetail .newsDate {
  color: var(--Soutetsu-Navy, #1E2549);
  text-align: right;
  font-size: min(1.038961039vw, 16px);
  font-weight: 500;
  line-height: 120%; /* 19.2px */
}
@media only screen and (max-width: 1024px) {
  section.sec-news .newsListWrap .newsListSlider a .newsContents .newsDetail .newsDate {
    font-size: 13px;
  }
}
@media (hover: hover) and (pointer: fine) {
  section.sec-news .newsListWrap .newsListSlider a:hover .newsImg img {
    transform: scale(1.1);
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  section.sec-news .newsListWrap .newsListSlider a:hover .newsImg img {
    transform: scale(1.1);
  }
}
section.sec-news .newsLinkWrap {
  margin-top: 104px;
  padding-top: 64px;
  padding-right: 40px;
  border-top: 1px solid var(--gray, #E4E4E4);
}
@media only screen and (max-width: 1024px) {
  section.sec-news .newsLinkWrap {
    margin-top: 50px;
    margin-right: 20px;
    padding-top: 32px;
    padding-right: 0;
  }
}
section.sec-news .newsLinkWrap ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  section.sec-news .newsLinkWrap ul {
    flex-flow: column;
  }
}
section.sec-news .newsLinkWrap ul > li {
  width: calc(50% - 8px);
}
@media only screen and (max-width: 1024px) {
  section.sec-news .newsLinkWrap ul > li {
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-news .newsLinkWrap ul > li + li {
    margin-top: 24px;
  }
}
section.sec-news .newsLinkWrap ul > li > a {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
section.sec-news .newsLinkWrap ul > li > a figure {
  width: 293px;
  height: 180px;
  flex-shrink: 0;
  aspect-ratio: 293/180;
  border-radius: 16px;
  overflow: hidden;
}
@media only screen and (max-width: 1919px) {
  section.sec-news .newsLinkWrap ul > li > a figure {
    width: 250px;
    height: 154px;
    aspect-ratio: 250/154;
  }
}
@media only screen and (max-width: 1536px) {
  section.sec-news .newsLinkWrap ul > li > a figure {
    width: 200px;
    height: 123px;
    aspect-ratio: 200/123;
  }
}
@media only screen and (max-width: 1440px) {
  section.sec-news .newsLinkWrap ul > li > a figure {
    width: 160px;
    height: 98px;
    aspect-ratio: 160/98;
  }
}
@media only screen and (max-width: 1200px) {
  section.sec-news .newsLinkWrap ul > li > a figure {
    width: 110px;
    height: 68px;
    aspect-ratio: 110/68;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-news .newsLinkWrap ul > li > a figure {
    width: 60px;
    height: 60px;
    aspect-ratio: 1;
    border-radius: 8px;
  }
}
section.sec-news .newsLinkWrap ul > li > a figure img {
  transition: all ease-out 0.3s;
}
@media only screen and (max-width: 1024px) {
  section.sec-news .newsLinkWrap ul > li > a figure img {
    height: 100% !important;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
section.sec-news .newsLinkWrap ul > li > a .newsLink {
  display: flex;
  flex-flow: column;
  width: calc(100% - 40px - 293px);
  padding-right: 40px;
}
@media only screen and (max-width: 1919px) {
  section.sec-news .newsLinkWrap ul > li > a .newsLink {
    width: calc(100% - 40px - 250px);
  }
}
@media only screen and (max-width: 1536px) {
  section.sec-news .newsLinkWrap ul > li > a .newsLink {
    width: calc(100% - 40px - 200px);
  }
}
@media only screen and (max-width: 1440px) {
  section.sec-news .newsLinkWrap ul > li > a .newsLink {
    width: calc(100% - 20px - 160px);
    padding-right: 20px;
  }
}
@media only screen and (max-width: 1200px) {
  section.sec-news .newsLinkWrap ul > li > a .newsLink {
    width: calc(100% - 20px - 110px);
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-news .newsLinkWrap ul > li > a .newsLink {
    width: calc(100% - 60px - 20px);
  }
}
section.sec-news .newsLinkWrap ul > li > a .newsLink h4 {
  display: flex;
  flex-flow: column;
  flex-grow: 1;
}
@media only screen and (max-width: 1440px) {
  section.sec-news .newsLinkWrap ul > li > a .newsLink h4 {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-news .newsLinkWrap ul > li > a .newsLink h4 {
    margin-bottom: 0;
  }
}
section.sec-news .newsLinkWrap ul > li > a .newsLink h4 .jp {
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(1.5584415584vw, 24px);
  font-weight: 700;
}
@media only screen and (max-width: 1024px) {
  section.sec-news .newsLinkWrap ul > li > a .newsLink h4 .jp {
    font-size: 16px;
  }
}
section.sec-news .newsLinkWrap ul > li > a .newsLink h4 .en {
  margin-top: 16px;
  color: var(--Pale-Green, #9BA49F);
  font-size: min(1.038961039vw, 16px);
  font-weight: 500;
  line-height: 120%; /* 19.2px */
}
@media only screen and (max-width: 1024px) {
  section.sec-news .newsLinkWrap ul > li > a .newsLink h4 .en {
    margin-top: 8px;
    font-size: 11px;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-news .newsLinkWrap ul > li > a .newsLink .viewmoreWrap {
    margin-top: 24px;
  }
}
section.sec-news .newsLinkWrap ul > li > a .newsLink .viewmoreWrap .line {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 8px;
  background: var(--Soutetsu-Navy, #1E2549);
  overflow: hidden;
}
section.sec-news .newsLinkWrap ul > li > a .newsLink .viewmoreWrap .line::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #00FFA9;
  transform-origin: top left;
  transform: scale(0, 1);
  transition: all ease-out 0.3s;
  opacity: 0;
}
section.sec-news .newsLinkWrap ul > li > a .newsLink .viewmoreWrap .more {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: var(--Soutetsu-Navy, #1E2549);
  text-align: right;
  font-size: min(1.038961039vw, 16px);
  font-weight: 600;
  line-height: 120%; /* 19.2px */
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  section.sec-news .newsLinkWrap ul > li > a .newsLink .viewmoreWrap .more {
    font-size: 16px;
  }
}
@media (hover: hover) and (pointer: fine) {
  section.sec-news .newsLinkWrap ul > li > a:hover figure img {
    transform: scale(1.1);
  }
  section.sec-news .newsLinkWrap ul > li > a:hover .newsLink .viewmoreWrap .line::before {
    transform: scale(1, 1);
    opacity: 1;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  section.sec-news .newsLinkWrap ul > li > a:hover figure img {
    transform: scale(1.1);
  }
  section.sec-news .newsLinkWrap ul > li > a:hover .newsLink .viewmoreWrap .line::before {
    transform: scale(1, 1);
    opacity: 1;
  }
}

/*sec-achievements
------------------------------------------*/
section.sec-achievements {
  padding-top: 104px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  section.sec-achievements {
    padding: 52px 0 0 20px;
    border-radius: 16px;
  }
}
section.sec-achievements h3 {
  margin-top: 0;
  padding-top: 48px;
  border-top: 1px solid var(--gray, #E4E4E4);
}
@media only screen and (max-width: 1024px) {
  section.sec-achievements h3 {
    padding-top: 24px;
    padding-right: 20px;
  }
}
section.sec-achievements .achievementsWrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  section.sec-achievements .achievementsWrap {
    flex-flow: column;
  }
}
section.sec-achievements .achievementsWrap .achievementsTxt {
  width: calc(30% - 118px);
}
@media only screen and (max-width: 1919px) {
  section.sec-achievements .achievementsWrap .achievementsTxt {
    width: calc(35% - 80px);
  }
}
@media only screen and (max-width: 1536px) {
  section.sec-achievements .achievementsWrap .achievementsTxt {
    width: calc(35% - 50px);
  }
}
@media only screen and (max-width: 1200px) {
  section.sec-achievements .achievementsWrap .achievementsTxt {
    width: calc(35% - 30px);
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-achievements .achievementsWrap .achievementsTxt {
    width: 100%;
    padding-right: 20px;
  }
}
section.sec-achievements .achievementsWrap .achievementsTxt .achievementsBox {
  border-bottom: 6px solid #007440;
}
@media only screen and (max-width: 1024px) {
  section.sec-achievements .achievementsWrap .achievementsTxt .achievementsBox {
    border-bottom: 3px solid #007440;
  }
}
section.sec-achievements .achievementsWrap .achievementsTxt .achievementsBox h4 {
  position: relative;
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(2.0779220779vw, 32px);
  font-weight: 700;
  line-height: 120%; /* 38.4px */
}
@media only screen and (max-width: 1919px) {
  section.sec-achievements .achievementsWrap .achievementsTxt .achievementsBox h4 {
    font-size: min(1.8181818182vw, 28px);
  }
}
@media only screen and (max-width: 1536px) {
  section.sec-achievements .achievementsWrap .achievementsTxt .achievementsBox h4 {
    font-size: min(1.6883116883vw, 26px);
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-achievements .achievementsWrap .achievementsTxt .achievementsBox h4 {
    font-size: 24px;
  }
}
section.sec-achievements .achievementsWrap .achievementsTxt .achievementsBox h4::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: calc(100% - 6em - 18px);
  height: 6px;
  background: #007440;
}
@media only screen and (max-width: 1024px) {
  section.sec-achievements .achievementsWrap .achievementsTxt .achievementsBox h4::after {
    height: 3px;
  }
}
section.sec-achievements .achievementsWrap .achievementsTxt .achievementsBox p {
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(2.0779220779vw, 32px);
  font-weight: 700;
  line-height: 120%; /* 38.4px */
}
@media only screen and (max-width: 1919px) {
  section.sec-achievements .achievementsWrap .achievementsTxt .achievementsBox p {
    font-size: min(1.8181818182vw, 28px);
  }
}
@media only screen and (max-width: 1536px) {
  section.sec-achievements .achievementsWrap .achievementsTxt .achievementsBox p {
    font-size: min(1.6883116883vw, 26px);
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-achievements .achievementsWrap .achievementsTxt .achievementsBox p {
    font-size: 24px;
  }
}
section.sec-achievements .achievementsWrap .achievementsTxt .achievementsBox p .num {
  margin-block: var(--leading-trim);
  color: var(--NICE_green, #007440);
  font-size: min(6.2337662338vw, 96px);
  font-weight: 700;
  line-height: 120%;
}
@media only screen and (max-width: 1919px) {
  section.sec-achievements .achievementsWrap .achievementsTxt .achievementsBox p .num {
    font-size: min(5.3246753247vw, 82px);
  }
}
@media only screen and (max-width: 1536px) {
  section.sec-achievements .achievementsWrap .achievementsTxt .achievementsBox p .num {
    font-size: min(4.8051948052vw, 74px);
  }
}
@media only screen and (max-width: 1200px) {
  section.sec-achievements .achievementsWrap .achievementsTxt .achievementsBox p .num {
    line-height: 120%;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-achievements .achievementsWrap .achievementsTxt .achievementsBox p .num {
    font-size: 56px;
    line-height: 140%;
  }
}
section.sec-achievements .achievementsWrap .achievementsTxt .achievementsRead {
  margin-top: 32px;
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(1.2987012987vw, 20px);
  font-weight: 500;
  line-height: 170%; /* 34px */
}
@media only screen and (max-width: 1200px) {
  section.sec-achievements .achievementsWrap .achievementsTxt .achievementsRead {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-achievements .achievementsWrap .achievementsTxt .achievementsRead {
    margin-top: 16px;
    font-size: 14px;
  }
}
section.sec-achievements .achievementsWrap .achievementsImg {
  width: 70%;
  border-top-left-radius: 8px;
  overflow: hidden;
}
@media only screen and (max-width: 1919px) {
  section.sec-achievements .achievementsWrap .achievementsImg {
    width: 65%;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-achievements .achievementsWrap .achievementsImg {
    width: 100%;
    margin-top: 24px;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-achievements .achievementsWrap .achievementsImg figure {
    border-bottom-right-radius: 16px;
  }
}

/*sec-strengths
------------------------------------------*/
section.sec-strengths {
  padding-right: 40px;
  padding-bottom: 104px;
}
@media only screen and (max-width: 1024px) {
  section.sec-strengths {
    padding: 56px 20px 52px;
  }
}
section.sec-strengths h3 {
  margin-top: 104px;
  padding-top: 48px;
  border-top: 1px solid var(--gray, #E4E4E4);
}
@media only screen and (max-width: 1024px) {
  section.sec-strengths h3 {
    margin-top: 0;
    padding-top: 24px;
  }
}
section.sec-strengths h3 .jp {
  color: #fff;
}
section.sec-strengths h3 .en {
  color: #00FFA9;
}
section.sec-strengths .strengthsWrap .strengthsList {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  section.sec-strengths .strengthsWrap .strengthsList {
    flex-flow: column;
  }
}
section.sec-strengths .strengthsWrap .strengthsList > li {
  width: calc(33.3333333333% - 8px);
  padding: 40px;
  background: #fff;
  border-radius: 8px;
}
@media only screen and (max-width: 1536px) {
  section.sec-strengths .strengthsWrap .strengthsList > li {
    padding: 30px;
  }
}
@media only screen and (max-width: 1440px) {
  section.sec-strengths .strengthsWrap .strengthsList > li {
    padding: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-strengths .strengthsWrap .strengthsList > li {
    padding: 24px;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-strengths .strengthsWrap .strengthsList > li {
    width: 100%;
    padding: 24px;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-strengths .strengthsWrap .strengthsList > li + li {
    margin-top: 8px;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-strengths .strengthsWrap .strengthsList > li dl {
    display: flex;
    flex-flow: row wrap;
    align-items: baseline;
  }
}
section.sec-strengths .strengthsWrap .strengthsList > li dl dt, section.sec-strengths .strengthsWrap .strengthsList > li dl dd {
  margin-block: var(--leading-trim);
  color: var(--Soutetsu-Navy, #1E2549);
  line-height: 120%;
}
section.sec-strengths .strengthsWrap .strengthsList > li dl dt {
  font-size: min(3.1168831169vw, 48px);
  font-weight: 600;
}
@media only screen and (max-width: 1919px) {
  section.sec-strengths .strengthsWrap .strengthsList > li dl dt {
    font-size: min(2.5974025974vw, 40px);
  }
}
@media only screen and (max-width: 1440px) {
  section.sec-strengths .strengthsWrap .strengthsList > li dl dt {
    font-size: 36px;
  }
}
@media only screen and (max-width: 1200px) {
  section.sec-strengths .strengthsWrap .strengthsList > li dl dt {
    font-size: 30px;
  }
}
@media only screen and (max-width: 991px) {
  section.sec-strengths .strengthsWrap .strengthsList > li dl dt {
    font-size: 28px;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-strengths .strengthsWrap .strengthsList > li dl dt {
    width: 50px;
    font-size: 24px;
  }
}
section.sec-strengths .strengthsWrap .strengthsList > li dl dd {
  margin-top: 32px;
  font-size: min(2.5974025974vw, 40px);
  font-weight: 700;
}
@media only screen and (max-width: 1919px) {
  section.sec-strengths .strengthsWrap .strengthsList > li dl dd {
    font-size: min(2.2077922078vw, 34px);
  }
}
@media only screen and (max-width: 1440px) {
  section.sec-strengths .strengthsWrap .strengthsList > li dl dd {
    font-size: 25px;
  }
}
@media only screen and (max-width: 1200px) {
  section.sec-strengths .strengthsWrap .strengthsList > li dl dd {
    margin-top: 24px;
    font-size: 19px;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-strengths .strengthsWrap .strengthsList > li dl dd {
    font-size: 24px;
  }
}
@media only screen and (max-width: 991px) {
  section.sec-strengths .strengthsWrap .strengthsList > li dl dd {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-strengths .strengthsWrap .strengthsList > li dl dd {
    width: calc(100% - 50px - 16px);
    margin-top: 0;
  }
}
section.sec-strengths .strengthsWrap h4 {
  margin-top: 16px;
  padding: 40px;
  align-self: stretch;
  border-radius: 8px;
  border: 3px solid var(--white, #FFF);
  color: var(--white, #FFF);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: min(2.3376623377vw, 36px);
  font-weight: 700;
  line-height: 170%; /* 61.2px */
}
@media only screen and (max-width: 1440px) {
  section.sec-strengths .strengthsWrap h4 {
    font-size: min(2.0779220779vw, 32px);
  }
}
@media only screen and (max-width: 1200px) {
  section.sec-strengths .strengthsWrap h4 {
    padding: 20px;
    font-size: min(1.9480519481vw, 30px);
  }
}
section.sec-strengths .strengthsWrap .strengthsImg {
  margin-top: 16px;
  border-radius: 8px;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  section.sec-strengths .strengthsWrap .strengthsImg {
    margin-top: 10px;
    padding: 24px;
    background: var(--white, #FFF);
  }
}
section.sec-strengths .strengthsWrap .caption {
  margin-top: 16px;
  color: var(--white, #FFF);
  font-size: min(1.038961039vw, 16px);
  font-weight: 500;
  line-height: 170%; /* 27.2px */
}
@media only screen and (max-width: 1024px) {
  section.sec-strengths .strengthsWrap .caption {
    margin-top: 10px;
    font-size: 10px;
  }
}

/*sec-contact
------------------------------------------*/
section.sec-contact {
  margin-top: 125px;
  border-top: 1px solid var(--gray, #E4E4E4);
  padding-top: 48px;
  padding-right: 40px;
  padding-bottom: 168px;
}
@media only screen and (max-width: 1024px) {
  section.sec-contact {
    margin: 83px 20px 108px;
    padding-right: 0;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-contact {
    margin-top: 65px;
    padding-top: 30px;
  }
}
section.sec-contact h3 {
  margin-top: 0;
}
@media only screen and (max-width: 1024px) {
  section.sec-contact h3 {
    margin-top: 24px;
  }
}
section.sec-contact .contactWrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 1200px) {
  section.sec-contact .contactWrap {
    flex-flow: column;
  }
}
section.sec-contact .contactWrap .contactTxt {
  width: calc(40% - 74px);
}
@media only screen and (max-width: 1536px) {
  section.sec-contact .contactWrap .contactTxt {
    width: calc(45% - 40px);
  }
}
@media only screen and (max-width: 1440px) {
  section.sec-contact .contactWrap .contactTxt {
    width: calc(45% - 25px);
  }
}
@media only screen and (max-width: 1200px) {
  section.sec-contact .contactWrap .contactTxt {
    width: 100%;
  }
}
section.sec-contact .contactWrap .contactTxt .contactRead {
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(1.2987012987vw, 20px);
  font-weight: 500;
  line-height: 170%; /* 34px */
}
@media only screen and (max-width: 1024px) {
  section.sec-contact .contactWrap .contactTxt .contactRead {
    font-size: 16px;
  }
}
section.sec-contact .contactWrap .contactTxt .contactTel a {
  margin: 16px 0;
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(4.2857142857vw, 66px);
  font-weight: 600;
  line-height: 120%; /* 96px */
}
@media only screen and (max-width: 1919px) {
  section.sec-contact .contactWrap .contactTxt .contactTel a {
    font-size: min(4.025974026vw, 62px);
  }
}
@media only screen and (max-width: 1536px) {
  section.sec-contact .contactWrap .contactTxt .contactTel a {
    font-size: min(3.6363636364vw, 56px);
  }
}
@media only screen and (max-width: 1440px) {
  section.sec-contact .contactWrap .contactTxt .contactTel a {
    font-size: min(3.3766233766vw, 52px);
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-contact .contactWrap .contactTxt .contactTel a {
    margin: 8px 0;
    font-size: 48px;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-contact .contactWrap .contactTxt .contactTel a {
    font-size: 42px;
  }
}
section.sec-contact .contactWrap .contactTxt .contactTel p {
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(1.038961039vw, 16px);
  font-weight: 500;
  line-height: 170%; /* 27.2px */
}
@media only screen and (max-width: 1024px) {
  section.sec-contact .contactWrap .contactTxt .contactTel p {
    font-size: 13px;
  }
}
section.sec-contact .contactWrap .contactTxt .contactBtn {
  margin-top: 40px;
}
@media only screen and (max-width: 1200px) {
  section.sec-contact .contactWrap .contactTxt .contactBtn {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-contact .contactWrap .contactTxt .contactBtn {
    margin-top: 16px;
  }
}
@media only screen and (max-width: 1280px) {
  section.sec-contact .contactWrap .contactTxt .contactBtn a {
    width: 100%;
  }
}
@media only screen and (max-width: 1200px) {
  section.sec-contact .contactWrap .contactTxt .contactBtn a {
    width: 335px;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-contact .contactWrap .contactTxt .contactBtn a {
    width: 100%;
  }
}
section.sec-contact .contactWrap .contactTxt .contactBtn a + a {
  margin-top: 16px;
}
@media only screen and (max-width: 1024px) {
  section.sec-contact .contactWrap .contactTxt .contactBtn a + a {
    margin-top: 8px;
  }
}
section.sec-contact .contactWrap .contactTxt .addressWrap {
  display: flex;
  width: 100%;
  padding: 16px 32px;
  justify-content: space-between;
  align-items: center;
  margin-top: 65px;
  border-radius: 8px;
  border: 2px solid var(--NICE_green, #007440);
  background: var(--white, #FFF);
}
@media only screen and (max-width: 1919px) {
  section.sec-contact .contactWrap .contactTxt .addressWrap {
    padding: 16px 28px;
    gap: 15px;
  }
}
@media only screen and (max-width: 1536px) {
  section.sec-contact .contactWrap .contactTxt .addressWrap {
    flex-flow: column;
    align-items: flex-start;
    margin-top: 50px;
  }
}
@media only screen and (max-width: 1200px) {
  section.sec-contact .contactWrap .contactTxt .addressWrap {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-contact .contactWrap .contactTxt .addressWrap {
    margin-top: 16px;
    padding: 16px 24px;
    gap: 0;
  }
}
section.sec-contact .contactWrap .contactTxt .addressWrap p {
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: 16px;
  font-weight: 500;
  line-height: 170%; /* 27.2px */
}
section.sec-contact .contactWrap .contactTxt .addressWrap a {
  display: flex;
  width: 120px;
  height: 40px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-block: var(--leading-trim);
  border-radius: 20px;
  background: var(--Soutetsu-Navy, #1E2549);
  color: var(--white, #FFF);
  font-size: 14px;
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  section.sec-contact .contactWrap .contactTxt .addressWrap a {
    margin-top: 10px;
  }
}
section.sec-contact .contactWrap .contactMap {
  width: 60%;
}
@media only screen and (max-width: 1536px) {
  section.sec-contact .contactWrap .contactMap {
    width: calc(55% - 40px);
  }
}
@media only screen and (max-width: 1440px) {
  section.sec-contact .contactWrap .contactMap {
    width: calc(55% - 25px);
  }
}
@media only screen and (max-width: 1200px) {
  section.sec-contact .contactWrap .contactMap {
    width: 100%;
    margin-top: 16px;
  }
}
section.sec-contact .contactWrap .contactMap figure {
  border-radius: 8px;
  overflow: hidden;
}

/*sec-tripleAppraisal・sec-directPurchase
------------------------------------------*/
section.sec-tripleAppraisal,
section.sec-directPurchase {
  padding-right: 40px;
  padding-bottom: 92px;
}
@media only screen and (max-width: 1200px) {
  section.sec-tripleAppraisal,
  section.sec-directPurchase {
    padding-bottom: 52px;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-tripleAppraisal,
  section.sec-directPurchase {
    padding: 28px 20px 52px;
  }
}
section.sec-tripleAppraisal .tripleAppraisalAbout,
section.sec-tripleAppraisal .directPurchaseAbout,
section.sec-directPurchase .tripleAppraisalAbout,
section.sec-directPurchase .directPurchaseAbout {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 1200px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout,
  section.sec-tripleAppraisal .directPurchaseAbout,
  section.sec-directPurchase .tripleAppraisalAbout,
  section.sec-directPurchase .directPurchaseAbout {
    flex-flow: column;
  }
}
section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalAboutTxt,
section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseAboutTxt,
section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalAboutTxt,
section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseAboutTxt,
section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalAboutTxt,
section.sec-directPurchase .tripleAppraisalAbout .directPurchaseAboutTxt,
section.sec-directPurchase .directPurchaseAbout .tripleAppraisalAboutTxt,
section.sec-directPurchase .directPurchaseAbout .directPurchaseAboutTxt {
  width: calc(40% - 33.5px);
}
@media only screen and (max-width: 1919px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalAboutTxt,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseAboutTxt,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalAboutTxt,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseAboutTxt,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalAboutTxt,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseAboutTxt,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalAboutTxt,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseAboutTxt {
    width: calc(40% - 20px);
  }
}
@media only screen and (max-width: 1200px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalAboutTxt,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseAboutTxt,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalAboutTxt,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseAboutTxt,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalAboutTxt,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseAboutTxt,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalAboutTxt,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseAboutTxt {
    display: contents;
  }
}
section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalAboutTxt h3,
section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseAboutTxt h3,
section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalAboutTxt h3,
section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseAboutTxt h3,
section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalAboutTxt h3,
section.sec-directPurchase .tripleAppraisalAbout .directPurchaseAboutTxt h3,
section.sec-directPurchase .directPurchaseAbout .tripleAppraisalAboutTxt h3,
section.sec-directPurchase .directPurchaseAbout .directPurchaseAboutTxt h3 {
  position: relative;
  margin-top: 80px;
  margin-bottom: 48px;
}
@media only screen and (max-width: 1200px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalAboutTxt h3,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseAboutTxt h3,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalAboutTxt h3,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseAboutTxt h3,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalAboutTxt h3,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseAboutTxt h3,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalAboutTxt h3,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseAboutTxt h3 {
    order: 1;
    margin: 24px 0 32px;
  }
}
section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalAboutTxt h3 .jp,
section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseAboutTxt h3 .jp,
section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalAboutTxt h3 .jp,
section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseAboutTxt h3 .jp,
section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalAboutTxt h3 .jp,
section.sec-directPurchase .tripleAppraisalAbout .directPurchaseAboutTxt h3 .jp,
section.sec-directPurchase .directPurchaseAbout .tripleAppraisalAboutTxt h3 .jp,
section.sec-directPurchase .directPurchaseAbout .directPurchaseAboutTxt h3 .jp {
  font-size: min(3.1168831169vw, 48px);
  color: #fff;
}
@media only screen and (max-width: 1919px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalAboutTxt h3 .jp,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseAboutTxt h3 .jp,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalAboutTxt h3 .jp,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseAboutTxt h3 .jp,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalAboutTxt h3 .jp,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseAboutTxt h3 .jp,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalAboutTxt h3 .jp,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseAboutTxt h3 .jp {
    font-size: min(2.5974025974vw, 40px);
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalAboutTxt h3 .jp,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseAboutTxt h3 .jp,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalAboutTxt h3 .jp,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseAboutTxt h3 .jp,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalAboutTxt h3 .jp,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseAboutTxt h3 .jp,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalAboutTxt h3 .jp,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseAboutTxt h3 .jp {
    font-size: 21px;
  }
}
section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalAboutTxt h3 .en,
section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseAboutTxt h3 .en,
section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalAboutTxt h3 .en,
section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseAboutTxt h3 .en,
section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalAboutTxt h3 .en,
section.sec-directPurchase .tripleAppraisalAbout .directPurchaseAboutTxt h3 .en,
section.sec-directPurchase .directPurchaseAbout .tripleAppraisalAboutTxt h3 .en,
section.sec-directPurchase .directPurchaseAbout .directPurchaseAboutTxt h3 .en {
  color: #00FFA9;
}
section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalAboutTxt h3 .freeIcn,
section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseAboutTxt h3 .freeIcn,
section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalAboutTxt h3 .freeIcn,
section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseAboutTxt h3 .freeIcn,
section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalAboutTxt h3 .freeIcn,
section.sec-directPurchase .tripleAppraisalAbout .directPurchaseAboutTxt h3 .freeIcn,
section.sec-directPurchase .directPurchaseAbout .tripleAppraisalAboutTxt h3 .freeIcn,
section.sec-directPurchase .directPurchaseAbout .directPurchaseAboutTxt h3 .freeIcn {
  position: absolute;
  top: -25px;
  right: 0;
  display: flex;
  width: 104px;
  height: 104px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 52px;
  border: 5px solid var(--neon-Green, #00FFA9);
  color: var(--white, #FFF);
  text-align: center;
  font-size: min(1.9480519481vw, 30px);
  font-weight: 700;
  line-height: 120%; /* 36px */
}
@media only screen and (max-width: 1919px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalAboutTxt h3 .freeIcn,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseAboutTxt h3 .freeIcn,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalAboutTxt h3 .freeIcn,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseAboutTxt h3 .freeIcn,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalAboutTxt h3 .freeIcn,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseAboutTxt h3 .freeIcn,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalAboutTxt h3 .freeIcn,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseAboutTxt h3 .freeIcn {
    width: 80px;
    height: 80px;
    font-size: min(1.5584415584vw, 24px);
  }
}
@media only screen and (max-width: 1536px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalAboutTxt h3 .freeIcn,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseAboutTxt h3 .freeIcn,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalAboutTxt h3 .freeIcn,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseAboutTxt h3 .freeIcn,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalAboutTxt h3 .freeIcn,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseAboutTxt h3 .freeIcn,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalAboutTxt h3 .freeIcn,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseAboutTxt h3 .freeIcn {
    top: -10px;
    width: 65px;
    height: 65px;
    font-size: min(1.2987012987vw, 20px);
  }
}
@media only screen and (max-width: 1440px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalAboutTxt h3 .freeIcn,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseAboutTxt h3 .freeIcn,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalAboutTxt h3 .freeIcn,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseAboutTxt h3 .freeIcn,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalAboutTxt h3 .freeIcn,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseAboutTxt h3 .freeIcn,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalAboutTxt h3 .freeIcn,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseAboutTxt h3 .freeIcn {
    right: -30px;
  }
}
@media only screen and (max-width: 1200px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalAboutTxt h3 .freeIcn,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseAboutTxt h3 .freeIcn,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalAboutTxt h3 .freeIcn,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseAboutTxt h3 .freeIcn,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalAboutTxt h3 .freeIcn,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseAboutTxt h3 .freeIcn,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalAboutTxt h3 .freeIcn,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseAboutTxt h3 .freeIcn {
    display: none;
  }
}
section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalAboutTxt h4,
section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseAboutTxt h4,
section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalAboutTxt h4,
section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseAboutTxt h4,
section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalAboutTxt h4,
section.sec-directPurchase .tripleAppraisalAbout .directPurchaseAboutTxt h4,
section.sec-directPurchase .directPurchaseAbout .tripleAppraisalAboutTxt h4,
section.sec-directPurchase .directPurchaseAbout .directPurchaseAboutTxt h4 {
  color: var(--white, #FFF);
  font-size: min(2.0779220779vw, 32px);
  font-weight: 700;
  line-height: 140%; /* 44.8px */
}
@media only screen and (max-width: 1200px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalAboutTxt h4,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseAboutTxt h4,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalAboutTxt h4,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseAboutTxt h4,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalAboutTxt h4,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseAboutTxt h4,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalAboutTxt h4,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseAboutTxt h4 {
    order: 2;
    font-size: 21px;
  }
}
section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalAboutTxt .readTxt,
section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseAboutTxt .readTxt,
section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalAboutTxt .readTxt,
section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseAboutTxt .readTxt,
section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalAboutTxt .readTxt,
section.sec-directPurchase .tripleAppraisalAbout .directPurchaseAboutTxt .readTxt,
section.sec-directPurchase .directPurchaseAbout .tripleAppraisalAboutTxt .readTxt,
section.sec-directPurchase .directPurchaseAbout .directPurchaseAboutTxt .readTxt {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: min(1.2987012987vw, 20px);
  font-weight: 500;
  line-height: 140%; /* 28px */
}
@media only screen and (max-width: 1200px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalAboutTxt .readTxt,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseAboutTxt .readTxt,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalAboutTxt .readTxt,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseAboutTxt .readTxt,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalAboutTxt .readTxt,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseAboutTxt .readTxt,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalAboutTxt .readTxt,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseAboutTxt .readTxt {
    order: 3;
    margin-top: 16px;
    font-size: 16px;
  }
}
section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalAboutTxt .linkBtn,
section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseAboutTxt .linkBtn,
section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalAboutTxt .linkBtn,
section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseAboutTxt .linkBtn,
section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalAboutTxt .linkBtn,
section.sec-directPurchase .tripleAppraisalAbout .directPurchaseAboutTxt .linkBtn,
section.sec-directPurchase .directPurchaseAbout .tripleAppraisalAboutTxt .linkBtn,
section.sec-directPurchase .directPurchaseAbout .directPurchaseAboutTxt .linkBtn {
  margin-top: 32px;
}
@media only screen and (max-width: 1200px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalAboutTxt .linkBtn,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseAboutTxt .linkBtn,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalAboutTxt .linkBtn,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseAboutTxt .linkBtn,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalAboutTxt .linkBtn,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseAboutTxt .linkBtn,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalAboutTxt .linkBtn,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseAboutTxt .linkBtn {
    order: 6;
    margin-top: 24px;
  }
}
section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalAboutTxt .caption,
section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseAboutTxt .caption,
section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalAboutTxt .caption,
section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseAboutTxt .caption,
section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalAboutTxt .caption,
section.sec-directPurchase .tripleAppraisalAbout .directPurchaseAboutTxt .caption,
section.sec-directPurchase .directPurchaseAbout .tripleAppraisalAboutTxt .caption,
section.sec-directPurchase .directPurchaseAbout .directPurchaseAboutTxt .caption {
  margin-top: 24px;
  padding-left: 1em;
  color: #fff;
  font-size: min(0.7142857143vw, 11px);
  font-weight: 500;
  line-height: 140%; /* 15.4px */
  text-indent: -1em;
}
@media only screen and (max-width: 1200px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalAboutTxt .caption,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseAboutTxt .caption,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalAboutTxt .caption,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseAboutTxt .caption,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalAboutTxt .caption,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseAboutTxt .caption,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalAboutTxt .caption,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseAboutTxt .caption {
    order: 7;
    margin-top: 24px;
    font-size: 10px;
  }
}
section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail,
section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail,
section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail,
section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail,
section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail,
section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail,
section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail,
section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail {
  width: calc(60% - 33.5px);
}
@media only screen and (max-width: 1919px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail {
    width: calc(60% - 20px);
  }
}
@media only screen and (max-width: 1200px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail {
    display: contents;
    width: 100%;
  }
}
section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ol,
section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ol,
section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ol,
section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ol,
section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ol,
section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ol,
section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ol,
section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ol {
  display: flex;
  flex-flow: row wrap;
}
@media only screen and (max-width: 1200px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ol,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ol,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ol,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ol,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ol,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ol,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ol,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ol {
    margin-top: 24px;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ol,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ol,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ol,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ol,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ol,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ol,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ol,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ol {
    flex-flow: column;
  }
}
section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ol > li,
section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ol > li,
section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ol > li,
section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ol > li,
section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ol > li,
section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ol > li,
section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ol > li,
section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ol > li {
  display: flex;
  width: 33.3333333333%;
  padding: 90px 40px 57px 40px;
  flex-direction: column;
}
@media only screen and (max-width: 1440px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ol > li,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ol > li,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ol > li,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ol > li,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ol > li,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ol > li,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ol > li,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ol > li {
    padding: 80px 20px 57px 20px;
  }
}
@media only screen and (max-width: 1200px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ol > li,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ol > li,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ol > li,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ol > li,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ol > li,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ol > li,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ol > li,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ol > li {
    padding: 24px 24px 40px;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ol > li,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ol > li,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ol > li,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ol > li,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ol > li,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ol > li,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ol > li,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ol > li {
    padding: 24px;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ol > li,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ol > li,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ol > li,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ol > li,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ol > li,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ol > li,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ol > li,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ol > li {
    width: 100%;
  }
}
section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ol > li:nth-child(1),
section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ol > li:nth-child(1),
section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ol > li:nth-child(1),
section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ol > li:nth-child(1),
section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ol > li:nth-child(1),
section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ol > li:nth-child(1),
section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ol > li:nth-child(1),
section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ol > li:nth-child(1) {
  background: #4CA73F;
  border-bottom-left-radius: 16px;
}
@media only screen and (max-width: 1200px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ol > li:nth-child(1),
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ol > li:nth-child(1),
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ol > li:nth-child(1),
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ol > li:nth-child(1),
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ol > li:nth-child(1),
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ol > li:nth-child(1),
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ol > li:nth-child(1),
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ol > li:nth-child(1) {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ol > li:nth-child(1),
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ol > li:nth-child(1),
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ol > li:nth-child(1),
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ol > li:nth-child(1),
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ol > li:nth-child(1),
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ol > li:nth-child(1),
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ol > li:nth-child(1),
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ol > li:nth-child(1) {
    border-bottom-left-radius: 0;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 0;
  }
}
section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ol > li:nth-child(2),
section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ol > li:nth-child(2),
section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ol > li:nth-child(2),
section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ol > li:nth-child(2),
section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ol > li:nth-child(2),
section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ol > li:nth-child(2),
section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ol > li:nth-child(2),
section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ol > li:nth-child(2) {
  background: #349D5A;
}
section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ol > li:nth-child(3),
section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ol > li:nth-child(3),
section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ol > li:nth-child(3),
section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ol > li:nth-child(3),
section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ol > li:nth-child(3),
section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ol > li:nth-child(3),
section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ol > li:nth-child(3),
section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ol > li:nth-child(3) {
  background: #12846E;
  border-bottom-right-radius: 16px;
}
@media only screen and (max-width: 1200px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ol > li:nth-child(3),
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ol > li:nth-child(3),
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ol > li:nth-child(3),
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ol > li:nth-child(3),
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ol > li:nth-child(3),
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ol > li:nth-child(3),
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ol > li:nth-child(3),
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ol > li:nth-child(3) {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ol > li:nth-child(3),
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ol > li:nth-child(3),
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ol > li:nth-child(3),
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ol > li:nth-child(3),
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ol > li:nth-child(3),
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ol > li:nth-child(3),
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ol > li:nth-child(3),
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ol > li:nth-child(3) {
    border-top-right-radius: 0;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
}
section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ol > li dl dt,
section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ol > li dl dd,
section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ol > li p,
section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ol > li dl dt,
section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ol > li dl dd,
section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ol > li p,
section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ol > li dl dt,
section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ol > li dl dd,
section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ol > li p,
section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ol > li dl dt,
section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ol > li dl dd,
section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ol > li p,
section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ol > li dl dt,
section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ol > li dl dd,
section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ol > li p,
section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ol > li dl dt,
section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ol > li dl dd,
section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ol > li p,
section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ol > li dl dt,
section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ol > li dl dd,
section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ol > li p,
section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ol > li dl dt,
section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ol > li dl dd,
section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ol > li p {
  margin-block: var(--leading-trim);
  color: var(--white, #FFF);
}
section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ol > li dl dt,
section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ol > li dl dt,
section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ol > li dl dt,
section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ol > li dl dt,
section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ol > li dl dt,
section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ol > li dl dt,
section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ol > li dl dt,
section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ol > li dl dt {
  font-size: min(2.5974025974vw, 40px);
  font-weight: 600;
  line-height: 120%; /* 48px */
}
@media only screen and (max-width: 1919px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ol > li dl dt,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ol > li dl dt,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ol > li dl dt,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ol > li dl dt,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ol > li dl dt,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ol > li dl dt,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ol > li dl dt,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ol > li dl dt {
    font-size: min(2.0779220779vw, 32px);
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ol > li dl dt,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ol > li dl dt,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ol > li dl dt,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ol > li dl dt,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ol > li dl dt,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ol > li dl dt,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ol > li dl dt,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ol > li dl dt {
    font-size: 24px;
  }
}
section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ol > li dl dd,
section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ol > li dl dd,
section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ol > li dl dd,
section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ol > li dl dd,
section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ol > li dl dd,
section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ol > li dl dd,
section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ol > li dl dd,
section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ol > li dl dd {
  margin-top: 32px;
  font-size: min(2.5974025974vw, 40px);
  font-weight: 700;
  line-height: 120%; /* 48px */
}
@media only screen and (max-width: 1919px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ol > li dl dd,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ol > li dl dd,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ol > li dl dd,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ol > li dl dd,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ol > li dl dd,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ol > li dl dd,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ol > li dl dd,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ol > li dl dd {
    font-size: min(2.0779220779vw, 32px);
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ol > li dl dd,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ol > li dl dd,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ol > li dl dd,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ol > li dl dd,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ol > li dl dd,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ol > li dl dd,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ol > li dl dd,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ol > li dl dd {
    margin-top: 16px;
    font-size: 24px;
  }
}
section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ol > li p,
section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ol > li p,
section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ol > li p,
section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ol > li p,
section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ol > li p,
section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ol > li p,
section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ol > li p,
section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ol > li p {
  margin-top: 24px;
  font-size: min(1.1688311688vw, 18px);
  font-weight: 500;
  line-height: 140%; /* 25.2px */
}
@media only screen and (max-width: 1024px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ol > li p,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ol > li p,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ol > li p,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ol > li p,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ol > li p,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ol > li p,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ol > li p,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ol > li p {
    margin-top: 16px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ol,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ol,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ol,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ol,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ol,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ol,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ol,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ol {
    order: 4;
  }
}
section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail .pamphletWrap,
section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail .pamphletWrap,
section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail .pamphletWrap,
section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail .pamphletWrap,
section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail .pamphletWrap,
section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail .pamphletWrap,
section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail .pamphletWrap,
section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail .pamphletWrap {
  display: block;
  position: relative;
  margin-top: 29px;
  padding: 24px 61px;
  border-radius: 16px;
  background: var(--white, #FFF);
}
@media only screen and (max-width: 767px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail .pamphletWrap,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail .pamphletWrap,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail .pamphletWrap,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail .pamphletWrap,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail .pamphletWrap,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail .pamphletWrap,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail .pamphletWrap,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail .pamphletWrap {
    display: flex;
    flex-flow: column;
    align-items: center;
    margin-top: 16px;
    padding: 24px;
    border-radius: 8px;
  }
}
section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail .pamphletWrap p,
section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail .pamphletWrap p,
section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail .pamphletWrap p,
section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail .pamphletWrap p,
section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail .pamphletWrap p,
section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail .pamphletWrap p,
section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail .pamphletWrap p,
section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail .pamphletWrap p {
  color: var(--NICE_green, #007440);
  font-size: min(1.9480519481vw, 30px);
  font-weight: 700;
  line-height: 120%; /* 36px */
}
@media only screen and (max-width: 1919px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail .pamphletWrap p,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail .pamphletWrap p,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail .pamphletWrap p,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail .pamphletWrap p,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail .pamphletWrap p,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail .pamphletWrap p,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail .pamphletWrap p,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail .pamphletWrap p {
    font-size: min(1.4935064935vw, 23px);
  }
}
@media only screen and (max-width: 767px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail .pamphletWrap p,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail .pamphletWrap p,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail .pamphletWrap p,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail .pamphletWrap p,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail .pamphletWrap p,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail .pamphletWrap p,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail .pamphletWrap p,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail .pamphletWrap p {
    font-size: 18px;
  }
}
section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail .pamphletWrap .pamphletImg,
section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail .pamphletWrap .pamphletImg,
section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail .pamphletWrap .pamphletImg,
section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail .pamphletWrap .pamphletImg,
section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail .pamphletWrap .pamphletImg,
section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail .pamphletWrap .pamphletImg,
section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail .pamphletWrap .pamphletImg,
section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail .pamphletWrap .pamphletImg {
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  width: 100%;
  max-width: 295px;
}
@media only screen and (max-width: 1919px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail .pamphletWrap .pamphletImg,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail .pamphletWrap .pamphletImg,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail .pamphletWrap .pamphletImg,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail .pamphletWrap .pamphletImg,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail .pamphletWrap .pamphletImg,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail .pamphletWrap .pamphletImg,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail .pamphletWrap .pamphletImg,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail .pamphletWrap .pamphletImg {
    right: 20px;
    max-width: 250px;
  }
}
@media only screen and (max-width: 1440px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail .pamphletWrap .pamphletImg,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail .pamphletWrap .pamphletImg,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail .pamphletWrap .pamphletImg,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail .pamphletWrap .pamphletImg,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail .pamphletWrap .pamphletImg,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail .pamphletWrap .pamphletImg,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail .pamphletWrap .pamphletImg,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail .pamphletWrap .pamphletImg {
    right: -40px;
    max-width: 200px;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail .pamphletWrap .pamphletImg,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail .pamphletWrap .pamphletImg,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail .pamphletWrap .pamphletImg,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail .pamphletWrap .pamphletImg,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail .pamphletWrap .pamphletImg,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail .pamphletWrap .pamphletImg,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail .pamphletWrap .pamphletImg,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail .pamphletWrap .pamphletImg {
    position: inherit;
    top: inherit;
    right: inherit;
    transform: inherit;
    max-width: 100%;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 1200px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail .pamphletWrap,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail .pamphletWrap,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail .pamphletWrap,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail .pamphletWrap,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail .pamphletWrap,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail .pamphletWrap,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail .pamphletWrap,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail .pamphletWrap {
    order: 5;
  }
}
section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ul,
section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ul,
section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ul,
section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ul,
section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ul,
section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ul,
section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ul,
section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ul {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  height: 100%;
}
@media only screen and (max-width: 1200px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ul,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ul,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ul,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ul,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ul,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ul,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ul,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ul {
    margin-top: 16px;
  }
}
section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ul > li,
section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ul > li,
section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ul > li,
section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ul > li,
section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ul > li,
section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ul > li,
section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ul > li,
section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ul > li {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: calc(25% - 1px);
  height: 100%;
}
@media only screen and (max-width: 767px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ul > li,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ul > li,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ul > li,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ul > li,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ul > li,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ul > li,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ul > li,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ul > li {
    width: calc(50% - 1px);
    padding: 16px;
  }
}
section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ul > li + li,
section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ul > li + li,
section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ul > li + li,
section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ul > li + li,
section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ul > li + li,
section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ul > li + li,
section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ul > li + li,
section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ul > li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}
@media only screen and (max-width: 767px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ul > li:nth-child(3),
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ul > li:nth-child(3),
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ul > li:nth-child(3),
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ul > li:nth-child(3),
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ul > li:nth-child(3),
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ul > li:nth-child(3),
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ul > li:nth-child(3),
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ul > li:nth-child(3) {
    border-left: none;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ul > li:nth-child(n+3),
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ul > li:nth-child(n+3),
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ul > li:nth-child(n+3),
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ul > li:nth-child(n+3),
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ul > li:nth-child(n+3),
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ul > li:nth-child(n+3),
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ul > li:nth-child(n+3),
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ul > li:nth-child(n+3) {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
  }
}
section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ul > li figure,
section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ul > li figure,
section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ul > li figure,
section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ul > li figure,
section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ul > li figure,
section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ul > li figure,
section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ul > li figure,
section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ul > li figure {
  width: 100%;
  max-width: 196px;
}
@media only screen and (max-width: 1200px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ul > li figure,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ul > li figure,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ul > li figure,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ul > li figure,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ul > li figure,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ul > li figure,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ul > li figure,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ul > li figure {
    max-width: 128px;
  }
}
section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ul > li p,
section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ul > li p,
section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ul > li p,
section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ul > li p,
section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ul > li p,
section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ul > li p,
section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ul > li p,
section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ul > li p {
  color: var(--white, #FFF);
  text-align: center;
  font-size: min(1.2987012987vw, 20px);
  font-weight: 700;
  line-height: 140%; /* 28px */
}
@media only screen and (max-width: 1024px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ul > li p,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ul > li p,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ul > li p,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ul > li p,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ul > li p,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ul > li p,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ul > li p,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ul > li p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  section.sec-tripleAppraisal .tripleAppraisalAbout .tripleAppraisalDetail ul,
  section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail ul,
  section.sec-tripleAppraisal .directPurchaseAbout .tripleAppraisalDetail ul,
  section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail ul,
  section.sec-directPurchase .tripleAppraisalAbout .tripleAppraisalDetail ul,
  section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail ul,
  section.sec-directPurchase .directPurchaseAbout .tripleAppraisalDetail ul,
  section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail ul {
    order: 4;
  }
}
section.sec-tripleAppraisal .tripleAppraisalAbout .directPurchaseDetail,
section.sec-tripleAppraisal .directPurchaseAbout .directPurchaseDetail,
section.sec-directPurchase .tripleAppraisalAbout .directPurchaseDetail,
section.sec-directPurchase .directPurchaseAbout .directPurchaseDetail {
  margin-top: 80px;
}

/*sec-newPropertyInfo
------------------------------------------*/
section.sec-newPropertyInfo {
  margin-top: 125px;
  border-top: 1px solid var(--gray, #E4E4E4);
  padding-top: 48px;
  padding-right: 40px;
  padding-bottom: 104px;
}
@media only screen and (max-width: 1024px) {
  section.sec-newPropertyInfo {
    margin: 84px 20px;
    padding-top: 24px;
    padding-right: 0;
    padding-bottom: 0;
  }
}
section.sec-newPropertyInfo h3 {
  margin-top: 0;
}
section.sec-newPropertyInfo .newPropertyListWrap {
  position: relative;
}
section.sec-newPropertyInfo .newPropertyListWrap .splide__arrows .splide__arrow {
  top: -130px;
  transform: none;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: #fff;
  opacity: 1;
  transition: all ease-out 0.3s;
}
@media only screen and (max-width: 1024px) {
  section.sec-newPropertyInfo .newPropertyListWrap .splide__arrows .splide__arrow {
    top: -84px;
    width: 36px;
    height: 36px;
    border-radius: 4px;
  }
}
section.sec-newPropertyInfo .newPropertyListWrap .splide__arrows .splide__arrow svg {
  fill: #007440;
  transition: all ease-out 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  section.sec-newPropertyInfo .newPropertyListWrap .splide__arrows .splide__arrow:hover {
    background: #007440;
  }
  section.sec-newPropertyInfo .newPropertyListWrap .splide__arrows .splide__arrow:hover svg {
    fill: #fff;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  section.sec-newPropertyInfo .newPropertyListWrap .splide__arrows .splide__arrow:hover {
    background: #007440;
  }
  section.sec-newPropertyInfo .newPropertyListWrap .splide__arrows .splide__arrow:hover svg {
    fill: #fff;
  }
}
section.sec-newPropertyInfo .newPropertyListWrap .splide__arrows .splide__arrow--prev {
  left: inherit;
  right: 119px;
}
@media only screen and (max-width: 1024px) {
  section.sec-newPropertyInfo .newPropertyListWrap .splide__arrows .splide__arrow--prev {
    right: 40px;
  }
}
section.sec-newPropertyInfo .newPropertyListWrap .splide__arrows .splide__arrow--next {
  right: 39px;
}
@media only screen and (max-width: 1024px) {
  section.sec-newPropertyInfo .newPropertyListWrap .splide__arrows .splide__arrow--next {
    right: 0;
  }
}
section.sec-newPropertyInfo .newPropertyListWrap .newPropertyInfoSlider a .imgWrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
section.sec-newPropertyInfo .newPropertyListWrap .newPropertyInfoSlider a .imgWrap figure{
  aspect-ratio: 4 / 3;
}
section.sec-newPropertyInfo .newPropertyListWrap .newPropertyInfoSlider a .imgWrap figure img {
  transition: all ease-out 0.3s;
  object-fit: contain;
  width: 100% !important;
  height: 100% !important;
}
section.sec-newPropertyInfo .newPropertyListWrap .newPropertyInfoSlider a .newPropertiesListDetail {
  padding: 16px 24px 24px;
}
@media only screen and (max-width: 1024px) {
  section.sec-newPropertyInfo .newPropertyListWrap .newPropertyInfoSlider a .newPropertiesListDetail {
    padding: 8px 16px 16px;
  }
}
section.sec-newPropertyInfo .newPropertyListWrap .newPropertyInfoSlider a .newPropertiesListDetail .priceText {
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(1.2987012987vw, 20px);
  font-weight: 500;
  line-height: 100%; /* 20px */
}
@media only screen and (max-width: 1024px) {
  section.sec-newPropertyInfo .newPropertyListWrap .newPropertyInfoSlider a .newPropertiesListDetail .priceText {
    font-size: 20px;
  }
}
section.sec-newPropertyInfo .newPropertyListWrap .newPropertyInfoSlider a .newPropertiesListDetail .priceText .num {
  color: var(--NICE_green, #007440);
  font-size: min(2.5974025974vw, 40px);
  font-weight: 600;
  line-height: 100%; /* 40px */
}
@media only screen and (max-width: 1024px) {
  section.sec-newPropertyInfo .newPropertyListWrap .newPropertyInfoSlider a .newPropertiesListDetail .priceText .num {
    font-size: 40px;
  }
}
section.sec-newPropertyInfo .newPropertyListWrap .newPropertyInfoSlider a .newPropertiesListDetail .detailWrap {
  margin-top: 18px;
}
@media only screen and (max-width: 1024px) {
  section.sec-newPropertyInfo .newPropertyListWrap .newPropertyInfoSlider a .newPropertiesListDetail .detailWrap {
    margin-top: 8px;
  }
}
section.sec-newPropertyInfo .newPropertyListWrap .newPropertyInfoSlider a .newPropertiesListDetail .detailWrap > p {
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(1.038961039vw, 16px);
  font-weight: 500;
  line-height: 120%; /* 19.2px */
}
@media only screen and (max-width: 1024px) {
  section.sec-newPropertyInfo .newPropertyListWrap .newPropertyInfoSlider a .newPropertiesListDetail .detailWrap > p {
    font-size: 14px;
  }
}
section.sec-newPropertyInfo .newPropertyListWrap .newPropertyInfoSlider a .newPropertiesListDetail .detailWrap > p + p {
  margin-top: 8px;
}
@media only screen and (max-width: 1024px) {
  section.sec-newPropertyInfo .newPropertyListWrap .newPropertyInfoSlider a .newPropertiesListDetail .detailWrap > p + p {
    margin-top: 4px;
  }
}
section.sec-newPropertyInfo .newPropertyListWrap .newPropertyInfoSlider a .newPropertiesListDetail .detailTxt {
  display: -webkit-box;
  width: 100%;
  margin-top: 16px;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(0.9090909091vw, 14px);
  font-weight: 500;
  line-height: 140%; /* 19.6px */
}
@media only screen and (max-width: 1024px) {
  section.sec-newPropertyInfo .newPropertyListWrap .newPropertyInfoSlider a .newPropertiesListDetail .detailTxt {
    margin-top: 4px;
    font-size: 12px;
  }
}
section.sec-newPropertyInfo .newPropertyListWrap .newPropertyInfoSlider a .newPropertiesListDetail .viewmoreWrap .line {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 18px;
  margin-bottom: 8px;
  background: var(--NICE_green, #007440);
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  section.sec-newPropertyInfo .newPropertyListWrap .newPropertyInfoSlider a .newPropertiesListDetail .viewmoreWrap .line {
    margin-top: 12px;
  }
}
section.sec-newPropertyInfo .newPropertyListWrap .newPropertyInfoSlider a .newPropertiesListDetail .viewmoreWrap .line::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #00FFA9;
  transform-origin: top left;
  transform: scale(0, 1);
  transition: all ease-out 0.3s;
  opacity: 0;
}
section.sec-newPropertyInfo .newPropertyListWrap .newPropertyInfoSlider a .newPropertiesListDetail .viewmoreWrap .more {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: var(--Soutetsu-Navy, #1E2549);
  text-align: right;
  font-size: min(1.038961039vw, 16px);
  font-weight: 600;
  line-height: 120%; /* 19.2px */
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  section.sec-newPropertyInfo .newPropertyListWrap .newPropertyInfoSlider a .newPropertiesListDetail .viewmoreWrap .more {
    font-size: 16px;
  }
}
section.sec-newPropertyInfo .newPropertyListWrap .newPropertyInfoSlider a.is-new .imgWrap::after {
  content: "NEW";
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  border-radius: 0px 8px;
  background: var(--neon-Green, #00FFA9);
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(0.9090909091vw, 14px);
  font-weight: 600;
  line-height: 120%; /* 16.8px */
}
@media only screen and (max-width: 1024px) {
  section.sec-newPropertyInfo .newPropertyListWrap .newPropertyInfoSlider a.is-new .imgWrap::after {
    font-size: 12px;
  }
}
@media (hover: hover) and (pointer: fine) {
  section.sec-newPropertyInfo .newPropertyListWrap .newPropertyInfoSlider a:hover .imgWrap figure img {
    transform: scale(1.1);
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  section.sec-newPropertyInfo .newPropertyListWrap .newPropertyInfoSlider a:hover .imgWrap figure img {
    transform: scale(1.1);
  }
}

/*sec-Search
------------------------------------------*/
section.sec-Search {
  padding-top: 108px;
}
@media only screen and (max-width: 1024px) {
  section.sec-Search {
    padding-top: 52px;
  }
}
section.sec-Search > h3 {
  margin-top: 0;
  margin-right: 40px;
  margin-left: 349px;
  padding-top: 48px;
  border-top: 1px solid var(--gray, #E4E4E4);
}
@media only screen and (max-width: 1024px) {
  section.sec-Search > h3 {
    margin: 0 20px 32px;
    padding-top: 24px;
  }
}
section.sec-Search .tabSearchWrap {
  position: relative;
}
section.sec-Search .tabSearchWrap .tabSearchChoice {
  display: flex;
  flex-flow: row wrap;
  position: absolute;
  top: -141px;
  right: 40px;
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchChoice {
    top: -83px;
    right: 20px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchChoice li {
  width: 177px;
  height: 60px;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchChoice li {
    width: 100px;
    height: 46px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchChoice li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  background: var(--white, #FFF);
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(1.038961039vw, 16px);
  font-weight: 500;
  line-height: 120%; /* 19.2px */
  transition: all ease-out 0.3s;
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchChoice li a {
    font-size: 13px;
  }
}
@media (hover: hover) and (pointer: fine) {
  section.sec-Search .tabSearchWrap .tabSearchChoice li a:hover {
    background: var(--neon-Green, #00FFA9);
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  section.sec-Search .tabSearchWrap .tabSearchChoice li a:hover {
    background: var(--neon-Green, #00FFA9);
  }
}
section.sec-Search .tabSearchWrap .tabSearchChoice li.searchCondition {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  border: 3px solid var(--gray, #E4E4E4);
  border-right: none;
}
section.sec-Search .tabSearchWrap .tabSearchChoice li.searchMap {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border: 3px solid var(--gray, #E4E4E4);
  border-left: none;
}
section.sec-Search .tabSearchWrap .tabSearchChoice li.active a {
  background: var(--dark-gray, #252E31);
  color: var(--white, #FFF);
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap {
  margin-left: 349px;
  padding-right: 40px;
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap {
    margin-left: 0;
    padding: 0 20px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .titleWrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .titleWrap h4 {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-top: 17px;
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(1.1688311688vw, 18px);
  font-weight: 500;
  line-height: 120%; /* 21.6px */
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .titleWrap h4 {
    font-size: 18px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .titleWrap h4::before {
  content: url(../img/pages/top/icn_heading_accent.svg);
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 8px;
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .titleWrap h4::before {
    margin-right: 8px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .titleWrap h4 .small {
  margin-left: 4px;
  font-size: min(0.7792207792vw, 12px);
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .titleWrap h4 .small {
    margin-left: 4px;
    font-size: 12px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .titleWrap .titleLeft {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .titleWrap .titleLeft .areaDetailAccordionBtn {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin-left: 30px;
  cursor: pointer;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .titleWrap .titleLeft .areaDetailAccordionBtn .icn {
  position: relative;
  display: block;
  width: 36px;
  height: 36px;
  margin-right: 10px;
  background: #007440;
  border-radius: 36px;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .titleWrap .titleLeft .areaDetailAccordionBtn .icn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%) rotate(135deg);
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transition: all 0.4s;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .titleWrap .titleLeft .areaDetailAccordionBtn .txt {
  font-size: 14px;
  font-weight: 500;
  color: #007440;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .titleWrap .titleLeft .areaDetailAccordionBtn.active .icn::before {
  transform: translate(-50%, -30%) rotate(-45deg);
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .titleWrap .titleRight {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .titleWrap .titleRight {
    justify-content: flex-end;
    width: 100%;
    margin-top: 10px;
    padding-right: 15px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .titleWrap .titleRight.icn_check {
  opacity: 0;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .titleWrap .titleRight img {
  width: auto !important;
  height: 13px !important;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .titleWrap .titleRight p {
  margin-left: 10px;
  font-size: 14px;
  font-weight: 500;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap {
  margin-top: 15px;
  background: #fff;
  border-radius: 30px;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap + .titleWrap {
  margin-top: 50px;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap > ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.typeWrap > ul.checklist {
  width: 944px;
}
@media only screen and (max-width: 1440px) {
  section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.typeWrap > ul.checklist {
    width: 100%;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.typeWrap > ul.checklist > li {
  display: flex;
  width: 230px;
  height: 58px;
  align-items: center;
  margin-right: 8px;
  margin-bottom: 8px;
  border-radius: 4px;
  border: 1px solid var(--gray, #E4E4E4);
  background: var(--white, #FFF);
  box-sizing: border-box;
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.typeWrap > ul.checklist > li {
    width: 100%;
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.typeWrap > ul.checklist > li {
    width: 100%;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.typeWrap > ul.checklist > li:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.typeWrap > ul.checklist > li:last-child {
    margin-right: 8px;
  }
}
@media (hover: hover) and (pointer: fine) {
  section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.typeWrap > ul.checklist > li:hover {
    border: 1px solid var(--emerald-green, #00C7AB);
    background: var(--emerald-green2, #EBFBF9);
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.typeWrap > ul.checklist > li:hover {
    border: 1px solid var(--emerald-green, #00C7AB);
    background: var(--emerald-green2, #EBFBF9);
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.typeWrap > ul.checklist > li.active {
  border-radius: 4px;
  border: 2px solid var(--emerald-green, #00C7AB);
  background: var(--emerald-green2, #EBFBF9);
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.typeWrap > ul.checklist > li:first-child .typeCheckboxLabel {
  margin-left: 15px;
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.typeWrap > ul.checklist > li:first-child .typeCheckboxLabel {
    margin-left: 0;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.typeWrap > ul.checklist > li .typeCheckbox {
  position: relative;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  padding: 17px 20px 19px 20px;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.typeWrap > ul.checklist > li .typeCheckbox {
    padding-left: 40px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.typeWrap > ul.checklist > li .typeCheckbox.mapSearch {
  align-items: center;
  justify-content: flex-start;
  padding-left: 40px;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.typeWrap > ul.checklist > li .typeCheckbox.mapSearch .typeCheckboxLabel {
  margin-left: 0;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.typeWrap > ul.checklist > li .typeCheckbox .typeCheckboxLabel {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin-left: 28px;
  font-size: min(1.1688311688vw, 18px);
  font-weight: 500;
  color: #252E31;
  cursor: pointer;
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.typeWrap > ul.checklist > li .typeCheckbox .typeCheckboxLabel {
    font-size: 16px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.typeWrap > ul.checklist > li .typeCheckbox .typeCheckboxLabel::before {
  content: "";
  position: absolute;
  top: 48%;
  left: 20px;
  transform: translateY(-50%);
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 7px;
  background: #fff;
  border: 3px solid #007440;
  box-shadow: none;
  border-radius: 3px;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.typeWrap > ul.checklist > li .typeCheckbox .marker {
  width: 15px;
  height: 20px;
  margin-right: 8px;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.typeWrap > ul.checklist > li .typeCheckbox .typeCheckboxInput {
  display: none;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.typeWrap > ul.checklist > li .typeCheckbox .typeCheckboxInput:checked + .typeCheckboxLabel {
  color: #007440;
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.typeWrap > ul.checklist > li .typeCheckbox .typeCheckboxInput:checked + .typeCheckboxLabel {
    font-size: 16px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.typeWrap > ul.checklist > li .typeCheckbox .typeCheckboxInput:checked + .typeCheckboxLabel::before {
  content: url("../img/pages/top/icn_checkbox_check.svg");
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #007440;
  line-height: 0;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaWrap {
  padding: 10px 50px;
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaWrap {
    padding: 0;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaWrap .areaList > li {
  width: 100%;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaWrap .areaList > li + li {
  border-top: 2px solid #E4E4E4;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaWrap .areaList > li > dl {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaWrap .areaList > li > dl {
    justify-content: center;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaWrap .areaList > li > dl dt {
  width: 120px;
  padding: 25px 0;
  font-size: 16px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaWrap .areaList > li > dl dt {
    width: 100%;
    padding: 5px 0;
    background: #ececec;
    text-align: center;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaWrap .areaList > li > dl dd {
  width: calc(100% - 120px);
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaWrap .areaList > li > dl dd {
    width: 100%;
    padding: 10px 15px 15px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaWrap .areaList > li > dl dd .checklist {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaWrap .areaList > li > dl dd .checklist li {
    width: 33.3333333333%;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaWrap .areaList > li > dl dd .checklist li {
    width: 50%;
    margin-top: 8px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaWrap .areaList > li > dl dd .checklist li + li {
  margin-left: 25px;
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaWrap .areaList > li > dl dd .checklist li + li {
    margin-left: 0;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaWrap .areaList > li > dl dd .checklist .typeCheckbox {
  position: relative;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaWrap .areaList > li > dl dd .checklist .typeCheckbox {
    justify-content: flex-start;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaWrap .areaList > li > dl dd .checklist .typeCheckbox .typeCheckboxLabel {
  display: flex;
  flex-flow: row wrap;
  align-items: baseline;
  padding-left: 35px;
  font-size: 16px;
  font-weight: 500;
  color: #007440;
  text-decoration: underline;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaWrap .areaList > li > dl dd .checklist .typeCheckbox .typeCheckboxLabel {
    padding-left: 30px;
    font-size: 14px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaWrap .areaList > li > dl dd .checklist .typeCheckbox .typeCheckboxLabel .small {
  font-size: 13px;
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaWrap .areaList > li > dl dd .checklist .typeCheckbox .typeCheckboxLabel .small {
    font-size: 12px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaWrap .areaList > li > dl dd .checklist .typeCheckbox .typeCheckboxLabel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 15px;
  background: #fff;
  border: 3px solid #007440;
  box-shadow: none;
  border-radius: 3px;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaWrap .areaList > li > dl dd .checklist .typeCheckbox .typeCheckboxInput {
  display: none;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaWrap .areaList > li > dl dd .checklist .typeCheckbox .typeCheckboxInput:checked + .typeCheckboxLabel::before {
  content: url("../img/elements/icn_check.svg");
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  background: #007440;
  border: 3px solid #007440;
  border-radius: 3px;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaWrap .areaList > li > dl dd .checklist .typeCheckbox.disable {
  pointer-events: none;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaWrap .areaList > li > dl dd .checklist .typeCheckbox.disable .typeCheckboxLabel {
  color: rgba(153, 153, 153, 0.5);
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaDetailWrap {
  display: none;
  padding: 40px 50px;
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaDetailWrap {
    padding: 25px 15px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaDetailWrap .checklist {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaDetailWrap .checklist li {
  margin: 0 12px 10px;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaDetailWrap .checklist .typeCheckbox {
  position: relative;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaDetailWrap .checklist .typeCheckbox {
    justify-content: flex-start;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaDetailWrap .checklist .typeCheckbox .typeCheckboxLabel {
  display: flex;
  flex-flow: row wrap;
  align-items: baseline;
  padding-left: 35px;
  font-size: 14px;
  font-weight: 500;
  color: #007440;
  text-decoration: underline;
  cursor: pointer;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaDetailWrap .checklist .typeCheckbox .typeCheckboxLabel .small {
  font-size: 13px;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaDetailWrap .checklist .typeCheckbox .typeCheckboxLabel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  background: #fff;
  border: 3px solid #EFEFEF;
  box-shadow: none;
  border-radius: 3px;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaDetailWrap .checklist .typeCheckbox .typeCheckboxInput {
  display: none;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaDetailWrap .checklist .typeCheckbox .typeCheckboxInput:checked + .typeCheckboxLabel::before {
  content: url("../img/elements/icn_check.svg");
  display: flex;
  justify-content: center;
  align-items: center;
  background: #007440;
  border: 3px solid #007440;
  border-radius: 3px;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaDetailWrap .checklist .typeCheckbox.disable {
  pointer-events: none;
}
section.sec-Search .tabSearchWrap .tabSearchContents .conditionalSelectionWrap .typeWrap.areaDetailWrap .checklist .typeCheckbox.disable .typeCheckboxLabel {
  color: rgba(153, 153, 153, 0.5);
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents .titleWrap h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch {
  margin-top: 40px;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .horizontal {
  display: flex;
  flex-flow: row wrap;
  margin-left: 349px;
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .horizontal {
    margin: 0 20px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .horizontal > li {
  width: 235px;
  height: 60px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  cursor: pointer;
  overflow: hidden;
}
@media only screen and (max-width: 1536px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .horizontal > li {
    width: 225px;
  }
}
@media only screen and (max-width: 1440px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .horizontal > li {
    width: 205px;
  }
}
@media only screen and (max-width: 1280px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .horizontal > li {
    width: 205px;
  }
}
@media only screen and (max-width: 1200px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .horizontal > li {
    width: calc(25% - 6px);
    height: 50px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .horizontal > li + li {
  margin-left: 8px;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .horizontal > li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #252E31;
  font-size: 15px;
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .horizontal > li a {
    flex-flow: column;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .horizontal > li a {
    font-size: 13px;
  }
}
@media only screen and (max-width: 375px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .horizontal > li a {
    font-size: 12px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .horizontal > li.active a {
  background: #007440;
  color: #fff;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .horizontal > li a::before {
  margin-right: 5px;
  font-size: 24px;
  font-family: "Material Symbols Outlined";
  line-height: 1.1;
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .horizontal > li a::before {
    margin-right: 4px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 375px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .horizontal > li a::before {
    margin-right: 2px;
    font-size: 19px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .horizontal > li:nth-of-type(1) a::before {
  content: url("../img/pages/kaitai/icn_area.svg");
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .horizontal > li:nth-of-type(1) a::before {
    content: url("../img/pages/kaitai/icn_area.svg");
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .horizontal > li:nth-of-type(1).active a::before {
  content: url("../img/pages/kaitai/icn_area_w.svg");
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .horizontal > li:nth-of-type(1).active a::before {
    content: url("../img/pages/kaitai/icn_area_w.svg");
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .horizontal > li:nth-of-type(2) a::before {
  content: "\e570";
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .horizontal > li:nth-of-type(2) a::before {
    margin-right: 0;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .horizontal > li:nth-of-type(3) a::before {
  content: "\e425";
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .horizontal > li:nth-of-type(3) a::before {
    margin-right: 0;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .horizontal > li:nth-of-type(4) a::before {
  content: "\e3c9";
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents {
  padding: 80px 0 50px;
  background: #007440;
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents {
    padding: 8px 0 24px;
    border-radius: 16px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  padding-left: 349px;
  padding-right: 40px;
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap {
    justify-content: center;
    width: 100%;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft {
  width: 53%;
  padding: 32px 12px 32px 32px;
  height: 545px;
  background: #fff;
  border-radius: 16px !important;
  overflow: hidden;
}
@media only screen and (max-width: 1200px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft {
    padding: 24px 20px;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft {
    width: 100%;
    height: inherit;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap {
  width: 100%;
  height: 100%;
  padding-right: 20px;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #007440 #fff;
}
@media only screen and (max-width: 991px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap {
    padding: 0px 15px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap::-webkit-scrollbar {
  width: 7px;
  background: #fff;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap::-webkit-scrollbar-thumb {
  background: #007440;
  border-radius: 10px;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .checkTxt {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .checkTxt img {
  width: 20px !important;
  height: auto;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .checkTxt p {
  margin-left: 4px;
  margin-right: 8px;
  font-size: 13px;
  font-weight: 400;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox {
  margin-top: 25px;
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox {
    margin-top: 18px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox h4 {
  font-size: 16px;
  font-weight: 500;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .checkbox {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .checkbox .checkboxLabel {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  padding-left: 35px;
  font-size: 13px;
  font-weight: 500;
  color: #007440;
  text-decoration: underline;
  cursor: pointer;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .checkbox .checkboxLabel .small {
  font-size: 13px;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .checkbox .checkboxLabel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background: #fff;
  border: 3px solid #EFEFEF;
  border: 3px solid #007440;
  box-shadow: none;
  border-radius: 3px;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .checkbox.nocheckbox .checkboxLabel {
  padding-left:0;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .checkbox.nocheckbox .checkboxLabel::before {
  display: none;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .checkbox .checkboxInput {
  display: none;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .checkbox .checkboxInput:checked + .checkboxLabel::before {
  content: url("../img/pages/top/icn_checkbox_check.svg");
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  background: #007440;
  border: 3px solid #007440;
  border-radius: 3px;
  line-height: 0;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .checkbox.disable {
  pointer-events: none;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .checkbox.disable .checkboxLabel {
  color: rgba(153, 153, 153, 0.5);
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .accordionWrap {
  margin-top: 10px;
  padding: 20px 0;
  border-top: 2px solid #F6F6F6;
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .accordionWrap {
    margin-top: 16px;
    padding: 0;
    border-top: none;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .accordionWrap .accordionTitleWrap {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .accordionWrap .accordionTitleWrap .checkbox {
  justify-content: flex-start;
  width: 100%;
  cursor: pointer;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .accordionWrap .accordionTitleWrap .checkbox .checkboxLabel {
  font-size: 16px;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .accordionWrap .accordionTitleWrap .clickTxtWrap {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  pointer-events: none;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .accordionWrap .accordionTitleWrap .clickTxtWrap .clickTxt {
  margin-right: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #007440;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .accordionWrap .accordionTitleWrap .clickTxtWrap .icn {
  position: relative;
  width: 15px;
  height: 15px;
  display: block;
  transition: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .accordionWrap .accordionTitleWrap .clickTxtWrap .icn::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  background: #007440;
  display: block;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .accordionWrap .accordionTitleWrap .clickTxtWrap .icn::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 100%;
  background: #007440;
  display: block;
  transition: 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .accordionWrap .accordionTitleWrap.active .clickTxtWrap .icn::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .accordionWrap .accordionDetailWrap {
  display: none;
  margin-top: 24px;
  padding: 24px;
  border-radius: 8px;
  background: var(--light-gray, #F6F6F6);
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .accordionWrap .accordionDetailWrap {
    margin-top: 0;
    padding: 0;
    background: none;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li {
  width: 25%;
  padding: 8px 0;
}
@media only screen and (max-width: 1536px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li {
    width: 33.3333333333%;
  }
}
@media only screen and (max-width: 1440px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li {
    width: 50%;
  }
}
@media only screen and (max-width: 1200px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li {
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li {
    width: 33.3333333333%;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li {
    width: 50%;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li .checkbox {
  justify-content: flex-start;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li .checkbox .checkboxLabel {
  padding-left: 30px;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li:nth-child(n+5) {
  margin-top: 8px;
}
@media only screen and (max-width: 1536px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li:nth-child(n+4) {
    margin-top: 8px;
  }
}
@media only screen and (max-width: 1440px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li:nth-child(n+3) {
    margin-top: 8px;
  }
}
@media only screen and (max-width: 1200px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li:nth-child(n+2) {
    margin-top: 8px;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li:nth-child(2), section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li:nth-child(3) {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li:nth-child(3) {
    margin-top: 8px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .accordionWrap.disable {
  pointer-events: none;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchLeft .searchCheckWrap .searchDetailBox .accordionWrap.disable .checkbox .checkboxLabel {
  color: rgba(153, 153, 153, 0.5);
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight {
  width: 43%;
  border-radius: 15px !important;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight {
    width: calc(100% - 40px);
    margin-top: 15px;
    border-radius: 0 !important;
  }
}
@media only screen and (max-width: 991px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight {
    width: 100%;
    border-radius: 0 !important;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionTitle {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 20px 30px 15px;
  background: #2A522E;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.4s;
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionTitle {
    border-radius: 15px;
  }
}
@media only screen and (max-width: 991px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionTitle {
    margin: 25px 20px 0;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionTitle .accordionTitleLeft {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionTitle .accordionTitleLeft .icn {
  width: 20px;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionTitle .accordionTitleLeft p {
  margin-left: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
@media only screen and (max-width: 991px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionTitle .accordionTitleLeft p {
    font-size: 14px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionTitle .accordionTitleRight {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  position: absolute;
  top: 50%;
  left: calc(100% - 88px - 15px);
  transform: translateY(-50%);
  width: 88px;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionTitle .accordionTitleRight .icn {
  position: relative;
  display: block;
  width: 36px;
  height: 36px;
  background: #007440;
  border-radius: 36px;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionTitle .accordionTitleRight .icn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%) rotate(135deg);
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transition: all 0.4s;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionTitle .accordionTitleRight .txt {
  margin-left: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
@media only screen and (max-width: 991px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionTitle .accordionTitleRight .txt {
    font-size: 12px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionTitle.active .accordionTitleRight .icn::before {
  transform: translate(-50%, -30%) rotate(-45deg);
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail {
  height: 475px;
  padding: 20px 10px;
  background: #fff;
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail {
    border-radius: 16px;
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail {
    margin: 0 20px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox {
  height: 100%;
  padding: 0 20px;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #007440 #fff;
}
@media only screen and (max-width: 991px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox {
    padding: 0 15px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox::-webkit-scrollbar {
  width: 7px;
  background: #fff;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox::-webkit-scrollbar-thumb {
  background: #007440;
  border-radius: 10px;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownClear {
  font-size: 14px;
  font-weight: 500;
  color: #007440;
  text-align: right;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownClear {
    font-size: 12px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownFormCenter {
  font-size: 18px;
  font-weight: 500;
  color: #252E31;
}
@media only screen and (max-width: 991px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownFormCenter {
    font-size: 12px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList {
  margin-top: 5px;
  padding-top: 15px;
  border-top: 1px solid #E4E4E4;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li {
  width: 100%;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li + li {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #E4E4E4;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
@media only screen and (max-width: 1200px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl {
    flex-flow: column;
    align-items: flex-start;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dt {
  width: 70px;
  font-size: 14px;
  font-weight: 500;
}
@media only screen and (max-width: 1200px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dt {
    margin-bottom: 8px;
  }
}
@media only screen and (max-width: 991px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dt {
    width: 60px;
    font-size: 12px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 70px);
}
@media only screen and (max-width: 1200px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd {
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd {
    width: calc(100% - 70px);
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checklist {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checklist.checklistColumn2 > li {
  width: 50%;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checklist.checklistColumn2 > li:nth-child(n+3) {
  margin-top: 15px;
}
@media only screen and (max-width: 1440px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checklist.checklistColumn2 > li {
    width: 100%;
  }
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checklist.checklistColumn2 > li:nth-child(n+2) {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checklist.checklistColumn2 > li {
    width: 50%;
  }
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checklist.checklistColumn2 > li:nth-child(2) {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checklist.checklistColumn2 > li {
    width: 100%;
  }
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checklist.checklistColumn2 > li:nth-child(2) {
    margin-top: 10px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checklist.checklistColumn3 > li {
  width: 33.3333333333%;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checklist.checklistColumn3 > li:nth-child(n+4) {
  margin-top: 15px;
}
@media only screen and (max-width: 1536px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checklist.checklistColumn3 > li {
    width: 50%;
  }
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checklist.checklistColumn3 > li:nth-child(n+3) {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 1280px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checklist.checklistColumn3 > li {
    width: 100%;
  }
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checklist.checklistColumn3 > li:nth-child(n+2) {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checklist.checklistColumn3 > li {
    width: 33.3333333333%;
  }
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checklist.checklistColumn3 > li:nth-child(2), section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checklist.checklistColumn3 > li:nth-child(3) {
    margin-top: 0;
  }
}
@media only screen and (max-width: 991px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checklist.checklistColumn3 > li {
    width: 50%;
  }
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checklist.checklistColumn3 > li:nth-child(3) {
    margin-top: 10px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .dropdownForm {
  position: relative;
  width: calc(50% - 40px);
  height: 40px;
}
@media only screen and (max-width: 1440px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .dropdownForm {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 1280px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .dropdownForm {
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .dropdownForm {
    width: calc(50% - 40px);
  }
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .dropdownForm {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .dropdownForm.dropdownFormColumn2 {
    width: calc(50% - 10px);
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .dropdownForm::before {
  border-bottom: 4.5px solid #252E31;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 7px;
  transform: translateY(-50%);
  width: 0;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .dropdownForm::after {
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4.5px solid #252E31;
  content: "";
  position: absolute;
  top: calc(50% + 4px);
  right: 7px;
  transform: translateY(-50%);
  width: 0;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .dropdownForm .dropdownFormCenter {
  width: 40px;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .dropdownForm .selectWrap {
  width: 100%;
  height: 100%;
  padding: 5px 5px 5px 15px;
  border: 1px solid #E4E4E4;
  border-radius: 6px;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .dropdownForm .selectWrap::-ms-expand {
  display: none;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checkbox {
  position: relative;
  display: flex;
  justify-content: flex-start;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checkbox .checkboxLabel {
  display: flex;
  flex-flow: row wrap;
  align-items: baseline;
  padding-left: 30px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checkbox .checkboxLabel {
    font-size: 12px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checkbox .checkboxLabel .small {
  font-size: 13px;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checkbox .checkboxLabel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  background: #fff;
  border: 3px solid #007440;
  box-shadow: none;
  border-radius: 3px;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checkbox .checkboxInput {
  display: none;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checkbox .checkboxInput:checked + .checkboxLabel::before {
  content: url("../img/pages/top/icn_checkbox_check.svg");
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  background: #007440;
  border: 3px solid #007440;
  border-radius: 3px;
  line-height: 0;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checkbox.disable {
  pointer-events: none;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap > .searchRight .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checkbox.disable .checkboxLabel {
  color: rgba(153, 153, 153, 0.5);
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap .submitWrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap .submitWrap {
    margin-top: 25px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap .submitWrap .submitBtn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 360px;
  height: 80px;
  background-color: var(--Soutetsu-Navy, #1E2549);
  border-radius: 60px;
  border: none;
  border: 3px solid #fff;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all ease-out 0.3s;
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap .submitWrap .submitBtn {
    width: calc(100% - 40px);
    max-width: 360px;
    height: 60px;
    border-width: 2px;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap .submitWrap .submitBtn {
    max-width: inherit;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap .submitWrap .submitBtn svg {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  width: 20px;
  height: auto;
  fill: #fff;
  transition: all ease-out 0.3s;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap .submitWrap .submitBtn .small {
  font-size: 16px;
}
@media (hover: hover) and (pointer: fine) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap .submitWrap .submitBtn:hover {
    background-color: #00FFA9;
    color: #1E2549;
  }
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap .submitWrap .submitBtn:hover svg {
    fill: #1E2549;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap .submitWrap .submitBtn:hover {
    background-color: #00FFA9;
    color: #1E2549;
  }
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents .tabContentsWrap .submitWrap .submitBtn:hover svg {
    fill: #1E2549;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-time .searchLeft .stationTxt {
  font-size: 16px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-time .searchLeft .stationTxt {
    font-size: 14px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-time .searchLeft .stationTxt .small {
  margin-top: 15px;
  font-size: 12px;
  color: #666666;
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-time .searchLeft .stationTxt .small {
    margin-top: 10px;
    font-size: 11px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-time .searchLeft .searchDetailBox .accordionWrap .accordionTitleWrap {
  cursor: pointer;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-time .searchLeft .searchDetailBox .accordionWrap .accordionDetailWrap {
  padding: 0;
  background: none;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-time .searchLeft .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li {
  width: 100%;
  padding: 20px;
  background: #F6F6F6;
}
@media only screen and (max-width: 991px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-time .searchLeft .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li {
    padding: 15px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-time .searchLeft .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li + li {
  margin-top: 3px;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-time .searchLeft .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li > dl {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-time .searchLeft .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li > dl dt {
  width: 100px;
  font-size: 14px;
  font-weight: 500;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-time .searchLeft .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li > dl dd {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  width: calc(100% - 100px);
}
@media only screen and (max-width: 1200px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-time .searchLeft .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li > dl dd {
    flex-flow: column;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 1200px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-time .searchLeft .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li > dl dd {
    flex-flow: row wrap;
    align-items: center;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-time .searchLeft .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li > dl dd .search {
  width: 295px;
  height: 60px;
  padding: 15px 30px;
  background: #fff;
  border: none;
  border-radius: 60px;
  outline: none;
}
@media only screen and (max-width: 1536px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-time .searchLeft .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li > dl dd .search {
    width: calc(100% - 60px);
  }
}
@media only screen and (max-width: 1200px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-time .searchLeft .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li > dl dd .search {
    width: 100%;
    margin-bottom: 8px;
  }
}
@media only screen and (max-width: 1536px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-time .searchLeft .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li > dl dd .search {
    width: 295px;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-time .searchLeft .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li > dl dd .search {
    width: calc(100% - 55px);
    height: 40px;
    margin-bottom: 0;
    padding: 15px 20px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-time .searchLeft .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li > dl dd p {
  margin-left: 10px;
  font-size: 15px;
  font-weight: 500;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-time .searchLeft .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li > dl dd .dropdownForm {
  position: relative;
  width: calc(50% - 40px);
  height: 40px;
}
@media only screen and (max-width: 1440px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-time .searchLeft .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li > dl dd .dropdownForm {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 1280px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-time .searchLeft .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li > dl dd .dropdownForm {
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-time .searchLeft .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li > dl dd .dropdownForm {
    width: calc(50% - 40px);
  }
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-time .searchLeft .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li > dl dd .dropdownForm {
    width: calc(100% - 55px);
    min-width: 120px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-time .searchLeft .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li > dl dd .dropdownForm::before {
  border-bottom: 4.5px solid #252E31;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 7px;
  transform: translateY(-50%);
  width: 0;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-time .searchLeft .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li > dl dd .dropdownForm::after {
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4.5px solid #252E31;
  content: "";
  position: absolute;
  top: calc(50% + 4px);
  right: 7px;
  transform: translateY(-50%);
  width: 0;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-time .searchLeft .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li > dl dd .dropdownForm .selectWrap {
  width: 100%;
  height: 100%;
  padding: 5px 5px 5px 15px;
  border: 1px solid #E4E4E4;
  border-radius: 6px;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-time .searchLeft .searchDetailBox .accordionWrap .accordionDetailWrap .accordionDetail > li > dl dd .dropdownForm .selectWrap::-ms-expand {
  display: none;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-gakku .accordionDetail > li {
  width: 50%;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-gakku .accordionDetail > li:nth-child(n+3) {
  margin-top: 15px;
}
@media only screen and (max-width: 1200px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-gakku .accordionDetail > li {
    width: 100%;
  }
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-gakku .accordionDetail > li:nth-child(n+2) {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-gakku .accordionDetail > li {
    width: 50%;
  }
  section.sec-Search .tabSearchWrap .tabSearchContents#searchCondition .tabSearch .tabContents#tab-gakku .accordionDetail > li:nth-child(2) {
    margin-top: 0;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 1536px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap {
    flex-flow: column;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap.typeWrap > ul > li .typeCheckbox .typeCheckboxLabel {
  margin-left: 0;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap.typeWrap > ul > li .typeCheckbox .typeCheckboxLabel::before {
  left: inherit;
  right: 20px;
  border: none;
  background: none;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap.typeWrap > ul > li .typeCheckbox .typeCheckboxInput {
  display: none;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap.typeWrap > ul > li .typeCheckbox .typeCheckboxInput:checked + .typeCheckboxLabel::before {
  content: url("../img/pages/top/icn_check.svg");
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0;
  line-height: 0;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap .btnWrap {
  width: calc(100% - 944px - 8px);
  justify-content: space-between;
}
@media only screen and (max-width: 1536px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap .btnWrap {
    width: 100%;
    justify-content: flex-start;
    margin-top: 16px;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap .btnWrap {
    flex-flow: column;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap .btnWrap > li {
  width: 220px;
  height: 60px;
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap .btnWrap > li {
    width: 100%;
    max-width: 335px;
    height: 54px;
  }
}
@media only screen and (max-width: 1536px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap .btnWrap > li + li {
    margin-left: 8px;
  }
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap .btnWrap > li + li {
    margin-top: 8px;
    margin-left: 0;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap .btnWrap > li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 29px;
  transition: all ease-out 0.3s;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap .btnWrap > li a .btnText {
  text-align: center;
  font-size: min(1.038961039vw, 16px);
  font-weight: 500;
  line-height: 120%; /* 19.2px */
  transition: all ease-out 0.3s;
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap .btnWrap > li a .btnText {
    font-size: 16px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap .btnWrap > li a .icn {
  margin-right: 8px;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap .btnWrap > li a.propertyBtn {
  background: var(--Soutetsu-Navy, #1E2549);
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap .btnWrap > li a.propertyBtn .icn svg {
  fill: var(--white, #FFF);
  transition: all ease-out 0.3s;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap .btnWrap > li a.propertyBtn .btnText {
  color: var(--white, #FFF);
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap .btnWrap > li a.narrowdownBtn {
  border: 2px solid var(--NICE_green, #007440);
  background: var(--white, #FFF);
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap .btnWrap > li a.narrowdownBtn .icn svg {
  fill: var(--Soutetsu-Navy, #1E2549);
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap .btnWrap > li a.narrowdownBtn .btnText {
  color: var(--Soutetsu-Navy, #1E2549);
}
@media (hover: hover) and (pointer: fine) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap .btnWrap > li a:hover.propertyBtn, section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap .btnWrap > li a:hover.narrowdownBtn {
    background: var(--neon-Green, #00FFA9);
  }
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap .btnWrap > li a:hover.propertyBtn .icn svg, section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap .btnWrap > li a:hover.narrowdownBtn .icn svg {
    fill: var(--Soutetsu-Navy, #1E2549);
  }
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap .btnWrap > li a:hover.propertyBtn .btnText, section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap .btnWrap > li a:hover.narrowdownBtn .btnText {
    color: var(--Soutetsu-Navy, #1E2549);
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap .btnWrap > li a:hover.propertyBtn, section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap .btnWrap > li a:hover.narrowdownBtn {
    background: var(--neon-Green, #00FFA9);
  }
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap .btnWrap > li a:hover.propertyBtn .icn svg, section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap .btnWrap > li a:hover.narrowdownBtn .icn svg {
    fill: var(--Soutetsu-Navy, #1E2549);
  }
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap .btnWrap > li a:hover.propertyBtn .btnText, section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .typeWrap .btnWrap > li a:hover.narrowdownBtn .btnText {
    color: var(--Soutetsu-Navy, #1E2549);
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap {
  margin-top: 39px;
  margin-left: 349px;
  padding-right: 40px;
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap {
    margin: 16px 20px 0;
    padding-right: 0;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap {
  border-radius: 16px;
  overflow: hidden;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .gm-style .gm-style-iw-c {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .gm-style .gm-style-iw-c,
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .gm-style .gm-style-iw-d {
  padding: 0 !important;
  overflow: auto !important;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  padding: 0 32px 24px;
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail {
    padding: 0 8px 16px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .imgWrap {
  width: 250px;
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .imgWrap {
    width: 100%;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .imgWrap figure img {
  width: auto;
  aspect-ratio: 50/33;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap {
  width: calc(100% - 250px - 32px);
}
@media only screen and (max-width: 767px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap {
    width: 100%;
    margin-top: 14px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .nameText {
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(1.1688311688vw, 18px);
  font-weight: 700;
  line-height: 120%; /* 21.6px */
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .nameText {
    font-size: 14px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .priceText {
  margin-top: 16px;
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(1.038961039vw, 16px);
  font-weight: 500;
  line-height: 100%; /* 16px */
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .priceText {
    font-size: 16px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .priceText span {
  color: var(--NICE_green, #007440);
  font-size: min(2.0779220779vw, 32px);
  font-weight: 600;
  line-height: 100%; /* 32px */
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .priceText span {
    font-size: 22px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .propertyDetail {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--gray, #E4E4E4);
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .propertyDetail dl {
  display: flex;
  flex-flow: row wrap;
  align-items: baseline;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .propertyDetail dl dt, section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .propertyDetail dl dd {
  font-size: min(0.7792207792vw, 12px);
  font-weight: 500;
  line-height: 120%; /* 14.4px */
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .propertyDetail dl dt, section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .propertyDetail dl dd {
    font-size: 12px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .propertyDetail dl dt {
  position: relative;
  width: 5em;
  color: var(--Pale-Green, #9BA49F);
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .propertyDetail dl dt::after {
  content: "：";
  display: inline;
  position: absolute;
  right: 0;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .propertyDetail dl dd {
  color: var(--Soutetsu-Navy, #1E2549);
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .propertyDetail dl dd .num {
  font-size: min(1.1688311688vw, 18px);
  font-weight: 600;
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .propertyDetail dl dd .num {
    font-size: 14px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .propertyDetail dl + dl {
  margin-top: 6px;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .btnWrap {
  display: flex;
  flex-flow: row wrap;
  margin-top: 24px;
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .btnWrap {
    flex-flow: column;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .btnWrap > a {
  display: flex;
  width: 120px;
  height: 40px;
  justify-content: center;
  align-items: center;
  margin-block: var(--leading-trim);
  border-radius: 20px;
  color: var(--white, #FFF);
  font-size: min(0.9090909091vw, 14px);
  font-weight: 500;
  line-height: normal;
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .btnWrap > a {
    font-size: 14px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .btnWrap > a.requestBtn {
  background: var(--NICE_green, #007440);
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .btnWrap > a.detailBtn {
  margin-left: 8px;
  background: var(--Soutetsu-Navy, #1E2549);
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .btnWrap > a.detailBtn {
    margin-top: 8px;
    margin-left: 0;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .btnWrap > a .btnText {
  color: var(--white, #FFF);
  transition: all ease-out 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .btnWrap > a:hover {
    background: var(--white, #FFF);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  }
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .btnWrap > a:hover.requestBtn .btnText {
    color: var(--NICE_green, #007440);
  }
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .btnWrap > a:hover.detailBtn .btnText {
    color: var(--Soutetsu-Navy, #1E2549);
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .btnWrap > a:hover {
    background: var(--white, #FFF);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  }
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .btnWrap > a:hover.requestBtn .btnText {
    color: var(--NICE_green, #007440);
  }
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .textWrap .btnWrap > a:hover.detailBtn .btnText {
    color: var(--Soutetsu-Navy, #1E2549);
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .detailTxt {
  margin-top: 16px;
  width: 100%;
  overflow: hidden;
  color: var(--Soutetsu-Navy, #1E2549);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: min(0.9090909091vw, 14px);
  font-weight: 400;
  line-height: 140%; /* 19.6px */
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .detailTxt {
    font-size: 14px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .tab {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  margin-top: 12px;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .tab > li a {
  color: var(--NICE_green, #007440);
  font-size: min(0.7792207792vw, 12px);
  font-weight: 500;
  line-height: 120%; /* 14.4px */
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .tab > li a {
    font-size: 12px;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .tab > li + li {
  margin-left: 8px;
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .update, section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .caption {
  width: 100%;
  color: var(--Pale-Green, #9BA49F);
  font-size: min(0.7792207792vw, 12px);
  font-weight: 400;
  text-align: right;
  line-height: 140%; /* 16.8px */
}
@media only screen and (max-width: 1024px) {
  section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .update, section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .caption {
    font-size: 12px;
    text-align: left;
  }
}
section.sec-Search .tabSearchWrap .tabSearchContents#searchMap .gmapWrap .gmap .newPropertiesListDetail .update {
  margin-top: 8px;
}

/*modaal-inner-wrapper（地図から探す＞条件絞り込み）
------------------------------------------*/
.modaal-content-container {
  padding-bottom: 50px !important;
}

.modaal-inner-wrapper .modaal-container {
  border-radius: 15px;
  overflow: hidden;
}
.modaal-inner-wrapper .accordionDetail {
  height: 510px;
  padding: 20px 10px;
  background: #fff;
}
@media only screen and (max-width: 991px) {
  .modaal-inner-wrapper .accordionDetail {
    margin: 0;
  }
}
.modaal-inner-wrapper .accordionDetail .accordionDetailBox {
  height: 100%;
  padding: 0 20px;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #007440 #fff;
}
@media only screen and (max-width: 991px) {
  .modaal-inner-wrapper .accordionDetail .accordionDetailBox {
    padding: 0 15px;
  }
}
.modaal-inner-wrapper .accordionDetail .accordionDetailBox::-webkit-scrollbar {
  width: 7px;
  background: #fff;
}
.modaal-inner-wrapper .accordionDetail .accordionDetailBox::-webkit-scrollbar-thumb {
  background: #007440;
  border-radius: 10px;
}
.modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownClear {
  font-size: 14px;
  font-weight: 500;
  color: #007440;
  text-align: right;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  .modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownClear {
    font-size: 12px;
  }
}
.modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownFormCenter {
  font-size: 18px;
  font-weight: 500;
  color: #252E31;
}
@media only screen and (max-width: 991px) {
  .modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownFormCenter {
    font-size: 12px;
  }
}
.modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList {
  margin-top: 5px;
  padding-top: 15px;
  border-top: 1px solid #E4E4E4;
}
.modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li {
  width: 100%;
}
.modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li + li {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #E4E4E4;
}
.modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li dl {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li dl dt {
  width: 70px;
  font-size: 14px;
  font-weight: 500;
}
@media only screen and (max-width: 991px) {
  .modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li dl dt {
    width: 60px;
    font-size: 12px;
  }
}
.modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li dl dd {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 70px);
}
.modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checklist {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
}
.modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checklist.checklistColumn2 > li {
  width: 50%;
}
.modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checklist.checklistColumn2 > li:nth-child(n+3) {
  margin-top: 15px;
}
@media only screen and (max-width: 767px) {
  .modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checklist.checklistColumn2 > li {
    width: 100%;
  }
  .modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checklist.checklistColumn2 > li:nth-child(n+2) {
    margin-top: 15px;
  }
}
.modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checklist.checklistColumn3 > li {
  width: 33.3333333333%;
}
.modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checklist.checklistColumn3 > li:nth-child(n+4) {
  margin-top: 15px;
}
@media only screen and (max-width: 767px) {
  .modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checklist.checklistColumn3 > li {
    width: 100%;
  }
  .modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checklist.checklistColumn3 > li:nth-child(n+2) {
    margin-top: 15px;
  }
}
.modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li dl dd .dropdownForm {
  position: relative;
  width: calc(50% - 40px);
  height: 40px;
}
@media only screen and (max-width: 767px) {
  .modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li dl dd .dropdownForm {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li dl dd .dropdownForm.dropdownFormColumn2 {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 375px) {
  .modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li dl dd .dropdownForm.dropdownFormColumn2 {
    width: 100%;
  }
}
.modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li dl dd .dropdownForm::before {
  border-bottom: 4.5px solid #252E31;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 7px;
  transform: translateY(-50%);
  width: 0;
}
.modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li dl dd .dropdownForm::after {
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4.5px solid #252E31;
  content: "";
  position: absolute;
  top: calc(50% + 4px);
  right: 7px;
  transform: translateY(-50%);
  width: 0;
}
.modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li dl dd .dropdownForm .dropdownFormCenter {
  width: 40px;
}
.modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li dl dd .dropdownForm .selectWrap {
  width: 100%;
  height: 100%;
  padding: 5px 5px 5px 15px;
  border: 1px solid #E4E4E4;
  border-radius: 6px;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li dl dd .dropdownForm .selectWrap::-ms-expand {
  display: none;
}
.modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checkbox {
  position: relative;
  display: flex;
  justify-content: flex-start;
}
.modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checkbox .checkboxLabel {
  display: flex;
  flex-flow: row wrap;
  align-items: baseline;
  padding-left: 30px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  .modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checkbox .checkboxLabel {
    font-size: 12px;
  }
}
.modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checkbox .checkboxLabel .small {
  font-size: 13px;
}
.modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checkbox .checkboxLabel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  background: #fff;
  border: 3px solid #EFEFEF;
  box-shadow: none;
  border-radius: 3px;
}
.modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checkbox .checkboxInput {
  display: none;
}
.modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checkbox .checkboxInput:checked + .checkboxLabel::before {
  content: url("../img/elements/icn_check.svg");
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  background: #007440;
  border: 3px solid #007440;
  border-radius: 3px;
}
.modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checkbox.disable {
  pointer-events: none;
}
.modaal-inner-wrapper .accordionDetail .accordionDetailBox .dropdownList > li dl dd .checkbox.disable .checkboxLabel {
  color: rgba(153, 153, 153, 0.5);
}
.modaal-inner-wrapper .searchBtn2 {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  background: #36663A;
  font-weight: bold;
  font-size: 16px;
  color: #FFFFFF;
  border-radius: 60px;
  width: 220px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/*sec-storeInfo
------------------------------------------*/
section.sec-storeInfo {
  margin-top: 168px;
  margin-right: 40px;
  margin-bottom: 104px;
  border-top: 1px solid var(--gray, #E4E4E4);
}
@media only screen and (max-width: 1024px) {
  section.sec-storeInfo {
    margin: 84px 20px 52px;
  }
}
section.sec-storeInfo h3 {
  display: flex;
  flex-flow: row wrap;
}
@media only screen and (max-width: 1024px) {
  section.sec-storeInfo h3 {
    flex-flow: column;
  }
}
section.sec-storeInfo h3 .storeInfoTitle {
  display: block;
}
section.sec-storeInfo h3 .storeInfoTxt {
  display: block;
  margin-top: 3px;
  margin-left: 63px;
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(1.5584415584vw, 24px);
  font-weight: 700;
  line-height: normal;
}
@media only screen and (max-width: 1024px) {
  section.sec-storeInfo h3 .storeInfoTxt {
    margin-top: 32px;
    margin-left: 0;
    font-size: 21px;
  }
}
section.sec-storeInfo .storeInfoWrap {
  display: flex;
  flex-flow: row wrap;
}
@media only screen and (max-width: 1024px) {
  section.sec-storeInfo .storeInfoWrap {
    flex-flow: column;
  }
}
section.sec-storeInfo .storeInfoWrap .storeInfoSliderWrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: calc(60% - 40px);
}
@media only screen and (max-width: 1024px) {
  section.sec-storeInfo .storeInfoWrap .storeInfoSliderWrap {
    order: 2;
    width: 100%;
    margin-top: 32px;
  }
}
section.sec-storeInfo .storeInfoWrap .storeInfoSliderWrap .storeInfoSliderMain {
  width: calc(80% - 8px);
}
@media only screen and (max-width: 1024px) {
  section.sec-storeInfo .storeInfoWrap .storeInfoSliderWrap .storeInfoSliderMain {
    width: 100%;
    aspect-ratio: 335.74/224;
  }
}
section.sec-storeInfo .storeInfoWrap .storeInfoSliderWrap .storeInfoSliderMain .splide__slide {
  border-radius: 8px;
  overflow: hidden;
}
section.sec-storeInfo .storeInfoWrap .storeInfoSliderWrap .storeInfoSliderMain .splide__slide figure,
section.sec-storeInfo .storeInfoWrap .storeInfoSliderWrap .storeInfoSliderMain .splide__slide figure img {
  width: 100% !important;
  height: 100% !important;
}
section.sec-storeInfo .storeInfoWrap .storeInfoSliderWrap .storeInfoSliderMain .splide__slide figure img {
  -o-object-fit: cover;
     object-fit: cover;
}
section.sec-storeInfo .storeInfoWrap .storeInfoSliderWrap .storeInfoSliderThumb {
  width: calc(20% - 8px);
}
@media only screen and (max-width: 1024px) {
  section.sec-storeInfo .storeInfoWrap .storeInfoSliderWrap .storeInfoSliderThumb {
    width: 100%;
    margin-top: 8px;
  }
}
section.sec-storeInfo .storeInfoWrap .storeInfoSliderWrap .storeInfoSliderThumb .splide__track .splide__list {
  transform: none !important;
}
section.sec-storeInfo .storeInfoWrap .storeInfoSliderWrap .storeInfoSliderThumb .splide__track .splide__list .splide__slide {
  border: none;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}
section.sec-storeInfo .storeInfoWrap .storeInfoSliderWrap .storeInfoSliderThumb .splide__track .splide__list .splide__slide figure {
  transition: all ease-out 0.3s;
  height: 100% !important;
  opacity: 0.4;
}
section.sec-storeInfo .storeInfoWrap .storeInfoSliderWrap .storeInfoSliderThumb .splide__track .splide__list .splide__slide figure img {
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
section.sec-storeInfo .storeInfoWrap .storeInfoSliderWrap .storeInfoSliderThumb .splide__track .splide__list .splide__slide.is-active figure {
  opacity: 1;
}
section.sec-storeInfo .storeInfoWrap .storeInfoDetail {
  width: calc(40% - 40px);
  margin-left: 80px;
}
@media only screen and (max-width: 1440px) {
  section.sec-storeInfo .storeInfoWrap .storeInfoDetail {
    width: 40%;
    margin-left: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-storeInfo .storeInfoWrap .storeInfoDetail {
    order: 1;
    width: 100%;
    margin-left: 0;
  }
}
section.sec-storeInfo .storeInfoWrap .storeInfoDetail h4 {
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(2.0779220779vw, 32px);
  font-weight: 700;
  line-height: normal;
}
@media only screen and (max-width: 1024px) {
  section.sec-storeInfo .storeInfoWrap .storeInfoDetail h4 {
    font-size: 21px;
  }
}
section.sec-storeInfo .storeInfoWrap .storeInfoDetail .storeAddress {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding: 16px 32px;
  border-radius: 8px;
  background: var(--white, #FFF);
}
@media only screen and (max-width: 1200px) {
  section.sec-storeInfo .storeInfoWrap .storeInfoDetail .storeAddress {
    flex-flow: column;
    margin-top: 16px;
    padding: 16px 24px;
  }
}
section.sec-storeInfo .storeInfoWrap .storeInfoDetail .storeAddress p {
  width: calc(100% - 139px - 10px);
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(1.038961039vw, 16px);
  font-weight: 500;
  line-height: 170%; /* 27.2px */
}
@media only screen and (max-width: 1200px) {
  section.sec-storeInfo .storeInfoWrap .storeInfoDetail .storeAddress p {
    width: 100%;
    font-size: 13px;
  }
}
section.sec-storeInfo .storeInfoWrap .storeInfoDetail .storeAddress .linkBtn {
  width: 139px;
  height: 40px;
  font-size: min(0.9090909091vw, 14px);
  font-weight: 500;
  line-height: normal;
}
@media only screen and (max-width: 1200px) {
  section.sec-storeInfo .storeInfoWrap .storeInfoDetail .storeAddress .linkBtn {
    justify-content: center;
    width: 120px;
    height: 40px;
    margin-top: 10px;
    padding: 15px;
    font-size: 14px;
  }
}
section.sec-storeInfo .storeInfoWrap .storeInfoDetail .storeAddress .linkBtn::before {
  display: none;
}
section.sec-storeInfo .storeInfoWrap .storeInfoDetail .contactWrap {
  margin-top: 24px;
}
@media only screen and (max-width: 1024px) {
  section.sec-storeInfo .storeInfoWrap .storeInfoDetail .contactWrap {
    margin-top: 16px;
  }
}
section.sec-storeInfo .storeInfoWrap .storeInfoDetail .contactWrap .tel {
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(2.5974025974vw, 40px);
  font-weight: 600;
  line-height: 120%; /* 48px */
}
@media only screen and (max-width: 1024px) {
  section.sec-storeInfo .storeInfoWrap .storeInfoDetail .contactWrap .tel {
    font-size: 24px;
  }
}
section.sec-storeInfo .storeInfoWrap .storeInfoDetail .contactWrap .businessHours {
  margin-top: 8px;
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(1.038961039vw, 16px);
  font-weight: 500;
  line-height: 170%; /* 27.2px */
}
@media only screen and (max-width: 1024px) {
  section.sec-storeInfo .storeInfoWrap .storeInfoDetail .contactWrap .businessHours {
    margin-top: 8px;
    font-size: 13px;
  }
}
section.sec-storeInfo .storeInfoWrap .storeInfoDetail .btnWrap {
  display: flex;
  flex-flow: row wrap;
  margin-top: 24px;
}
@media only screen and (max-width: 1024px) {
  section.sec-storeInfo .storeInfoWrap .storeInfoDetail .btnWrap {
    margin-top: 16px;
  }
}
section.sec-storeInfo .storeInfoWrap .storeInfoDetail .btnWrap .linkBtn {
  width: 139px;
  height: 40px;
  margin-right: 16px;
  font-size: min(0.9090909091vw, 14px);
  font-weight: 500;
  line-height: normal;
}
@media only screen and (max-width: 1200px) {
  section.sec-storeInfo .storeInfoWrap .storeInfoDetail .btnWrap .linkBtn {
    justify-content: center;
    width: 139px;
    height: 40px;
    margin-bottom: 8px;
    padding: 15px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-storeInfo .storeInfoWrap .storeInfoDetail .btnWrap .linkBtn {
    margin-right: 8px;
  }
}
section.sec-storeInfo .storeInfoWrap .storeInfoDetail .btnWrap .linkBtn::before {
  display: none;
}
section.sec-storeInfo .storeInfoWrap .storeInfoDetail .btnWrap .linkBtn:last-child {
  margin-right: 0;
}
@media (hover: hover) and (pointer: fine) {
  section.sec-storeInfo .storeInfoWrap .storeInfoDetail .btnWrap .linkBtn:hover {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    background: #fff;
  }
  section.sec-storeInfo .storeInfoWrap .storeInfoDetail .btnWrap .linkBtn:hover.orange {
    color: #F4774E;
  }
  section.sec-storeInfo .storeInfoWrap .storeInfoDetail .btnWrap .linkBtn:hover.green {
    color: #007440;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  section.sec-storeInfo .storeInfoWrap .storeInfoDetail .btnWrap .linkBtn:hover {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    background: #fff;
  }
  section.sec-storeInfo .storeInfoWrap .storeInfoDetail .btnWrap .linkBtn:hover.orange {
    color: #F4774E;
  }
  section.sec-storeInfo .storeInfoWrap .storeInfoDetail .btnWrap .linkBtn:hover.green {
    color: #007440;
  }
}
section.sec-storeInfo .storeInfoWrap .storeInfoDetail .tagList {
  display: flex;
  flex-flow: row wrap;
  margin-top: 32px;
}
@media only screen and (max-width: 1024px) {
  section.sec-storeInfo .storeInfoWrap .storeInfoDetail .tagList {
    margin-top: 16px;
  }
}
section.sec-storeInfo .storeInfoWrap .storeInfoDetail .tagList > li {
  display: flex;
  padding: 2px 8px 0;
  justify-content: flex-end;
  align-items: flex-start;
  border-radius: 13px 4px 4px 13px;
  margin-right: 8px;
  margin-bottom: 4px;
  background: var(--Soutetsu-Navy, #1E2549);
  color: var(--white, #FFF);
  font-size: min(0.9090909091vw, 14px);
  font-weight: 500;
  line-height: 170%; /* 23.8px */
}
@media only screen and (max-width: 1024px) {
  section.sec-storeInfo .storeInfoWrap .storeInfoDetail .tagList > li {
    margin-right: 4px;
    font-size: 14px;
  }
}
section.sec-storeInfo .storeInfoWrap .storeInfoDetail .tagList > li::before {
  content: "●";
  display: inline-block;
  margin-right: 4px;
}
@media only screen and (max-width: 1024px) {
  section.sec-storeInfo .storeInfoWrap .storeInfoDetail .tagList > li::before {
    margin-right: 4px;
  }
}
section.sec-storeInfo .storeInfoWrap .storeInfoDetail .tagList > li:last-child {
  margin-right: 0;
}

/*sec-ourStaff
------------------------------------------*/
section.sec-ourStaff {
  margin-right: 40px;
  border-top: 1px solid var(--gray, #E4E4E4);
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff {
    margin: 0 20px;
  }
}
section.sec-ourStaff .ourStaffRead {
  color: var(--Soutetsu-Navy, #1E2549);
  text-align: center;
  font-size: min(2.0779220779vw, 32px);
  font-weight: 700;
  line-height: 120%; /* 38.4px */
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .ourStaffRead {
    font-size: 21px;
    text-align: left;
  }
}
section.sec-ourStaff .staffList {
  margin: 64px 0 104px;
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .staffList {
    margin: 32px 0 52px;
  }
}
section.sec-ourStaff .staffList > li {
  display: flex;
  flex-flow: row wrap;
  background: var(--white, #FFF);
  border-radius: 16px;
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .staffList > li {
    flex-flow: column;
    border-radius: 8px;
  }
}
section.sec-ourStaff .staffList > li + li {
  margin-top: 24px;
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .staffList > li + li {
    margin-top: 8px;
  }
}
section.sec-ourStaff .staffList > li .photo {
  width: 302px;
  padding: 16px;
}
@media only screen and (max-width: 1440px) {
  section.sec-ourStaff .staffList > li .photo {
    width: 230px;
  }
}
@media only screen and (max-width: 1200px) {
  section.sec-ourStaff .staffList > li .photo {
    width: 150px;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .staffList > li .photo {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    width: 100%;
    max-width: 400px;
  }
}
section.sec-ourStaff .staffList > li .photo figure {
  border-radius: 8px;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .staffList > li .photo figure {
    width: 55%;
  }
}
section.sec-ourStaff .staffList > li .photo figure img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
section.sec-ourStaff .staffList > li .photo .nameBox {
  position: relative;
  margin-top: 16px;
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .staffList > li .photo .nameBox {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: calc(45% - 16px);
    margin-top: 0;
  }
}
section.sec-ourStaff .staffList > li .photo .nameBox .position {
  position: absolute;
  left: 16px;
  bottom: 0px;
  color: var(--NICE_green, #007440);
  font-size: min(1.038961039vw, 16px);
  font-weight: 500;
  line-height: 170%; /* 27.2px */
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .staffList > li .photo .nameBox .position {
    position: inherit;
    left: inherit;
    bottom: inherit;
    font-size: 14px;
  }
}
section.sec-ourStaff .staffList > li .photo .nameBox .name {
  color: var(--Soutetsu-Navy, #1E2549);
  text-align: center;
  font-size: min(2.0779220779vw, 32px);
  font-weight: 700;
  line-height: 120%; /* 38.4px */
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .staffList > li .photo .nameBox .name {
    font-size: 21px;
  }
}
section.sec-ourStaff .staffList > li .text {
  width: calc(100% - 302px - 448px);
  padding: 40px 64px;
  border-left: 1px solid var(--light-gray, #F6F6F6);
}
@media only screen and (max-width: 1919px) {
  section.sec-ourStaff .staffList > li .text {
    padding: 40px;
  }
}
@media only screen and (max-width: 1440px) {
  section.sec-ourStaff .staffList > li .text {
    width: calc(100% - 230px - 250px - 72px);
    margin: 10px 18px;
    padding: 18px 0 0 10px;
  }
}
@media only screen and (max-width: 1200px) {
  section.sec-ourStaff .staffList > li .text {
    width: calc(100% - 150px - 150px - 36px);
    margin: 10px 0;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .staffList > li .text {
    width: calc(100% - 36px);
    margin: 10px auto;
    padding: 18px 0 0;
    border-top: 2px solid var(--gray, #E4E4E4);
    border-left: none;
  }
}
section.sec-ourStaff .staffList > li .text .license {
  display: flex;
  flex-flow: row wrap;
}
section.sec-ourStaff .staffList > li .text .license > li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  margin-bottom: 3px;
  margin-right: 8px;
  padding: 0 22px;
  color: var(--NICE_green, #007440);
  font-size: min(0.9090909091vw, 14px);
  font-weight: 700;
  text-align: center;
  line-height: 120%; /* 16.8px */
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .staffList > li .text .license > li {
    width: calc(50% - 1.5px);
    max-width: 150px;
    margin-right: 3px;
    font-size: 12px;
  }
}
@media only screen and (max-width: 375px) {
  section.sec-ourStaff .staffList > li .text .license > li {
    margin-right: 0;
  }
}
section.sec-ourStaff .staffList > li .text .license > li::before {
  content: url(../img/pages/top/icn_leaf_left.svg);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 20px;
  height: 40px;
  margin-right: 2px;
}
section.sec-ourStaff .staffList > li .text .license > li::after {
  content: url(../img/pages/top/icn_leaf_right.svg);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 20px;
  height: 40px;
  margin-left: 2px;
}
section.sec-ourStaff .staffList > li .text .license > li:last-child {
  margin-right: 0;
}
section.sec-ourStaff .staffList > li .text .profile {
  margin: 21px 0 24px;
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .staffList > li .text .profile {
    margin: 8px 0;
  }
}
section.sec-ourStaff .staffList > li .text .profile > li + li {
  margin-top: 8px;
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .staffList > li .text .profile > li + li {
    margin-top: 4px;
  }
}
section.sec-ourStaff .staffList > li .text .profile > li dl {
  display: flex;
  flex-flow: row wrap;
}
section.sec-ourStaff .staffList > li .text .profile > li dl dt, section.sec-ourStaff .staffList > li .text .profile > li dl dd {
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(1.038961039vw, 16px);
  font-weight: 500;
  line-height: 170%; /* 27.2px */
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .staffList > li .text .profile > li dl dt, section.sec-ourStaff .staffList > li .text .profile > li dl dd {
    font-size: 14px;
  }
}
section.sec-ourStaff .staffList > li .text .profile > li dl dt {
  position: relative;
  width: 60px;
  margin-right: 4px;
}
section.sec-ourStaff .staffList > li .text .profile > li dl dt::after {
  content: "：";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
}
section.sec-ourStaff .staffList > li .text .profile > li dl dd {
  width: calc(100% - 60px - 4px);
}
section.sec-ourStaff .staffList > li .text .message {
  padding-top: 24px;
  /*border-top: 2px solid var(--gray, #E4E4E4);*/
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(1.038961039vw, 16px);
  font-weight: 500;
  line-height: 170%; /* 27.2px */
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .staffList > li .text .message {
    padding-top: 8px;
    font-size: 14px;
  }
}
section.sec-ourStaff .staffList > li .recommend {
  width: 448px;
  padding: 40px 64px;
  border-left: 1px solid var(--light-gray, #F6F6F6);
}
section.sec-ourStaff .staffList > li .recommend figure img{
  aspect-ratio: 4/3;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media only screen and (max-width: 1919px) {
  section.sec-ourStaff .staffList > li .recommend {
    padding: 40px;
  }
}
@media only screen and (max-width: 1440px) {
  section.sec-ourStaff .staffList > li .recommend {
    width: 250px;
    margin: 17px 18px;
    padding: 0 0 0 10px;
  }
}
@media only screen and (max-width: 1200px) {
  section.sec-ourStaff .staffList > li .recommend {
    width: 150px;
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .staffList > li .recommend {
    width: calc(100% - 36px);
    padding: 16px 0;
    border-top: 2px solid var(--gray, #E4E4E4);
    border-left: none;
  }
}
section.sec-ourStaff .staffList > li .recommend figure {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
section.sec-ourStaff .staffList > li .recommend figure figcaption {
  position: absolute;
  top: 0;
  left: 0;
  padding: 4px 8px;
  border-radius: 8px 0px;
  background: var(--neon-Green, #00FFA9);
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(0.9090909091vw, 14px);
  font-weight: 600;
  line-height: 120%; /* 16.8px */
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .staffList > li .recommend figure figcaption {
    font-size: 14px;
  }
}
section.sec-ourStaff .staffList > li .recommend .propertyName {
  margin-top: 10px;
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(1.1688311688vw, 18px);
  font-weight: 700;
  line-height: 170%; /* 30.6px */
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .staffList > li .recommend .propertyName {
    margin-top: 10px;
    font-size: 16px;
  }
}
section.sec-ourStaff .staffList > li .recommend .propertyDetail {
  margin-top: 4px;
  color: var(--NICE_green, #007440);
  font-size: min(1.038961039vw, 16px);
  font-weight: 500;
  line-height: 170%; /* 27.2px */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .staffList > li .recommend .propertyDetail {
    margin-top: 0;
    font-size: 14px;
  }
}
section.sec-ourStaff .ourStaffSubBox {
  padding: 64px 0 104px;
  border-top: 1px solid var(--gray, #E4E4E4);
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .ourStaffSubBox {
    padding: 32px 0 52px;
  }
}
section.sec-ourStaff .ourStaffSubBox .ourStaffSubTitle {
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(1.5584415584vw, 24px);
  font-weight: 700;
  line-height: normal;
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .ourStaffSubBox .ourStaffSubTitle {
    font-size: 18px;
  }
}
section.sec-ourStaff .ourStaffSubBox ul {
  display: inline-block;
  margin-top: 28px;
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .ourStaffSubBox ul {
    margin-top: 8px;
  }
}
section.sec-ourStaff .ourStaffSubBox ul li {
  display: inline;
  position: relative;
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(1.038961039vw, 16px);
  font-weight: 500;
  line-height: 170%; /* 27.2px */
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .ourStaffSubBox ul li {
    font-size: 14px;
  }
}
section.sec-ourStaff .ourStaffSubBox ul li::after {
  content: "｜";
  display: inline-block;
}
section.sec-ourStaff .ourStaffSubBox ul li:last-child::after {
  display: none;
}
section.sec-ourStaff .ourStaffSubBox ul li a {
  color: var(--NICE_green, #007440);
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .ourStaffSubBox ul.splide__list {
    flex-flow: inherit;
  }
}
section.sec-ourStaff .ourStaffSubBox .caption {
  margin-top: 25px;
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(0.7142857143vw, 11px);
  font-weight: 500;
  line-height: 140%; /* 15.4px */
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .ourStaffSubBox .caption {
    margin-top: 8px;
    font-size: 10px;
  }
}
section.sec-ourStaff .niceValuePlusWrap {
  padding: 64px 0 64px;
  border-top: 1px solid var(--gray, #E4E4E4);
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .niceValuePlusWrap {
    padding: 32px 0 32px;
  }
}
section.sec-ourStaff .niceValuePlusWrap a {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .niceValuePlusWrap a {
    flex-flow: column;
  }
}
section.sec-ourStaff .niceValuePlusWrap a figure {
  width: 50%;
  border-radius: 16px;
  overflow: hidden;
}
section.sec-ourStaff .niceValuePlusWrap a figure img {
  transition: all ease-out 0.3s;
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .niceValuePlusWrap a figure {
    width: 100%;
  }
}
section.sec-ourStaff .niceValuePlusWrap a .niceValuePlusLink {
  display: flex;
  flex-flow: column;
  width: calc(50% - 64px);
  padding: 32px 0;
}
@media only screen and (max-width: 1200px) {
  section.sec-ourStaff .niceValuePlusWrap a .niceValuePlusLink {
    width: calc(50% - 30px);
  }
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .niceValuePlusWrap a .niceValuePlusLink {
    width: 100%;
    margin-top: 20px;
    padding: 0;
  }
}
section.sec-ourStaff .niceValuePlusWrap a .niceValuePlusLink .niceValuePlusTxt {
  flex-grow: 1;
}
section.sec-ourStaff .niceValuePlusWrap a .niceValuePlusLink .niceValuePlusTxt h4 {
  display: flex;
  flex-flow: column;
}
section.sec-ourStaff .niceValuePlusWrap a .niceValuePlusLink .niceValuePlusTxt h4 .jp {
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(1.5584415584vw, 24px);
  font-weight: 700;
  line-height: normal;
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .niceValuePlusWrap a .niceValuePlusLink .niceValuePlusTxt h4 .jp {
    font-size: 16px;
  }
}
section.sec-ourStaff .niceValuePlusWrap a .niceValuePlusLink .niceValuePlusTxt h4 .en {
  margin-top: 16px;
  color: var(--Pale-Green, #9BA49F);
  font-size: min(1.038961039vw, 16px);
  font-weight: 500;
  line-height: 120%; /* 19.2px */
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .niceValuePlusWrap a .niceValuePlusLink .niceValuePlusTxt h4 .en {
    margin-top: 8px;
    font-size: 11px;
  }
}
section.sec-ourStaff .niceValuePlusWrap a .niceValuePlusLink .niceValuePlusTxt p {
  margin-top: 16px;
  color: var(--Soutetsu-Navy, #1E2549);
  font-size: min(1.038961039vw, 16px);
  font-weight: 500;
  line-height: 170%; /* 27.2px */
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .niceValuePlusWrap a .niceValuePlusLink .niceValuePlusTxt p {
    margin-top: 8px;
    font-size: 14px;
  }
}
section.sec-ourStaff .niceValuePlusWrap a .niceValuePlusLink .viewmoreWrap .line {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 8px;
  background: var(--Soutetsu-Navy, #1E2549);
  overflow: hidden;
}
section.sec-ourStaff .niceValuePlusWrap a .niceValuePlusLink .viewmoreWrap .line::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #00FFA9;
  transform-origin: top left;
  transform: scale(0, 1);
  transition: all ease-out 0.3s;
  opacity: 0;
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .niceValuePlusWrap a .niceValuePlusLink .viewmoreWrap .line {
    margin-top: 8px;
  }
}
section.sec-ourStaff .niceValuePlusWrap a .niceValuePlusLink .viewmoreWrap .more {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: var(--Soutetsu-Navy, #1E2549);
  text-align: right;
  font-size: min(1.038961039vw, 16px);
  font-weight: 600;
  line-height: 120%; /* 19.2px */
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  section.sec-ourStaff .niceValuePlusWrap a .niceValuePlusLink .viewmoreWrap .more {
    font-size: 16px;
  }
}
@media (hover: hover) and (pointer: fine) {
  section.sec-ourStaff .niceValuePlusWrap a:hover figure img {
    transform: scale(1.1);
  }
  section.sec-ourStaff .niceValuePlusWrap a:hover .niceValuePlusLink .viewmoreWrap .line::before {
    transform: scale(1, 1);
    opacity: 1;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  section.sec-ourStaff .niceValuePlusWrap a:hover figure img {
    transform: scale(1.1);
  }
  section.sec-ourStaff .niceValuePlusWrap a:hover .niceValuePlusLink .viewmoreWrap .line::before {
    transform: scale(1, 1);
    opacity: 1;
  }
}

#pxBase .sec-Search .tabSearchWrap .tabSearch .tabContents#tab-gakku .searchCheckWrap .searchDetailBox .accordionWrap .accordionDetailWrap.schoolAccordion {
    margin-top: 0;
    padding: 0;
    background: none;
}
#pxBase .sec-Search .tabSearchWrap .tabSearch .tabContents#tab-gakku .searchCheckWrap .searchDetailBox .accordionWrap .accordionDetailWrap.schoolAccordion .schoolAccordionDetailWrap{
    padding: 20px;
    background: #F6F6F5;
}
#pxBase .sec-Search .tabSearchWrap .tabSearch .tabContents#tab-gakku .searchCheckWrap .searchDetailBox .accordionWrap .accordionDetailWrap.schoolAccordion .schoolChangeTab{
    margin-top: 20px;
    display:flex;
}
#pxBase .sec-Search .tabSearchWrap .tabSearch .tabContents#tab-gakku .searchCheckWrap .searchDetailBox .accordionWrap .accordionDetailWrap.schoolAccordion .schoolChangeTab li{
    background: #AAAAAA;
    margin-left:15px;
    text-align:center;
    color:#FFFFFF;
    padding: 5px 20px;
    font-weight: 500;
}
#pxBase .sec-Search .tabSearchWrap .tabSearch .tabContents#tab-gakku .searchCheckWrap .searchDetailBox .accordionWrap .accordionDetailWrap.schoolAccordion .schoolChangeTab li.active{
    background: #F6F6F5;
    color:#36663A;
}

/*sec-00
------------------------------------------*//*# sourceMappingURL=top.css.map */