@charset "UTF-8";
/*--------------------
共通設定
----------------------*/
* {
  padding: 0;
  margin: 0; }

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom; }

a {
  text-decoration: none;
  color: #3c463c; }
  a.disabled {
    pointer-events: none;
    text-decoration: none; }

ul, ol {
  list-style: none; }

.pc {
  display: block; }
  @media screen and (max-width: 1050px) {
    .pc {
      display: none; } }

.sp {
  display: none; }
  @media screen and (max-width: 1050px) {
    .sp {
      display: block; } }

body {
  overflow-x: hidden; }

/*--------------------------------------------*/
.lp_wrapper {
  margin: 0 auto;
  box-sizing: border-box;
  letter-spacing: 0.1em;
  color: #000;
  font-size: 16px !important;
  text-align: center;
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: normal;
  font-style: normal;
  overflow: hidden;
  max-width: 1000px; }
  .lp_wrapper h2.lp_ttl {
    margin: 2% auto 5%;
    padding-top: 60px;
    font-size: 1.2em;
    font-weight: normal;
    line-height: 1.4; }
    .lp_wrapper h2.lp_ttl span {
      display: block;
      font-size: 60%; }
  .lp_wrapper #sort ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; }
    .lp_wrapper #sort ul li {
      margin: 0.5em; }
      @media screen and (max-width: 800px) {
        .lp_wrapper #sort ul li {
          margin: 0.3em; } }
      .lp_wrapper #sort ul li a {
        display: block;
        padding: .7em 1.5em;
        line-height: 1;
        font-size: 0.9em !important;
        border: 1px solid #666;
        border-radius: 0.3em;
        letter-spacing: 0; }
        @media screen and (max-width: 800px) {
          .lp_wrapper #sort ul li a {
            font-size: 3vw !important;
            padding: 0.5em 1.0em; } }
  .lp_wrapper #itemList {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 1000px;
    margin: 5% auto;
    flex-wrap: wrap; }
    @media screen and (max-width: 800px) {
      .lp_wrapper #itemList {
        width: 98%; } }
    .lp_wrapper #itemList div.item {
      width: calc(100%/3 - 2%);
      margin: 1%;
      padding: 1% !important; }
      @media screen and (max-width: 800px) {
        .lp_wrapper #itemList div.item {
          width: calc(100%/2 - 2%);
          padding: 0.5% !important; } }

/* モーダルを開くボタン */
.modal__card {
  transition: opacity .6s; }
  .modal__card:hover {
    opacity: .6; }
  .modal__card p.date {
    margin: 0.5em auto;
    font-size: 0.8em !important;
    text-align: left; }
    @media screen and (max-width: 800px) {
      .modal__card p.date {
        font-size: 2.7vw !important; } }
  .modal__card h3.modal-card__title {
    text-align: left;
    font-size: 0.9em !important;
    padding-bottom: 1.0em; }
    @media screen and (max-width: 800px) {
      .modal__card h3.modal-card__title {
        font-size: 3vw !important; } }
  .modal__card.modal__trigger {
    cursor: pointer; }

/* モーダル本体 */
.modal__wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%; }
  .modal__wrapper .modal__layer {
    height: 100%;
    background: rgba(50, 50, 50, 0.85);
    cursor: pointer; }
  .modal__wrapper .modal__container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(calc(100% - 40px), 1000px);
    height: auto;
    max-height: calc(100% - 40px);
    padding: 20px;
    background: #fff;
    overflow-y: auto; }
    @media screen and (max-width: 800px) {
      .modal__wrapper .modal__container {
        padding: 0.5%; } }
    .modal__wrapper .modal__container .modal__inner {
      position: relative;
      overflow-x: hidden;
      overflow-y: auto;
      height: 100%;
      padding: 50px 10px 0; }
      @media screen and (max-width: 800px) {
        .modal__wrapper .modal__container .modal__inner {
          padding-top: 15px; } }
      .modal__wrapper .modal__container .modal__inner .modal__close {
        position: absolute;
        top: 0;
        right: 0;
        width: 30px;
        height: 30px;
        background: #323232;
        cursor: pointer;
        transition: opacity .6s; }
        .modal__wrapper .modal__container .modal__inner .modal__close:hover {
          opacity: .6; }
        .modal__wrapper .modal__container .modal__inner .modal__close:before, .modal__wrapper .modal__container .modal__inner .modal__close:after {
          content: '';
          position: absolute;
          top: 50%;
          left: 50%;
          width: 15px;
          height: 1px;
          background: #fff; }
        .modal__wrapper .modal__container .modal__inner .modal__close:before {
          transform: translate(-50%, -50%) rotate(45deg); }
        .modal__wrapper .modal__container .modal__inner .modal__close:after {
          transform: translate(-50%, -50%) rotate(-45deg); }
      .modal__wrapper .modal__container .modal__inner .modal__content p.date {
        font-size: 0.8em !important;
        text-align: left; }
        @media screen and (max-width: 800px) {
          .modal__wrapper .modal__container .modal__inner .modal__content p.date {
            font-size: 2.7vw !important; } }
      .modal__wrapper .modal__container .modal__inner .modal__content h3.modal-card__title {
        text-align: left;
        font-size: 1.0em; }
        @media screen and (max-width: 800px) {
          .modal__wrapper .modal__container .modal__inner .modal__content h3.modal-card__title {
            font-size: 3.0vw; } }
      .modal__wrapper .modal__container .modal__inner .modal__content div.box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 1.0em auto; }
        @media screen and (max-width: 800px) {
          .modal__wrapper .modal__container .modal__inner .modal__content div.box {
            flex-direction: column; } }
        @media screen and (max-width: 800px) {
          .modal__wrapper .modal__container .modal__inner .modal__content div.box div.image {
            width: 70%;
            margin-bottom: 1.0em; } }
        .modal__wrapper .modal__container .modal__inner .modal__content div.box div.txt {
          width: 60%;
          padding: 1.0em; }
          @media screen and (max-width: 800px) {
            .modal__wrapper .modal__container .modal__inner .modal__content div.box div.txt {
              width: 100%;
              padding: 0; } }
          .modal__wrapper .modal__container .modal__inner .modal__content div.box div.txt p.newstxt {
            font-size: 0.9em;
            line-height: 1.5;
            text-align: left; }
            @media screen and (max-width: 800px) {
              .modal__wrapper .modal__container .modal__inner .modal__content div.box div.txt p.newstxt {
                font-size: 2.9vw; } }
          .modal__wrapper .modal__container .modal__inner .modal__content div.box div.txt a {
            text-decoration: underline; }
