@charset "UTF-8";
.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (min-width: 1181px) {
  /*　画面サイズが1024pxからはここを読み込む　*/
}
@media screen and (min-width: 821px) and (max-width: 1180px) {
  /*　画面サイズが768pxから1024pxまではここを読み込む　*/
}
@media screen and (min-width: 270px) and (max-width: 820px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  select,
  textarea,
  input[type=text],
  input[type=email],
  input[type=url],
  input[type=password],
  input[type=search],
  input[type=number],
  input[type=tel],
  input[type=range],
  input[type=date],
  input[type=month],
  input[type=week],
  input[type=time],
  input[type=datetime],
  input[type=datetime-local],
  input[type=color],
  textarea {
    padding: 10px;
    background: #fff;
    width: 100%;
  }
  .page-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-area .main-area,
  .page-area .hd-area,
  .tokucho .tokucho-inner h3 img,
  .cam-inner img,
  .cm img,
  .gr img {
    width: 100%;
  }
  .nm {
    padding: 2rem 1rem;
  }
  a.cta-btn {
    width: 280px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .slick01 li.slick-slide {
    margin: 0 0.5rem;
    padding: 1rem;
  }
  .nm h2 span {
    font-size: 2rem;
  }
  .img-area-bottom {
    padding-bottom: 8rem;
  }
  .img-area-top {
    padding-top: 8rem;
  }
  img.sep-img {
    max-width: 100%;
    top: -85px;
    right: 0;
  }
  .ac-box .ac-box-inner {
    position: relative;
    width: calc(50% - 1rem);
  }
  .ac-box .ac-box-inner .ac-title button {
    padding: 5px;
    font-size: 10px;
  }
  .ac-box .ac-box-inner .ac-title h3 span {
    font-size: 11px;
  }
  .sd-back {
    left: -13px;
    color: #ffffff;
    z-index: 111;
    background: #002c5f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    padding: 10px;
    border-radius: 50%;
    top: 40%;
  }
  .sd-back span {
    width: 20px;
    text-align: center;
  }
  .sd-back2 {
    background: #841617;
  }
  .sd-next {
    right: -13px;
    color: #ffffff;
    z-index: 111;
    background: #002c5f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    padding: 10px;
    border-radius: 50%;
    top: 40%;
  }
  .sd-next span {
    width: 20px;
    text-align: center;
  }
  .sd-next2 {
    background: #841617;
  }
  .cm h2 {
    font-size: 3rem;
  }
  .cm {
    padding: 10rem 1rem 2rem 1rem;
  }
  .site-info {
    text-align: center;
  }
  .cm img {
    top: 0;
  }
  .page-area .hd-area .pc-navigation-inner {
    height: auto;
    padding: 1rem;
  }
  .page-area .hd-area .pc-navigation-inner img {
    width: 100px;
    display: block;
    margin: 0 auto;
  }
  .sp-site-branding {
    text-align: center;
  }
  .sp-site-branding p {
    font-size: 15px;
    margin-top: 10px;
  }
  .page-area .hd-area .pc-navigation-inner .hd-lead {
    margin-top: 10px;
  }
  /* スクロール無効用クラス */
  .no-scroll {
    overflow: hidden;
  }
  /* メニューボタン */
  .menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1001;
    cursor: pointer;
    background: #3498db;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .menu-btn span#menuIcon {
    font-size: 35px;
  }
  .menu-btn span#menuLabel {
    font-size: 10px;
  }
  /* オーバーレイ（マスク） */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    z-index: 1000;
  }
  .overlay.show {
    opacity: 1;
    visibility: visible;
  }
  /* ドロワーの基本スタイル */
  .drawer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 300px;
    background-color: #fff;
    -webkit-box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
            box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    z-index: 1002;
  }
  /* ドロワーが開いた状態 */
  .drawer.open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    background: url(../img/menubg.jpg) no-repeat;
    background-size: cover;
  }
  .drawer ul {
    list-style: none;
    padding: 10px 20px;
    margin: 0;
  }
  .drawer li {
    margin-bottom: 15px;
  }
  .drawer a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
  }
  .main-img div {
    max-width: 90%;
  }
  .main-img img {
    height: 70vh;
  }
  .slick01 li.slick-slide {
    margin: 0;
    min-height: auto;
    max-height: auto;
  }
  .slick01 li.slick-slide h3 span::after {
    width: 50px;
  }
  .menu-pc-menu-container {
    margin-top: 0;
  }
  a.cta-btn-ft {
    display: block;
    position: fixed;
    background: #ffeb3b;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 10px;
    text-align: center;
    z-index: 111;
    font-weight: 700;
    font-size: 13px;
  }
  .post,
  .page {
    margin: 0 0 2.5rem;
  }
  /* スクロール可能領域 */
  .js-scrollable {
    position: relative;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* スクロールヒントの矢印（スマホだけ） */
  .js-scrollable::after {
    content: "← スクロールできます →";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 12px;
    border-radius: 8px;
    pointer-events: none;
    white-space: nowrap;
    z-index: 10;
    -webkit-animation: fadeOut 4s ease-in forwards;
            animation: fadeOut 4s ease-in forwards;
  }
  /* 表示してからフェードアウト */
  @-webkit-keyframes fadeOut {
    0% {
      opacity: 1;
    }
    70% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes fadeOut {
    0% {
      opacity: 1;
    }
    70% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  /* テーブル最小幅と見た目 */
  .js-scrollable table {
    min-width: 600px;
    border-collapse: collapse;
  }
  .half-tb th,
  .half-tb td {
    padding: 8px 12px;
    border: 1px solid #ccc;
    text-align: center;
    white-space: nowrap;
  }
  .tb-title {
    background-color: #f0f0f0;
    font-weight: bold;
  }
  /* スクロールヒントはスマホだけ */
}
@media screen and (min-width: 270px) and (max-width: 820px) and (min-width: 768px) {
  .js-scrollable::after {
    display: none;
  }
}
@media screen and (min-width: 270px) and (max-width: 820px) {
  .js-scrollable {
    margin-top: 3rem;
  }
  table.half-tb {
    table-layout: auto;
    position: relative;
  }
}/*# sourceMappingURL=mobile.css.map */