@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500&family=Noto+Sans+JP:wght@400;500;600&family=Zen+Old+Mincho&display=swap");
@import url("global.css");
:root {
  --radius: 5px;
  --border: 10px;
  --wrapper_pd: 5vw;
  --divider_pd: 120px;
}

/* ------------------------------
 common
------------------------------ */
body {
  min-height: 100dvh;
}

footer {
  position: sticky;
  top: 100%;
}

#bodyarea {
  position: relative;
  background-color: #fff;
  font-size: 16px;
}

body#blog #navibutton {
  display: block;
}

/* ---------- Category-List ---------- */
#catlist {
  text-align: center;
  margin-bottom: 100px;
  padding-block: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  border: var(--border) solid #BCE5EC;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#catlist .title {
  width: 200px;
  border-right: 1px solid #2396AA;
  color: #2396AA;
  letter-spacing: 0;
  line-height: 1.2;
  min-height: 75px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  font-size: 30px;
  font-family: "EB Garamond", "Zen Old Mincho", serif;
}
#catlist .title .cancell {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  border: 1px solid #2396AA;
  background-color: #F7F6EE;
  border-radius: 100vmax;
  padding: 0.5em 2em;
  color: #2396AA;
  line-height: 1;
  margin-top: 10px;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  -webkit-transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  font-size: 12px;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "游ゴシック Medium", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Meiryo", "メイリオ", Helvetica, sans-serif;
}
@media (any-hover: hover) {
  #catlist .title .cancell:hover {
    background-color: #2396AA;
    color: #fff;
  }
}
#catlist .list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1.5em;
  padding-inline: 20px;
}
#catlist .list ul li a {
  display: block;
  position: relative;
  color: #959898;
  letter-spacing: 0px;
}
#catlist .list ul li a::before {
  content: "#";
  margin-right: 0.2em;
  font-weight: 900;
}
@media (any-hover: hover) {
  #catlist .list ul li a {
    border-bottom: 2px solid transparent;
    -webkit-transition: border 0.6s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
    transition: border 0.6s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
    -webkit-transition: all 0.6s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  #catlist .list ul li a:hover {
    border-bottom: 2px solid #BCE5EC;
  }
}

.cattitle {
  line-height: 1.6;
  margin-bottom: 50px;
  font-size: 113%;
}
.cattitle strong {
  display: block;
  color: #2396AA;
  font-size: 150%;
  font-weight: 600;
}
.cattitle strong::before {
  content: "#";
  margin-right: 0.2em;
  font-weight: 900;
}

/* ---------- Works-List ---------- */
.workslist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -25px;
}
.workslist li {
  width: 33.3333333333%;
  padding: 0 20px 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.workslist li a {
  display: block;
  text-align: left;
}
.workslist li a .image {
  position: relative;
  width: 100%;
  aspect-ratio: 1/0.6667;
}
.workslist li a .image figure {
  overflow: hidden;
  border-radius: var(--radius);
}
.workslist li a .image figure img {
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  -webkit-transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.workslist li a .image figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #1D1D1D;
  mix-blend-mode: multiply;
  opacity: 0;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  -webkit-transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius);
}
.workslist li a .image figure::after {
  content: "詳しく見る →";
  color: #fff;
  position: absolute;
  right: 40px;
  bottom: 15px;
  z-index: 2;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0.2s;
  -webkit-transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0.2s;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.workslist li a .image .new {
  --square: 80px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: var(--square);
  aspect-ratio: 1/1;
  color: #fff;
  line-height: 1;
  font-size: 23px;
  font-family: "EB Garamond", "Zen Old Mincho", serif;
  position: absolute;
  top: calc(var(--square) * -0.375);
  right: 10px;
  z-index: 1;
}
.workslist li a .image .new::before {
  content: "";
  display: block;
  background: url("/img/square.svg") center center/contain no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: -1;
}
.workslist li a .image .new span {
  display: inline-block;
  padding-bottom: 0.2em;
}
@media (any-hover: hover) {
  .workslist li a:hover .image figure::before {
    opacity: 0.4;
  }
  .workslist li a:hover .image figure::after {
    opacity: 1;
    translate: 20px 0;
  }
  .workslist li a:hover .image figure img {
    -webkit-filter: blur(2px);
            filter: blur(2px);
  }
}
.workslist li a .title {
  font-size: 21px;
  margin-top: 1em;
  font-weight: bold;
  line-height: 1.5;
}
.workslist li a .data {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 15px 1fr;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-top: 15px;
}
.workslist li a .data .area {
  line-height: 1;
  padding: 0.5em 1.8em 0.6em;
  letter-spacing: 0;
  color: #2396AA;
  border: 1px solid currentColor;
  background-color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.workslist li a .data .cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.2em 0.6em;
}
.workslist li a .data .cat span {
  display: block;
  color: #959898;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1;
}
.workslist li a .data .cat span::before {
  content: "#";
  margin-right: 0.2em;
  font-weight: 900;
}

/* ------------------------------
 index
------------------------------ */
.index #bodyarea {
  padding-top: 80px;
}
.index .workslist {
  margin-bottom: 80px;
}

