@charset "UTF-8";
@import url("global.css");
/* ------------------------------
 Marquee(hot-word)
------------------------------ */
#hotword {
  height: 55px;
  background-color: #fff;
  border-bottom: #23221F 1px solid;
}
#hotword .marquee-wrapper {
  width: 100%;
  overflow: hidden;
}
#hotword .marquee {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
  list-style: none;
  padding: 0;
  margin: 0;
}
#hotword .marquee li {
  flex: 0 0 auto;
  padding-top: 8px;
  padding-right: 40px;
  white-space: nowrap;
}
#hotword .marquee li a {
  color: #706D65;
  line-height: 35px;
  font-size: 14px;
  font-weight: 500;
}
#hotword .marquee li a::before {
  content: "#";
  padding-right: 2px;
}
#hotword .marquee-wrapper:hover .marquee {
  animation-play-state: paused;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ------------------------------
 Topics
------------------------------ */
#topics {
  padding-block: 65px 100px;
}
#topics ul {
  display: grid;
  gap: 25px 4%;
  grid-template-rows: auto auto auto;
  grid-template-columns: 48% 1fr;
  grid-template-areas: "top sub1" "top sub2" "top sub3";
}
#topics ul li a {
  display: flex;
  align-items: flex-start;
  column-gap: 3%;
}
@media (any-hover: hover) {
  #topics ul li a:hover::before {
    opacity: 0 !important;
  }
  #topics ul li a:hover .image img {
    filter: sepia(0.7);
  }
  #topics ul li a:hover .image::before {
    opacity: .6;
  }
  #topics ul li a:hover .image::after {
    opacity: 1;
    translate: 0;
  }
}
#topics ul li a .image {
  width: 30%;
  flex-shrink: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
#topics ul li a .image img {
  border-radius: var(--radius);
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#topics ul li a .image::before {
  content: "";
  background-color: #fff;
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
  opacity: 0;
}
#topics ul li a .image::after {
  content: "この記事を読む";
  font-weight: 600;
  letter-spacing: .1em;
  position: absolute;
  z-index: 2;
  inset: 0;
  text-align: center;
  align-content: center;
  /*background: url("../img/tatero-more.png") no-repeat right bottom;
  background-size: 20% auto;*/
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
  opacity: 0;
  translate: 0 20px;
}
#topics ul li a .main {
  flex-grow: 1;
}
#topics ul li a .main .cnt {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 5px;
}
#topics ul li a .main .cnt::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  display: inline-block;
  vertical-align: 1px;
  margin-right: 5px;
}
#topics ul li a .main .cnt.builder::before {
  background-color: #3F989B;
}
#topics ul li a .main .cnt.column::before {
  background-color: #9B783F;
}
#topics ul li a .main .cnt.interview::before {
  background-color: #3382C8;
}
#topics ul li a .main .cnt.event::before {
  background-color: #E1C932;
}
#topics ul li a .main .cnt.works::before {
  background-color: #D44F7C;
}
#topics ul li a .main .posttitle {
  line-height: 1.5;
  margin-bottom: 5px;
  font-size: min(20px,1.2vw);
  font-weight: 700;
}
#topics ul li a .main .com {
  color: #9B783F;
  font-size: 12px;
  font-weight: 600;
}
#topics ul li a .main .sub {
  font-size: 11px;
  font-weight: 500;
  margin-top: 10px;
  color: #706D65;
}
#topics ul li:first-of-type {
  grid-area: top;
}
#topics ul li:first-of-type a {
  position: relative;
  border-radius: calc(var(--radius) * 1.7);
  overflow: hidden;
}
#topics ul li:first-of-type a .image img {
  border-radius: calc(var(--radius) * 1.7);
}
#topics ul li:first-of-type a .image {
  z-index: 0;
  width: 100%;
}
#topics ul li:first-of-type a .image::after {
  font-size: 130%;
}
#topics ul li:first-of-type a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(35, 34, 31, 0) 40%, #23221f 90%);
  opacity: .75;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#topics ul li:first-of-type a .main {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  padding: min(40px,2.3vw);
}
#topics ul li:first-of-type a .main .cnt {
  width: fit-content;
  background-color: #F6F4F1;
  padding: 0 10px 2px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}
#topics ul li:first-of-type a .main .posttitle {
  font-size: min(24px,1.5vw);
  margin-bottom: 20px;
  color: #fff;
}
#topics ul li:first-of-type a .main .com {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
#topics ul li:first-of-type a .main .sub {
  display: none;
}

/* ------------------------------
 Event
------------------------------ */
.sectitle {
  border-bottom: #23221F 1px dashed;
  padding: 20px 10px 15px;
  margin-bottom: 55px;
  display: flex;
  align-items: center;
  position: relative;
}
.sectitle::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 2px;
  display: block;
  margin-right: 18px;
}
.sectitle span {
  display: block;
}
.sectitle .en {
  font-family: "Satoshi-Variable", "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 3.5vw, 34px);
  font-weight: 700;
  letter-spacing: .1em;
  margin-right: 20px;
}
.sectitle .ja {
  font-weight: 500;
  letter-spacing: 1px;
}

.morebutton {
  margin: 40px 0 0 auto;
  width: fit-content;
}

a.more {
  text-align: right;
  justify-content: flex-end;
}

