@charset "UTF-8";
@use "common";
@use "footer" as *;
/* ---------------------------
common
--------------------------- */
/* ----- variables ----- */
/* ----- variables ----- */
* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  color: #483c2c;
  /* sepia */
  line-height: 2;
  letter-spacing: 0.05em; }

body {
  font-family: "Roboto", "Helvetica", "Helvetica Neue", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gntainer {\a   width: 100%;othic", "Meiryo", sans-serif !important;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.8em;
  color: #2C2319;
  background: #F6FAF5 !important; }

html {
  scroll-behavior: smooth;
  height: 100%;
  margin: 0; }

.regular-color {
  color: #2C2319; }

/* ----- margin-set ----- */
.margin-120px {
  height: 120px; }

.margin-8px {
  height: 8px; }

.margin-16px {
  height: 16px; }

.margin-24px {
  height: 24px; }

.margin-32px {
  height: 32px; }

.margin-40px {
  height: 40px; }

.margin-48px {
  height: 48px; }

.margin-64px {
  height: 64px; }

/* ----- margin-set ----- */
/* ----- picture-display ----- */
.picture-full-size {
  width: 100%; }

.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; }

.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; }

.picture-shadow {
  box-shadow: 2px 2px 2px silver; }

.caption-left {
  text-align: left;
  font-size: 12px; }

.caption-right {
  text-align: right;
  font-size: 12px; }

/* ----- picture-display ----- */
/* ----- display-controll ----- */
.hidden {
  display: none; }

.for-sp {
  display: none; }

@media (max-width: 600px) {
  .for-pc {
    display: none; }

  .for-sp {
    display: block; } }
.modal-trigger {
  display: inline-block;
  cursor: pointer; }

.modal {
  position: absolute;
  background-color: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 1000; }

.modal-trigger:hover + .modal,
.modal:hover {
  display: block; }

/* ----- display-controll ----- */
.separator-border {
  width: 50%;
  margin: 64px auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column; }
  .separator-border .upper {
    flex: 1; }
  .separator-border .lower {
    border-top: 1px solid silver;
    flex: 1; }
  @media (max-width: 600px) {
    .separator-border {
      width: 100%; } }

.contents-unit {
  max-width: 900px;
  width: calc(100% - 32px);
  display: block;
  margin: 10px auto;
  text-align: center; }
  .contents-unit .fade-in {
    opacity: 0;
    /* 初期状態では透明 */
    transform: translateY(20px);
    /* 下にずらしておく */
    transition: opacity 0.8s ease, transform 0.8s ease;
    /* トランジションを設定 */ }
  .contents-unit .fade-in.visible {
    opacity: 1;
    /* 表示 */
    transform: translateY(0);
    /* 元の位置に戻す */ }
  @media (min-width: 600px) {
    .contents-unit {
      width: calc(100% - 64px); } }

.content-container {
  width: 100%;
  margin: 20px auto 20px; }

.content-headline-container {
  border-bottom: #444 solid 1px;
  padding-top: 10px;
  margin-bottom: 10px; }

.content-headline {
  font-size: 18px;
  font-weight: bold; }

.headline-container {
  display: flex;
  align-items: center;
  gap: 16px; }
  .headline-container h2 {
    line-height: 32px; }
  .headline-container h3 {
    font-weight: 500; }
  .headline-container .separator-block {
    height: 32px;
    width: 32px;
    background: #ABBAA9; }
    @media screen and (max-width: 600px) {
      .headline-container .separator-block {
        height: 24px;
        width: 24px; } }
  .headline-container .separator-border {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    margin: 0; }
    @media screen and (max-width: 600px) {
      .headline-container .separator-border {
        width: 24px; } }
    .headline-container .separator-border .upper {
      flex: 1; }
    .headline-container .separator-border .lower {
      border-top: 1px solid silver;
      flex: 1; }

.separator-dotted {
  border-bottom: 1px dotted #999; }

.separator-dots {
  text-align: center;
  margin: 96px auto; }

.image-slider-unit {
  position: relative;
  width: 100%;
  height: 400px;
  background-color: #F6FAF5; }

.image-slider-unit.flexible {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  background-color: #F6FAF5; }

.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%; }

#left, #right {
  text-decoration: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background-color: #F6FAF5;
  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; }

.redirect-button {
  display: flex;
  /* フレックスボックスを使用 */
  justify-content: center;
  /* 横方向中央揃え */
  margin-top: 32px;
  height: 32px; }
  .redirect-button div {
    background: #ABBAA9;
    text-align: center;
    border-radius: 4px;
    padding: 0 16px;
    position: absolute;
    box-shadow: 2px 2px 2px silver;
    transition-duration: 200ms;
    display: flex;
    /* フレックスボックスを使用 */
    align-items: center;
    /* 縦方向中央揃え */
    justify-content: center;
    /* 横方向中央揃え */ }
    .redirect-button div:hover {
      transform: scale(1.05);
      box-shadow: 4px 4px 4px silver; }
    .redirect-button div a {
      font-weight: 400;
      line-height: 32px;
      color: #F6FAF5; }

.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; }

.text-right {
  text-align: right; }

.line-height-wide {
  line-height: 1.4em; }

.video-container {
  width: 50%;
  margin: 0 auto;
  text-align: center; }
  .video-container p {
    text-align: right; }
  @media (max-width: 960px) {
    .video-container {
      width: 75%; } }
  @media (max-width: 600px) {
    .video-container {
      width: 100%; } }

/* -----------header---------- */
.header-margin {
  width: 100%;
  height: 128px; }
  @media screen and (max-width: 600px) {
    .header-margin {
      height: 64px; } }

header {
  width: 100vw;
  height: 128px;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: #F6FAF5;
  box-shadow: 0 0 2px #555; }
  @media (max-width: 600px) {
    header {
      height: 80px; } }
  header .header-section {
    max-width: 1440px;
    height: 100%;
    margin: 0 auto; }
    header .header-section .header-container {
      width: calc(100% - 64px);
      height: 100%;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center; }
      header .header-section .header-container .header-title-container {
        display: flex;
        gap: 32px;
        align-items: center; }
        header .header-section .header-container .header-title-container h1 {
          margin: 0;
          font-size: 18px;
          font-weight: 400; }
        header .header-section .header-container .header-title-container h3 {
          font-size: 14px;
          font-weight: 400;
          line-height: normal; }
        @media (max-width: 960px) {
          header .header-section .header-container .header-title-container {
            display: block; }
            header .header-section .header-container .header-title-container h1, header .header-section .header-container .header-title-container h3 {
              line-height: 1.6; } }
      header .header-section .header-container .header-navi {
        display: flex;
        gap: 16px;
        align-items: center; }
        header .header-section .header-container .header-navi .header-navi-list {
          display: flex;
          gap: 8px; }
          header .header-section .header-container .header-navi .header-navi-list a, header .header-section .header-container .header-navi .header-navi-list li {
            font-size: 12px;
            padding: 0;
            color: #333; }
        header .header-section .header-container .header-navi .header-sns .sns-icon-container {
          display: flex;
          align-items: center; }
          header .header-section .header-container .header-navi .header-sns .sns-icon-container .sns-link {
            display: flex;
            height: 100%;
            align-items: center; }
            header .header-section .header-container .header-navi .header-sns .sns-icon-container .sns-link img {
              height: 20px;
              margin: auto 5px; }
              header .header-section .header-container .header-navi .header-sns .sns-icon-container .sns-link img:hover {
                transform: scale(1.1, 1.1); }
        @media (max-width: 840px) {
          header .header-section .header-container .header-navi {
            display: none; } }
      header .header-section .header-container .hamburger {
        display: none;
        width: 32px;
        height: 32px;
        background-image: url(../assets/images/common_burger_gray.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 32px;
        border-radius: 4px;
        cursor: pointer;
        position: relative;
        z-index: 2;
        transition: box-shadow 0.5s ease; }
        header .header-section .header-container .hamburger:hover {
          box-shadow: 0 0 4px silver;
          transition: transform 0.5s ease;
          transform: scale(1.08); }
        header .header-section .header-container .hamburger.is-active {
          background-image: url(../assets/images/common_close_gray.svg); }
        @media (max-width: 840px) {
          header .header-section .header-container .hamburger {
            display: block; } }
      header .header-section .header-container .hamburger-menu {
        width: 100vw;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        background: gray;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1;
        transform: translateX(100%);
        transition: opacity 5s ease;
        opacity: 0; }
        header .header-section .header-container .hamburger-menu a {
          color: #F6FAF5; }
        header .header-section .header-container .hamburger-menu li {
          font-size: 18px; }
          header .header-section .header-container .hamburger-menu li:hover {
            transition: transform 0.5s ease;
            transform: scale(1.1); }
        header .header-section .header-container .hamburger-menu.is-active {
          transform: translateX(0);
          opacity: .9;
          transition: transform 0.5s ease, opacity 0.5s ease; }
      @media (max-width: 600px) {
        header .header-section .header-container {
          height: 80px; } }

/* -----------first view---------- */
.swiper {
  width: 100vw;
  max-width: 1440px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  position: relative; }
  .swiper .swiper-wrapper, .swiper .swiper-slide {
    position: static; }
  .swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .swiper a {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 4px; }
    .swiper a:hover {
      cursor: pointer;
      opacity: 0.8; }
  .swiper #prev {
    left: 16px;
    padding: 0 10px 0 0; }
  .swiper #next {
    right: 16px;
    padding: 0 0 0 10px; }
  .swiper .fv-lead {
    position: absolute;
    top: 5%;
    right: 32px;
    font-size: 32px;
    font-weight: normal;
    line-height: 1.4;
    opacity: 80%;
    color: #F6FAF5;
    text-align: right;
    text-shadow: 0 0 2px #555; }
    @media (max-width: 960px) {
      .swiper .fv-lead {
        font-size: 28px; } }
    @media (max-width: 600px) {
      .swiper .fv-lead {
        margin-top: 16px;
        right: 16px;
        font-size: 16px; } }

/* -----------main---------- */
main {
  max-width: 1280px;
  width: calc(100% - 32px);
  margin: 64px auto 0;
  box-sizing: border-box;
  background: #F6FAF5; }
  main .headline-container h2 {
    font-weight: 400; }
  main .news-summary-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 64px;
    justify-content: center;
    margin-top: 32px;
    padding: 0; }
    main .news-summary-container .news-summary .img-wrapper {
      width: 100%;
      aspect-ratio: 1 / 1;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
      transition: transform 200ms ease, box-shadow 200ms ease; }
      main .news-summary-container .news-summary .img-wrapper:hover {
        transform: scale(1.02);
        box-shadow: 4px 4px 4px silver; }
    main .news-summary-container .news-summary img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain; }
    main .news-summary-container .news-summary .news-title {
      font-size: 14px;
      line-height: 1.6;
      margin-top: 16px;
      text-align: center; }
    main .news-summary-container .news-summary .news-title-sub {
      font-size: 12px;
      line-height: 1.6;
      margin-top: 8px; }
  @media (min-width: 600px) {
    main {
      width: calc(100% - 128px); }
      main .news-summary-container {
        grid-template-columns: repeat(3, 1fr); } }
  @media (min-width: 1200px) {
    main {
      width: calc(100% - 128px); }
      main .news-summary-container {
        grid-template-columns: repeat(4, 1fr); } }
  main .biography-container {
    margin-top: 96px; }
    main .biography-container .biography-image-container {
      background: #333;
      width: 100%;
      aspect-ratio: 1/1;
      overflow: hidden;
      position: relative; }
      main .biography-container .biography-image-container.left {
        float: left;
        margin: 0 32px 32px 0; }
      main .biography-container .biography-image-container.right {
        float: right;
        margin: 0 0 32px 32px; }
      main .biography-container .biography-image-container img {
        object-fit: cover;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
      @media (min-width: 600px) {
        main .biography-container .biography-image-container {
          width: 30%; } }
    main .biography-container h3 {
      font-size: 24px;
      font-weight: 400;
      margin-bottom: 16px; }
    main .biography-container .less-margin {
      margin-bottom: 0; }
    main .biography-container .biography-subtitle {
      font-size: 14px;
      margin-bottom: 32px; }
    main .biography-container p {
      font-size: 14px;
      margin-top: 8px; }
  main .video-container {
    width: 50%;
    margin: 0 auto;
    text-align: center; }
    main .video-container p {
      text-align: right; }
    @media (max-width: 960px) {
      main .video-container {
        width: 75%; } }
    @media (max-width: 600px) {
      main .video-container {
        width: 100%; } }
  main .fade-in {
    opacity: 0;
    /* 初期状態では透明 */
    transform: translateY(20px);
    /* 下にずらしておく */
    transition: opacity 0.8s ease, transform 0.8s ease;
    /* トランジションを設定 */ }
  main .fade-in.visible {
    opacity: 1;
    /* 表示 */
    transform: translateY(0);
    /* 元の位置に戻す */ }

/* ------------------------------------------------
BIOGRAPHY
------------------------------------------------ */
.biography-container .biography-image-container {
  background: #333;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative; }
  .biography-container .biography-image-container.left {
    float: left;
    margin: 0 32px 32px 0; }
  .biography-container .biography-image-container.right {
    float: right;
    margin: 0 0 32px 32px; }
  .biography-container .biography-image-container img {
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  @media (min-width: 600px) {
    .biography-container .biography-image-container {
      width: 30%; } }
.biography-container h3 {
  text-align: left;
  font-size: 20px;
  font-weight: 400;
  padding: 0;
  margin-bottom: 0; }
.biography-container .biography-subtitle {
  text-align: left;
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 32px; }
.biography-container p {
  text-align: left;
  font-size: 12px;
  margin-top: 8px; }
.biography-container .separator-dots {
  text-align: center;
  margin: 48px auto; }

/* ------------------------------------------------
BOOKS
------------------------------------------------ */
.product-unit {
  display: block;
  width: 60%;
  margin: 0 auto;
  border-radius: 2px;
  padding: 15px 0 10px; }
  @media screen and (max-width: 600px) {
    .product-unit {
      display: block;
      width: 100%;
      margin: 0 auto;
      border-radius: 2px;
      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; }
  @media (max-width: 600px) {
    .product-summary {
      max-width: 90%; } }

.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); }

/*------EXHIBITION------*/
.exhibition-container {
  width: 100%;
  margin: 0 auto; }

.exhibition-status {
  margin-bottom: 32px; }

.exhibition-year {
  font-size: 14px;
  text-align: left;
  color: #2C2319;
  padding-top: 10px; }

.exhibition-summary-container {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px; }
  .exhibition-summary-container img {
    width: 20%;
    min-width: 120px; }

.exhibition-summary {
  font-size: 12px;
  text-align: left;
  color: #2C2319;
  margin: 5px 0; }
  .exhibition-summary a {
    color: #483c2c;
    padding: 0;
    margin: 0;
    font-size: 12px;
    text-decoration: underline solid #ccc; }

/* --------------------
media
-------------------- */
.media-works-category {
  margin-bottom: 30px; }
  .media-works-category h4 {
    font-size: 16px;
    text-align: left;
    color: #2C2319;
    margin: 15px 0;
    padding-bottom: 10px;
    border-bottom: dotted 1px #ccc; }

.media-works-year {
  font-size: 16px;
  text-align: left;
  color: #2C2319; }

.media-works-summary {
  font-size: 12px;
  text-align: left;
  line-height: 1.6;
  color: #2C2319;
  margin: 12px 0; }
  .media-works-summary a {
    color: #2C2319;
    line-height: 1.6;
    padding: 0;
    margin: 0;
    font-size: 12px;
    text-decoration: underline solid #ccc; }
    .media-works-summary a:hover {
      text-decoration: none;
      font-weight: 400; }

.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; }

/* --------------------
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: 0px 0; }

.detail-title-center {
  font-size: 20px;
  text-align: center;
  margin: 5px 0; }

.detail-sub {
  text-align: left;
  margin: 0px 0 0px; }

.detail-sub-center {
  text-align: center;
  margin: 0px 0 0px; }

.detail-text {
  text-align: left;
  font-size: 12px; }
  a .detail-text:hover {
    opacity: 0.6; }

.detail-text-center {
  text-align: center;
  font-size: 12px; }
  a .detail-text-center:hover {
    opacity: 0.6; }

.subheading-left {
  font-size: 16px;
  font-weight: 500;
  text-align: left; }

.subheading-center {
  font-size: 16px;
  font-weight: 500;
  text-align: center; }

.detail-body {
  max-width: 80%;
  margin: 0 auto; }

.museum-floor-map summary {
  cursor: pointer; }
  .museum-floor-map summary:hover {
    opacity: 0.6; }

.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%; }

  .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%; } }
/* ------------------------------
News-List
------------------------------ */
.news-list {
  display: block; }

.news-transition {
  text-decoration: none; }
  @media (max-width: 600px) {
    .news-transition {
      margin-bottom: 16px; } }

.news-wrapper {
  display: inline-flex;
  width: 75%;
  height: 200px;
  margin: 10px 0;
  padding: 10px;
  margin: 20px;
  background-color: #F6FAF5;
  border: none;
  cursor: pointer; }
  .news-wrapper .archive-wrapper {
    padding: 5px; }

.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; }

.thumbnail {
  height: 100%; }

.news-thumbnail {
  height: 100%;
  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: #2C2319 solid 1px; }

.no-boeder {
  border-bottom: none; }

.news-headline, .news-subheadline {
  text-align: left;
  color: #2C2319;
  line-height: 1.6;
  margin: 10px 0;
  font-weight: 700; }

.news-excerpt {
  color: #2C2319;
  text-align: left;
  font-weight: 400;
  text-decoration: none;
  line-height: normal;
  margin-top: 8px; }
  @media screen and (max-width: 600px) {
    .news-excerpt {
      padding: 0 8px 8px; } }

@media screen and (max-width: 600px) {
  .content-headline-container {
    width: 90%;
    border-bottom: #2C2319 solid 1px;
    padding-top: 10px;
    margin-bottom: 10px;
    margin: 0 auto; }

  .news-wrapper {
    display: block;
    width: 100%;
    height: auto;
    margin: 20px auto;
    background-color: #F6FAF5;
    padding: 0;
    border: none;
    cursor: pointer;
    box-shadow: 0 1px 1px 0 #ccc; }

  .news-thumbnail {
    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: #2C2319;
    margin: 10px 0; }

  .news-excerpt {
    color: #2C2319;
    text-align: left; } }
.container {
  width: 800px;
  margin: 0 auto;
  text-align: center; }

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

/* --------------------
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: 300px;
  margin: 0 auto;
  background-color: #555; }

.footer-logo {
  width: 120px; }

.footer-text {
  font-size: 12px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 15px; }

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