.categorytitle {
  text-align: center;
  margin-bottom: 80px;
  line-height: 1.4;
  font-size: clamp(18px, 4vw, 28px);
  font-weight: 600;
}

/* ------------------------------
 entry
------------------------------ */
@-webkit-keyframes bganime {
  0% {
    opacity: 0;
    -webkit-filter: brightness(2);
            filter: brightness(2);
  }
  100% {
    opacity: 1;
    -webkit-filter: none;
            filter: none;
  }
}
@keyframes bganime {
  0% {
    opacity: 0;
    -webkit-filter: brightness(2);
            filter: brightness(2);
  }
  100% {
    opacity: 1;
    -webkit-filter: none;
            filter: none;
  }
}
.entry .content {
  padding-bottom: 100px;
}
.entry .titlearea {
  text-align: center;
  margin-bottom: 40px;
}
.entry .titlearea .en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5em;
  color: #2396AA;
  line-height: 1.4;
  font-size: 28px;
  font-family: "EB Garamond", "Zen Old Mincho", serif;
}
.entry .titlearea .en::before, .entry .titlearea .en::after {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background-color: currentColor;
}
.entry .titlearea .ja {
  font-size: 14px;
}
.entry #mv {
  position: relative;
  width: 100%;
  height: 800px;
}
.entry #mv .mv_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 800px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-animation: bganime 1.5s ease-in-out 0.3s 1;
          animation: bganime 1.5s ease-in-out 0.3s 1;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.entry .post {
  position: relative;
  overflow: hidden;
}
.entry .post .cnttitle {
  position: absolute;
  top: -2px;
  left: 10vw;
  color: rgba(188, 229, 236, 0.5);
  line-height: 0.6;
  letter-spacing: 0;
  font-size: 190px;
  font-family: "EB Garamond", "Zen Old Mincho", serif;
}
.entry .post #postinfo {
  max-width: 1200px;
  margin-inline: auto;
  padding-block: 100px 70px;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: 1fr 60px max(540px, 45%);
  grid-template-columns: 1fr max(540px, 45%);
  gap: 60px;
}
.entry .post #postinfo .title_box {
  text-align: left;
  padding-block: 80px 50px;
}
.entry .post #postinfo .title_box .posttitle {
  line-height: 1.6;
  /* --viewport 1380 ⇒ 1080 --*/
  font-size: clamp(28px, 13.6px + 1.3333333333vw, 32px);
  font-weight: 600;
}
.entry .post #postinfo .title_box .inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 30px 1fr;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-top: 40px;
}
.entry .post #postinfo .title_box .inner .land {
  border: 1px solid #2396AA;
  color: #2396AA;
  padding: 0.5em 1.8em 0.6em;
  letter-spacing: 0;
  line-height: 1;
  font-size: 18px;
  font-weight: 600;
}
.entry .post #postinfo .title_box .inner .cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5em 1em;
}
.entry .post #postinfo .title_box .inner .cat li a {
  display: block;
  color: #959898;
  letter-spacing: 0;
  line-height: 1;
  font-size: 15px;
}
.entry .post #postinfo .title_box .inner .cat li a::before {
  content: "#";
  margin-right: 0.2em;
}
.entry .post #postinfo .data_box {
  /*border: var(--border) solid $border;*/
  /*padding: 1em 30px;*/
}
.entry .post #postinfo .data_box .data_inner {
  border-top: 1px solid rgba(206, 202, 196, 0.8);
}
.entry .post #postinfo .data_box .data_inner dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: max(17%, 120px) 10px 1fr;
  grid-template-columns: max(17%, 120px) 1fr;
  /*grid-template-rows: minmax(50px,auto);*/
  line-height: 1.6;
  text-align: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid rgba(206, 202, 196, 0.8);
  padding: 1em 1.5em;
  gap: 10px;
}
.entry .post #postinfo .data_box .data_inner dl dt {
  font-weight: 600;
}
.entry .post #photogallery {
  background-color: #F7F6EE;
  padding-block: 70px;
}
.entry .post #photogallery .gallerymain {
  max-width: 1000px;
  margin-inline: auto;
}
.entry .post .postbody {
  padding-top: 100px;
}
.entry #breadcrumbs {
  background-color: #F7F6EE;
  margin: 0;
  padding: 15px 0;
}