#event {
  border-top: #23221F 1px solid;
  margin-bottom: 90px;
}
#event .sectitle::before {
  background-color: #E1C932;
}
#event ul.eventlist {
  display: grid;
  gap: 35px 3%;
  grid-template-columns: repeat(3, 1fr);
}
#event ul.eventlist li a {
  display: flex;
  align-items: flex-start;
  gap: 5%;
}
@media (any-hover: hover) {
  #event ul.eventlist li a:hover .image img {
    filter: blur(3px);
  }
  #event ul.eventlist li a:hover .image::before {
    opacity: .7;
  }
  #event ul.eventlist li a:hover .image::after {
    opacity: 1;
    translate: 0;
  }
}
#event ul.eventlist li a .image {
  width: 43%;
  flex-shrink: 0;
  aspect-ratio: 11 / 8;
  overflow: hidden;
  position: relative;
}
#event ul.eventlist li a .image img {
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#event ul.eventlist li a .image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #fff;
  transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
  opacity: 0;
}
#event ul.eventlist li a .image::after {
  content: "詳しく見る";
  position: absolute;
  z-index: 2;
  inset: 0;
  text-align: center;
  align-content: center;
  font-weight: 500;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
  opacity: 0;
  translate: -20px 0;
}
#event ul.eventlist li a .main .schedule {
  display: flex;
  letter-spacing: 1px;
  gap: 10px;
  margin-bottom: 10px;
  vertical-align: bottom;
}
#event ul.eventlist li a .main .schedule p {
  line-height: 1.1;
  font-family: "Satoshi-Variable", "Noto Sans JP", sans-serif;
  font-weight: 500;
}
#event ul.eventlist li a .main .schedule p .year {
  display: block;
  font-size: 11px;
  font-weight: 500;
}
#event ul.eventlist li a .main .schedule p .mon, #event ul.eventlist li a .main .schedule p .date {
  font-weight: 700;
  font-size: min(27px,1.7vw);
  display: inline-block;
}
#event ul.eventlist li a .main .schedule p .date::before {
  content: "/";
  font-size: 19px;
  display: inline-block;
  margin-inline: 5px;
}
#event ul.eventlist li a .main .schedule p .day {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-color: #706D65;
  color: #fff;
  line-height: 22px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  border-radius: 50%;
  vertical-align: 5px;
  margin-left: 5px;
  letter-spacing: 0;
}
#event ul.eventlist li a .main .schedule p + p {
  position: relative;
  padding-left: 25px;
}
#event ul.eventlist li a .main .schedule p + p::before {
  content: "～";
  font-size: 17px;
  position: absolute;
  left: 0;
  top: 50%;
}
#event ul.eventlist li a .main .posttitle {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 5px;
}
#event ul.eventlist li a .main .com {
  font-size: 12px;
  font-weight: 600;
  color: #9B783F;
}

/* ------------------------------
 Builder
------------------------------ */
#builder {
  background-color: #E5E2DE;
  border-top: #23221F 1px solid;
  border-bottom: #23221F 1px solid;
  padding-block: 1px 80px;
  margin-bottom: 90px;
}
#builder::before {
  content: "";
  width: 76px;
  height: 84px;
  background: url("../img/tatero4.png") no-repeat center center;
  background-size: contain;
  display: block;
  margin: -30px auto 25px;
}
#builder .maintitle {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 50px;
}
#builder .maintitle span {
  display: block;
}
#builder .maintitle .sub {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
  font-family: "Satoshi-Variable", "Noto Sans JP", sans-serif;
}
#builder .maintitle .ja {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: .07em;
  line-height: 1;
  margin: .2em 0 .4em;
}
#builder .maintitle .ja span {
  display: inline-block;
}
#builder .maintitle .ja i {
  color: #9B783F;
}
#builder .maintitle .en {
  font-size: clamp(11px, 2vw, 14px);
  font-weight: 700;
  font-family: "Satoshi-Variable", "Noto Sans JP", sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}
#builder .maintitle .en .dots {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  margin: -.3em 2em 0;
  background-color: #706D65;
}
#builder .maintitle .en .dots::before, #builder .maintitle .en .dots::after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  border-radius: 50%;
  background-color: #706D65;
  position: absolute;
  top: 0;
}
#builder .maintitle .en .dots::before {
  left: -11px;
}
#builder .maintitle .en .dots::after {
  right: -11px;
}
#builder ul.builderlist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: min(75px,4vw);
  margin-bottom: 70px;
}
#builder ul.builderlist li {
  container-type: inline-size;
  display: contents;
}
#builder ul.builderlist li a {
  display: grid;
  gap: 0;
  grid-template-rows: subgrid;
  grid-row: span 6;
  height: 100%;
  line-height: 1.7;
}
@media (any-hover: hover) {
  #builder ul.builderlist li a:hover .more .morearrow {
    background-color: #706D65;
  }
  #builder ul.builderlist li a:hover .more .morearrow::before {
    translate: 5px 0;
  }
  #builder ul.builderlist li a:hover .image::before {
    opacity: .5;
  }
  #builder ul.builderlist li a:hover .image::after {
    opacity: 1;
    translate: 0;
  }
}
#builder ul.builderlist li a .image {
  position: relative;
  margin-bottom: 25px;
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  overflow: hidden;
  /*&::after {
  	content: "";
  	position: absolute;
  	inset: 0;
  	z-index: 2;
  	background: url("../img/tatero4.png") no-repeat -15% 330%;
  	background-size: 50% auto;
  	@include transition(.5);
  	opacity: 0;
  	translate: -20px 0;
  }*/
}
#builder ul.builderlist li a .image img {
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#builder ul.builderlist li a .image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #fff;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
  opacity: 0;
}
#builder ul.builderlist li a .main {
  display: contents;
}
#builder ul.builderlist li a .posttitle {
  font-size: min(2vw,24px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}
