@charset "UTF-8";
@import url("global.css");
#breadcrumbs {
  padding-top: 130px;
  height: 80px;
  margin: 0;
}
#breadcrumbs ul li {
  font-size: 12px;
}
#breadcrumbs ul li:has(a)::after {
  width: 10px;
}
#breadcrumbs ul li a {
  padding-right: 8px;
}

#workstitle {
  height: 210px;
}
#workstitle #title {
  line-height: 1.6;
}
#workstitle #title .en {
  display: flex;
  align-items: center;
  column-gap: 12px;
  letter-spacing: .1em;
  font-family: "Manrope", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  color: #639A70;
  animation: titleen 1s var(--ease-out-quart) 0.5s 1;
  animation-fill-mode: both;
  margin-bottom: 12px;
}
#workstitle #title .en::before {
  content: "";
  width: 17px;
  height: 17px;
  background: url("../img/title_event.png") no-repeat center center/contain;
  display: block;
}
#workstitle #title .ja {
  font-size: clamp(17px, 4vw, 36px);
  animation: titleja 1.8s var(--ease-out-quart) 1s 1;
  animation-fill-mode: both;
}

.mainimage {
  height: min(800px,100vh);
  border-radius: calc(var(--radius) * 1.5);
  overflow: hidden;
  margin-bottom: 60px;
  animation: titlebg 1s ease-in-out .3s 1;
  animation-fill-mode: both;
}

.mainarea {
  display: flex;
  justify-content: space-between;
  gap: min(50px,5vw);
}
.mainarea .datablock {
  width: 480px;
  max-width: 45%;
}
.mainarea .datablock .title {
  font-family: "Manrope", "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  letter-spacing: .1em;
}
.mainarea .datablock .cats {
  margin-bottom: 35px;
}
.mainarea .datablock .cats .title {
  gap: 6px;
}
.mainarea .datablock .cats .title::before {
  content: "\f02b";
  font-family: 'Font Awesome 6 free','Font Awesome 6 Brands';
  font-weight: 900;
  color: #639A70;
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
}
.mainarea .datablock .cats ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 18px;
}
.mainarea .datablock .cats ul li a {
  display: block;
  color: #639A70;
  font-size: min(15px,1.4vw);
  background-image: linear-gradient(rgba(99, 154, 112, 0.2), rgba(99, 154, 112, 0.2));
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 3px;
  transition: background-size 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9);
}
.mainarea .datablock .cats ul li a::before {
  content: "#";
  padding-right: 2px;
}
@media (any-hover: hover) {
  .mainarea .datablock .cats ul li a:hover {
    background-position: bottom left;
    background-size: 100% 3px;
  }
}
.mainarea .datablock .data .title {
  gap: 10px;
}
.mainarea .datablock .data .title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #639A70;
}
.mainarea .datablock .data dl {
  line-height: 1.7;
  font-size: 15px;
}
.mainarea .datablock .data dl div {
  margin-top: 12px;
  display: flex;
  gap: 10px;
}
.mainarea .datablock .data dl div dt {
  color: #586B56;
  display: flex;
  justify-content: space-between;
  width: 105px;
}
.mainarea .datablock .data dl div dt::after {
  content: "：";
}
.mainarea .textblock {
  width: 50%;
  padding-top: 3px;
}
.mainarea .textblock .text p + p {
  margin-top: 1.5em;
}
.mainarea .textblock .text a {
  text-decoration-color: rgba(99, 154, 112, 0.4);
  text-decoration-line: underline;
  text-decoration-thickness: 5px;
  text-underline-offset: -1px;
  text-decoration-skip-ink: none;
}
.mainarea .textblock .owner {
  margin-top: 50px;
  max-width: 480px;
  margin-left: auto;
}
.mainarea .textblock .owner a {
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
  background-color: #F1F0E7;
  border-radius: 3px;
  overflow: hidden;
}
.mainarea .textblock .owner a .photo {
  width: 132px;
  aspect-ratio: 3 / 2;
}
.mainarea .textblock .owner a .text {
  line-height: 1.7;
}
.mainarea .textblock .owner a .en {
  color: #639A70;
  font-family: "Manrope", "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  letter-spacing: .1em;
  display: flex;
  gap: 5px;
  align-items: center;
}
.mainarea .textblock .owner a .en::before {
  content: "";
  width: 15px;
  height: 13px;
  display: block;
  background: url("../img/owner.png") no-repeat center center/contain;
}
.mainarea .textblock .owner a::after {
  content: "";
  width: 14px;
  height: 10px;
  position: absolute;
  right: 18px;
  top: 50%;
  margin-top: -5px;
  display: block;
  background: url("../img/arrow.png") no-repeat center center/contain;
  filter: invert(1);
  rotate: 90deg;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
@media (any-hover: hover) {
  .mainarea .textblock .owner a:hover {
    background-color: #E4EEE6;
  }
  .mainarea .textblock .owner a:hover::after {
    translate: 0 5px;
  }
}

#worksbody {
  max-width: 1000px;
  margin-inline: auto;
  margin-top: 110px;
}
#worksbody p {
  margin-top: 30px;
  font-size: 14px;
}
#worksbody p:has(img) {
  margin-top: 70px;
}
#worksbody p:has(img) + p {
  margin-top: 15px;
}
#worksbody img {
  max-height: 760px;
  width: auto;
}

