@charset "utf-8";

/* -----------各ページ共通----------- */
body {
  font-family: 'Noto Sans JP', "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8em;
  color: #483c2c; /* sepia */
  background-color: #fffffc;
}
html {
  scroll-behavior: smooth;
}
.regular-color {
  color: #483c2c;
}
.marker {
  color: #444;
  background-color: linear-gradient(transparent 50%, rgba(255, 252, 107, 0.69) 50%);
  background-image: linear-gradient(transparent 50%, rgba(255, 252, 107, 0.69) 50%);
}
.hidden {
  display: none;
}
.opacity-1 {
  background-color: rgba(255, 255, 255, 0);
}
.align-left {
  text-align: left;
}
.margin-600px {
  height: 600px;
}
.margin-480px {
  height: 480px;
}
.margin-40px {
  height: 40px;
}
.margin-30px {
  height: 40px;
}
.margin-20px {
  height: 20px;
}
.margin-10px {
  height: 10px;
}
.margin-5px {
  height: 5px;
}
.picture-full-size {
  width: 100%;
  /* max-height: 400px; */
  /* object-fit: contain; */
}
.picture-large-neutral {
  width: 100%;
  object-fit: cover;
}
.picture-large {
  width: 100%;
  aspect-ratio:8/5;
  object-fit: cover;
}
.picture-square {
  width: 100%;
  aspect-ratio:1/1;
  object-fit: cover; 
}
.picture-medium {
  width: 75%;
  min-width: 200px;
  aspect-ratio:8/5;
  object-fit: cover;
}
.picture-small {
  width: 50%;
  /* min-width: 200px; */
  max-height: 240px;
  object-fit: cover;
}
.picture-xs {
  width: 80px;
}
.picture-cover {
  width: 200px;
  box-shadow: 1px 1px 1px #bbb;
}
.picture-cover:hover {
  box-shadow: 2px 2px 2px #bbb;
  transform: scale(1.05, 1.05);
  cursor: pointer;
}
.content-headline-lighter {
  font-weight: lighter;
  font-size: 18px;
}
.f700 {
  font-weight: 700;
}
.f500 {
  font-weight: 500;
}
.f400 {
  font-weight: 400;
}
.f300 {
  font-weight: 300;
}
.f200 {
  font-weight: 200;
}
.f100 {
  font-weight: 200;
}
.italic {
  font-style: italic;
}
.text-small {
  font-size: 12px;
}
.text-center {
  text-align: center;
}
.line-height-wide {
  line-height: 1.4em; 
}
.outerlink {
  /* text-decoration: none; */
  color: #483c2c;
}
.outerlink:hover {
  transform: scale(1.1, 1.1);
}
.border-bottom {
  border-bottom: 1px solid #483c2c;
}
.test {
  background-color: #efefef;
}

.boundary-dot {
  color: #bbb;
}
.boundary-dot-and-margin {
  color: #bbb;
  margin: 40px;
}
.contents-unit {
  max-width: 900px;
  display: block;
  margin: 10px auto;
  text-align: center;
}
.content-container {
  width: 100%;
  margin: 20px auto 20px;
}
.content-headline-container {
  width: 100%;
  border-bottom: #444 solid 1px;
  padding-top: 10px;
  margin-bottom: 10px;
}
.content-headline {
  font-size: 18px;
  font-weight: bold;
}
button {
  border: none;
  outline: none;
  background: transparent;
  box-shadow: none;
}
button:hover {
  box-shadow: 0 0 0 #bbb;
}
.button:hover {
  box-shadow: 0 0 0 #bbb;
}
.subheading-left {
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}
.subheading-center {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.loading {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  background: #fdfdfd;
}
.loading.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms;
}
.loading.circle {
  display: block;
  position: relative;
  top: calc(50% - 20px);
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border: 8px solid #e0e0e0;
  border-top: 7px solid #fffccc;
  border-radius: 50px;
  animation: loading 700ms linear 0ms infinite normal;
}
@keyframes loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media screen and (max-width: 600px) {
  .contents-unit {
    width: 100%;
    display: block;
    margin: 10px auto;
    text-align: center;
  }
  .margin-600px {
    height: 600px;
  }
  .margin-40px {
    height: 20px;
  }
  .margin-20px {
    height: 10px;
  }
  .content-container {
    width: 100%;
    margin: 0 auto 20px;
  }
  .content-headline-container {
    width: 100%;
    border-bottom: #444 solid 1px;
    padding: 0;
    margin-bottom: 10px;
  }
  .content-headline {
    font-size: 18px;
    font-weight: bold;
    margin-top: 0;
  }
  .video-responsive {
    width: 100%;
  }
  .for-pc {
    display: none;
  }
}
@media screen and (min-width: 601px) {
  .for-mobile {
    display: none;
  }
}