#builder ul.builderlist li a .text {
  font-size: 15px;
  font-weight: 500;
}
#builder ul.builderlist li a dl {
  margin-top: 15px;
}
#builder ul.builderlist li a dl dt {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}
#builder ul.builderlist li a dl dt::before {
  content: "";
  width: 7px;
  height: 7px;
  background-color: #9B783F;
  display: inline-block;
  margin-right: 6px;
  vertical-align: 2px;
}
#builder ul.builderlist li a dl dd {
  font-size: 12px;
  font-weight: 500;
  color: #706D65;
}
#builder ul.builderlist li a dl dd:has(.office) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px 6px;
}
#builder ul.builderlist li a dl dd:has(.office) .office {
  padding: 1px 6px;
  border: #c2c2c2 1px solid;
  border-radius: 2px;
  font-size: 85%;
  font-weight: 500;
}
#builder ul.builderlist .linkbutton {
  width: fit-content;
  margin: 20px 5px 0 auto;
}
#builder ul.builderlist .linkbutton .morearrow {
  width: 30px;
  height: 16px;
}
#builder ul.builderlist .linkbutton .morearrow::before {
  width: 9px;
  height: 6px;
}
#builder ul.builderlist .linkbutton .more:has(.morearrow) {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
}
#builder .builderlink {
  max-width: 800px;
  margin-inline: auto;
}
#builder .builderlink a {
  display: block;
  background-color: #706D65;
  color: #fff;
  text-align: center;
  padding: 18px;
  position: relative;
  border-radius: 6px;
  font-size: clamp(14px, 2.5vw, 19px);
  font-weight: 700;
}
#builder .builderlink a .morearrow {
  position: absolute;
  right: 18px;
  top: 50%;
  margin-top: -15px;
}
@media (any-hover: hover) {
  #builder .builderlink a:hover .morearrow {
    background-color: #706D65;
  }
  #builder .builderlink a:hover .morearrow::before {
    translate: 10px 0;
  }
}

/* ------------------------------
 Interview
------------------------------ */
#interview {
  border-top: #23221F 1px solid;
  margin-bottom: 80px;
}
#interview .sectitle::before {
  background-color: #3382C8;
}
#interview .sectitle .ja {
  position: relative;
}
#interview .sectitle .ja::after {
  content: "";
  position: absolute;
  top: -13px;
  margin-left: 20px;
  width: 100px;
  height: 80px;
  background: url("../img/tatero-interview.png") no-repeat center center;
  background-size: contain;
}
#interview ul.ivlist {
  display: grid;
  gap: 35px 5%;
  grid-template-rows: auto auto;
  grid-template-columns: 46% 1fr;
  grid-template-areas: "top sub1" "top sub2";
}
#interview ul.ivlist li a {
  display: flex;
  column-gap: 3%;
}
@media (any-hover: hover) {
  #interview ul.ivlist li a:hover .image img {
    filter: sepia(0.7);
  }
  #interview ul.ivlist li a:hover .image::before {
    opacity: .6;
  }
  #interview ul.ivlist li a:hover .image::after {
    opacity: 1;
    translate: 0;
  }
}
#interview ul.ivlist li a .image {
  width: 45%;
  flex-shrink: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
#interview ul.ivlist li a .image img {
  border-radius: var(--radius);
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#interview ul.ivlist li a .image::before {
  content: "";
  background-color: #fff;
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
  opacity: 0;
}
#interview ul.ivlist li a .image::after {
  content: "この記事を読む";
  font-weight: 600;
  letter-spacing: .1em;
  position: absolute;
  inset: 0;
  text-align: center;
  align-content: center;
  z-index: 2;
  /*background: url("../img/tatero-interview.png") no-repeat 150% 200%;
  background-size: 60% auto;*/
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
  opacity: 0;
  translate: 20px 0;
}
#interview ul.ivlist li a .main {
  padding-top: 10px;
  flex-grow: 1;
}
#interview ul.ivlist li a .main .posttitle {
  line-height: 1.6;
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 700;
}
#interview ul.ivlist li a .main .posttitle br {
  display: none;
}
#interview ul.ivlist li a .main .com {
  color: #9B783F;
  font-size: 13px;
  font-weight: 600;
}
#interview ul.ivlist li a .main .sub {
  margin-top: 15px;
  font-size: 12px;
  color: #706D65;
}
#interview ul.ivlist li:first-of-type {
  grid-area: top;
}
#interview ul.ivlist li:first-of-type a {
  position: relative;
  display: block;
  height: 100%;
}
#interview ul.ivlist li:first-of-type a .image {
  height: 100%;
  width: auto;
  border-radius: var(--radius);
}
#interview ul.ivlist li:first-of-type a .image img {
  border-radius: var(--radius);
}
#interview ul.ivlist li:first-of-type a .image::after {
  font-size: 120%;
}
#interview ul.ivlist li:first-of-type a .main {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  padding: 0;
  z-index: 5;
}
#interview ul.ivlist li:first-of-type a .main .posttitle {
  font-size: min(23px,2vw);
  line-height: 1.9;
}
#interview ul.ivlist li:first-of-type a .main .posttitle span {
  box-decoration-break: clone;
  padding: 3px 15px;
  background-color: #fff;
}
#interview ul.ivlist li:first-of-type a .main .posttitle br {
  display: inline;
}
#interview ul.ivlist li:first-of-type a .main .com {
  position: absolute;
  top: -35px;
  left: 0;
  font-size: 12px;
  background-color: #fff;
  padding: 5px 15px;
  width: fit-content;
}
#interview ul.ivlist li:first-of-type a .main .sub {
  display: none;
}

