@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

div,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #222;
  word-wrap: break-word;
  line-height: 1.2;
  font-feature-settings: "palt";
  letter-spacing: 1px;
}

body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

input {
  margin: 0;
  padding: 0;
}

textarea {
  padding: 0;
  font: inherit;
  color: inherit;
}

button {
  font: inherit;
  padding: 0;
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
}

* {
  min-height: 0vw;
}

em {
  font-weight: bold;
}

li {
  list-style-type: none;
}

.br-sp {
  display: block;
}
@media screen and (min-width: 414px) {
  .br-sp {
    display: none;
  }
}

.br-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .br-pc {
    display: block;
  }
}

.br-tb {
  display: block;
}
@media screen and (min-width: 1000px) {
  .br-tb {
    display: none;
  }
}

.dp-none {
  display: none;
}

.dp-inlineblock {
  display: inline-block;
}

.sp-only {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

.txt {
  margin-top: 20px;
  font-size: 14px;
  line-height: 2;
}

.note {
  font-size: clamp(0.625rem, 0.5413190824rem + 0.417101147vw, 0.875rem);
  margin-top: 40px;
  line-height: 1.6;
}

.center {
  text-align: center;
  margin: 0 auto;
}

.left {
  text-align: left;
  margin-right: auto;
}

.right {
  text-align: right;
  margin-left: auto;
}

.btn {
  border-radius: 9999px;
}

.small {
  font-size: 0.8em;
}

.large {
  font-size: 1.25em;
}

.c-white {
  color: #fff;
}

.shadow {
  filter: drop-shadow(0px 1px 2px #333);
}

.em {
  font-weight: 900;
  font-size: 1.4em;
}

.strong {
  font-weight: 900;
}

.bold {
  font-weight: 700;
}

.big {
  font-size: 1.2em;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.green {
  color: #DEDA1F;
}

.link {
  text-decoration: underline;
}

.header {
  background-color: #DEDA1F;
  padding: 10px 20px;
}

.site-ttl {
  font-size: 20px;
  display: inline-block;
}

.site-ttl-sub {
  font-size: 0.6em;
}

.sec {
  padding: 80px 24px;
  text-align: center;
}

.head {
  font-size: 24px;
  line-height: 1;
}

.head-sub {
  font-size: 0.6em;
}

/* header */
.header {
  position: relative;
  padding: 20px;
}

/* ハンバーガー */
.hamburger {
  width: 32px;
  height: 10px;
  position: absolute;
  right: 20px;
  top: 50%;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
  transition: 0.35s;
}

/* 上の線 */
.hamburger span:nth-child(1) {
  top: 0;
}

/* 下の線 */
.hamburger span:nth-child(2) {
  bottom: 0;
}

/* 開いた時 */
.hamburger.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  bottom: 0;
  transform: rotate(-45deg);
}

/* メニュー */
.menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100vh;
  background: #fff;
  transition: 0.4s;
  z-index: 1000;
  padding-top: 120px;
}

/* 開いた状態 */
.menu.active {
  right: 0;
}

/* メニュー中身 */
.menu-item {
  list-style: none;
  padding: 0;
}

.menu-item-cont {
  margin: 25px 0;
  text-align: center;
}

.menu-item-cont a {
  text-decoration: none;
  font-size: 18px;
  color: #000;
}

/* 背景スクロール停止 */
body.menu-open {
  overflow: hidden;
}

.deco-post-ttl {
  color: #DEDA1F;
  margin: 30px auto 0;
  font-size: clamp(1.125rem, 1.0831595412rem + 0.2085505735vw, 1.25rem);
  display: inline-block;
}
.deco-post-ttl-sub {
  font-size: clamp(0.875rem, 0.8331595412rem + 0.2085505735vw, 1rem);
  text-align: left;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 20px;
}

.deco-post-img {
  border: solid 1px #666;
  padding: 2px;
  margin-top: 20px;
}

.news-list-wrap {
  margin-top: 4px;
}

.news-list {
  margin-top: 24px;
  border-bottom: solid 1px #222;
  padding-bottom: 12px;
  text-align: left;
  position: relative;
}
.news-list::after {
  position: absolute;
  content: "";
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 16px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  transition: right 0.3s ease;
}
.news-list:hover:after {
  right: 0;
}

.news-day {
  color: #999999;
  font-size: 12px;
}

.news-ttl {
  margin-top: 4px;
}

.news-post-pagenation {
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(0.75rem, 0.7081595412rem + 0.2085505735vw, 0.875rem);
}

.news-post-archive {
  border: solid 1px #666;
  padding: 4px;
}
.news-post-archive:hover {
  background-color: #666;
  color: #fff;
}

.news-post-none {
  color: #aaa;
}

.works {
  text-align: left;
  margin: 40px auto;
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.works-tabs {
  margin-top: 48px;
}

.works-tab-list {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.works-tab-item {
  cursor: pointer;
  color: #918F14;
  background-color: #ccc;
  padding: 8px 16px;
}
.works-tab-item.is-active {
  border: solid 1px #918F14;
  border-bottom: none;
  background-color: #fff;
  font-weight: bold;
}

.works-tab-content {
  display: none;
}
.works-tab-content.is-active {
  display: block;
}

.works-tab-contents {
  padding: 0 24px;
  border-top: solid 1px #918F14;
}

.works-title-item-place {
  background-color: #DEDA1F;
  text-align: center;
  font-size: 14px;
  padding: 10px 0;
}

.works-title-item {
  margin-top: 50px;
}

.work-cont-title-description {
  padding: 20px 0;
  display: grid;
  grid-template-columns: auto 60px;
  align-items: center;
  justify-content: space-between;
}

.works-title-item-ttl {
  font-size: 18px;
  font-weight: 500;
}

.works-title-item-credit {
  font-size: 14px;
  margin-top: 10px;
}

.works-title-item-credit-medium {
  font-size: 12px;
}

.work-cont-title-description-more {
  font-size: 12px;
  text-align: center;
}

.other-link {
  width: 20px;
  margin-left: auto;
}

.works-post {
  text-align: left;
  padding: 0 24px;
}

.works-single-head {
  background-color: #DEDA1F;
  text-align: center;
  width: 100%;
  margin: 20px auto 0;
  padding: 4px;
  font-size: 14px;
}

.works-single-main {
  padding: 0 24px;
}

.works-single-main {
  max-width: 800px;
  margin: auto;
}
.works-single-main-mainImg {
  cursor: pointer;
}
.works-single-main-mainImg img {
  width: 100%;
  display: block;
}

/* サムネイル */
.works-single-tmb {
  margin-top: 16px;
}
.works-single-tmb-item {
  width: 100px;
  cursor: pointer;
}
.works-single-tmb-item img {
  width: 100%;
  display: block;
  opacity: 0.7;
  transition: 0.3s;
}
.works-single-tmb-item.is-active img {
  opacity: 1;
  border: 2px solid #000;
}

/* モーダル */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 999;
}
.modal.is-open {
  display: block;
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}
.modal-content {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.modal-content img {
  width: 100%;
  height: auto;
  display: block;
}
.modal {
  /* 閉じるボタン */
}
.modal-close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  transition: 0.3s;
}
.modal-close-btn:hover {
  opacity: 0.7;
}

.works-single-tmb-item {
  width: 100px;
}
.works-single-tmb-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.works-single-tmb-item img {
  border: 2px solid transparent;
  transition: 0.3s;
}

.works-single-tmb-item.is-active img {
  border: 2px solid #DEDA1F;
}

.works-single-note {
  padding: 40px 24px;
}

.works-single-note-ttl {
  line-height: 1.6;
}

.works-single-note-txt {
  text-align: left;
}

.works-single-profile {
  margin: 0 24px;
  padding: 40px 24px;
  background-color: #DEDA1F;
}

.works-single-profile-ttl {
  font-size: clamp(1.25rem, 1.2081595412rem + 0.2085505735vw, 1.375rem);
  line-height: 1;
}

.works-single-profile-ttl-sub {
  font-size: 12px;
}

.works-single-profile-img {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.works-single-profile-img-item-img {
  width: 50%;
  border-radius: 50%;
}

.works-single-profile-name {
  font-size: clamp(0.875rem, 0.8331595412rem + 0.2085505735vw, 1rem);
  margin-top: 16px;
}

.works-single-profile-name-sub {
  font-size: clamp(0.625rem, 0.5831595412rem + 0.2085505735vw, 0.75rem);
}

.works-single-profile-txt {
  text-align: left;
}

.works-single-profile-txt-wrap-bottom {
  border-top: solid 1px #000;
  margin-top: 30px;
}

.display-space-img {
  display: block;
  margin: 20px auto 0;
}

.works-single-pagenation {
  display: grid;
  grid-template-columns: repeat(2, 40%);
  justify-content: space-between;
  padding: 0 24px;
}

.works-single-pagenation-prev,
.works-single-pagenation-next {
  display: flex;
  align-items: center;
  gap: 4px;
}

.works-single-pagenation-txt {
  font-size: 12px;
}

.works-single-back {
  display: inline-block;
  margin-top: 40px;
  border: solid 1px #000;
  padding: 16px 50px;
  cursor: pointer;
  position: relative;
}
.works-single-back::after {
  position: absolute;
  content: "";
  background-image: url(../images/arrow-back.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 12px;
  height: 10px;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.works-single-pagenation-tmb {
  width: 68px;
}

.floor-map {
  width: 90%;
  max-width: 366px;
  margin: 40px auto 0;
  position: relative;
}

.floor-map-all {
  width: 100%;
}

.floor-map-point {
  position: absolute;
  display: block;
  width: 32px;
  height: 32px;
  top: 0;
  left: 0;
  transition: ease-in 0.3s;
}

.floor-map-point:hover {
  transform: scale(1.5);
}

.floor-map_8f {
  top: 16.8%;
  left: 26%;
}

.floor-map_4f {
  top: 38%;
  left: 40%;
}

.floor-map_2f-3f {
  top: 57%;
  left: 37%;
}

.floor-map_1f-2f {
  top: 66%;
  left: 37%;
}

.floor-map_1f {
  top: 66%;
  left: 4%;
}

.floor-map_b1f-1f {
  top: 76%;
  left: 37%;
}

.floor-map_b1f {
  top: 73%;
  left: 18.5%;
}

.floor-map_b2f-b1f {
  top: 86%;
  left: 37%;
}

.archive-cont-wrap {
  padding: 0 24px;
}

.archive-cont-wrap {
  padding: 0 24px;
}

.body {
  background-color: #EBEAB7;
}

.wrap {
  height: 100vh;
  background: none;
}

.side {
  display: none;
}
@media screen and (min-width: 768px) {
  .side {
    display: block;
    position: fixed;
    top: 0;
    width: calc((100% - 500px) / 2);
    height: 100vh;
  }
}
@media screen and (min-width: 1000px) {
  .side {
    width: calc((100% - 500px) / 2);
    background-color: transparent;
  }
}
.side--left {
  left: 0;
}
.side--right {
  display: none;
  right: 0;
}
@media screen and (min-width: 768px) {
  .side--right {
    display: flex;
  }
}
.side--right {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.side-cont {
  display: none;
}
@media screen and (min-width: 1000px) {
  .side-cont {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    text-align: center;
  }
  .side-cont img {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
  }
}
.side-cont--left, .side-cont--right {
  width: 50%;
  margin: 0 auto;
  text-align: left;
}
.side-cont--left img, .side-cont--right img {
  width: 100%;
}

.side-left-ttl {
  font-size: 20px;
}

.side-left-ttl-sub {
  font-size: 16px;
}

.side-menu-list {
  max-width: 100%;
  width: 230px;
}

.side-menu-item {
  font-size: 18px;
  border-bottom: solid 1px #222;
  padding-bottom: 10px;
  margin-top: 32px;
  width: 100%;
  position: relative;
}
.side-menu-item::after {
  position: absolute;
  content: "";
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 25px;
  top: 0;
  right: 10px;
  transition: 0.3s;
}
.side-menu-item:hover::after {
  right: 0;
}

.side-sns {
  display: grid;
  grid-template-columns: repeat(2, 24px) auto;
  gap: 24px;
}

.mid {
  width: 100%;
  max-width: 400px;
  position: relative;
  margin: 0 auto;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 100vh;
  background-color: #fff;
  border-left: solid 1px #222;
  border-right: solid 1px #222;
}

.gallery-list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(6, auto);
  gap: 4px;
}
.gallery-list > div {
  overflow: hidden;
}
.gallery-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-list .item1 {
  grid-column: 1/13;
  grid-row: 1/2;
}
.gallery-list .item2 {
  grid-column: 1/8;
  grid-row: 2/4;
}
.gallery-list .item3 {
  grid-column: 8/13;
  grid-row: 2/3;
}
.gallery-list .item4 {
  grid-column: 8/13;
  grid-row: 3/4;
}
.gallery-list .item5 {
  grid-column: 1/6;
  grid-row: 4/5;
}
.gallery-list .item6 {
  grid-column: 6/13;
  grid-row: 4/5;
}
.gallery-list .item7 {
  grid-column: 1/6;
  grid-row: 5/6;
}
.gallery-list .item8 {
  grid-column: 6/13;
  grid-row: 5/6;
}

.more-link {
  display: block;
  width: 200px;
  margin: 40px auto 0;
  padding: 16px 0;
  border: solid 1px #222;
  font-size: 14px;
  text-align: center;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
  /* 横棒 */
}
.more-link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 16px;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}
.more-link {
  /* 矢印先端 */
}
.more-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: center;
  transition: border-color 0.3s;
}
.more-link:hover {
  background-color: #222;
  color: #fff;
}

.cont {
  width: 100%;
}

.inner {
  width: 90%;
  margin: 0 auto;
}

.about {
  background-color: #DEDA1F;
  padding: 204px 0 50px;
  position: relative;
}
.about [class^=about-img-] {
  position: absolute;
  width: 138px;
  height: 104px;
  overflow: hidden;
}
.about [class^=about-img-] img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about .about-img-01 {
  position: absolute;
  width: 44%;
  aspect-ratio: 138/104;
  top: 60px;
  right: 18px;
}
.about .about-img-02 {
  position: absolute;
  width: 44%;
  aspect-ratio: 138/104;
  top: 60px;
  left: 18px;
}
.about .about-img-03 {
  position: absolute;
  top: 290px;
  right: 0;
}
.about .about-img-04 {
  position: absolute;
  top: 400px;
  right: 0;
}
.about .about-img-05 {
  position: absolute;
  width: 170px;
  aspect-ratio: 138/104;
  top: 550px;
  left: 0;
}
.about .about-img-06 {
  position: absolute;
  width: 170px;
  aspect-ratio: 138/104;
  top: 660px;
  left: 0;
}

.head {
  text-align: center;
}

.about-cont {
  display: grid;
}

.about-cont-top {
  margin-top: 28px;
  grid-template-columns: 212px auto;
}

.about-cont-bottom {
  margin-top: 24px;
  grid-template-columns: auto 166px;
}

.about-cont-txt {
  font-size: 14px;
  line-height: 2.4;
}

.footer {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.footer-inner {
  width: 60%;
  margin: 0 auto;
  padding: 80px 0;
}

.footer-head {
  line-height: 1.4;
}

.footer-logo {
  margin: 50px auto 0;
}

.mina-add {
  font-size: 12px;
  margin-top: 16px;
  text-align: left;
  display: inline-block;
}

.footer-info {
  display: inline-block;
  text-align: left;
  font-size: 12px;
  margin: 20px auto 0;
}

.footer-info-list {
  display: grid;
  grid-template-columns: 50px auto;
  column-gap: 20px;
  row-gap: 4px;
  margin-top: 10px;
}

.footer-link {
  font-size: 14px;
  margin: 30px auto 0;
  display: block;
}

.sns-head {
  font-size: 14px;
  font-weight: bold;
  margin: 30px auto 0;
}

.sns-list {
  display: grid;
  grid-template-columns: 40px 32px;
  justify-content: center;
  gap: 36px;
  margin: 20px auto 0;
}

.sns-icon img {
  width: 100%;
}

.copyright {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #DEDA1F;
  font-size: 10px;
  padding: 10px 0;
}

.archive-tsunagaru {
  border: solid 1px #000;
  padding: 24px 20px;
  text-align: center;
  font-size: clamp(0.875rem, 0.8331595412rem + 0.2085505735vw, 1rem);
  margin-top: 48px;
}

.ttl-archive-tsunagaru {
  line-height: 1.4;
}

.link-archive-tsunagaru:hover {
  opacity: 0.7;
}

.img-archive-tsunagaru {
  display: block;
  margin-top: 16px;
}

.txt-archive-tsunagaru {
  display: inline-block;
  margin-top: 16px;
  line-height: 1.6;
  position: relative;
}
.txt-archive-tsunagaru-link {
  margin-left: -10px;
}
.txt-archive-tsunagaru-insta {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  right: -24px;
}/*# sourceMappingURL=style.css.map */