.staffblock {
  margin-top: 120px;
  margin-inline: auto;
  max-width: 1000px;
  box-sizing: border-box;
  border: #eee 4px solid;
  border-radius: 10px;
  padding: 55px 50px;
  position: relative;
}
.staffblock .sectitle {
  position: absolute;
  top: -17px;
  left: 0;
  right: 0;
  z-index: 1;
  text-align: center;
}
.staffblock .sectitle span {
  display: flex;
  justify-content: center;
  background-color: #fff;
  align-items: center;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 30px;
  font-size: 22px;
  gap: 25px;
  line-height: 30px;
}
.staffblock .sectitle span::before, .staffblock .sectitle span::after {
  content: "";
  width: 15px;
  height: 15px;
  background: url("../img/dot4.png") no-repeat center center/contain;
  filter: brightness(0) saturate(100%) invert(59%) sepia(7%) saturate(1814%) hue-rotate(82deg) brightness(93%) contrast(92%);
}
.staffblock .staff {
  width: 300px;
  margin: 0 auto 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.staffblock .staff .photo {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}
.staffblock .staff .text {
  text-align: center;
  flex-grow: 1;
  line-height: 1.5;
}
.staffblock .staff .text .sub {
  display: block;
  font-size: 12px;
}
.staffblock .staff .text .name {
  font-size: 17px;
}
.staffblock .comment {
  font-size: 15px;
}
.staffblock .comment *:first-child {
  margin-top: 0 !important;
}
.staffblock .comment p {
  margin-top: 30px;
}
.staffblock .comment p:has(img) {
  margin-top: 45px;
  text-align: center;
}
.staffblock .comment p:has(img) + p {
  margin-top: 45px;
}
.staffblock .comment figure {
  margin-top: 45px;
  margin-inline: auto;
  text-align: center;
}
.staffblock .comment figure + p {
  margin-top: 45px;
}
.staffblock .comment .flex {
  display: flex;
  gap: 12px;
  margin-block: 50px;
}
.staffblock .comment .flex span {
  flex: 1;
}
.staffblock .comment .flex figure {
  margin: 0;
}
.staffblock .comment + .staff {
  margin-top: 80px;
}

#voice {
  margin-top: 130px;
  background: url("../img/bgmesh.png") repeat left top/1400px auto;
  padding-bottom: 120px;
}
#voice #voiceimage {
  height: min(100vh,800px);
}
#voice #voicemain {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: min(4vw,40px);
}
#voice #voicemain .titleblock {
  margin-top: -60px;
  flex-shrink: 0;
  margin-inline: 6%;
  padding-bottom: 30px;
}
#voice #voicemain .titleblock .maintitle {
  background-color: #fff;
  padding: 50px 45px 50px 32px;
  position: sticky;
  top: 120px;
  -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;
}
#voice #voicemain .titleblock .maintitle .h {
  color: #639A70;
  position: relative;
  padding-top: 22px;
  margin-left: 20px;
}
#voice #voicemain .titleblock .maintitle .h::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url("../img/mame.png") no-repeat center center/contain;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -7px;
}
#voice #voicemain .titleblock .maintitle .title {
  font-size: min(34px,2.5vw);
  line-height: 1.9;
  letter-spacing: .14em;
  text-decoration-color: #8E8E8E;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 10px;
  text-decoration-skip-ink: none;
  text-decoration-style: dashed;
}
#voice #voicemain .bodyblock {
  padding-top: 90px;
  max-width: 800px;
}
#voice #voicemain .bodyblock *:first-child {
  margin-top: 0 !important;
}
#voice #voicemain .bodyblock h1, #voice #voicemain .bodyblock h2, #voice #voicemain .bodyblock h3, #voice #voicemain .bodyblock h4, #voice #voicemain .bodyblock h5, #voice #voicemain .bodyblock h6 {
  font-size: clamp(17px, 3.2vw, 24px);
  font-weight: 700;
  margin-block: 70px 30px;
}
#voice #voicemain .bodyblock p {
  margin-block: 30px;
}
#voice #voicemain .bodyblock strong {
  font-weight: 700;
}
#voice #voicemain .bodyblock figure {
  margin-block: 50px;
}
#voice #voicemain .bodyblock figure figcaption {
  font-size: 80%;
  line-height: 1.5;
  padding-top: 15px;
}
#voice #voicemain .bodyblock .flex {
  display: flex;
  gap: 3%;
  margin-block: 50px;
}
#voice #voicemain .bodyblock .flex figure {
  margin: 0;
}

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

 Responsive-Breakpoint ( 1300px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 1300px) {
  #voice #voicemain .titleblock {
    margin-inline: 2%;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-2 ( 959px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 959px) {
  #breadcrumbs {
    padding-top: 140px;
    height: 70px;
  }

  #workstitle {
    height: min(210px,24vw);
  }
  #workstitle #title .en {
    font-size: 14px;
  }

  .mainimage {
    height: auto;
    aspect-ratio: 3 / 2;
    margin-bottom: 50px;
  }

  .mainarea .datablock {
    width: auto;
    max-width: none;
  }
  .mainarea .datablock .cats ul {
    gap: 2px 18px;
  }
  .mainarea .datablock .cats ul li a {
    font-size: 13px;
  }
  .mainarea .datablock .data dl {
    font-size: 14px;
  }
  .mainarea .datablock .data dl div {
    margin-top: 10px;
  }
  .mainarea .datablock .data dl div dt {
    width: 95px;
  }
  .mainarea .textblock {
    flex-shrink: 0;
  }
  .mainarea .textblock .owner {
    margin-top: 40px;
    margin-left: -25px;
  }
  .mainarea .textblock .owner a {
    gap: 2.5vw;
  }
  .mainarea .textblock .owner a .photo {
    width: 132px;
    max-width: 35%;
    flex-shrink: 0;
  }
  .mainarea .textblock .owner a .text {
    font-size: min(15px,1.9vw);
    letter-spacing: 0;
  }
  .mainarea .textblock .owner a .en {
    font-size: 12px;
  }
  .mainarea .textblock .owner a::after {
    right: 15px;
    top: 20px;
  }

  #worksbody {
    margin-top: 80px;
  }
  #worksbody p {
    margin-top: 20px;
  }
  #worksbody p:has(img) {
    margin-top: 50px;
    text-align: center;
  }

  .staffblock {
    margin-top: 80px;
    padding: 50px 5vw;
  }
  .staffblock .sectitle {
    top: -17px;
  }
  .staffblock .sectitle span {
    padding-inline: 30px;
    font-size: 20px;
    gap: 20px;
  }
  .staffblock .comment {
    font-size: 14px;
  }
  .staffblock .comment p {
    margin-top: 20px;
  }
  .staffblock .comment p:has(img) {
    margin-top: 40px;
  }
  .staffblock .comment p:has(img) + p {
    margin-top: 40px;
  }
  .staffblock .comment figure {
    margin-top: 40px;
  }
  .staffblock .comment figure + p {
    margin-top: 40px;
  }
  .staffblock .comment + .staff {
    margin-top: 70px;
  }

  #voice {
    margin-top: 80px;
    padding-bottom: 50px;
  }
  #voice #voiceimage {
    height: auto;
    aspect-ratio: 2 / 1;
  }
  #voice #voicemain {
    gap: 5vw;
  }
  #voice #voicemain .titleblock {
    margin-inline: 0;
  }
  #voice #voicemain .titleblock .maintitle {
    padding: 50px 35px 50px 30px;
  }
  #voice #voicemain .titleblock .maintitle .h {
    font-size: 14px;
    padding-top: 20px;
    margin-left: 20px;
  }
  #voice #voicemain .titleblock .maintitle .h::before {
    width: 12px;
    height: 12px;
    margin-left: -6px;
  }
  #voice #voicemain .titleblock .maintitle .title {
    font-size: min(24px,3vw);
    text-underline-offset: 8px;
  }
  #voice #voicemain .bodyblock {
    padding-top: 60px;
  }
  #voice #voicemain .bodyblock h1, #voice #voicemain .bodyblock h2, #voice #voicemain .bodyblock h3, #voice #voicemain .bodyblock h4, #voice #voicemain .bodyblock h5, #voice #voicemain .bodyblock h6 {
    margin-block: 50px 20px;
  }
  #voice #voicemain .bodyblock p {
    margin-block: 20px;
  }
  #voice #voicemain .bodyblock figure {
    margin-block: 40px;
  }
  #voice #voicemain .bodyblock figure figcaption {
    padding-top: 12px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-3 ( 644px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 644px) {
  #breadcrumbs {
    padding-top: 110px;
    height: 60px;
  }
  #breadcrumbs ul li {
    font-size: 10px;
  }
  #breadcrumbs ul li:has(a)::after {
    width: 8px;
  }
  #breadcrumbs ul li a {
    padding-right: 4px;
  }

  #workstitle {
    height: auto;
    margin-bottom: 30px;
  }
  #workstitle #title .en {
    column-gap: 8px;
    font-size: 12px;
    margin-bottom: 10px;
  }
  #workstitle #title .en::before {
    width: 14px;
    height: 14px;
  }
  #workstitle #title .ja br {
    display: none;
  }

  .mainimage {
    margin-bottom: 30px;
  }

  .mainarea {
    display: block;
  }
  .mainarea .datablock {
    background-color: #F1F0E7;
    border-radius: var(--radius);
    margin-bottom: 30px;
    padding: 6vw 7vw 7vw;
  }
  .mainarea .datablock .title {
    font-size: 13px;
    margin-bottom: 5px;
  }
  .mainarea .datablock .title::after {
    content: "";
    display: block;
    height: 1px;
    flex-grow: 1;
    margin-left: 5px;
    background: linear-gradient(to right, rgba(99, 154, 112, 0.5) 4px, transparent 3px) repeat-x left top/7px 1px;
  }
  .mainarea .datablock .cats {
    margin-bottom: 15px;
  }
  .mainarea .datablock .cats .title {
    gap: 5px;
  }
  .mainarea .datablock .cats .title::before {
    font-size: 16px;
    margin-top: 3px;
  }
  .mainarea .datablock .cats ul {
    gap: 0 15px;
  }
  .mainarea .datablock .cats ul li a {
    font-size: 12px;
  }
  .mainarea .datablock .data .title {
    gap: 9px;
  }
  .mainarea .datablock .data dl {
    font-size: 13px;
  }
  .mainarea .datablock .data dl div {
    margin-top: 3px;
    gap: 6px;
  }
  .mainarea .datablock .data dl div dt {
    width: 86px;
  }
  .mainarea .textblock {
    width: auto;
    padding-top: 0;
  }
  .mainarea .textblock .owner {
    margin-top: 35px;
    margin-left: auto;
  }
  .mainarea .textblock .owner a {
    gap: 4vw;
  }
  .mainarea .textblock .owner a .photo {
    width: 120px;
    max-width: none;
    flex-shrink: 0;
  }
  .mainarea .textblock .owner a .text {
    font-size: min(15px,3.2vw);
  }
  .mainarea .textblock .owner a::after {
    width: 12px;
    right: 12px;
    top: 50%;
  }

  #worksbody {
    margin-top: 70px;
  }
  #worksbody p {
    margin-top: 10px;
    font-size: 13px;
  }
  #worksbody p:has(img) {
    margin-top: 30px;
  }
  #worksbody p:has(img) + p {
    margin-top: 10px;
  }

  .staffblock {
    margin-top: 70px;
    padding: 40px 5vw;
    border-radius: 8px;
  }
  .staffblock .sectitle {
    top: -12px;
  }
  .staffblock .sectitle span {
    padding-inline: 20px;
    font-size: min(18px,4.1vw);
    gap: 12px;
    line-height: 20px;
  }
  .staffblock .sectitle span::before, .staffblock .sectitle span::after {
    width: 12px;
    height: 12px;
  }
  .staffblock .staff {
    width: 260px;
    margin: 0 auto 20px;
  }
  .staffblock .staff .photo {
    width: 120px;
    height: 120px;
  }
  .staffblock .staff .text .sub {
    font-size: 11px;
  }
  .staffblock .staff .text .name {
    font-size: 16px;
  }
  .staffblock .comment {
    font-size: 13px;
  }
  .staffblock .comment p:has(img) {
    margin-top: 30px;
  }
  .staffblock .comment p:has(img) + p {
    margin-top: 30px;
  }
  .staffblock .comment figure {
    margin-top: 30px;
  }
  .staffblock .comment figure + p {
    margin-top: 30px;
  }
  .staffblock .comment .flex {
    gap: 10px;
    margin-block: 30px;
  }
  .staffblock .comment + .staff {
    margin-top: 50px;
  }

  #voice {
    margin-top: 70px;
    padding-bottom: 30px;
  }
  #voice #voiceimage {
    height: auto;
    aspect-ratio: 16 / 9;
  }
  #voice #voicemain {
    display: block;
  }
  #voice #voicemain .titleblock {
    margin-top: -15px;
    padding-bottom: 0;
    position: relative;
    z-index: 2;
  }
  #voice #voicemain .titleblock .maintitle {
    padding: 28px 40px 30px;
    position: static;
    top: 120px;
    -webkit-writing-mode: horizontal-tb;
    -moz-writing-mode: horizontal-tb;
    -ms-writing-mode: tb-rl;
    writing-mode: horizontal-tb;
    white-space: normal;
    line-height: normal;
    border-radius: 3px;
  }
  #voice #voicemain .titleblock .maintitle .h {
    font-size: 13px;
    padding: 0 0 0 18px;
    margin: 0 0 5px 0;
  }
  #voice #voicemain .titleblock .maintitle .h::before {
    width: 12px;
    height: 12px;
    margin: -6px 0 0 0;
    top: 50%;
    left: 0;
  }
  #voice #voicemain .titleblock .maintitle .title {
    font-size: min(22px,5vw);
    line-height: 2;
    letter-spacing: .14em;
    text-underline-offset: 9px;
  }
  #voice #voicemain .bodyblock {
    padding-top: 35px;
  }
  #voice #voicemain .bodyblock *:first-child {
    margin-top: 0 !important;
  }
  #voice #voicemain .bodyblock h1, #voice #voicemain .bodyblock h2, #voice #voicemain .bodyblock h3, #voice #voicemain .bodyblock h4, #voice #voicemain .bodyblock h5, #voice #voicemain .bodyblock h6 {
    margin-block: 40px 20px;
  }
  #voice #voicemain .bodyblock p {
    margin-block: 20px;
  }
  #voice #voicemain .bodyblock figure {
    margin-block: 40px;
  }
  #voice #voicemain .bodyblock figure figcaption {
    padding-top: 10px;
  }
}

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