/* ------------------------------
 Column
------------------------------ */
#column {
  display: flex;
  border-top: #23221F 1px solid;
  border-bottom: #23221F 1px solid;
  margin-bottom: 60px;
}
#column .titlearea {
  width: 136px;
  border-right: #23221F 1px solid;
  flex-shrink: 0;
  background-color: #fff;
  position: relative;
  text-align: center;
  padding-top: 75px;
}
#column .titlearea::before {
  content: "";
  width: 80px;
  height: 80px;
  position: absolute;
  background: url("../img/tatero-column.png") no-repeat center center;
  background-size: contain;
  top: -32px;
  left: 50%;
  margin-left: -35px;
}
#column .titlearea .sectitle {
  border-bottom: none;
  padding: 0;
  margin-bottom: 0;
  flex-direction: column;
  line-height: 1;
}
#column .titlearea .sectitle::before {
  background-color: #9B783F;
  margin: 0 0 18px 0;
}
#column .titlearea .sectitle span {
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: nowrap;
  line-height: 1.4;
  letter-spacing: .1em;
  display: inline-block;
}
#column .titlearea .sectitle .en {
  margin: 0 0 20px 3px;
}
#column .column {
  flex-grow: 1;
  padding: 70px min(100px,6vw) 55px min(70px,4.5vw);
  text-align: left;
}
#column .column ul.columnlist {
  display: grid;
  gap: 60px 3%;
  grid-template-columns: repeat(3, 1fr);
}
#column .column ul.columnlist li a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (any-hover: hover) {
  #column .column ul.columnlist li a:hover .imagebox .image img {
    filter: sepia(0.7);
  }
  #column .column ul.columnlist li a:hover .imagebox .image::before {
    opacity: .8;
  }
  #column .column ul.columnlist li a:hover .imagebox .image::after {
    opacity: 1;
    translate: 0;
  }
}
#column .column ul.columnlist li a .imagebox {
  display: flex;
}
#column .column ul.columnlist li a .imagebox .date {
  width: 28px;
  flex-shrink: 0;
}
#column .column ul.columnlist li a .imagebox .date span {
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: nowrap;
  line-height: 1.4;
  letter-spacing: .1em;
  display: inline-block;
  font-family: "Satoshi-Variable", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #9B783F;
}
#column .column ul.columnlist li a .imagebox .image {
  flex-grow: 1;
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius);
  overflow: hidden;
}
#column .column ul.columnlist li a .imagebox .image img {
  border-radius: var(--radius);
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#column .column ul.columnlist li a .imagebox .image::before {
  content: "";
  background-color: #fff;
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
  opacity: 0;
}
#column .column ul.columnlist li a .imagebox .image::after {
  content: "この記事を読む";
  text-align: right;
  font-weight: 600;
  letter-spacing: .1em;
  position: absolute;
  inset: 0;
  text-align: center;
  align-content: center;
  z-index: 2;
  /*background: url("../img/tatero-column.png") no-repeat -20% 160%;
  background-size: 50% auto;*/
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
  opacity: 0;
  translate: 0 20px;
}
#column .column ul.columnlist li a .main {
  position: relative;
  flex-grow: 1;
  z-index: 5;
  margin: -28px 8% 0 0;
  border-radius: var(--radius);
  border: #23221F 1px solid;
  background-color: #fff;
  padding: 25px 25px 30px;
}
#column .column ul.columnlist li a .main .posttitle {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}
#column .column ul.columnlist li a .main .tag {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 15px;
  margin-bottom: 10px;
}
#column .column ul.columnlist li a .main .tag span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #9B783F;
}
#column .column ul.columnlist li a .main .tag span::before {
  content: "#";
  padding-right: 2px;
}
#column .column ul.columnlist li a .main .text {
  font-size: 12px;
  font-weight: 500;
}
#column .morebutton {
  margin: 55px auto 0;
}
#column a.more {
  text-align: center;
  justify-content: center;
}

/* ------------------------------
 Works
------------------------------ */
#works {
  margin-bottom: 100px;
}
#works .sectitle::before {
  background-color: #D44F7C;
}
#works ul.workslist {
  display: grid;
  gap: 3%;
  grid-template-columns: repeat(3, 1fr);
}
#works ul.workslist li {
  display: contents;
}
#works ul.workslist li a {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
}
@media (any-hover: hover) {
  #works ul.workslist li a:hover .image img {
    filter: sepia(0.7);
  }
  #works ul.workslist li a:hover .image::before {
    opacity: .6;
  }
  #works ul.workslist li a:hover .image::after {
    opacity: 1;
    translate: 0;
  }
}
#works ul.workslist li a .image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
#works ul.workslist li a .image img {
  border-radius: var(--radius);
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#works ul.workslist li a .image::before {
  content: "";
  background-color: #fff;
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
  opacity: 0;
}
#works ul.workslist li a .image::after {
  content: "この家を見る";
  font-weight: 600;
  letter-spacing: .1em;
  position: absolute;
  inset: 0;
  text-align: center;
  align-content: center;
  z-index: 2;
  /*background: url("../img/tatero3.png") no-repeat 130% 450%;
  background-size: 50% auto;*/
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
  opacity: 0;
  translate: 20px 0;
}
#works ul.workslist li a .posttitle {
  line-height: 1.6;
  margin-top: 20px;
  font-size: min(19px,1.7vw);
  font-weight: 700;
}
#works ul.workslist li a .com {
  color: #9B783F;
  margin-top: 5px;
  font-size: 13px;
  font-weight: 600;
}

