@charset "UTF-8";
@font-face {
  font-family: "tsunagi";
  src: url("../font/TsunagiGothic.woff") format("woff"); }
/*****************************************/
.album_tag {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 auto 80px; }
  .album_tag li {
    margin: 0 20px 20px 0;
    width: fit-content;
    color: #79503A; }
    .album_tag li:last-of-type {
      margin: 0 0 20px; }
    .album_tag li a {
      display: block;
      border: 1px solid #79503A;
      padding: 10px 15px;
      border-radius: 25px;
      font: 1.5rem/1em "Zen Kaku Gothic New", "Noto Sans JP", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
      font-weight: 500;
      letter-spacing: 0.03em;
      text-decoration: none;
      color: #79503A; }
      .album_tag li a.current {
        color: #fff;
        background-color: #79503A; }

@media (hover: hover) {
  .album_tag li:hover a {
    cursor: pointer;
    background-color: orange; } }
/*max-width:1280px*/
/*max-width:1024px*/
@media (max-width: 768px) {
  .album_tag {
    max-width: 480px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 auto 80px; }
    .album_tag li {
      margin: 0 10px 20px; }
      .album_tag li:last-of-type {
        margin: 0 10px 20px; }
      .album_tag li a {
        padding: 8px 15px;
        font: 1.4rem/1em "Zen Kaku Gothic New", "Noto Sans JP", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
        font-weight: 500;
        letter-spacing: 0.03em; } }
/*max-width:768px*/
@media (max-width: 480px) {
  .album_tag {
    max-width: 350px;
    width: 100%;
    margin: 0 auto 50px;
    padding: 0; }
    .album_tag li {
      margin: 0 5px 10px; }
      .album_tag li:last-of-type {
        margin: 0 5px 10px; }
      .album_tag li a {
        padding: 8px 13px; } }
/*max-width:480px*/
/*****************************************/
.no_single {
  width: 100% !important;
  display: block;
  max-width: 100% !important;
  font: 1.8rem/1em "Zen Kaku Gothic New", "Noto Sans JP", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-weight: 700;
  padding: 20px;
  text-align: center; }

/*****************************************/
.albam_item {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 auto 100px;
  max-width: 1280px;
  width: 100%; }
  .albam_item li {
    width: calc((100% - 150px)/4);
    position: relative;
    max-width: 300px;
    margin: 0 50px 40px 0; }
    .albam_item li:nth-of-type(4n) {
      margin: 0 0 40px; }
  .albam_item a {
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: flex-start;
    position: relative; }
    .albam_item a > div {
      width: 100%;
      height: auto;
      aspect-ratio: 4/3;
      position: relative; }
      .albam_item a > div:before {
        border-radius: 10px;
        position: absolute;
        content: "";
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
        top: 10px;
        right: -10px;
        display: block;
        background-color: #FBF4EA; }
      .albam_item a > div span {
        margin: 0;
        display: block;
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        width: 100%;
        height: 100%; }
  .albam_item img {
    transition: .3s;
    width: 100%;
    /* other browsers */
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1); }
  .albam_item p {
    transition: .3s;
    text-decoration: none;
    transition: .3s;
    margin: 22px 0 0 0;
    width: calc(100% - 70px);
    font: 15px/1.5em "Zen Kaku Gothic New", "Noto Sans JP", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    font-weight: 400;
    color: #79503A;
    position: relative; }
  .albam_item .cat {
    transition: .3s;
    border-radius: 5px;
    font: 13px/25px "Zen Kaku Gothic New", "Noto Sans JP", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    font-weight: 500;
    letter-spacing: 0.03em;
    margin: 20px 0 0 0;
    width: 60px;
    height: 26px;
    color: #fff;
    padding: 0 0 0 5px;
    background: url("../images/common/icon_zoom.svg") top 2px right 3px no-repeat #79503A; }

@media (hover: hover) {
  .albam_item a:hover img {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    /* Safari用 */
    transform: translate(-50%, -50%) scale(1.1); }
  .albam_item a:hover p {
    color: darkorange; }
  .albam_item a:hover .cat {
    background: url("../images/common/icon_zoom.svg") top 2px right 3px no-repeat darkorange; } }
@media (max-width: 1366px) {
  .albam_item li {
    width: calc((100% - 90px)/4);
    margin: 0 30px 40px 0; } }
/*max-width:1280px*/
@media (max-width: 1024px) {
  .albam_item li {
    width: calc((100% - 50px)/3);
    margin: 0 25px 40px 0; }
    .albam_item li:nth-of-type(4n) {
      margin: 0 25px 40px 0; }
    .albam_item li:nth-of-type(3n) {
      margin: 0 0 40px; }
  .albam_item p {
    margin: 22px 0 0 0;
    width: calc(100% - 40px);
    font: 14px/1.5em "Zen Kaku Gothic New", "Noto Sans JP", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    font-weight: 400; }
  .albam_item .cat {
    margin: 20px 0 0 0;
    width: 30px;
    height: 30px;
    color: #fff;
    padding: 0;
    text-indent: -9999px;
    overflow: hidden;
    background: url("../images/common/icon_zoom.svg") center center no-repeat #79503A; } }
/*max-width:1024px*/
@media (max-width: 768px) {
  .albam_item {
    margin: 0 auto 50px;
    max-width: 640px;
    justify-content: space-between; }
    .albam_item li {
      width: calc((100% - 25px)/2);
      position: relative;
      max-width: 300px;
      margin: 0 0 40px 0; }
      .albam_item li:nth-of-type(4n), .albam_item li:nth-of-type(3n) {
        margin: 0 0 40px; } }
/*max-width:768px*/
/*max-width:480px*/
/*****************************************/
.pagination {
  max-width: 320px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: center;
  align-items: center; }
  .pagination a, .pagination span {
    font: 1.5rem/26px "Zen Kaku Gothic New", "Noto Sans JP", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    display: block;
    width: 30px;
    height: 30px;
    border: 1px solid #79503A;
    color: #79503A;
    text-align: center;
    line-height: 30px;
    margin: 5px;
    text-decoration: none; }
  .pagination a:hover {
    opacity: 0.5s; }
  .pagination .current {
    border: 1px solid #79503A;
    background-color: #79503A;
    color: #fff; }

@media (max-width: 480px) {
  .pagination {
    max-width: 300px;
    margin: 0 auto; }
    .pagination a, .pagination span {
      margin: 3px; } }
/*max-width:480px*/
@media (hover: hover) {
  .pagination a:hover {
    background-color: orange; } }
/*****************************************/
#lightbox {
  z-index: 99999 !important; }

.lb-data .lb-caption,
.lb-data .lb-close {
  color: #79503A;
  font: 1.8rem/1.5em "Zen Kaku Gothic New", "Noto Sans JP", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-weight: 500; }

@media (max-width: 768px) {
  .lb-data .lb-caption,
  .lb-data .lb-close {
    font: 1.4rem/1.5em "Zen Kaku Gothic New", "Noto Sans JP", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif" !important;
    font-weight: 500 !important; } }
/*max-width:768px*/
/*max-width:480px*/
/*****************************************/
.album_single {
  max-width: 980px;
  width: calc(100%);
  margin: 0 auto; }
  .album_single .pic {
    margin: 0 auto 30px;
    width: 100%;
    height: 640px; }
    .album_single .pic img {
      margin: 0 auto;
      object-fit: contain;
      height: 100%;
      width: auto; }
  .album_single p {
    font: 1.8rem/2em "Zen Kaku Gothic New", "Noto Sans JP", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    font-weight: 500;
    margin-bottom: 50px; }
  .album_single a {
    max-width: 300px;
    width: 100%;
    height: 80px;
    text-align: center;
    display: block;
    background-color: #F4AD3C;
    margin: 0 auto;
    color: #fff;
    border-radius: 15px;
    text-decoration: none; }
    .album_single a span {
      font: 1.8rem/77px "Zen Kaku Gothic New", "Noto Sans JP", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
      font-weight: 700;
      letter-spacing: 0.03em;
      position: relative;
      padding: 0 40px 0 0; }
      .album_single a span:before {
        position: absolute;
        content: "";
        display: block;
        background: url("../images/common/icon_arrow.svg") center center no-repeat;
        top: 55%;
        left: auto;
        right: 0;
        -webkit-transform: translate(0%, -50%);
        /* Safari用 */
        transform: translate(0%, -50%);
        width: 24px;
        height: 24px; }
