@charset "UTF-8";

section {
  padding-bottom: 100px;
  padding-top: 150px;
  border: none;
}

@media screen and (max-width: 959.98px) {
  section {
    padding: 40px 0;
  }
}

@media screen and (max-width: 767.98px) {
  section {
    padding: 15px 0;
  }
}



/**
 * top page c-head
**/
.wrap.top .c-head__ttl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
}


.top-sec__more {
  display: block;
  text-align: right;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.top-sec__more:last-child {
  margin-left: auto;
}

.top-sec__more a {
  display: block;
  font-size: 13px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 12px;
  position: relative;
}

.top-sec__more a::after {
  content: '';
  display: block;
  border-top: 1px solid var(--site-c-main);
  border-right: 1px solid var(--site-c-main);
  width: 0.71em;
  height: 0.71em;
  margin-top: -0.355em;
  position: absolute;
  top: 50%;
  right: 0;
  transform: rotate(45deg);
}

@media screen and (max-width: 767.98px) {
  .top-sec__more {
    text-align: right;
    margin-top: 0;
    margin-left: auto;
    font-weight: 400
  }
}


/**
 * top mv
**/
.main-vis {
  padding: 20px 0
}

.main-vis__ttl {
  color: var(--site-c-main);
  font-size: 30px;
  font-weight: 700;
}

.main-vis-list {
  margin-top: 20px;
  margin-bottom: 0px !important;
}

@media screen and (max-width: 959.98px) {
  .main-vis {}
}

@media screen and (max-width: 767.98px) {
  .main-vis {
    padding: 15px 0;
  }

  .main-vis__ttl {
    font-size: 18px;
  }

  .main-vis-list {
    margin-top: 10px;
  }
}

.fv-container {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  gap: 20px;
  position: absolute;
  top: 0;
}

.slider-column {
  width: 26%;
  height: 100%;
  position: relative;
}

.slider-track {
  display: flex;
  flex-direction: column;
  -webkit-animation: scrollUp linear infinite;
  animation: scrollUp linear infinite;
}

.image-box {
  width: 100%;
  aspect-ratio: 400/524;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #555;
  margin-bottom: 20px;
}

.image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: bottom;
}


/* --- 縦スクロールアニメーションの定義 --- */

@-webkit-keyframes scrollUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }

  /* 1セット分移動 */
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}


/* --- 列ごとの速度調整 --- */

.column-left .slider-track {
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
}

.column-right .slider-track {
  -webkit-animation-duration: 15s;
  animation-duration: 15s;
}

/* =========================================
   SP用の追加スタイル (768px以下で適用)
   ========================================= */

@media screen and (max-width: 767px) {

  .fv-container {
    display: block;
    gap: 0;
  }

  .slider-column {
    display: none;
  }

  /* ------------------- SP専用トラックの表示 ------------------- */

  .slider-track-horizontal {
    display: flex;
    width: 400%;
    align-items: center;
    -webkit-animation: scrollLeft 25s linear infinite;
    animation: scrollLeft 25s linear infinite;
  }

  .slider-track-horizontal .image-box {
    width: 38vw;
    aspect-ratio: 400/524;
    height: auto;
    margin-bottom: 0;
    margin-right: 10px;
  }

  .slider-track-horizontal .image-box:nth-child(even) {
    transform: translateY(20px);
  }

  /* ------------------- 横スクロールアニメーションの定義 ------------------- */

  @-webkit-keyframes scrollLeft {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }

    /* 1セット分移動 */
  }

  @keyframes scrollLeft {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }
}

.main-visual {
  padding: 40px 0;
  /* height: 800px; */
}

.main-visual-text {
  display: flex;
  flex-direction: column;
  width: 55%;
}

.main-visual-text-01 {
  margin-bottom: 50px;
  width: 90%;

}

.main-visual-text-02 {
  width: 80%;
  margin-bottom: 40px;
}

.main-visual-text-03 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.78;
  letter-spacing: 0.36px;
}

.main-visual-btn-wrap {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}

.main-visual-btn {
  width: 50%;
}

.main-visual-btn a {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  color: var(--site-c-sub);
  font-feature-settings: 'palt';
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  max-width: 400px;
  width: 100%;
  height: 66px;
  margin: 0 auto;
  padding-inline: 1em;
  position: relative;
  border-radius: 40px;
  border: solid 1px var(--site-c-sub);
  background-color: #fff;
}

.main-visual-btn a:after {
  content: '';
  display: block;
  border-top: 1.5px solid var(--site-c-sub);
  border-right: 1.5px solid var(--site-c-sub);
  width: 10px;
  height: 10px;
  margin-top: -0.355em;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: rotate(45deg);
}

.main-visual-btn [href*="/login"] {
  border: 1px solid var(--site-c-main);
  background: var(--site-c-main);
  color: #fff;
}

.main-visual-btn [href*="/login"]:after {
  border-color: #fff;
}