/* ----------Header---------- */
.head-margin {
  width: 100%;
  height: 100px;
  margin-bottom: 20px;
}
.header-bar {
  height: 60px;
}
.header {
  width: 100%;
  display: block;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: cadetblue;
  background-image:url(header-bar.png);
  background-size: cover;
  box-shadow: 0 2px 2px #bbb;
  z-index: 10;
}
.header-top {
  display: flex;
  align-items: center;
}
.burger {
  cursor: pointer;
  opacity: 0;
}
.burger div {
  width: 25px;
  height: 3px;
  background-color: ivory;
  border-radius: 1px;
  margin: 5px;
}
.header-logo {
  min-width: 200px;
  margin: 0 auto 20px;
  height: 60px;
}
.header-sns {
  height: 40px;
  margin: auto 0;
}
.header-sns.sns-icon {
  height:20px;
  margin: auto 5px;
}
.header-sns.sns-icon:hover {
  transform:scale(1.1, 1.1);
}
.header-nav-list {
  margin: 0 auto;
  width:720px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo, .header-nav-item > a {
  display: block;
  padding: 10px;
  font-weight: 400;
  color: ivory;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .25s;
}
.header-nav-item > a:hover {
  transform:scale(1.08,1.08);
}
.nav-active {
  transform: translateX(0%) !important;
}
@media screen and (max-width: 600px) {
  .head-margin {
    width: 100%;
    height: 55px;
  }
  .header-logo {
    margin: 0 auto 15px;
    height: 60px;
  }
  .header-nav-list {
    position: absolute;
    right:0;
    top: 75px;
    background-color: ivory;
    opacity: 0.9;
    flex-direction: column;
    align-items: center;
    width: 30%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out;
  }
  .header-nav-item {
    width: 100%;
  }
  .header-nav-item > a {
    text-align: center;
    color: #483c2c;
    border-bottom: 1px solid #777;
  }
  .header-nav-list.is-active {
    right: 30%;
  }
  .burger {
    opacity: 1;
  }
}

@keyframes headerNavList {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.line1.is-active {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.line2.is-active {
  opacity: 0;
}
.line3.is-active {
  transform: rotate(45deg) translate(-5px, -6px);
}





/* --------ホームページ-------- */
/* ----------Top---------- */
@media screen and (min-width: 1000px) {
  .top {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
  }
  .top p {
    position: absolute;
    top: 5%;
    right: 50px;
    font-size: 40px;
    line-height: 1.5;
    opacity: 80%;
    color: #333300;
    text-shadow: 0 0 6px #cccccc;
  }
  .top_subtext {
    position: absolute;
    top: 110%;
    right: 10px;
    font-family: cursive;
    /* font-weight: 700; */
    font-size: 30px;
    font-style: italic;
    text-shadow: 0 0 6px ivory,0 0 6px ivory,0 0 6px ivory,0 0 6px ivory,0 0 6px ivory,0 0 6px ivory,0 0 6px ivory,0 0 6px ivory,0 0 6px ivory,0 0 6px ivory,0 0 6px ivory,0 0 6px ivory,0 0 6px ivory,0 0 6px ivory,0 0 6px ivory,0 0 6px ivory;
    transform: rotate(-3deg);
    text-align: right;
  }
}
@media (min-width: 760px) and (max-width: 1000px) {
  .top p {
    position: absolute;
    top: 5%;
    right: 50px;
    font-size: 30px;
    line-height: 1.5;
    opacity: 80%;
    color: #333300;
    text-shadow: 0 0 6px #cccccc;
  }
  .top_subtext {
    position: absolute;
    top: 110%;
    right: 10px;
    font-family: cursive;
    font-size: 20px;
    font-style: italic;
    text-shadow: 0 0 6px ivory,0 0 6px ivory,0 0 6px ivory,0 0 6px ivory,0 0 6px ivory,0 0 6px ivory,0 0 6px ivory,0 0 6px ivory,0 0 6px ivory,0 0 6px ivory,0 0 6px ivory,0 0 6px ivory,0 0 6px ivory,0 0 6px ivory,0 0 6px ivory,0 0 6px ivory;
    transform: rotate(-3deg);
    text-align: right;
  }
}
.top {
  width: 100vw;
  position: relative;
  margin-bottom: 40px;
}
.main-image {
  width: 100%;
  aspect-ratio:8/5;
  object-fit: cover;
}
.featured-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.featured {
  box-shadow: 0 0 4px silver;
  width: 450px;
  padding: 15px;
  margin: 10px;
  background-color: #e3d5c8;
  border-radius: 4px;
}
.featured:hover {
  transform: scale(1.02, 1.02);
  cursor: pointer;
}
.featured-transition {
  text-decoration: none;
  color:  #483c2c;
}
.featured-image-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #faf5f0;
  margin-bottom: 25px;
}
.featured-image-cover {
  max-width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.featured-text-container {
  display: block;
}
.featured-title {
  text-align: center;
  line-height: 1.4;
  font-size: 20px;
  margin: 20px 0;
}
.featured-title-sub {
  margin: 10px auto;
  padding: 0;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}
.featured-summary {
  text-align: center;
  font-size: 12px;
  margin: 0 0 5px;
  line-height: 1.8;
}
.news-archives-link {
  color:#483c2c;
  text-decoration: none;
  border:none;
}
.news-archives-link:hover {
  transform:scale(1.02, 1.02);
}


@media screen and (max-width: 760px) {
  .top {
    position: relative;
    width: 100vw;
    height: 360px;
  }
  .main-image {
    height: 100%;
    object-fit: cover;
  }
  .top p {
    position: absolute;
    top: 0%;
    right: 15px;
    font-size: 20px;
    line-height: 1.5;
    opacity: 80%;
    color: #333300;
    text-shadow: 0 0 6px #cccccc;
  }
  .top_subtext {
    position: absolute;
    top: 110%;
    right: 10px;
    font-family: cursive;
    font-size: 15px;
    font-weight: bold;
    /* color: ivory; */
    font-style: italic;
    text-shadow: 0 0 3px ivory,0 0 3px ivory,0 0 3px ivory,0 0 3px ivory,0 0 3px ivory,0 0 3px ivory,0 0 3px ivory,0 0 3px ivory,0 0 3px ivory,0 0 3px ivory,0 0 3px ivory,0 0 3px ivory,0 0 3px ivory,0 0 3px ivory,0 0 3px ivory,0 0 3px ivory;
    transform: rotate(-3deg);
    text-align: right;
  }
  .slider-item {
    position: relative;
  }
  .slider-container {
    width: 100vw;
  }
  .slide {
    position: absolute;
    visibility: hidden;
    animation: anime_slider_fade 18s 0s infinite;
    height: 600px;
    object-fit: cover;
  }
}
.slide:nth-of-type(2) {
  animation-delay: 6s;
}
.slide:nth-of-type(3) {
  animation-delay: 12s;
}
@keyframes anime_slider_fade {
  0% {
    visibility: visible;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  33.3% {
    opacity: 1;
  }
  48.3% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.statement-headline {
  line-height: 1.5;
  text-align: center;
  font-size: 40px;
  margin: 80px auno;
  padding: 40px;
}
.statement-headline.smaller {
  font-size: 44px;
}
.statement {
  line-height: 2;
  margin-bottom: 80px;
  /* font-weight: 200; */
}
.top-lead {
  width: 600px;
  font-size: 20px;
  text-align: center;
  margin: 80px auto;
}
.top > strong {
  line-height: 1.2;
  z-index: 2;
  font-size: 48px;
  font-weight: bold;
  color: #444;
  display: block;
  width: 100%;
  text-align: center;
  margin: 60px auto 80px;
}
@media screen and (max-width: 600px) {
  .statement-headline {
    line-height: 1.5;
    text-align: center;
    font-size: 32px;
    margin: 80px auno;
    padding: 40px;
  }
  .statement-headline.smaller {
    font-size: 36px;
  }
}


/* ----------News-List---------- */
.news-list {
  display: block;
}
.news-transition {
  text-decoration: none;
}
.news-wrapper {
  display: inline-flex;
  width: 75%;
  height: 200px;
  margin: 10px 0;
  padding: 0 10px 0 0;
  margin: 20px;
  background-color: #fffffc;
  border: none;
  cursor: pointer;
}
.news-wrapper:hover {
  transform:scale(1.01, 1.01);
  box-shadow: 1px 1px 1px #ccc;
}
.no-transition:hover {
  transform:scale(1, 1);
  box-shadow: none;
  cursor: default;
}
.news-thambnail {
  height: 200px;
  width: 200px;
  margin-right: 10px;
  object-fit: cover;
}
.news-content {
  display: block;
  width: calc(100% - 160px);
  margin: auto 0;
}
.news-headline-wrapper {
  width: 100%;
  border-bottom: #483c2c solid 1px;
}
.no-boeder {
  border-bottom: none;
}
.news-headline, .news-subheadline {
  text-align: left;
  color: #483c2c;
  margin: 10px 0;
  font-weight: 700;
}
.news-excerpt {
  color:#483c2c;
  text-align: left;
  font-weight: 400;
  text-decoration: none;
}
@media screen and (max-width: 600px) {
  .content-headline-container {
    width: 90%;
    border-bottom: #444 solid 1px;
    padding-top: 10px;
    margin-bottom: 10px;
    margin: 0 auto;
  }
  .news-wrapper {
    display: block;
    width: 90%;
    height: auto;
    margin: 20px auto;
    background-color: #fffffc;
    padding: 0;
    border: none;
    cursor: pointer;
    box-shadow: 0 1px 1px 0 #ccc;
  }
  .news-thambnail {
    width: 100%;
    height: auto;
    min-height: 200px;
    margin: 0 auto;
    object-fit: cover;
  }
  .news-content {
    display: block;
    width: 100%;
    margin: auto 0;
  }
  .news-headline-wrapper {
    width: 100%;
    border-bottom: none;
  }
  .news-headline, .news-subheadline {
    text-align: center;
    color: #483c2c;
    margin: 10px 0;
  }
  .news-excerpt {
    color:#483c2c;
    text-align: left;
  }
}



/* ----------News-Archives---------- */
.news-archives {
  width: 50%;
  margin: 20px auto 30px;
  /* background-color: #5F9EA0; */
  height: 40px;
  border-radius: 2px;
  box-shadow: 1px 1px 1px #ccc;
}
.news-archives:hover {
  box-shadow: 2px 2px 2px #ccc;
  transform:scale(1.01, 1.01);
}
.news-archives > a {
  text-decoration: none;
  color: #483c2c;
}
.news-archives-button-label {
  display: flex;
  justify-content: center;
}


/* ----------Above-Footer---------- */
.sns-icon-container {
  height:60px;
  display: flex;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
}
.sns-icon-box {
  width: 30px;
  margin: 0 5px;
}
.sns-icon {
  height: 30px;
}
.sns-icon:hover {
  transform:scale(1.1, 1.1);
}

/* ----------Footer---------- */
.footer {
  display: block;
  text-align: center;
  background-color: #555;
  padding-top: 20px;
  padding-bottom: 5px;
  width: 100%;
  margin: 0 auto;
}
.footer-signature {
  width: 200px;
  margin: 0 auto;
  background-color: #555;
}
.footer-logo {
  width: 120px;
}
.footer-text {
  font-size: 12px;
  font-weight: normal;
  color: #fff;
  margin-bottom: 15px;
}



/* ------------------------------------------------
ABOUT
------------------------------------------------ */
.about-text {
  line-height: 2;
  font-weight: 300;
  font-size: 14px;
}




/* ------------------------------------------------
WORKS
------------------------------------------------ */
.works-grid-container {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
}
@media screen and (max-width: 900px) {
  .works-grid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.work-unit {
  width: 300px;
  padding: 8px;
  margin-bottom: 10px;
}
.work-image-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #faf5f0;
}
.work-image-box:hover {
  transform: scale(1.02, 1.02);
}
.work-image-cover {
  max-width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.work-image-contain {
  max-width: 100%;
  max-height: 100%;
  position:absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 600px) {
  .works-grid-container {
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px; 
  }
  .work-unit {
    margin: 0 auto;
  }
}
.work-unit:hover {
  transform: scale(1.02, 1.02);
  box-shadow: 1px 1px 1px #ccc;
}
.work-transition {
  text-decoration: none;
  color:  #483c2c;
}
.work-image {
  max-width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin: auto auto;
}
.work-text-container {
  display: block;
}
.work-title {
  text-align: center;
  line-height: 1.4;
  font-size: 15px;
  margin: 10px 0 5px;
}
.work-title-sub {
  margin: 0 auto;
  padding: 0;
  font-size: 14px;
  line-height: 1.2;
}
.work-summary {
  text-align: center;
  font-size: 12px;
  margin: 0 0 5px;
  line-height: 1.8;
}






/* ------------------------------------------------
MEDIA
------------------------------------------------ */
.media-works-container {
  width: 100%;
  margin: 0 auto;
}
.media-works-category {
  margin-bottom: 30px;
}
.media-works-category > h4 {
  font-size: 18px;
  text-align: left;
  color: #483c2c;
  margin: 15px 0;
  padding-bottom: 10px;
  border-bottom: dotted 1px #ccc;
}
.media-works-year {
  font-size: 16px;
  text-align: left;
  color: #483c2c;
  padding-top: 10px;
}
.media-works-summary {
  font-size: 15px;
  text-align: left;
  line-height: 1.6;
  color: #483c2c;
  margin: 12px 0;
}
.media-works-summary > a {
  color: #483c2c;
  padding: 0;
  margin: 0;
  font-size: 12px;
  text-decoration: underline solid #ccc;
}
.media-works-summary :hover {
  text-decoration: none;
  font-weight: 500;
}
.picture-section {
  margin: 60px 0;
}
.media-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 15px; 
  justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .media-works-container {
    width: 90%;
    margin: 0 auto;
  }
  .media-works-summary {
    font-size: 15px;
    line-height: 1.8;
    text-align: left;
    color: #483c2c;
    margin: 15px 0;
  }
}
.media-unit {
  display: inline-block;
}
.media-unit:hover {
  transform: scale(1.02, 1.02);
  box-shadow: 1px 1px 1px #ccc;
}
.media-transition {
  text-decoration: none;
  color:  #483c2c;
}
.media-image-container {
  display: block;
  max-width: 100%;
  margin: 0 auto 5px;
}
.media-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin: auto auto;
}
.media-text-container {
  display: block;
}
.media-title-unit {
  display: flex;
  justify-content: space-between;
}
.media-title {
  text-align: left;
  line-height: 1.4;
  font-size: 15px;
  margin: 10px 0 5px;
}
.bubble {
  position: relative;
  display: block;
  height: auto;
  background: #e0edff;
  border-radius: 2px;
}
.bubble-text {
  margin: 0;
  padding: 0 5px;
  font-size: 12px;
  vertical-align: middle;
}
.media-summary {
  text-align: left;
  font-size: 12px;
  margin: 0 0 5px;
  line-height: 1.8;
}




/* ------------------------------------------------
DETAIL
------------------------------------------------ */
.detail-container {
  width: 80%;
  margin: 0 auto;
}
.detail-title-container {
  display: block;
  font-size: 16px;
}
.detail-title {
  font-size: 20px;
  text-align: left;
  margin: 5px 0;
}
.detail-title-center {
  font-size: 20px;
  text-align: center;
  margin: 5px 0;
}
.detail-sub {
  text-align: left;
  margin: 0px 0 10px;
}

@media screen and (max-width: 600px) {
  .detail-container {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .detail-title-container {
    width: 90%;
    margin: 0 auto;
    display: block;
    font-size: 16px;
  }
  .detail-body {
    width: 100%;
  }
}
/* ----------VIDEO---------- */
.detail-video-container {
  width: 80%;
  margin: 30px auto;
}
.detail-video-container-wide {
  width: 100%;
  margin: 30px auto;
}
.video {
  width: 100%;
}
@media screen and (max-width: 600px) {
  .detail-video-container {
    width: 100%;
  }
}
/* ----------SLIDER---------- */
.image-slider-unit {
  position: relative;
  width: 100%;
  height: 400px;
  background-color: #faf5f0;
}
.image-slider-unit.flexible {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  background-color: #faf5f0;
}
.image-slider {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0% 50%;
}
@media screen and (max-width: 600px) {
  .image-slider-unit {
    position: relative;
    width: 100vw;
    height: 400px;
  }
  .image-slider {
    max-width: 100%;
    height: 100%;
    background-position: 50% 50%;
  }
}
.image-slider.flexible {
  max-width: 100%;
  max-height: 100%;
}
@media screen and (max-width: 600px) {
  .work-slider-unit {
    position: relative;
    width: 90%;
    aspect-ratio: 1/1;
    margin: 0 auto;
  }
}
.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#left, #right {
  text-decoration: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background-color: ivory;
  opacity: 0.5;
  border-radius: 5px;
  color: #483c2c;
  font-size: 24px;
  padding: 0 6px;
  cursor: pointer;
}
#left {
  left: 8px;
}
#right {
  right: 8px;
}
#left:hover, #right:hover {
  opacity: .8;
}
.detail-body {
  max-width: 80%;
  margin: 0 auto;
}
.detail-headline {
  font-size: 16px;
  text-align: left;
  margin: 40px 0;
}
.detail-text {
  text-align: left;
  font-size: 14px;
}
.text-center {
  text-align: center;
}
/* .outline-body {
  max-width: 80%;
  margin: 0 auto;
}
.outline-headline {
  font-size: 16px;
  text-align: left;
  margin: 40px 0;
}
.outline-text {
  text-align: left;
  font-size: 14px; 
} */
.inline-image-box-large {
  width: 100%;
  height: 300px;
  margin: 40px auto;
}
.inline-image-box-square {
  width: 100%;
  /* height: 400px; */
  margin: 40px auto;
}
.inline-image-box-small {
  max-width: 50%;
  height:200px;
  margin: 40px auto;
}
.inline-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.caption-left {
  text-align: left;
  font-size: 12px;
}
.caption-right {
  text-align: right;
  font-size: 12px;
}
@media screen and (max-width: 600px) {
  .inline-image-box-large {
    width: 100%;
    height: 200px;
    margin: 20px auto;
  }
  .inline-image-box-small {
    max-width: 100%;
    height:200px;
    margin: 20px auto;
  }
}





/* ------------------------------------------------
EXHIBITION
------------------------------------------------ */
.exhibition-container {
  width: 100%;
  margin: 0 auto;
}
.exhibition-status {
  margin-bottom: 30px;
}
.exhibition-status > h4 {
  font-size: 18px;
  text-align: left;
  color: #483c2c;
  margin: 15px 0;
  padding-bottom: 10px;
  border-bottom: dotted 2px #ccc;
}
.exhibition-year {
  font-size: 16px;
  text-align: left;
  color: #483c2c;
  padding-top: 10px;
}
.exhibition-summary {
  font-size: 15px;
  text-align: left;
  color: #483c2c;
  margin: 5px 0;
}
.exhibition-summary > a {
  color: #483c2c;
  padding: 0;
  margin: 0;
  font-size: 12px;
  text-decoration: underline solid #ccc;
}
.exhibition-summary :hover {
  text-decoration: none;
  font-weight: 500;
}
.stand-out:hover {
  transform: scale(1.02, 1.02);
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .exhibition-container {
    width: 90%;
    margin: 0 auto;
  }
  .exhibition-summary {
    font-size: 15px;
    line-height: 1.8;
    text-align: left;
    color: #483c2c;
    margin: 15px 0;
  }
}





/* ------------------------------------------------
BOOKS
------------------------------------------------ */
.product-unit {
  display: block;
  width: 50%;
  margin: 0 auto;
  border-radius: 2px;
  background-color: #faf5f0;
  padding: 15px 0 10px;
}
@media screen and (max-width: 600px) {
  .product-unit {
    display: block;
    width: 90%;
    margin: 0 auto;
    border-radius: 2px;
    background-color: #faf5f0;
    padding: 15px 0 10px;
  }
}
.product-image-container {
  max-width: 75%;
  margin: 0 auto;
}
.product_detail-image-container {
  max-width: 80%;
  margin: 0 auto;
}
.product-image {
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 2px 2px 2px #ccc;
}
.product-image:hover {
  transform: scale(1.01, 1.01);
}
.product-title {
  margin: 0  auto;
  padding: 0;
  font-size: 16px;
}
.product-title-sub {
  margin: 0 auto;
  padding: 0;
  font-size: 14px;
  line-height: 1.5;
}
.product-summary {
  max-width: 75%;
  margin: 0 auto;
  text-align: left;
  font-size: 12px;
  line-height: 1.8;
}
.product-data {
  text-align: center;
}
.store-transition-container {
  display: flex;
  margin: 0 auto;
  justify-content: center;
}
.store-transition {
  margin: 0;
  border: none;
  width: 30px;
  justify-content: center;
}
.store-transition-large {
  margin: 0;
  border: none;
  width: 50px;
  justify-content: center;
}
.store-logo {
  width: 20px;
  margin: 0 auto;
  text-align: center;
}
.store-logo-large {
  width: 40px;
  margin: 0 auto;
  text-align: center;
}
.store-logo-large:hover {
  transform:scale(1.2,1.2);
}
.store-logo:hover {
  transform:scale(1.2,1.2);
}





/* ------------------------------------------------
PROFILE
------------------------------------------------ */
@media screen and (min-width: 601px) {
  .profile-for-mobile {
    display: none;
  }
}
.profile-name {
  line-height: 1.8;
  font-weight: 400;
  font-size: 18px;
}
.profile-lead {
  line-height: 1.8;
  font-weight: 300;
  font-size: 15px;
}
.profile {
  line-height: 1.8;
  font-weight: 300;
  font-size: 14px;
}
@media screen and (max-width: 600px) {
  .picture-medium {
    width: 90%;
  }
  .profile-for-pc {
    display: none;
  }
  .profile-name {
    width: 90%;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
    font-size: 18px;
  }
  .profile-lead {
    width: 90%;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
    font-size: 15px;
    text-align: left;
  }
  .profile {
    width: 90%;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
    font-size: 14px;
    text-align: left;
  }
}


/* ------------------------------------------------
CONTACT
------------------------------------------------ */
label, input {
  cursor: pointer;
}
.form {
  margin: 0 auto;
}
.form-container {
    margin: 0 auto;
    justify-content: center;
}
.form-unit {
  margin: 0 auto;
  width: 50%;
  display: block;
}
@media screen and (max-width: 600px) {
  .form-unit {
    margin: 0 auto;
    width: 90%;
    display: block;
  }
}
.f300.form-label {
  font-size: 15px;
  line-height: 1.2;
  text-align: left;
}
.form-label > P {
  margin: 10px 0;
}
.input {
  font-weight: 100;
  color: #483c2c;
  border-radius: 2px;
  padding: 10px;
  border: solid 1px #ccc;
  width: 100%;
  vertical-align: middle;
}
.textarea {
  border-radius: 2px;
  padding: 10px;
  border: solid 1px #ccc;
  width: 100%;
  min-height: 100px;
}
.form-button {
  /* background-color: #483c2c; */
  text-align: center;
  margin: 20px;
  box-shadow: none;
}
.form-button > button {
  background-color: #483c2c;
  color: #fffffc;
  padding: 10px;
  border-radius: 2px;
  border: none;
}
.form-button > button:hover {
  box-shadow: 1px 1px 1px #ccc;
  transform: scale(1.02, 1.02);
}

/* ------------------------------------------------
special
------------------------------------------------ */
.special-lead {
  line-height: 1.8;
  font-weight: 300;
  font-size: 15px;
}
.special {
  line-height: 1.8;
  font-weight: 300;
  font-size: 14px;
}
.special > a {
  /* text-decoration: none; */
  color:#333300
}
.special > a:hover {
  font-weight: 700;
}