/* ------------------------------
 Ranking (banner)
------------------------------ */
#ranking {
  max-width: 920px;
  margin-bottom: 100px;
  margin-inline: auto;
}
#ranking a {
  display: flex;
  background-color: #fff;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(35, 34, 31, 0.1);
  padding: 25px;
  gap: 25px;
  align-items: center;
}
@media (any-hover: hover) {
  #ranking a:hover {
    translate: 0 1.5%;
  }
  #ranking a:hover .morearrow {
    background-color: #706D65;
  }
  #ranking a:hover .morearrow::before {
    translate: 10px 0;
  }
  #ranking a:hover .image {
    filter: brightness(1.3);
  }
}
#ranking a .image {
  width: 53%;
  aspect-ratio: 13 / 8;
  flex-shrink: 0;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#ranking a .image img {
  border-radius: var(--radius);
}
#ranking a .main {
  padding-inline: 4%;
  text-align: center;
}
#ranking a .main .text {
  background-color: #9B783F;
  color: #fff;
  border-radius: 100px;
  display: block;
  font-weight: 600;
  padding: 3px;
  margin-bottom: 20px;
}
#ranking a .main .logo {
  margin-bottom: 15px;
}
#ranking a .main .data {
  color: #706D65;
  font-weight: 600;
}
#ranking a .main .data strong {
  font-size: 18px;
  display: block;
}
#ranking a .main .data strong::before {
  content: "［";
  padding-right: 10px;
}
#ranking a .main .data strong::after {
  content: "］";
  padding-left: 10px;
}
#ranking a .main .data time {
  display: block;
  letter-spacing: 1px;
  font-family: "Satoshi-Variable", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
}
#ranking a .morearrow {
  position: absolute;
  bottom: 25px;
  right: 25px;
}

/* ------------------------------
 Instagram
------------------------------ */
#instagram {
  text-align: center;
  margin-bottom: 110px;
}
#instagram .title {
  margin-bottom: 35px;
}
#instagram .title::before {
  content: "";
  width: 85px;
  height: 65px;
  background: url("../img/tatero2.png") no-repeat center center;
  background-size: contain;
  margin: 0 auto 5px;
  display: block;
}
#instagram .title strong {
  letter-spacing: .07em;
  font-family: "Satoshi-Variable", "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
}
#instagram .title strong span {
  color: #9B783F;
}
#instagram ul.instalist {
  display: grid;
  gap: min(30px,3vw);
  grid-template-columns: repeat(4, 1fr);
}
#instagram ul.instalist li a {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
#instagram ul.instalist li a img {
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
@media (any-hover: hover) {
  #instagram ul.instalist li a:hover img {
    filter: brightness(1.3);
    scale: 1.1;
  }
}

/* ------------------------------
 Glossary
------------------------------ */
#glossary {
  background-color: #E5E2DE;
  padding-block: 90px 110px;
}
#glossary .inner {
  display: flex;
  gap: 8%;
}
#glossary .titlearea {
  width: 380px;
  flex-shrink: 0;
}
#glossary .titlearea .title {
  margin-bottom: 20px;
}
#glossary .titlearea .text {
  font-weight: 600;
}
#glossary .word {
  flex-grow: 1;
}
#glossary .word .title {
  position: relative;
  padding-left: 25px;
  color: #706D65;
  font-family: "Satoshi-Variable", "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}
#glossary .word .title::before {
  content: "";
  width: 15px;
  height: 22px;
  background: url("../img/icon-hot.png") no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 2px;
  left: 0;
}
#glossary .word ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  margin-bottom: 50px;
}
#glossary .word ul li a {
  line-height: 1.4;
  color: #706D65;
  display: block;
  font-weight: 600;
  font-size: clamp(16px, 2.7vw, 49px);
  background-image: linear-gradient(#706D65, #706D65);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100% 1px;
  transition: background-size 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9), color 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9);
}
@media (any-hover: hover) {
  #glossary .word ul li a:hover {
    background-position: bottom right;
    background-size: 0 1px;
    color: #23221F;
  }
}

/* ------------------------------
 Whats
------------------------------ */
#whats {
  position: relative;
  padding-block: 75px 90px;
}
#whats .bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
#whats .bg figure {
  height: 110%;
}
#whats .bg img.objectfit {
  object-position: center bottom;
}
#whats .wrapper {
  position: relative;
  z-index: 1;
}
#whats .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(65px,5vw);
}
#whats .title {
  width: 465px;
}
#whats .main .catch {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 20px;
}
#whats .main .text {
  font-size: 15px;
  font-weight: 500;
}
#whats .main .text p + p {
  margin-top: 10px;
}