@media screen and (max-width: 767.98px) {
  .main-visual {
    padding: 20px 0;
  }

  .main-visual-text {
    width: 100%;
  }

  .main-visual-text-01 {
    margin-bottom: 30px;
    width: 100%;

  }

  .main-visual-text-02 {
    width: 80%;
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .main-visual-text-03 {
    font-size: 12px;
  }

  .main-visual-btn-wrap {
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
  }

  .main-visual-btn {
    width: 100%;
    max-width: 300px;
  }

  .main-visual-btn a {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    color: var(--site-c-sub);
    font-feature-settings: 'palt';
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    max-width: 400px;
    width: 100%;
    height: 66px;
    margin: 0 auto;
    padding-inline: 1em;
    position: relative;
    border-radius: 40px;
    border: solid 1px var(--site-c-sub);
    background-color: #fff;
  }

  .main-visual-btn a:after {
    content: '';
    display: block;
    border-top: 1.5px solid var(--site-c-sub);
    border-right: 1.5px solid var(--site-c-sub);
    width: 10px;
    height: 10px;
    margin-top: -0.355em;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: rotate(45deg);
  }

  .main-visual-btn [href*="/login"] {
    border: 1px solid var(--site-c-main);
    background: var(--site-c-main);
    color: #fff;
  }

  .main-visual-btn [href*="/login"]:after {
    border-color: #fff;
  }
}

/**
 * top about
**/
.top-about {
  background-image: url(../images/bg_about.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}

.top-about-wrap {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 30px;
}

.top-about-img {
  width: 50%;
}

.top-about-text {
  width: 50%;
  font-size: 25px;
  font-weight: 500;
  line-height: 3.08;
  letter-spacing: 0.52px;
}

@media screen and (max-width: 959.98px) {
  .top-about {
    background-position: center center;
    padding-top: 100px;
  }

  .top-about-wrap {
    flex-direction: column;
    gap: 20px;
  }

  .top-about-img {
    width: 70%;
  }

  .top-about-text {
    width: 90%;
    font-size: 18px;

  }
}

@media screen and (max-width: 767.98px) {
  .top-about {
    padding-top: 50px;
  }

  .top-about-text {
    width: 100%;
    font-size: 14px;
    line-height: 2.57;
    letter-spacing: 0.28px;

  }
}

/**
 * top fvSearch
**/
.top-fvSearch {
  padding: 20px 0
}

.top-fvSearch__item {
  background: #fff;
  border-radius: 10px;
  margin: 0 auto;
  padding: 25px 30px;
  max-width: 920px;
  width: 100%;
  gap: 20px;
  position: relative;
  box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
}

@media screen and (max-width: 1400.98px) {
  .top-fvSearch__item {}
}

@media screen and (max-width: 959.98px) {
  .top-fvSearch__item {}
}

@media screen and (max-width: 767.98px) {
  .top-fvSearch {
    padding: 0
  }

  .top-fvSearch__item {
    width: calc(100% + 30px);
    margin: 0 -15px;
    padding: 10px 20px 15px;
    border-radius: 0;
    gap: 10px;
  }
}

.top-fvSearch-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-fvSearch-head__ttl {
  color: var(--site-c-main);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin: 0;
}

@media screen and (max-width: 1400.98px) {
  .top-fvSearch-head__ttl {
    font-size: 32px;
  }
}

@media screen and (max-width: 767.98px) {
  .top-fvSearch-head__ttl {
    display: none
  }
}

.top-fvSearch-head__count {
  font-size: 15px
}

.top-fvSearch-head__count em {
  color: var(--site-c-main);
  font-size: 25px;
  font-weight: 700;
}

.top-fvSearch-head__txtLink {
  font-size: 12px;
}

.top-fvSearch-head__txtLink a {
  padding-right: 10px;
  position: relative;
}

.top-fvSearch-head__txtLink a::after {
  content: '';
  margin-top: -4px;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  border-top: 1px solid var(--site-c-main);
  border-right: 1px solid var(--site-c-main);
  transform: rotate(45deg);
}

@media screen and (min-width: 767.1px) {
  .top-fvSearch-head__txtLink {
    display: none
  }
}

.top-fvSearch__fieldset {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 4px;
}

.top-fvSearch__fieldset-sub {
  display: flex;
  align-content: stretch;
  align-items: stretch;
  gap: 10px;
}

@media screen and (max-width: 767.98px) {
  .top-fvSearch__fieldset-sub {}
}

.top-fvSearch__select {
  border-radius: 5px;
  border: solid 1px var(--site-c-gray-ui);
  background-repeat: no-repeat;
  background-position: right 1em top 50%, left 0.5em top 50%;
  background-size: 0.6em auto, 1.5em 1.5em;
  background-color: var(--site-c-gray-ui);
  color: var(--font-c);
  font-size: inherit;
  font-weight: 400;
  width: 100%;
  height: var(--site-input-height);
  margin: 0;
  padding: 10px 30px 10px 45px;
}

.select-arrow-container {
  width: calc((100% - 10px) / 2);
  height: var(--site-input-height);
  position: relative
}

.select-arrow-container.icon-fork::before {
  content: '';
  margin-top: -11px;
  top: 50%;
  left: 15px;
  width: 23px;
  height: 22px;
  display: block;
  position: absolute;
  background-image: url(/common/images/icon-fork.svg);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.select-arrow-container.icon-area::before {
  content: '';
  margin-top: -11px;
  top: 50%;
  left: 22px;
  width: 14.5px;
  height: 22px;
  display: block;
  position: absolute;
  background-image: url(/common/images/icon-area.svg);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.select-arrow-container::after {
  content: '';
  margin-top: -4px;
  top: 50%;
  right: 17px;
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(135deg);
  pointer-events: none;
}

.top-fvSearch__fieldset-sub>button {
  width: 240px;
  height: var(--site-input-height);
  padding: 0 1em;
  border-radius: 30px;
  border: solid 1px var(--site-c-orange);
  background: var(--site-c-orange);
  color: #fff;
  font-size: inherit;
  font-weight: 600;
}

@media screen and (min-width: 767.1px) {
  .top-fvSearch-kw {
    width: 100%;
    max-width: 920px;
    margin: 20px auto 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
  }
}

.top-fvSearch-kw__ttl {
  font-size: 18px;
  font-weight: 700;
}

.top-fvSearch-kw__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.top-fvSearch-kw__list li {}

.top-fvSearch-kw__list li a {
  height: 30px;
  padding: 0 14px;
  background-color: #FAF3F8;
  border-radius: 60px;
  color: var(--site-c-main);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767.98px) {
  .top-fvSearch__select {
    padding: 10px 25px 10px 35px;
  }

  .select-arrow-container.icon-area::before {
    left: 12px;
  }

  .select-arrow-container.icon-fork::before {
    left: 7px;
  }

  .select-arrow-container::after {
    right: 12px
  }

  .top-fvSearch__fieldset-sub>button {
    width: 100px;
    border-radius: 5px
  }

  .top-fvSearch-kw {
    display: flex;
    align-items: center;
    gap: 10px
  }

  .top-fvSearch-kw__ttl {
    font-size: 12px;
    font-weight: 400
  }

  .top-fvSearch-kw__list li a {
    font-size: 10px
  }
}

/**
 * top corporateBnr
**/
.top-corporateBnr {
  margin: 40px 0;
  padding: 20px 0 30px;
  background-color: var(--site-c-main);
}

.top-corporateBnr__ttl {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.top-corporateBnr__list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

.top-corporateBnr__list li {}

@media screen and (max-width: 767.98px) {
  .top-corporateBnr {
    margin: 0
  }

  .top-corporateBnr__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
}

/**
 * top main・side
**/
.top-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 60px;
}

.top-main {
  width: calc(100% - 280px - 60px);
}

.top-side {
  width: 280px;
}

@media screen and (max-width: 1280.98px) {

  .top-main,
  .top-side {
    width: 100%;
  }

  .top-side {
    margin-top: -40px
  }
}

/**
 * top mapSearch
**/
.top-mapSearch {}

.top-mapSearch__ttl.icon-area::before {
  width: 14.34px;
  height: 22px;
}

.top-mapSearch-list {
  container-type: size;
  max-width: 860px;
  aspect-ratio: 86 / 61;
  position: relative;
}

@media screen and (max-width: 767.98px) {
  .top-mapSearch-list {
    aspect-ratio: 86 / 61;
  }
}

@media screen and (max-width: 560.98px) {
  .top-mapSearch-list {
    aspect-ratio: 100 / 100;
  }
}


.top-mapSearch__bg {
  --offset-x: 56.25cqw;
  --offset-y: 97.2cqh;
  width: 56.25%;
  height: auto;
  aspect-ratio: 482 / 593;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 767.98px) {
  .top-mapSearch__bg {
    --offset-x: 56.25cqw;
    --offset-y: 97.2cqh;
  }
}

@media screen and (max-width: 560.98px) {
  .top-mapSearch__bg {
    --offset-x: 56.25cqw;
    --offset-y: 69.1875cqh;
  }
}

.top-mapSearch-list-item {
  border-radius: 5px;
  background: #fff;
  width: 180px;
  padding: 20px;
  font-size: 14px;
  position: absolute;
  z-index: 5;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.top-mapSearch-list-item.is--hover {
  background: var(--site-c-main);
}

.top-mapSearch-list-item.is--active {
  background: var(--site-c-main);
}

.top-mapSearch-list-item.hokkaido-tohoku {
  right: 0;
  top: 50px;
}

.top-mapSearch-list-item.kanto {
  right: 0;
  top: 265px;
}

.top-mapSearch-list-item.tokai {
  right: 0;
  top: 480px;
}

.top-mapSearch-list-item.kinki {
  right: 210px;
  bottom: 40px;
}

.top-mapSearch-list-item.koshinetsu-hokuriku {
  left: 210px;
  top: 70px;
}

.top-mapSearch-list-item.shikoku {
  left: 210px;
  bottom: 0;
}

.top-mapSearch-list-item.chugoku {
  left: 0;
  top: 100px;
}

.top-mapSearch-list-item.kyushu-okinawa {
  left: 0;
  top: 290px;
}

@media screen and (min-width: 767.1px) {
  .top-mapSearch-list-item__ttl {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: dotted 3px #A3A3A3;
    font-weight: 700;
  }
}

.top-mapSearch-list-item__ttl a {
  display: block;
  position: relative
}

.top-mapSearch-list-item__ttl a::after {
  content: '';
  margin-top: -4px;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  border-top: 1px solid var(--site-c-main);
  border-right: 1px solid var(--site-c-main);
  transform: rotate(45deg);
  transition: border-color 0.4s ease;
}

.top-mapSearch-list-item.is--hover .top-mapSearch-list-item__ttl a,
.top-mapSearch-list-item.is--active .top-mapSearch-list-item__ttl a {
  color: #fff;
}

.top-mapSearch-list-item.is--hover .top-mapSearch-list-item__ttl a::after,
.top-mapSearch-list-item.is--active .top-mapSearch-list-item__ttl a::after {
  border-top-color: #fff;
  border-right-color: #fff;
}

.top-mapSearch-list-item__prefecture {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 20px
}

.top-mapSearch-list-item__prefecture li a {
  display: block;
  position: relative
}

.top-mapSearch-list-item.is--hover .top-mapSearch-list-item__prefecture li a,
.top-mapSearch-list-item.is--active .top-mapSearch-list-item__prefecture li a {
  color: #fff;
}

.top-mapSearch-list-item__prefecture li a::after {
  content: '';
  margin-top: -4px;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  border-top: 1px solid var(--site-c-main);
  border-right: 1px solid var(--site-c-main);
  transform: rotate(45deg);
  transition: border-color 0.4s ease;
}

.top-mapSearch-list-item.is--hover .top-mapSearch-list-item__prefecture li a::after,
.top-mapSearch-list-item.is--active .top-mapSearch-list-item__prefecture li a::after {
  border-top-color: #fff;
  border-right-color: #fff;
}

@media screen and (max-width: 959.98px) {
  .top-mapSearch-list-item.shikoku {
    left: 190px
  }
}

@media screen and (max-width: 767.98px) {
  .top-mapSearch-list-item {
    width: 100px;
    height: 60px;
    padding: 0 12px;
    box-shadow: 0 0px 5px 0 rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .top-mapSearch-list-item.hokkaido-tohoku {
    top: 10px
  }

  .top-mapSearch-list-item.kanto {
    top: 175px
  }

  .top-mapSearch-list-item.tokai {
    top: 250px
  }

  .top-mapSearch-list-item.kinki {
    left: 50%;
    right: auto;
    top: 250px;
    bottom: auto;
    margin-left: -50px;
  }

  .top-mapSearch-list-item.shikoku {
    left: 0;
    top: 175px;
    bottom: auto
  }

  .top-mapSearch-list-item.chugoku {
    top: 100px
  }

  .top-mapSearch-list-item.kyushu-okinawa {
    top: 250px
  }

  .top-mapSearch-list-item.koshinetsu-hokuriku {
    left: 50%;
    top: 100px;
    margin-left: -50px;
  }

  .top-mapSearch-list-item__ttl {
    width: 100%;
    font-weight: 700;
  }

  .top-mapSearch-list-item__ttl a:after {
    right: 10px
  }

  .top-mapSearch-list-item__prefecture {
    display: none
  }
}

/**
 * top feature
**/

.top-feature {
  position: relative;
  background-color: var(--site-bg-c-black-ui);
  margin-top: 80px;
  padding-bottom: 200px;
}

.top-feature::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  width: 733px;
  height: 180px;
  background-image: url(../images/ttl_feature.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;
}

@media screen and (max-width: 959px) {
  .top-feature {
    padding: 100px 0 60px;
  }

  .top-feature::before {
    top: -34px;
    width: 244px;
    height: 60px;
    background-position: left top;
  }
}

.top-feature .c-head__ttl {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.72px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.top-feature .c-head__ttl::after {
  content: "";
  width: 180px;
  height: 5px;
  margin-top: 35px;
  background-color: #fff;
}

@media screen and (max-width: 767.98px) {
  .top-feature .c-head__ttl {
    font-size: 20px;
  }

  .top-feature .c-head__ttl::after {
    content: "";
    width: 100px;
    height: 2px;
    margin-top: 20px;
    margin-bottom: 60px;
  }
}

.top-feature-list {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.top-feature-list li {
  width: calc(100% / 3);
  padding: 60px 30px;
  border-radius: 25px;
  background-color: #fff;
}

.top-feature-list li:nth-child(2) {
  margin-top: 100px;
}

.top-feature-list li:nth-child(3) {
  margin-top: 200px;
}

.top-feature-img {
  margin: 0 auto;
  margin-bottom: 20px;
  max-width: 280px;
  height: 190px;
}

.top-feature-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.top-feature-num {
  margin: 0 auto;
  width: 79px;
  height: 60px;

}

.top-feature-num img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.top-feature-ttl {
  font-size: 26px;
  font-weight: bold;
  line-height: 2.69;
  text-align: center;
  color: #4d4d4d;
}

.top-feature-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.67;
}

@media screen and (max-width: 767.98px) {
  .top-feature-list {
    gap: 20px;
    flex-direction: column;
  }

  .top-feature-list li {
    width: 100%;

    padding: 60px 30px;
    border-radius: 25px;
    background-color: #fff;
  }

  .top-feature-list li:nth-child(2) {
    margin-top: 0;
  }

  .top-feature-list li:nth-child(3) {
    margin-top: 0;
  }

  .top-feature-img {}

  .top-feature-img img {}

  .top-feature-num {}

  .top-feature-num img {}

  .top-feature-ttl {
    font-size: 24px;
  }

  .top-feature-text {
    font-size: 16px;
  }
}

/**
 * top key
**/
.top-key {
  padding: 150px 0;
  border-radius: 80px;
  background-image: linear-gradient(to bottom, #f7f7f7 37%, rgba(255, 255, 255, 0.7));
  margin: -100px 60px 700px;
  position: relative;
}

.top-key::after {
  content: "";
  background-image: url(../images/bg_key.png);
  background-size: cover;
  display: block;
  aspect-ratio: 15 / 8;
  margin: 0 -60px;
  z-index: -1;
  position: absolute;
  bottom: -700px;
  left: 0;
  right: 0;
}

.top-key-box {
  margin-bottom: 160px;
}

.top-key-box:last-child {
  margin-bottom: 0;
}

.top-key-wrap {
  display: flex;
  margin-bottom: 100px;
}

.top-key-num {
  width: 236px;
  margin-right: 180px;
  flex-shrink: 0;
}

.top-key-ttl {
  font-size: 38px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 1px;
  color: #a78c5a;
  margin-bottom: 30px;
}

.top-key-ttl span {
  font-size: 50px;
}

.top-key-text {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.92;
  letter-spacing: 0.52px;
}

.key_sample_wrap {
  background-color: #fff;
  border-radius: 20px;
  padding: 5rem 0 0;
  margin-bottom: -10rem;
}

.key_sample_box01 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.key_sample_item {
  width: 49%;
}

.key_sample_item:first-child {
  padding: 0 0 0 5rem;
}

.key_sample_item:last-child {
  padding: 0;
}

.key_sample_item:last-child .details__subttl {
  margin-left: 1em;
}

.key_sample_box02 {
  width: 100%;
  padding: 5rem 5rem 0;
  height: 19.2em;
  overflow: hidden;
}

.key_sample_box02 .details__subttl {
  margin-bottom: 10px;
}

@media screen and (max-width: 959.98px) {
  .top-key {
    padding: 20px 0;
    border-radius: 40px;
    margin: -50px 20px 550px;
  }

  .top-key::after {
    bottom: -550px;
  }

  .top-key-box {
    margin-bottom: 60px;
  }

  .top-key-wrap {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .key_sample_box02 {
    padding: 0;
    height: 24em;
  }

  .key_sample_box02 .details__subttl {
    font-size: 18px;
  }

  .top-key-num {
    width: 118px;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .top-key-ttl {
    font-size: 19px;
    margin-bottom: 20px;
  }

  .top-key-ttl span {
    font-size: 24px;
  }

  .top-key-text {
    font-size: 16px;
  }

  .key_sample_item {
    width: 100%;
  }

  .key_sample_wrap {
    padding: 3rem 2rem;
  }

  .key_sample_item:first-child {
    padding: 0;
    margin-bottom: 3rem;
  }

  .key_sample_item:last-child .details__subttl {
    margin-left: 0;
  }

  .key_sample_item .details__subttl {
    font-size: 18px;
    margin-bottom: -3rem;
  }

  .key_sample_item:first-child .details__subttl {
    margin-bottom: 1rem;
  }
}

.top-key-card-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0 auto;
  /* padding: 10px; */
  margin-bottom: 60px;
}

.card-column {
  width: calc((100% - 75px) / 6);
  background-color: #fff;
  border: 1px solid #a78c5a;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.card-list-header {
  background-color: #a78c5a;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  padding: 15px 10px;
  text-align: center;
}

.card-list {
  padding: 0 10px;
}

.card-list li {
  font-size: 14px;
  padding: 14px 0;
  border-bottom: 1px dotted #d6d7d6;
}

.card-list li:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .top-key {
    margin: 30px 20px 300px;
  }

  .top-key::after {
    bottom: -300px;
  }

  .top-key-card-wrap {
    gap: 10px;
    margin-bottom: 30px;
  }

  .card-column {
    width: calc((100% - 10px) / 2);
    min-width: unset;
  }

  .card-list-header {
    font-size: 14px;
    padding: 10px;
  }

  .card-list li {
    padding: 10px 0;
  }

}


/**
 * top point
**/
.top-point {
  padding: 150px 0;
  border-radius: 80px 80px 0 0;
  background-color: var(--site-bg-c-black-ui);
}

.top-point-box {
  margin-bottom: 160px;
}

.top-point-box:last-child {
  margin-bottom: 0;
}

.top-point-wrap {
  display: flex;
  margin-bottom: 100px;
}

.top-point-num {
  width: 142px;
  margin-right: 180px;
  flex-shrink: 0;
}

.top-point-ttl {
  font-size: 50px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 30px;
}

.top-point-text {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.92;
  letter-spacing: 0.52px;
  color: #fff;
}

@media screen and (max-width: 959.98px) {
  .top-point {
    padding: 60px 0;
    border-radius: 40px 40px 0 0;
  }

  .top-point-box {
    margin-bottom: 60px;
  }

  .top-point-wrap {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .top-point-num {
    width: 70px;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .top-point-ttl {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .top-point-text {
    font-size: 16px;
  }
}

.table-scroll {
  overflow: auto;
  scrollbar-color: #395990 #fff;
  scrollbar-width: thin;
}

.top-point table {
  border-collapse: collapse;
  width: 100%;
  min-width: 1000px;
}

.top-point table tr th:first-child {
  border-radius: 10px 0 0 0;
}

.top-point table tr th:last-child {
  border-radius: 0 10px 0 0;
}

.top-point table tr:last-child td:last-child {
  border-radius: 0 0 10px 0;
}

.top-point table tr:last-child td:first-child {
  border-radius: 0 0 0 10px;
}

.top-point th,
.top-point td {
  padding: 20px;
  text-align: center;
  width: calc(100% / 6);
}

.top-point th {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.top-point td:first-child {
  background-color: #f3f4f8;
  border-top: 1px solid #d5dde8;
  font-size: 16px;
  font-weight: 500;
  color: #1c356e;
}

.top-point td:not(:first-child) {
  background-color: #fff;
  border-top: 1px solid #d5dde8;
  border-left: 1px solid #d5dde8;
  font-size: 18px;
  font-weight: 500;
}

.top-point td:nth-child(2) {
  background-color: #f8f6f2;
  color: #a78c5a;

}

@media screen and (max-width:767.98px) {

  .top-point table {
    min-width: 600px;
  }

  .top-point th,
  .top-point td: first-child {
    font-size: 14px;
  }

  .top-point td:not(:first-child),
  .top-point th {
    font-size: 16px;
  }


  .top-point th,
  .top-point td {
    padding: 15px;
  }
}

/**
 * top guide
**/

.top-guide {
  background-image: url(../images/bg_guide.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 120px 0;

}

@media screen and (max-width: 767.98px) {
  .top-guide {
    padding: 60px 0;
  }
}

.top-guide .c-flex {
  gap: 30px;
}

@media screen and (max-width: 767.98px) {
  .top-guide .c-flex {
    flex-direction: column;
  }
}

.top-guide-wrap {
  width: calc(100% / 3);
}

@media screen and (max-width: 767.98px) {
  .top-guide-wrap {
    width: 100%;
  }
}

.top-guide-wrap a {
  display: block;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.16);
  background-color: #fff;
  position: relative;
}

@media screen and (max-width: 767.98px) {
  .top-guide-wrap a {
    padding: 20px;
  }
}

.top-guide-wrap a::before {
  content: "";
  position: absolute;
  right: 30px;
  top: 30px;
  width: 30px;
  height: 30px;
  background-image: url(../images/icon_guide.png);
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 767.98px) {
  .top-guide-wrap a::before {
    right: 20px;
    top: 20px;
    width: 24px;
    height: 24px;
  }
}

.top-guide-name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

@media screen and (max-width: 767.98px) {
  .top-guide-name {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.top-guide-text {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.88;
}

@media screen and (max-width: 767.98px) {
  .top-guide-text {
    font-size: 14px;
  }
}

/**
 * top freelance
**/
.top-freelance {
  position: relative;
}

.top-freelance::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 961px;
  height: 180px;
  background-image: url(../images/ttl_freelance.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;
}

.top-freelance .card__list {
  margin-top: 230px;
}

@media screen and (max-width: 959px) {
  .top-freelance {
    padding: 100px 0 80px;
  }

  .top-freelance::before {
    width: 320px;
    height: 60px;
    background-position: left top;
  }
}

@media screen and (max-width: 480px) {
  .top-freelance .card__list {
    margin-top: 120px;
  }
}

/**
 * top osusume
**/
.top-osusume {
  position: relative;
}

.top-osusume::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 610px;
  height: 180px;
  background-image: url(../images/ttl_pickup.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;
}

@media screen and (max-width: 959px) {
  .top-osusume {
    padding: 100px 0 80px;
  }

  .top-osusume::before {
    width: 203px;
    height: 60px;
    background-position: left top;
  }
}

.top-osusume__ttl::before {
  width: 20px;
  height: 18px;
}


/**
 * top howto
**/
.top-howto__ttl::before {
  width: 22.92px;
  height: 22px;
}

.top-howto__inner {
  margin-top: 20px;
  padding: 40px;
  background-color: #fff;
  border-radius: 10px;
  text-align: center
}

.top-howto__txt {
  font-size: 15px;
}

.top-howto__txt em {
  color: var(--site-c-main);
  font-weight: 700;
}

.top-howto-flex {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 18px
}

.top-howto-flex li {
  width: calc((100% - 18px) / 2);
}

.top-howto-flex img {
  width: 100%;
  height: auto;
}

.top-howto-flex object {
  width: 100%;
  height: auto;
  aspect-ratio: 394 / 185;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 767.98px) {
  .top-howto__inner {
    padding: 20px;
    text-align: left
  }

  .top-howto-flex {
    margin-top: 15px
  }

  .top-howto-flex li {
    width: 100%
  }

  .top-howto-flex object {
    width: 100%;
    height: auto;
    aspect-ratio: 295 / 170;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

/**
 * top mapSearch
**/
.top-side {}

.side-bnrArea {
  margin: 10px 0
}

.top-side-sec {
  padding: 20px 0;
}

.top-side-sec__ttl {
  font-size: 18px;
  font-weight: 700;
}

.top-side-sec-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.top-side-sec-list__item {
  width: 100%;
  height: 72px;
  padding-right: 15px;
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 5px;
}

.top-side-sec-list__img {
  width: 72px;
  height: 100%;
  border-radius: 5px;
}

.top-side-sec-list__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  border-radius: 5px;
}

.top-side-sec-list__ttl {
  width: calc(100% - 87px);
  font-size: 13px;
  font-weight: 700;
}

.top-side-sec-list__mainItem {
  width: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 5px;
}

.top-side-sec-list__mainImg {
  width: 100%;
  height: 207px;
  border-radius: 5px 5px 0 0;
}

.top-side-sec-list__mainImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  border-radius: 5px 5px 0 0;
}

.top-side-sec-list__mainTtl {
  padding: 0 20px 15px;
  font-weight: 700;
}

@media screen and (max-width: 767.98px) {
  .side-bnrArea {
    margin: 0 auto 10px
  }

  .top-side-sec-list {
    gap: 10px
  }

  .top-side-sec-list__item {
    width: 100%;
    height: 110px;
    padding-right: 15px;
  }

  .top-side-sec-list__img {
    width: 110px;
    height: 100%;
  }

  .top-side-sec-list__ttl {
    width: calc(100% - 125px);
  }
}


.top-side-sec .top-sec__more {
  margin-top: 15px;
}

/**
 * top feature --------------------------------------------------------------------------------
**/
.feature {}

.feature__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.feature__item {
  max-width: 20%;
  width: 100%;
}

@media screen and (max-width: 767.98px) {
  .feature__list {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-content: stretch;
    align-items: stretch;
    gap: 12px;
  }

  .feature__item {
    max-width: none;
    width: calc((100% - 12px) / 2);
  }
}

.feature__desc {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: var(--site-c-main-hue);
  color: var(--font-c);
  padding: 80px;
  position: relative;
  overflow: hidden;
}

.feature__desc::before {
  content: '';
  display: block;
  background: var(--site-c-main);
  width: 66.66%;
  position: absolute;
  left: 0;
  top: -50%;
  bottom: -50%;
  z-index: 1;
  transform: translate(-33.33%, 0) skewX(-30deg);
  pointer-events: none;
}

.feature__desc>* {
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 1400.98px) {
  .feature__desc {
    padding: 40px;
  }
}

@media screen and (max-width: 959.98px) {
  .feature__desc {
    padding: 32px;
  }
}

@media screen and (max-width: 767.98px) {
  .feature__desc {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
    gap: 12px;
    padding: 32px;
  }

  .feature__desc::before {
    width: 100%;
    aspect-ratio: 2 / 5;
    left: 0;
    top: 0;
    bottom: auto;
    transform: translate(0, -25%) skewY(45deg);
  }
}

.feature__img {
  width: 50%;
  padding: 0 8% 0 0;
}

.feature__img img {
  box-shadow: 20px 20px 0 0 rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767.98px) {
  .feature__img {
    width: auto;
    padding: 0 0 32px;
  }

  .feature__img img {
    box-shadow: 10px 10px 0 0 rgba(255, 255, 255, 0.5);
  }
}

.feature__txt {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
  width: 50%;
}

@media screen and (max-width: 767.98px) {
  .feature__txt {
    width: auto;
  }
}

.feature__ttl {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 1em;
}

.feature__txt p {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
}

.feature__txt *+p {
  margin-top: 1.5em;
}

@media screen and (max-width: 767.98px) {
  .feature__ttl {
    font-size: 20px;
  }
}

/**
 * top member
**/
.top-member__list:not(.slick-slider) {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
}

.top-member__list:not(.slick-slider)>li {
  width: calc((100% - 40px * 1) / 2);
  /* 2col */
}

.top-member__list.slick-slider li {
  width: 580px;
  padding: 0 20px;
}

@media screen and (max-width: 767.98px) {
  .top-member__list:not(.slick-slider) {
    gap: 20px;
  }

  .top-member__list:not(.slick-slider)>li {
    width: calc((100% - 20px * 1) / 2);
    /* 2col */
  }

  .top-member__list.slick-slider li {
    width: calc((100vw - var(--site-container-padding) * 2 - 10px * 2) / 2);
    padding: 0 10px;
  }
}

.top-member__list .slick-list {
  overflow: visible;
}

.top-member__item {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  background: #fff;
  max-width: 540px;
  min-height: 324px;
  padding: 30px;
  gap: 30px;
  position: relative;
}

@media screen and (max-width: 767.98px) {
  .top-member__item {
    flex-flow: column nowrap;
    min-height: 280px;
    padding: 16px;
    gap: 12px;
  }
}

.top-member__img {
  width: 37%;
}

.top-member__img>img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 767.98px) {
  .top-member__img {
    width: 100%;
  }

  .top-member__img>img {
    aspect-ratio: 16 / 9;
  }
}

.top-member__name {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

*+.top-member__name {
  margin-top: 20px;
}

@media screen and (max-width: 767.98px) {
  .top-member__name {
    font-size: 16px;
    text-align: left;
  }

  *+.top-member__name {
    margin-top: 12px;
  }
}

.top-member__school {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px 10px 0 10px;
  background: #FF7200;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  min-width: 134px;
  height: 30px;
  padding: 0 1em;
  position: absolute;
  left: -8px;
  top: -8px;
  z-index: 1;
}

@media screen and (max-width: 767.98px) {
  .top-member__school {
    justify-content: flex-start;
    font-size: 12px;
    max-width: 100%;
    min-width: 112px;
    width: auto;
    height: 24px;
    left: -8px;
    top: -8px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}

.top-member__desc {
  width: calc(100% - 37% - 30px);
}

@media screen and (max-width: 767.98px) {
  .top-member__desc {
    width: 100%;
  }
}

.top-member__ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: var(--site-c-main-hue);
  color: var(--font-c);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  min-width: 78px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 26px;
  padding: 0 1em;
}

.top-member__list--OBOG .top-member__ttl {
  background: var(--site-c-main);
  color: #fff;
}

@media screen and (max-width: 767.98px) {
  .top-member__ttl {
    font-size: 12px;
    width: auto;
    height: 24px;
  }
}

.top-member__txt {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}

*+.top-member__txt {
  margin-top: 1em;
}

@media screen and (max-width: 767.98px) {
  .top-member__txt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
}

/**
 * top event
**/
.top-event {
  background-image: linear-gradient(90deg, var(--site-c-main-hue) 0%, var(--site-c-main-hue) 100%);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% 400px;
  padding-top: 80px;
}

@media screen and (max-width: 959.98px) {
  .top-event {
    padding-top: 40px;
  }
}

.top-event__lead {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.75;
  text-align: center;
}

*+.top-event__lead {
  margin-top: 36px;
}

@media screen and (max-width: 959.98px) {
  .top-event__lead {
    font-size: 16px;
  }
}

.top-event__desc {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: flex-start;
  border-radius: 10px;
  background: #fff;
  gap: 64px;
  padding: 80px 72px;
  position: relative;
}

*+.top-event__desc {
  margin-top: 36px;
}

.top-event__desc::before {
  content: '';
  display: block;
  border-style: solid;
  border-width: 30px 60px;
  border-color: var(--site-c-main-hue) transparent transparent;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, 0);
}

.top-event__desc>* {
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 1400.98px) {
  .top-event__desc {
    padding: 64px;
  }
}

@media screen and (max-width: 959.98px) {
  .top-event__desc {
    gap: 40px;
    padding: 40px;
  }
}

@media screen and (max-width: 767.98px) {
  .top-event__desc {
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 40px;
    padding: 48px 20px 20px;
  }

  *+.top-event__desc {
    margin-top: 20px;
  }
}

.top-event__img {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  width: 50%;
  gap: 10px 20px;
}

.top-event__img-baloon {
  width: calc((100% - 20px) / 2);
  aspect-ratio: 41 / 10;
  -o-object-fit: contain;
  object-fit: contain;
  order: 0;
}

.top-event__img-image {
  border-radius: 10px;
  width: calc((100% - 20px) / 2);
  aspect-ratio: 23 / 20;
  -o-object-fit: cover;
  object-fit: cover;
  order: 10;
}

.top-event__img-image:nth-child(2) {
  box-shadow: 6px 6px 0 0 #FFEA7F;
}

.top-event__img-image:nth-child(4) {
  box-shadow: 6px 6px 0 0 #85E1E6;
}

@media screen and (max-width: 767.98px) {
  .top-event__img {
    width: 100%;
    gap: 0 20px;
  }

  .top-event__img-baloon {
    margin-bottom: -8px;
    transform: scale(1.125);
  }
}

.top-event__txt {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  width: calc(50% - 64px);
  gap: 0 10px;
}

@media screen and (max-width: 1400.98px) {
  .top-event__txt {
    width: calc(50% - 64px);
  }
}

@media screen and (max-width: 959.98px) {
  .top-event__txt {
    width: calc(50% - 40px);
  }
}

@media screen and (max-width: 767.98px) {
  .top-event__txt {
    width: auto;
    margin-inline: -20px;
  }
}

.top-event__txt-ttl {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  width: 100%;
  padding: 0 1em;
  margin: 0;
}

@media screen and (max-width: 767.98px) {
  .top-event__txt-ttl {
    font-size: 22px;
    text-align: left;
  }
}

.top-event__txt-lead {
  border-radius: 6px;
  background: var(--site-c-main-hue);
  color: var(--font-c);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  width: 100%;
  padding: 0.25em 0.75em;
}

*+.top-event__txt-lead {
  margin-top: 12px;
}

@media screen and (max-width: 767.98px) {
  .top-event__txt-lead {
    font-size: 13px;
  }
}

.top-event__txt-feature {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 5px solid var(--site-c-main-hue);
  background: #FEFBEA;
  width: calc((100% - 10px * 2) / 3);
  aspect-ratio: 1 / 1;
  position: relative;
}

*+.top-event__txt-feature {
  margin-top: 32px;
}

.top-event__txt-feature>i {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 4px 4px;
  background: #FFEA7F;
  color: var(--font-c);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  width: 34px;
  height: 20px;
  position: absolute;
  top: -5px;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, 0);
}

.top-event__txt-feature>span {
  display: block;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
}

@media screen and (max-width: 767.98px) {
  *+.top-event__txt-feature {
    margin-top: 16px;
  }

  .top-event__txt-feature>span {
    font-size: 18px;
  }
}

.top-event__sns {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  gap: 20px 40px;
}

*+.top-event__sns {
  margin-top: 40px;
}

@media screen and (max-width: 767.98px) {
  .top-event__sns {
    flex-flow: column nowrap;
  }
}

.top-event__sns-ttl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  width: 100%;
}

.top-event__sns-ttl::before {
  content: '';
  display: block;
  background: var(--site-c-main);
  width: 2.5em;
  height: 4px;
  margin: 0 0.75em 0 0;
}

@media screen and (max-width: 767.98px) {
  .top-event__sns-ttl {
    font-size: 20px;
  }
}

.top-event__sns-bnr {
  display: block;
  width: calc((100% - 40px) / 2);
  order: 0;
}

.top-event__sns-bnr>img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767.98px) {
  .top-event__sns-bnr {
    width: 100%;
  }

  *+.top-event__sns-bnr {
    margin-top: 12px;
  }
}

.top-event__sns-desc {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: solid 10px #FEFBEA;
  box-shadow: 0 0 0 1px #0AC754 inset;
  background: #FEFBEA;
  width: calc((100% - 40px) / 2);
  gap: 32px;
  padding: 36px 48px;
  overflow: hidden;
  order: 10;
}

@media screen and (max-width: 767.98px) {
  .top-event__sns-desc {
    width: 100%;
    padding: 24px;
    order: 0;
  }
}

.top-event__sns-txt {
  color: #0AC754;
}

.top-event__sns-txt p {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
}

.top-event__sns-line-id {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 10px;
  border: solid 1px #0AC754;
  background: #fff;
  color: #4BC764;
  min-width: 228px;
  min-height: 72px;
  overflow: hidden;
}

*+.top-event__sns-line-id {
  margin-top: 16px;
}

.top-event__sns-line-id>dt {
  background: #0AC754;
  color: #fff;
  width: 28px;
  position: relative;
}

.top-event__sns-line-id>dt>span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%) rotate(90deg);
}

.top-event__sns-line-id>dd {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #4BC764;
  font-size: 24px;
  font-weight: 500;
  width: 100%;
}

.top-event__sns-qr {
  width: 150px;
}

.top-event__sns-qr>img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 767.98px) {
  .top-event__sns-txt p {
    font-size: 16px;
  }

  .top-event__sns-line-id {
    min-width: 160px;
    min-height: 48px;
  }

  *+.top-event__sns-line-id {
    margin-top: 16px;
  }

  .top-event__sns-line-id>dt {
    width: 22px;
  }

  .top-event__sns-line-id>dt>span {
    font-size: 6px;
  }

  .top-event__sns-line-id>dd {
    font-size: 16px;
  }

  .top-event__sns-qr {
    width: 100px;
  }
}

.top-event__sns-instagram-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  width: calc((100% - 40px) / 2);
  gap: 20px;
  order: 10;
}

@media screen and (max-width: 767.98px) {
  .top-event__sns-instagram-list {
    width: 100%;
    order: 0;
  }
}

.top-event__sns-instagram-list a:has(img) {
  display: block;
  width: calc((100% - 20px) / 2);
}

.top-event__sns-instagram-list img {
  border-radius: 10px;
  width: calc((100% - 20px) / 2);
  height: auto;
  aspect-ratio: 1 / 1;
  -o-object-fit: cover;
  object-fit: cover;
}

.top-event__sns-instagram-list a img {
  width: 100%;
}

@media screen and (max-width: 767.98px) {
  .top-event__sns-instagram-list img {
    border-radius: 10px;
  }
}

/**
 * top search
**/
.top__search {
  background: var(--site-c-white);
}

.top__search .l-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  background-image: url("../images/top-search__img.png");
  background-repeat: no-repeat;
  background-position: right 48px bottom 128px;
  background-size: 33.33% auto;
}

@media (min-width: 960px) {
  .top__search .l-container {
    margin-top: -60px;
  }

  .top__search--item {
    width: calc((100% - 112px) / 2);
    margin: 96px 0 0;
  }

  .top__search--item.item--wide {
    width: 100%;
  }
}

@media screen and (max-width: 959.98px) {
  .top__search .l-container {
    margin-top: -72px;
  }

  .top__search--item {
    width: calc((100% - 72px) / 2);
    margin: 72px 0 0;
  }

  .top__search--item.item--wide {
    width: 100%;
  }
}

@media screen and (max-width: 767.98px) {
  .top__search .l-container {
    margin-top: -24px;
    background-image: none;
  }

  .top__search--item {
    width: 100%;
    margin: 24px 0 0;
  }

  .top__search--item.item--wide {
    width: 100%;
  }
}

.top__search--list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
}

@media (min-width: 960px) {
  .top__search--list {
    margin: -14px -3px 0;
  }

  .top__search--list>li {
    width: calc((100% - 3px * 6) / 3);
    margin: 14px 3px 0;
  }
}

@media screen and (max-width: 959.98px) {
  .top__search--list {
    margin: -14px -3px 0;
  }

  .top__search--list>li {
    width: calc((100% - 3px * 6) / 3);
    margin: 14px 3px 0;
  }
}

@media screen and (max-width: 767.98px) {
  .top__search--list {
    margin: -14px -3px 0;
  }

  .top__search--list>li {
    width: calc((100% - 3px * 6) / 3);
    margin: 14px 3px 0;
  }
}

.top__search--list>li>.btn {
  margin-top: 0;
}

.top__search--list>li>.btn>* {
  font-feature-settings: 'palt';
  font-size: 16px;
  line-height: 1.4;
}

.top__search--list>li>.btn>*:focus,
.top__search--list>li>.btn>*:hover {
  border-color: #ffc400;
  background: linear-gradient(to bottom, #ffc400, #fe7c49);
  color: #fff;
  font-feature-settings: 'palt';
}

@media screen and (max-width: 959.98px) {
  .top__search--list>li>.btn>* {
    font-size: 16px;
  }
}

@media screen and (max-width: 767.98px) {
  .top__search--list>li>.btn>* {
    font-size: 14px;
  }
}

.top__search--form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
}

@media (min-width: 960px) {
  .top__search--form {
    margin: -46px -18px 0;
  }

  .top__search--form_item {
    width: calc((100% - 18px * 6) / 3);
    margin: 46px 18px 0;
  }

  .top__search--form_item.item--wide {
    width: calc(100% - 18px * 2);
  }
}

@media screen and (max-width: 959.98px) {
  .top__search--form {
    margin: -46px -18px 0;
  }

  .top__search--form_item {
    width: calc((100% - 18px * 6) / 3);
    margin: 46px 18px 0;
  }

  .top__search--form_item.item--wide {
    width: calc(100% - 18px * 2);
  }
}

@media screen and (max-width: 767.98px) {
  .top__search--form {
    margin: 0;
  }

  .top__search--form_item {
    width: 100%;
    margin: 0;
  }

  .top__search--form_item+.top__search--form_item {
    margin-top: 24px;
  }

  .top__search--form_item.item--wide {
    width: 100%;
  }
}

.top__search--form_item {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-end;
  align-items: flex-end;
}

.top__search--form_item>* {
  width: 100%;
}

.top__search--form_item_title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 24px;
}

.top__search--form_item_title>em {
  color: var(--site-c-main);
}

@media screen and (max-width: 959.98px) {
  .top__search--form_item_title {
    font-size: 14px;
    margin: 0 0 14px;
  }
}

@media screen and (max-width: 767.98px) {
  .top__search--form_item_title {
    font-size: 14px;
    margin: 0 0 14px;
  }
}

.top__search .select {
  display: block;
  max-width: 640px;
}

.top__search .select>select {
  border-color: #fff;
  background-color: #fff;
  color: inherit;
  font-weight: 600;
  width: 100%;
  height: 100px;
  padding-left: 1.5em;
}

@media screen and (max-width: 959.98px) {
  .top__search .select {
    max-width: 440px;
  }

  .top__search .select>select {}
}

@media screen and (max-width: 767.98px) {
  .top__search .select {
    max-width: none;
  }

  .top__search .select>select {
    height: 56px;
  }
}

/**
 * top result
**/
.top__result {
  background: var(--site-c-main);
  color: #fff;
}

.top__result-head {
  margin: 0 0 56px;
  position: relative;
}

.top__result-head_ttl {
  text-align: center;
  position: relative;
  z-index: 1;
}

.top__result-head_ttl::before {
  content: '';
  display: block;
  background-image: url("../images/top-joblist__bg.png");
  background-repeat: no-repeat;
  background-position: center 3%;
  background-size: 46% auto;
  width: 256px;
  height: 256px;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, 50%);
}

.top__result-head_ttl::after {
  content: '';
  display: block;
  border-top: solid 2px;
  width: 4em;
  margin: 2em auto 0;
  position: relative;
  z-index: 5;
}

.top__result-head_ttl>small {
  display: block;
  font-size: 70px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05ex;
  position: relative;
  z-index: 5;
}

.top__result-head_ttl>span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05ex;
  margin: 2em 0 0;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 959.98px) {
  .top__result-head_ttl>small {
    font-size: 56px;
  }

  .top__result-head_ttl>span {
    font-size: 16px;
  }
}

@media screen and (max-width: 767.98px) {
  .top__result-head_ttl>small {
    font-size: 24px;
  }

  .top__result-head_ttl>span {
    font-size: 14px;
  }
}

.top__result-head_link.btn,
.top__result-head_link {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  margin: 0;
}

@media screen and (max-width: 959.98px) {

  .top__result-head_link.btn,
  .top__result-head_link {
    width: 180px;
  }
}

@media screen and (max-width: 767.98px) {

  .top__result-head_link.btn,
  .top__result-head_link {
    width: 96px;
  }

  .top__result-head_link.btn a {
    height: 56px;
  }
}

.top__result .result__name {
  display: none;
}

.top__result .result__rate {
  display: none;
}

.top__result .result__eval {
  display: none;
}

.top__result .result__txt {
  display: none;
}

.slick-initialized a.slick-slide {
  margin: 40px 20px 0;
}

.slick-prev {
  z-index: 10;
}

.slick-next {
  z-index: 10;
}

.slick-slide.slick-current.slick-active>div {
  display: flex;
  height: 100%;
}

@media screen and (max-width: 767.98px) {
  .slick-prev {
    left: -7px;
  }

  .slick-next {
    right: -7px;
  }
}


/**
 * top knowledge
 * NOTE: 不使用
**/
.top__knowledge {}

.top__knowledge--list.knowledge__list {}

@media (min-width: 960px) {}

@media (min-width: 768px) and (max-width: 959.98px) {}

@media screen and (max-width: 767.98px) {}


/**
 * top news
**/
.top__news {}

.top__news--list {}

.top__news--list>li>a,
.top__news--list>li {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.top__news--list>*+li {
  margin-top: 20px;
}

.top__news--list>li>a {
  width: 100%;
}

.top__news--list>li>a:hover {
  text-decoration: underline;
}

.top__news--list>li time {
  display: block;
  font-size: 16px;
  line-height: 2;
  width: 120px;
}

.top__news--list>li p {
  display: block;
  font-size: 16px;
  line-height: 2;
  width: calc(100% - 120px);
}

@media screen and (max-width: 959.98px) {
  .top__news--list>li time {
    font-size: 14px;
    width: 96px;
  }

  .top__news--list>li p {
    font-size: 14px;
    width: calc(100% - 96px);
  }
}

@media screen and (max-width: 767.98px) {
  .top__news--list>li time {
    font-size: 12px;
    width: 96px;
  }

  .top__news--list>li p {
    font-size: 12px;
    width: calc(100% - 96px);
  }
}

/**
 * top banner
**/
.top__bnr {
  padding: 0 0 160px;
}

@media screen and (max-width: 767.98px) {
  .top__bnr {
    padding: 0 0 80px;
  }
}

.top__bnr-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.top__bnr-box>* {
  width: 100%;
}

.top__bnr-box>*+* {
  margin-top: 16px;
}

.top__bnr-box a {
  display: block;
  max-width: 970px;
}

.p-indexCompanyLogo {
  background-color: var(--site-c-main);
  padding: 5px 0;
  margin: 20px 0;
}

.p-indexCompanyLogo__inner {
  padding-bottom: 30px;
  padding-top: 20px;
}

.p-indexCompanyLogo__title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.p-indexCompanyLogo__logoList>ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -11px;
  margin-right: -11px;
}

.p-indexCompanyLogo__logoList>ul>li {
  margin-bottom: 11px;
  margin-right: 11px;
  width: 140px;
}

.p-indexCompanyLogo__logoList a {
  display: block;
  pointer-events: none;
}

.p-indexCompanyLogo__logoList>ul>li img {
  height: auto;
  width: 100%;
}

@media screen and (max-width: 1439px) {
  .p-indexCompanyLogo__logoList>ul {
    margin-bottom: -.76389vw;
    margin-right: -.76389vw;
  }

  .p-indexCompanyLogo__logoList>ul>li {
    margin-bottom: .76389vw;
    margin-right: .76389vw;
    width: 9.72222vw;
  }
}

@media screen and (max-width: 767.98px) {
  .p-indexCompanyLogo {
    margin-bottom: 0;
  }

  .p-indexCompanyLogo__inner {
    padding-bottom: 6.66667vw;
    padding-top: 5.33333vw;
  }

  .p-indexCompanyLogo__title {
    font-size: 4.26667vw;
    line-height: 5.33333vw;
    margin-bottom: 4vw;
  }

  .p-indexCompanyLogo__logoList>ul {
    justify-content: center;
    margin-bottom: -1.86667vw;
    margin-right: -2.02667vw;
  }

  .p-indexCompanyLogo__logoList>ul>li {
    margin-bottom: 1.86667vw;
    margin-right: 2.02667vw;
    width: 20.8vw;
  }
}

/* style.css (追記) */