#otherworks {
  background-color: #F7F6EE;
  padding-block: 70px 40px;
}
#otherworks .workslist {
  margin: 0 -15px;
}
#otherworks .workslist li {
  padding: 0 15px 30px;
}
#otherworks .workslist li a .image figure::after {
  font-size: 0.9em;
}
#otherworks .workslist li a .image .new {
  --square: 60px;
  font-size: 16px;
}
#otherworks .workslist li a .image .new span {
  padding-bottom: 0.2em;
}
#otherworks .workslist li a .title {
  font-size: 115%;
}
#otherworks .workslist li a .text {
  font-size: 95%;
}
#otherworks .workslist li a .data .area {
  font-size: 12px;
}
#otherworks .workslist li a .data .cat span {
  font-size: 12px;
}

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

 Responsive-Breakpoint-0 ( 1480px )

------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 1480px) {
  :root {
    --wrapper_pd: 5vw;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint ( 1380px )

------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 1380px) {
  /* ---------- Works-List ---------- */
  .workslist {
    margin: 0 -15px;
  }
  .workslist li {
    padding: 0 15px 30px;
  }
  .workslist li a .image .new {
    --square: 60px;
    font-size: 16px;
  }
  .workslist li a .image .new span {
    padding-bottom: 0.2em;
  }
  .workslist li a .title {
    font-size: 115%;
  }
  .workslist li a .text {
    font-size: 95%;
  }
  .workslist li a .data .area {
    font-size: 12px;
  }
  .workslist li a .data .cat span {
    font-size: 12px;
  }
  /* ------------------------------
   Index
  ------------------------------ */
  .categorytitle {
    margin-bottom: 60px;
  }
  /* ------------------------------
   entry
  ------------------------------ */
  .entry #mv {
    height: 70vh;
    min-height: 420px;
  }
  .entry #mv .mv_bg {
    height: 70vh;
    min-height: 420px;
  }
  .entry .post .cnttitle {
    left: 0;
  }
  .entry .post #postinfo {
    -ms-grid-columns: 1fr max(400px, 45%);
    grid-template-columns: 1fr max(400px, 45%);
  }
  .entry .post #postinfo .title_box {
    padding-block: 80px 50px;
  }
  .entry .post #postinfo .title_box .inner {
    gap: 20px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-1 ( 1200px )

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

 Responsive-Breakpoint-2 ( 960px )

------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 959px) {
  :root {
    --radius: 5px;
    --border: 7px;
    --wrapper_pd: 6vw;
    --divider_pd: 90px;
  }
  #bodyarea {
    font-size: 14px;
  }
  /* ---------- Category-List ---------- */
  #catlist {
    margin-bottom: 60px;
    padding-block: 20px;
  }
  #catlist .title {
    width: 160px;
    font-size: 26px;
    font-size: 30px;
  }
  #catlist .title .cancell {
    padding: 0.5em 2em;
    margin-top: 10px;
    font-size: 12px;
  }
  #catlist .list ul {
    gap: 0 1em;
    padding-inline: 20px;
  }
  /* ---------- Works-List ---------- */
  .workslist {
    margin: 0 -20px;
  }
  .workslist li {
    width: 50%;
    padding: 0 20px 40px;
  }
  .workslist li a .data .area {
    padding: 0.5em 1em 0.6em;
  }
  /* ------------------------------
   index
  ------------------------------ */
  .index #bodyarea {
    padding-top: 60px;
  }
  /* ------------------------------
   entry
  ------------------------------ */
  .entry .titlearea {
    margin-bottom: 30px;
  }
  .entry #mv {
    height: 60vh;
    min-height: 600px;
  }
  .entry #mv .mv_bg {
    height: 60vh;
    min-height: 600px;
  }
  .entry .content {
    padding-bottom: 80px;
  }
  .entry .post .postbody {
    padding-top: 70px;
  }
  .entry .post .cnttitle {
    font-size: 130px;
  }
  .entry .post #photogallery {
    padding-block: 60px;
  }
  .entry .post #postinfo {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 0 50px;
  }
  .entry .post #postinfo .title_box {
    padding-block: 100px 50px;
  }
  .entry .post #postinfo .title_box .inner {
    gap: 20px;
    margin-top: 30px;
  }
  .entry .post #postinfo .title_box .inner .land {
    font-size: 16px;
  }
  .entry .post #postinfo .data_box .data_inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .entry .post #postinfo .data_box .data_inner dl {
    -ms-grid-columns: max(17%, 100px) 1fr;
    grid-template-columns: max(17%, 100px) 1fr;
  }
  #otherworks {
    padding-block: 50px 20px;
  }
  #otherworks .workslist {
    margin: 0 -10px;
  }
  #otherworks .workslist li {
    width: 33.3333333333%;
    padding: 0 10px 30px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-2 ( 645px )

