@charset "utf-8";
/* CSS Document */
/* ============== サイドの余白 ============== */
.main-wrap {
  display: grid;
  row-gap: clamp(30px, 4vw, 180px);
  width: min(90%, 1820px);
  margin-inline: auto;
  padding-bottom: clamp(80px, 24vw, 180px);
}
/* ============== 本文 ここから ============== */
/*  見出し  */
.top-wrap {
  z-index: 111;
}
.top-title {
  position: relative;
  width: 100%;
  padding: clamp(80px, 9vw, 120px) 1rem clamp(30px, 10vw, 30px);
}
.top-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0 0 4vw 4vw;
  background: url("../img/column/bg-kv.webp") center / cover;
  filter: brightness(60%);
  z-index: -1;
}
.top-title h1 {
  font-weight: normal;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  color: #fff;
  text-transform: uppercase;
}
.top-title .column-icon {
  width: min(30%, 120px);
  margin-left: auto;
  margin-top: 8px;
}
/*  カテゴリータグリスト  */
.tag-list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem;
    width: fit-content;
}
.tag-list li {
    margin-left: 1rem;
    margin-right: 1rem;
    font-size: clamp(1.4rem, 2.4vw, 2.0rem);
}
.tag-list li a::before {
    content: "";
    width: 1.4rem;
    height: 1.6px;
    background-color: #333;
    display: inline-block;
    vertical-align: middle;
    margin-right: 1rem;
}
.tag-list li:not(.active) a {
  color: #AEAEAE;
}
.tag-list li:not(.active) a::before {
  height: 1px;
  background-color: #AEAEAE;
}
/*  コラムリスト一覧  */
.column-list li:not(.tag-btn>li) {
  padding: 40px 0;
  border-bottom: 1px solid #777;
}
.list-inner {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
  justify-content: space-between;
  text-align: left;
  margin-top: 14px;
}
.list-inner h2 {
  font-size: clamp(2.0rem, 2vw, 2.6rem);
  font-weight: normal;
}
.list-inner .date {
  font-size: clamp(1.2rem, 2vw, 1.4rem); 
  font-weight: bold;
  color: #AEAEAE;
}
.list-inner .tag-btn li {
  display: inline-block;
  border: solid 1px #aeaeae;
  padding: 0 14px 2px;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  margin-right: 6px;
}
.sec-contact {
  background: url("../img/column/bg-contact.webp") no-repeat 85% center / cover;
  padding: clamp(60px, 6vw, 100px) 0 clamp(80px, 8vw, 130px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.contact-tit {
  width: min(86% ,600px);
  color: #fff;
}
.contact-tit h2 {
  font-size: clamp(2.8rem, 14vw, 4.0rem);
  font-weight: normal;
}
.contact-tit p {
  margin: 2rem auto 0;
}
.sec-contact ul {
  display: flex;
  flex-flow: column nowrap;
  gap: 2rem; 
  width: min(80%, 360px);
}
.sec-contact ul li {
  border: 1px solid #fff;
  background-color: #373737;
  padding: clamp(8px, 5vw, 40px);
  width: 100%;
}
.sec-contact ul li a {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #fff;
  align-items: center;
}
/* ============== テキスト　フェードイン ここから ============== */
.fadeUpTrigger{
  opacity: 0;
}
/* 下から */
.fadeUp{
  animation-name:fadeUpAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.time05{
  animation-duration: 0.5s;
}

.time1{
  animation-duration: 1s;
}

.time15{
  animation-duration: 1.5s;
}
/* ============== テキスト　フェードイン ここまで ============== */
/* ============== TAB(600px)レスポンシブ ============== */
@media only screen and (min-width:600px) {
  .main-wrap {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto 1fr;
  }
  .top-wrap {
    grid-column: 1 / 14;
    grid-row: 1 / 2;
  }
  .top-title .column-icon {
    width: min(24% ,280px);
    margin-left: auto;
    margin-top: -40px;
  }
  .tag-list {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    height: calc(100vh - 3.5vw);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .tag-list ul {
    position:-webkit-sticky;
    position:sticky;
    margin: 0;
    flex-flow: column nowrap;
    align-items: flex-start;
  }
  .sec-column {
    grid-column: 5 / 13;
    grid-row: 2 / 3;
  }
  .sec-contact ul {
    width: min(80%, 1200px);
    flex-direction: row;
    column-gap: 0;
    justify-content: center;
  } 
  .sec-contact ul li:hover {
    background-color: #666;
    transition: 0.3s;
  }
  .sec-contact ul li:first-child a {
    pointer-events: none;
  }
  .sec-contact ul li:first-child a::after {
    content: "06-6910-7500";
    font-size: clamp(2.0rem, 2vw, 3.8rem);
    letter-spacing: 2px;
    margin-top: 10px;
  }
  .sec-contact ul li:not(.time05) a::after {
    content: " ";
    background: url("../img/column/arrow.svg") center no-repeat;
    width: clamp(28px, 5vw, 40px);
    height: clamp(28px, 5vw, 40px);
    margin-top: 20px;
  }
}
  /* ============== PC(1025px)レスポンシブ ============== */
@media only screen and (min-width:1023px) {
  .tag-list {
    grid-column: 1 / 4;
  }
  .tag-list li:not(.active) a::before {
    transition: all .3s;
    transform-origin: left;/*左上基点*/
  }
  .tag-list li:not(.active):hover a::before {
    transform: scaleX(2);
    margin-right: 2rem;
  }
  .sec-column {
    grid-column: 4 / 12;
  }
  .list-box {
    display: flex;
    flex-flow: row wrap;
  }
  .list-pic {
    flex: 1;
    width: clamp(300px, 20vw, 400px);
  }
  .list-inner {
    flex: 2;
    margin-left: 30px;
    margin-top: 0;
  }
  .list-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  } 
}








