@charset "UTF-8";
/*-------------------------------
ディフォルト設定
---------------------------------*/
html {
  width: 100%;
}

body {
  background: #fff;
  margin: 0px;
  padding: 0px;
  line-height: 1.4;
  color: #000000;
  font-size: 0.9rem;
  font-feature-settings: "palt";
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
}

/*-----------------------
a
------------------------*/
a {
  color: #333;
}

/*-----------------------
img
------------------------*/
* img {
  border: none;
  margin: 0px;
  padding: 0px;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

* {
  box-sizing: border-box;
}

    /* モーダルのスタイル */
    .modal {
      display: none; /* 初期状態は非表示 */
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8); /* 背景色 */
      justify-content: center;
      align-items: center;
    }

    .modal img {
      max-width: 90%;
      max-height: 90%;
      display: block;
    }

    .modal .close {
      position: absolute;
      top: 10px;
      right: 20px;
      color: #fff;
      font-size: 30px;
      font-weight: bold;
      cursor: pointer;
    }

    .content-image {
      cursor: pointer;
    }