------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 644px) {
  :root {
    --radius: 3px;
    --border: 7px;
    --wrapper_pd: 5vw;
    --divider_pd: 60px;
  }
  /* ---------- Category-List ---------- */
  #catlist {
    margin-bottom: 40px;
    padding-block: 20px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  #catlist .title {
    width: auto;
    margin-bottom: 15px;
    border-right: 0;
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
    place-items: center;
    min-height: auto;
    font-size: 24px;
  }
  #catlist .title .cancell {
    padding: 0.5em 1em;
    margin-top: 0;
    margin-left: 10px;
    display: inline-block;
    font-size: 11px;
  }
  #catlist .list {
    font-size: 13px;
  }
  #catlist .list ul {
    gap: 0.3em 1em;
    padding-inline: 10px;
  }
  .cattitle {
    margin-bottom: 30px;
    font-size: 90%;
  }
  /* ---------- Works-List ---------- */
  .workslist {
    margin: 0 -10px;
  }
  .workslist li {
    width: 100%;
    padding: 0 10px 30px;
  }
  .workslist li a .title {
    /*font-size: 100%;*/
  }
  .workslist li a .text {
    font-size: 90%;
  }
  .workslist li a .data {
    gap: 8px;
    margin-top: 10px;
  }
  .workslist li a .data .cat span {
    font-size: 11px;
  }
  /* ------------------------------
   index
  ------------------------------ */
  .index #bodyarea {
    padding-top: 40px;
  }
  .index .workslist {
    margin-bottom: 60px;
  }
  .categorytitle {
    margin-bottom: 50px;
  }
  /* ------------------------------
   entry
  ------------------------------ */
  .entry .titlearea {
    margin-bottom: 20px;
  }
  .entry .titlearea .en {
    font-size: 24px;
  }
  .entry .titlearea .jp {
    font-size: 12px;
  }
  .entry #mv {
    height: 75vw;
    min-height: auto;
  }
  .entry #mv .mv_bg {
    height: 75vw;
    background-size: auto 75vw;
    background-position: center top;
  }
  .entry .content {
    padding-bottom: 50px;
  }
  .entry .post .cnttitle {
    font-size: 95px;
  }
  .entry .post #photogallery {
    padding-block: 40px;
  }
  .entry .post #postinfo {
    padding-block: 0 50px;
  }
  .entry .post #postinfo .title_box {
    padding-block: 80px 40px;
  }
  .entry .post #postinfo .title_box .posttitle {
    /*--viewport 375 / 320 --*/
    font-size: clamp(18px, -5.2727272727px + 7.2727272727vw, 22px);
  }
  .entry .post #postinfo .title_box .inner {
    gap: 15px;
    margin-top: 20px;
  }
  .entry .post #postinfo .title_box .inner .land {
    padding: 0.5em 1em 0.6em;
    font-size: 14px;
  }
  .entry .post #postinfo .title_box .inner .cat li a {
    font-size: 13px;
  }
  .entry .post #postinfo .data_box .data_inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .entry .post #postinfo .data_box .data_inner dl {
    -ms-grid-columns: max(17%, 100px) 1fr;
    grid-template-columns: max(17%, 100px) 1fr;
    padding: 0.8em 1.5em;
  }
  #otherworks {
    padding-block: 40px 0;
  }
  #otherworks .workslist {
    margin: 0 -10px;
  }
  #otherworks .workslist li {
    width: 100%;
    padding: 0 10px 30px;
  }
  #otherworks .workslist li a .image figure::after {
    font-size: 1em;
  }
  #otherworks .workslist li a .title {
    font-size: 100%;
  }
  #otherworks .workslist li a .text {
    font-size: 90%;
  }
  #otherworks .workslist li a .data {
    gap: 8px;
    margin-top: 10px;
  }
  #otherworks .workslist li a .data .cat span {
    font-size: 11px;
  }
}