@charset "UTF-8";
/* コピペ用 */
/* background: rgba(0,0,0,0.2); */
/* シンプルリンクホバー */
/* @include link-hover-simple; */
/* @include incSmooth(); */
/* @include btm(); */
/* @include top(); */
/* 基準フォントサイズ（PC） */
/* px → rem変換関数 */
/* フォントサイズ用Mixin（汎用）

  font-size のみ
  @include fs(16);
  この場合、line-heightは自動的に適用される
  例）
  @include fs(95);  → font-size: 5.9375rem; line-height: 1.2;
  @include fs(25);  → font-size: 1.5625rem; line-height: 1.4;
  @include fs(16);  → font-size: 1rem;      line-height: 1.8;
  @include fs(12);  → font-size: 0.75rem;   line-height: 2.0;

  手動指定1
  font-size + line-height
  @include fs(16, 1.8);

  手動指定2
  font-size + line-height + letter-spacing
  @include fs(16, 1.8, 0.04em);
*/
/* clamp フォントサイズ用Mixin

  大見出し（vw手動指定）
  .head01Main {
    @include fsc(44, 6.25, 100);
  }
  → font-size: clamp(44px, 6.25vw, 100px);
  SP(375px):    44px  ← min が下限として効く
  PC(1280px):   80px  ← vw が効く
  大画面(1600px): 100px ← max が上限として効く

  vw の値の求め方
  vw = max ÷ デザイン基準幅(px) × 100
  例）PC最大100px、基準幅1600px の場合
  100 ÷ 1600 × 100 = 6.25vw
*/
/* clamp フォントサイズ用Mixin2（vw自動計算）

  大見出し2（min・max を入れると vw を自動計算）
  .head01Main {
    @include fsc2(44, 100);
  }
  → font-size: clamp(44px, 6.25vw, 100px);  ※基準幅1600pxで自動計算

  基準幅を変えたい場合
  @include fsc2(44, 100, 1440);
*/
/* パディング生成（null安全＋レスポンシブ対応）
  .section {
    @include responsive-padding(70px, 40px);
  }
  PC: padding: 70px 40px;
  SP: padding: 52.5px 30px;
*/
/* マージンボトム汎用クラス吐き出し */
/* 幅設定汎用クラス吐き出し */
/*

.sampleClass {

$font-base: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, sans-serif;
$font-min:  "Noto Serif JP", "Yu Mincho", "游明朝", YuMincho, serif;
$font-en: "EB Garamond", serif;

背景色
background: rgba(0,0,0,0.2);

通常テキスト（SPはhtmlのフォントサイズに追従）
@include fs(16);

大見出し
@include fsc(44, 6.25, 100);

大見出し2（min・max を入れると vw を自動計算）
@include fsc2(44, 100);

マージン（SPは60%）
@include btm();
@include top();

パディング
@include responsive-padding(70px, 40px); 

シンプルホバー
@include link-hover-simple;

フォントスムーズ
@include incSmooth();

}


*/
.newsIndex {
  padding: 0 40px; }
  .newsIndex .inr {
    margin: 0 auto;
    max-width: 1260px; }
  .newsIndex .newsCatSort {
    margin-bottom: 20px; }
    .newsIndex .newsCatSort > ul {
      display: flex;
      align-items: center;
      padding: 0;
      width: 100%; }
      .newsIndex .newsCatSort > ul li {
        font-size: 1.125rem;
        line-height: 1.8;
        font-weight: 500;
        line-height: 1.7;
        margin-right: 16px;
        width: 100%; }
        .newsIndex .newsCatSort > ul li a {
          background: #FFF;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
          border-radius: 4px;
          color: #0B73CF;
          cursor: pointer;
          display: block;
          padding: 12px 12px;
          text-decoration: none;
          text-align: center;
          transition: 0.2s; }
          .newsIndex .newsCatSort > ul li a:hover {
            background: #0B73CF;
            color: #FFF; }
        .newsIndex .newsCatSort > ul li.current a {
          background: #0B73CF;
          color: #FFF;
          pointer-events: none; }
  .newsIndex .newsIndexList {
    margin-bottom: 40px; }
    .newsIndex .newsIndexList ul li {
      margin: 0;
      width: 100%; }
      .newsIndex .newsIndexList ul li a {
        border-bottom: 1px solid #DDD;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding: 32px 12px;
        text-decoration: none;
        position: relative; }
        .newsIndex .newsIndexList ul li a.noArticle {
          pointer-events: none;
          border-bottom: none; }
          .newsIndex .newsIndexList ul li a.noArticle:before {
            display: none !important; }
        .newsIndex .newsIndexList ul li a:before {
          background: linear-gradient(90deg, #B2BCC4 0%, #B2BCC4 30%, #BACEDF 70%, #BACEDF 100%);
          content: '';
          display: inline-block;
          height: 1px;
          width: 0;
          position: absolute;
          bottom: -1px;
          left: 0;
          transition: 0.4s; }
        .newsIndex .newsIndexList ul li a .title {
          display: block;
          font-size: 1.125rem;
          line-height: 1.8;
          font-weight: 400;
          line-height: 1.7;
          letter-spacing: -0.02em;
          margin-bottom: 12px;
          position: relative;
          transition: 0.5s;
          width: 100%;
          overflow: hidden;
          display: -webkit-box;
          -webkit-box-orient: vertical;
          -webkit-line-clamp: 1;
          /* 行数を指定 */ }
        .newsIndex .newsIndexList ul li a .cat {
          background: #0B73CF;
          border-radius: 30px;
          color: #FFF;
          display: inline-flex;
          justify-content: center;
          align-items: center;
          font-size: 0.8125rem;
          line-height: 2;
          font-weight: 500;
          letter-spacing: 0.04em;
          line-height: 1;
          min-width: 120px;
          margin-right: 12px;
          padding: 8px 12px 10px;
          vertical-align: 1px; }
          .newsIndex .newsIndexList ul li a .cat.cat01 {
            border-color: #D55A00;
            color: #D55A00; }
        .newsIndex .newsIndexList ul li a .date {
          color: #0B73CF;
          font-size: 0.875rem;
          line-height: 2;
          line-height: 1;
          font-weight: 400;
          padding: 10px 0;
          transition: 0.3s; }
        .newsIndex .newsIndexList ul li a:hover:before {
          width: 100%; }
        .newsIndex .newsIndexList ul li a:hover .title {
          color: #0B73CF; }

.pnavi {
  padding: 20px;
  text-align: center; }
  .pnavi .page-numbers {
    background: #FFF;
    border: 1px solid #0B73CF;
    color: #0B73CF;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.125rem;
    line-height: 1.8;
    margin: 0 2px;
    text-decoration: none;
    transition: 0.2s;
    height: 55px;
    width: 55px; }
    .pnavi .page-numbers:hover, .pnavi .page-numbers.current {
      background-color: #0B73CF;
      color: #FFF; }
  .pnavi .next, .pnavi .prev {
    margin: 0 16px;
    width: 100px; }

@media only screen and (max-width: 960px) {
  .newsIndex {
    padding: 0 5vw; }
    .newsIndex .inr {
      padding-bottom: 80px;
      padding-bottom: 0; }
    .newsIndex .newsCatSort {
      margin-bottom: 8px; }
      .newsIndex .newsCatSort > ul {
        justify-content: flex-start; }
        .newsIndex .newsCatSort > ul li {
          font-size: 14px;
          margin-right: 2%; }
          .newsIndex .newsCatSort > ul li a {
            padding: 8px 4px; }
    .newsIndex .newsIndexList {
      margin-bottom: 40px; }
      .newsIndex .newsIndexList ul li {
        margin: 0;
        width: 100%; }
        .newsIndex .newsIndexList ul li a {
          border-bottom: 1px solid #DDD;
          display: flex;
          flex-wrap: wrap;
          align-items: center;
          padding: 18px 0;
          text-decoration: none;
          position: relative; }
          .newsIndex .newsIndexList ul li a.noArticle {
            pointer-events: none;
            border-bottom: none; }
            .newsIndex .newsIndexList ul li a.noArticle:before {
              display: none !important; }
          .newsIndex .newsIndexList ul li a:before {
            background: linear-gradient(90deg, #B2BCC4 0%, #B2BCC4 30%, #BACEDF 70%, #BACEDF 100%);
            content: '';
            display: inline-block;
            height: 1px;
            width: 0;
            position: absolute;
            bottom: -1px;
            left: 0;
            transition: 0.4s; }
          .newsIndex .newsIndexList ul li a .title {
            display: block;
            font-size: 14px;
            font-weight: 400;
            line-height: 1.55;
            letter-spacing: -0.02em;
            margin-bottom: 10px;
            position: relative;
            transition: 0.5s;
            width: 100%;
            overflow: hidden;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;
            /* 行数を指定 */ }
          .newsIndex .newsIndexList ul li a .cat {
            font-size: 10px;
            letter-spacing: 0.04em;
            line-height: 1.3;
            min-width: 80px;
            margin-right: 12px;
            padding: 5px 12px 6px; }
          .newsIndex .newsIndexList ul li a .date {
            padding: 5px 0 6px; }
          .newsIndex .newsIndexList ul li a:hover:before {
            width: 100%; }
          .newsIndex .newsIndexList ul li a:hover .title {
            color: #0B73CF; }

  .pnavi .page-numbers {
    font-size: 14px;
    height: 40px;
    width: 40px; } }
.newsDetail {
  padding: 0 40px; }
  .newsDetail .inr {
    margin: 0 auto;
    max-width: 1260px; }
  .newsDetail .newsDetailTitle {
    margin-bottom: 60px; }
    .newsDetail .newsDetailTitle h1 {
      border-bottom: 1px solid #0B73CF;
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      position: relative;
      padding-bottom: 20px;
      transition: 0.2s; }
      .newsDetail .newsDetailTitle h1:before {
        background: #DDDFC4;
        content: '';
        display: inline-block;
        height: 1px;
        width: 0;
        position: absolute;
        bottom: -1px;
        left: 0;
        transition: 0.5s; }
      .newsDetail .newsDetailTitle h1 .title {
        font-size: 1.625rem;
        line-height: 1.4;
        font-weight: 500;
        line-height: 1.55;
        margin-top: 16px;
        width: 100%; }
      .newsDetail .newsDetailTitle h1 .cat {
        background: #0B73CF;
        border-radius: 12px;
        color: #FFF;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        font-size: 0.75rem;
        line-height: 2;
        font-weight: 500;
        letter-spacing: 0.04em;
        line-height: 1;
        margin: 0 12px 0 0;
        position: relative;
        padding: 6px 20px;
        top: 1px;
        transition: 0.5s; }
      .newsDetail .newsDetailTitle h1 .date {
        color: #0B73CF;
        font-size: 0.875rem;
        line-height: 2;
        line-height: 1;
        padding: 6px 12px; }

@media only screen and (max-width: 960px) {
  .newsDetail {
    padding: 0 5vw; }
    .newsDetail .inr {
      padding-bottom: 0; }
    .newsDetail .newsDetailTitle {
      margin-bottom: 40px; }
      .newsDetail .newsDetailTitle h1 {
        padding-bottom: 20px; }
        .newsDetail .newsDetailTitle h1 .title {
          font-size: 20px;
          font-weight: 500;
          line-height: 1.55;
          margin-top: 12px;
          width: 100%; }
        .newsDetail .newsDetailTitle h1 .cat {
          font-size: 11px;
          margin: 0;
          top: 1px; }
        .newsDetail .newsDetailTitle h1 .date {
          font-size: 12px; } }
.editor {
  padding-bottom: 80px; }
  .editor h2 {
    background: #0065BF;
    background: linear-gradient(90deg, #0065bf 0%, #327dc2 50%, #afbacb 100%);
    color: #FFF;
    font-size: 1.375rem;
    line-height: 1.8;
    font-weight: 500;
    line-height: 1.4;
    padding: 16px 20px;
    margin-bottom: 40px; }
  @media only screen and (max-width: 960px) {
    .editor h2 {
      font-size: 18px;
      padding: 12px 16px;
      margin-bottom: 28px; } }
  .editor h3 {
    border-bottom: 1px solid #B2BCCB;
    font-size: 1.25rem;
    line-height: 1.8;
    line-height: 1.55;
    font-weight: 500;
    margin-bottom: 24px;
    padding: 16px 0;
    position: relative; }
    .editor h3:before {
      background: #066DC8;
      content: '';
      display: block;
      height: 1px;
      width: 110px;
      position: absolute;
      bottom: -1px;
      left: 0; }
  @media only screen and (max-width: 960px) {
    .editor h3 {
      font-size: 17px;
      margin-bottom: 20px;
      padding: 12px 0; }
      .editor h3:before {
        width: 80px; } }
  .editor h4 {
    font-size: 1.125rem;
    line-height: 1.8;
    line-height: 1.45;
    font-weight: 500;
    margin-bottom: 12px;
    padding: 0 16px;
    position: relative; }
    .editor h4:before {
      background: #066DC8;
      content: '';
      display: block;
      height: 18px;
      width: 3px;
      position: absolute;
      top: 6px;
      left: 0; }
  @media only screen and (max-width: 960px) {
    .editor h4 {
      font-size: 15px;
      padding: 0 12px; }
      .editor h4:before {
        height: 16px;
        top: 5px; } }
  .editor p {
    margin-bottom: 20px; }
  .editor > p {
    margin-bottom: 20px; }
    .editor > p:last-child {
      margin-bottom: 0 !important; }
  .editor .center img {
    display: inline-block; }

@media only screen and (max-width: 960px) {
  .editor {
    padding-bottom: 40px; }
    .editor p {
      margin-bottom: 16px; }
    .editor > p {
      margin-bottom: 40px; }
      .editor > p:last-child {
        margin-bottom: 0 !important; } }
.btnCenter .mapBtn {
  justify-content: center; }
  .btnCenter .mapBtn li {
    max-width: 260px; }

@media only screen and (max-width: 960px) {
  .btnCenter {
    padding-bottom: 40px; } }