/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint ( 1300px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 1300px) {
  /* ------------------------------
   Topics
  ------------------------------ */
  #topics ul {
    gap: 30px 3%;
    grid-template-rows: auto auto;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "top top top" "sub1 sub2 sub3";
  }
  #topics ul li a {
    display: block;
    column-gap: 5%;
  }
  #topics ul li a .image {
    width: auto;
    margin-bottom: 10px;
  }
  #topics ul li a .main .posttitle {
    font-size: min(17px,1.6vw);
  }
  #topics ul li:first-of-type {
    padding: 0 0 20px;
  }
  #topics ul li:first-of-type a .image {
    width: 100%;
    margin: 0;
  }
  #topics ul li:first-of-type a .main {
    padding: 40px;
  }
  #topics ul li:first-of-type a .main .posttitle {
    font-size: min(24px,2vw);
  }

  /* ------------------------------
   Event
  ------------------------------ */
  #event ul.eventlist {
    grid-template-columns: repeat(2, 1fr);
  }
  #event ul.eventlist li a .main .schedule p .mon, #event ul.eventlist li a .main .schedule p .date {
    font-size: min(27px,2.5vw);
  }

  /* ------------------------------
   Interview
  ------------------------------ */
  #interview ul.ivlist {
    gap: 20px 5%;
  }
  #interview ul.ivlist li a .main .posttitle {
    font-size: min(19px,1.6vw);
  }

  /* ------------------------------
   Column
  ------------------------------ */
  #column .column ul.columnlist {
    gap: 50px 3%;
    grid-template-columns: repeat(2, 1fr);
  }

  /* ------------------------------
   Whats
  ------------------------------ */
  #whats .title {
    min-width: 350px;
  }
  #whats .main .text br {
    display: none;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-2 ( 959px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 959px) {
  /* ------------------------------
   Marquee(hot-word)
  ------------------------------ */
  #hotword {
    margin-inline: -5vw;
  }
  #hotword .marquee {
    animation: marquee 30s linear infinite;
  }
  #hotword .marquee li {
    padding-right: 30px;
  }

  /* ------------------------------
   Topics
  ------------------------------ */
  #topics {
    padding-block: 50px 80px;
  }
  #topics ul li a .main .cnt {
    font-size: 12px;
  }
  #topics ul li a .main .posttitle {
    margin-bottom: 5px;
    font-size: min(2.1vw,16px);
  }
  #topics ul li:first-of-type {
    padding-bottom: 0;
  }
  #topics ul li:first-of-type a .main {
    padding: 4vw;
  }
  #topics ul li:first-of-type a .main .posttitle {
    font-size: min(20px,2.6vw);
    margin-bottom: 15px;
  }

  /* ------------------------------
   Event
  ------------------------------ */
  #event {
    margin-bottom: 70px;
  }
  #event ul.eventlist {
    gap: 30px 3%;
  }
  #event ul.eventlist li a .main .schedule {
    gap: 5px;
    margin-bottom: 5px;
  }
  #event ul.eventlist li a .main .schedule p .mon, #event ul.eventlist li a .main .schedule p .date {
    font-size: min(26px,2.8vw);
  }
  #event ul.eventlist li a .main .schedule p .date::before {
    font-size: 14px;
    margin-inline: 2px;
  }
  #event ul.eventlist li a .main .schedule p .day {
    width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 10px;
    margin-left: 3px;
  }
  #event ul.eventlist li a .main .schedule p + p {
    padding-left: 18px;
  }
  #event ul.eventlist li a .main .schedule p + p::before {
    font-size: 14px;
  }
  #event ul.eventlist li a .main .posttitle {
    font-size: min(15px,2vw);
  }

  /* ------------------------------
   Builder
  ------------------------------ */
  #builder {
    padding-block: 1px 60px;
    margin-bottom: 60px;
  }
  #builder ul.builderlist {
    display: block;
  }
  #builder ul.builderlist li {
    display: block;
    margin-bottom: 45px;
  }
  #builder ul.builderlist li a {
    display: flex;
    gap: 5vw;
  }
  #builder ul.builderlist li a .image {
    width: 50%;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  #builder ul.builderlist li a .main {
    display: block;
    padding-block: 10px;
  }
  #builder ul.builderlist li a .posttitle {
    font-size: min(3vw,22px);
    margin-bottom: 15px;
  }
  #builder ul.builderlist li a .text {
    font-size: min(15px,2vw);
  }
  #builder ul.builderlist li a dl {
    margin-top: 10px;
  }
  #builder ul.builderlist li a dl dt {
    font-size: 13px;
  }
  #builder ul.builderlist li a dl dt::before {
    width: 6px;
    height: 6px;
    margin-right: 5px;
  }

  /* ------------------------------
   Interview
  ------------------------------ */
  #interview {
    margin-bottom: 70px;
  }
  #interview ul.ivlist {
    grid-template-columns: 68% 1fr;
  }
  #interview ul.ivlist li a {
    display: block;
  }
  #interview ul.ivlist li a .image {
    width: auto;
  }
  #interview ul.ivlist li a .main {
    padding-top: 5px;
  }
  #interview ul.ivlist li a .main .posttitle {
    font-size: min(16px,1.8vw);
    line-height: 1.5;
    margin-bottom: 5px;
  }
  #interview ul.ivlist li a .main .com {
    font-size: 11px;
  }
  #interview ul.ivlist li:first-of-type a {
    height: auto;
  }
  #interview ul.ivlist li:first-of-type a .main .posttitle {
    font-size: min(23px,2.2vw);
  }
  #interview ul.ivlist li:first-of-type a .main .posttitle span {
    padding: 5px 15px;
  }

  /* ------------------------------
   Column
  ------------------------------ */
  #column {
    margin-bottom: 40px;
  }
  #column .titlearea {
    width: 90px;
  }
  #column .titlearea::before {
    width: 70px;
    height: 70px;
    top: -25px;
    margin-left: -32px;
  }
  #column .column {
    padding: 60px 5vw 50px 4vw;
  }
  #column .column ul.columnlist {
    gap: 40px 4%;
  }
  #column .column ul.columnlist li a .imagebox .date {
    width: 25px;
  }
  #column .column ul.columnlist li a .imagebox .date span {
    font-size: 12px;
  }
  #column .column ul.columnlist li a .main {
    padding: 20px 3.5vw 25px;
  }
  #column .column ul.columnlist li a .main .posttitle {
    font-size: min(18px,2.4vw);
  }
  #column .column ul.columnlist li a .main .tag {
    gap: 5px 10px;
    margin-bottom: 6px;
  }
  #column .morebutton {
    margin: 50px auto 0;
  }

  /* ------------------------------
   Works
  ------------------------------ */
  #works {
    margin-bottom: 80px;
  }
  #works ul.workslist li a .posttitle {
    margin-top: 10px;
    font-size: min(16px,2vw);
  }
  #works ul.workslist li a .com {
    font-size: 12px;
  }

  /* ------------------------------
   Ranking (banner)
  ------------------------------ */
  #ranking {
    margin-bottom: 80px;
  }
  #ranking a .main .text {
    padding: 5px;
    font-size: min(16px,1.6vw);
    margin: 0 -10px 18px;
  }
  #ranking a .main .logo {
    margin-bottom: 12px;
  }
  #ranking a .main .data strong {
    font-size: min(17px,2vw);
  }
  #ranking a .main .data strong::before {
    padding-right: 8px;
  }
  #ranking a .main .data strong::after {
    padding-left: 8px;
  }
  #ranking a .main .data time {
    font-size: 12px;
  }
  #ranking a .morearrow {
    bottom: 5%;
    right: 15px;
  }

  /* ------------------------------
   Instagram
  ------------------------------ */
  #instagram {
    margin-bottom: 100px;
  }

  /* ------------------------------
   Glossary
  ------------------------------ */
  #glossary {
    padding-block: 80px;
  }
  #glossary .titlearea {
    width: 280px;
  }
  #glossary .titlearea .text {
    font-size: 14px;
  }
  #glossary .word .title {
    margin-bottom: 10px;
  }
  #glossary .word ul {
    gap: 10px 20px;
  }

  /* ------------------------------
   Whats
  ------------------------------ */
  #whats {
    padding-block: 60px 80px;
  }
  #whats .bg figure {
    height: 115%;
  }
  #whats .inner {
    display: block;
  }
  #whats .title {
    min-width: inherit;
    max-width: 50%;
    margin: 0 auto 30px;
  }
  #whats .main .catch {
    font-size: 20px;
    text-align: center;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-3 ( 644px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 644px) {
  /* ------------------------------
   Marquee(hot-word)
  ------------------------------ */
  #hotword {
    height: 45px;
  }
  #hotword .marquee li {
    padding-top: 6px;
    padding-right: 20px;
  }
  #hotword .marquee li a {
    line-height: 30px;
    font-size: 13px;
  }

  /* ------------------------------
   Topics
  ------------------------------ */
  #topics {
    padding-block: 40px 60px;
  }
  #topics ul {
    display: block;
  }
  #topics ul li {
    margin-top: 25px;
  }
  #topics ul li a {
    display: flex;
    align-items: flex-start;
  }
  #topics ul li a .image {
    width: 45%;
    margin: 0;
  }
  #topics ul li a .main .cnt {
    margin-bottom: 2px;
  }
  #topics ul li a .main .posttitle {
    font-size: min(3.2vw,17px);
    margin-bottom: 2px;
  }
  #topics ul li a .main .com {
    font-size: 12px;
  }
  #topics ul li a .main .sub {
    display: none;
  }
  #topics ul li:first-of-type {
    padding: 0 0 10px;
    margin: 0;
  }
  #topics ul li:first-of-type a {
    display: block;
  }
  #topics ul li:first-of-type a .image {
    width: auto;
  }
  #topics ul li:first-of-type a .image::after {
    font-size: 110%;
  }
  #topics ul li:first-of-type a .main .posttitle {
    font-size: min(16px,3.8vw);
    margin-bottom: 5px;
  }
  #topics ul li:first-of-type a .main .com {
    font-size: 12px;
  }

  /* ------------------------------
   Event
  ------------------------------ */
  .sectitle {
    padding: 20px 5px 10px;
    margin-bottom: 40px;
  }
  .sectitle::before {
    width: 11px;
    height: 11px;
    margin-right: 12px;
  }
  .sectitle span {
    display: block;
  }
  .sectitle .en {
    letter-spacing: 1px;
    margin-right: 10px;
  }
  .sectitle .ja {
    letter-spacing: 0;
  }

  .morebutton {
    margin: 30px 0 0 auto;
  }

  #event {
    margin-bottom: 50px;
  }
  #event ul.eventlist {
    display: block;
  }
  #event ul.eventlist li {
    margin-bottom: 20px;
  }
  #event ul.eventlist li:nth-of-type(n+4) {
    display: none;
  }
  #event ul.eventlist li a .image {
    width: 45%;
  }
  #event ul.eventlist li a .main .schedule p .mon, #event ul.eventlist li a .main .schedule p .date {
    font-size: min(26px,5.5vw);
  }
  #event ul.eventlist li a .main .schedule p .date::before {
    font-size: 16px;
  }
  #event ul.eventlist li a .main .schedule p .day {
    width: 17px;
    height: 17px;
    line-height: 17px;
    vertical-align: 4px;
  }
  #event ul.eventlist li a .main .posttitle {
    font-size: min(15px,3.4vw);
    margin-bottom: 3px;
  }

  /* ------------------------------
   Builder
  ------------------------------ */
  #builder {
    padding-block: 1px 50px;
    margin-bottom: 50px;
  }
  #builder::before {
    width: 66px;
    height: 72px;
    margin: -26px auto 20px;
  }
  #builder .maintitle {
    margin-bottom: 45px;
  }
  #builder ul.builderlist {
    margin-bottom: 60px;
  }
  #builder ul.builderlist li {
    display: block;
    margin-bottom: 40px;
  }
  #builder ul.builderlist li a {
    display: block;
  }
  #builder ul.builderlist li a .image {
    width: auto;
    border-radius: 6px;
    margin-bottom: 10px;
  }
  #builder ul.builderlist li a .main {
    display: block;
    padding-block: 10px;
  }
  #builder ul.builderlist li a .posttitle {
    font-size: min(4.5vw,20px);
    margin-bottom: 10px;
  }
  #builder ul.builderlist li a .text {
    font-size: 13px;
  }
  #builder ul.builderlist li a dl {
    margin-top: 8px;
  }
  #builder ul.builderlist li a dl dt {
    font-size: 13px;
    margin-bottom: 1px;
  }
  #builder ul.builderlist li a dl dd {
    font-size: 11px;
  }
  #builder ul.builderlist .linkbutton {
    margin: 10px 0 0 auto;
  }
  #builder .builderlink a {
    border-radius: 5px;
  }
  #builder .builderlink a .morearrow {
    position: static;
    margin: 5px auto 0;
  }

  /* ------------------------------
   Interview
  ------------------------------ */
  #interview {
    margin-bottom: 50px;
  }
  #interview .sectitle .ja::after {
    top: 10px;
    margin-left: -15px;
    width: 60px;
    height: 50px;
  }
  #interview ul.ivlist {
    gap: 20px 5%;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "top top" "sub1 sub2";
  }
  #interview ul.ivlist li a .main {
    padding-top: 8px;
  }
  #interview ul.ivlist li a .main .posttitle {
    font-size: min(15px,3vw);
  }
  #interview ul.ivlist li a .main .sub {
    font-size: min(2.5vw,11px);
    line-height: 1.6;
    margin-top: 5px;
  }
  #interview ul.ivlist li:first-of-type a .main {
    bottom: 10%;
  }
  #interview ul.ivlist li:first-of-type a .main .posttitle {
    font-size: min(20px,3.5vw);
  }
  #interview ul.ivlist li:first-of-type a .main .posttitle span {
    padding: 3px 12px;
  }
  #interview ul.ivlist li:first-of-type a .main .com {
    top: -35px;
    padding: 3px 12px;
  }

  /* ------------------------------
   Column
  ------------------------------ */
  #column {
    margin-bottom: 30px;
  }
  #column .titlearea {
    width: 16%;
    padding-top: 60px;
  }
  #column .titlearea::before {
    width: 65px;
    height: 65px;
    margin-left: -30px;
  }
  #column .titlearea .sectitle {
    position: sticky;
    top: 170px;
    padding-bottom: 30px;
  }
  #column .column {
    padding: 40px 5vw 50px;
  }
  #column .column ul.columnlist {
    display: block;
  }
  #column .column ul.columnlist li {
    margin-bottom: 30px;
  }
  #column .column ul.columnlist li a .main {
    margin: -5.5vw 7% 0 0;
    padding: 20px 4vw 25px;
  }
  #column .column ul.columnlist li a .main .posttitle {
    font-size: min(17px,3.5vw);
    margin-bottom: 5px;
  }
  #column .column ul.columnlist li a .main .text {
    font-size: min(3vw,14px);
  }
  #column .morebutton {
    margin: 40px auto 0;
  }

  /* ------------------------------
   Works
  ------------------------------ */
  #works {
    margin-bottom: 60px;
  }
  #works ul.workslist {
    display: block;
  }
  #works ul.workslist li {
    display: block;
    margin-bottom: 30px;
  }
  #works ul.workslist li a {
    display: block;
  }
  #works ul.workslist li a .posttitle {
    margin-top: 10px;
    font-size: min(16px,3.6vw);
  }

  /* ------------------------------
   Ranking (banner)
  ------------------------------ */
  #ranking {
    max-width: 360px;
    margin-bottom: 60px;
  }
  #ranking a {
    display: block;
    border-radius: 10px;
    padding-bottom: 40px;
  }
  #ranking a .image {
    width: auto;
    aspect-ratio: 5 / 3;
    margin-bottom: 12px;
  }
  #ranking a .main {
    padding-inline: 0;
  }
  #ranking a .main .text {
    padding: 3px;
    width: 250px;
    margin: 0 auto 15px;
    font-size: 13px;
  }
  #ranking a .main .logo {
    width: 220px;
    margin: 0 auto 15px;
  }
  #ranking a .main .data strong {
    font-size: inherit;
  }
  #ranking a .morearrow {
    bottom: 15px;
    right: 15px;
  }

  /* ------------------------------
   Instagram
  ------------------------------ */
  #instagram {
    margin-bottom: 70px;
  }
  #instagram .title {
    margin-bottom: 15px;
  }
  #instagram .title::before {
    width: 80px;
    height: 62px;
    margin: 0 auto;
  }
  #instagram .title strong {
    font-size: 22px;
  }
  #instagram ul.instalist {
    gap: 2vw;
  }

  /* ------------------------------
   Glossary
  ------------------------------ */
  #glossary {
    padding-block: 50px;
  }
  #glossary .inner {
    display: block;
  }
  #glossary .titlearea {
    width: auto;
    margin-bottom: 25px;
  }
  #glossary .titlearea .title {
    width: 270px;
    margin-bottom: 15px;
  }
  #glossary .titlearea .text {
    font-size: 13px;
  }
  #glossary .titlearea .text br {
    display: none;
  }
  #glossary .word ul {
    margin-bottom: 35px;
  }

  /* ------------------------------
   Whats
  ------------------------------ */
  #whats {
    padding-block: 50px 60px;
  }
  #whats .bg figure {
    height: 115%;
  }
  #whats .title {
    max-width: 320px;
    width: 80%;
    margin: 0 auto 20px;
  }
  #whats .main .catch {
    font-size: 17px;
  }
  #whats .main .text {
    font-size: 13px;
  }
}

/*# sourceMappingURL=top.css.map */
