﻿@charset "utf-8";
/*----------------------------------------------------------------------
    content_site_builder v1.1
    Copyright © 2022 shin
    Licensed under MIT
    This software is released under the MIT License, see LICENSE.txt.
----------------------------------------------------------------------*/
/*------------------------------------------------------------
    レスポンシブデザインについて
--------------------------------------------------------------
    このデザインはモバイルファーストでコーデイングされています。

    画面幅参考
    ・スマホ    ：～479px
    ・タブレット縦長：480～767px
    ・タブレット横長：768～1023px
    ・PC        ：960px

    表示切替
    ・PC用設定            ：横幅960pxまで（@media (min-width:960px) {}に記載）
    ・横長タブレット用設定：横幅768pxまで（@media (min-width:768px) {}に記載）
    ・縦長タブレット用設定：横幅480pxまで（@media (min-width:480px) {}に記載）
    ・スマホ・他共通      ：mediaクエリでくくっていないスタイル全て

    サイズの単位表記について
    ・rem    ：文字など、視覚ユーザーがブラウザの拡大・縮小機能を使用した際に連動させたい部分で使用
    ・em     ：要素内の相対的なサイズとして連動させたい部分で使用
    ・px、vh ：デザインに影響のある箇所等、固定する部分で使用
------------------------------------------------------------*/
/*------------------------------------------------------------
    基礎部分
------------------------------------------------------------*/

/* ▼要素サイズ▼ */
* { /*  余白の指定を無効化し、要素内の余白でサイズが変わらないよう指定 */
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

::before, ::after { /* 疑似要素のサイズは対象の要素を継承 */
    box-sizing: inherit;
}
h1 { font-size:1.5em; }
h2 { font-size:1.3em; }
h3 { font-size:1.1em; }
h4 { font-size:1em; }
h5 { font-size:1em; }
h6 { font-size:1em; }
/* ▲要素サイズ▲ */

/* ▼要素の修飾削除▼ */
img {
    border: 0;
    height: auto;
    max-width: 100%;
}

input[type="submit"],
input[type="button"] {
    border: none;
}

/* displa:noneにするとTab＋Spaceで選択できないため透明に */
input[type="checkbox"],
input[type="radio"],
input[type="file"] {
    filter: alpha(opacity=0);
    -moz-opacity:0;
    opacity:0;
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
}
input[type="checkbox"]:focus + label{
    box-shadow: 0 0 0 2px ;
}

a {
    text-decoration: none;
}

    a.disabled {
        pointer-events: none;
    }

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    appearance: none;
}
/* ▲要素の修飾削除▲ */

/* ▼文字関連▼ */
html {
    font-size: 62.5%; /* コーディングのコストを落とすため1remのデフォルト値を16pxから10pxに変更 */
    -webkit-text-size-adjust: 100%; /* 画面の向きを変更しても文字サイズを変更しないよう変更 */
}

body, pre, address ,em {
    font-family: "メイリオ","Meiryo","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS P Gothic",Helvetica,Arial,sans-serif;
    font-size: 1.6rem;
    font-style: normal;
    height: 100%;
    overflow-wrap: break-word; /* 右端で折り返し */
    word-break: break-word; /* 外字の際、なるべく単語の区切りで改行する */
}

input, label {
    font-size: 1.6rem;
}
/* ▲文字関連▲ */


/*------------------------------------------------------------
    レイアウト
------------------------------------------------------------*/
#layout_header_area {
    position: fixed;
    box-sizing: content-box;
    width: 100%;
    z-index: 2;
}

#layout_content_area {
    padding-top: 60px; /* ヘッダー部分に初期位置が被らないようずらす */
    min-height: calc(100vh - 45px); /* フッター部分が近くなりすぎないように高さを確保 */
}

@media (min-width:480px) {
    #layout_header_area {
        height: 100px;
    }
    #layout_content_area {
        padding-top: 120px;
        min-height: calc(100vh - 145px); /* フッター部分が近くなりすぎないように高さを確保 */
    }
    #sbb_page_content {
        min-height: calc(100vh - 145px); /* フッター部分が近くなりすぎないように高さを確保 */
    }
}

#layout_footer_area {
    width: 100%;
    height: 25px;
    margin: 0 calc(50% - 50vw);
}
/* コンテンツの最大幅と余白 */
.layout_container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}
#sbb_page_content {
    max-width: 1140px;
    width: 100%;
    overflow-y: auto;
}

.layout_content {
    margin: 0 10px;
}

/*------------------------------------------------------------
 サイトロゴ
------------------------------------------------------------*/
.logo_btn {
    height: 60px;
    margin-left: 10px;
    position: relative;
    width: 200px;
    z-index: 1;
}

    .logo_btn a {
        align-items: center;
        display: flex;
        height: 60px;
        justify-content: flex-start;
        position: relative;
        margin: auto;
        transition: 0.3s;
        text-decoration: none;
        width: 300px;
    }

@media (min-width:480px) {
    .logo_btn {
        display: block;
        height: auto;
        margin: 10px 0;
        text-align: center;
        width: 100%;
    }

        .logo_btn a {
            display: inline-block;
            height: auto;
            width: auto;
        }
}
.blog_caption{
    display: none;
}
@media (min-width:960px) {
    .blog_title{
        font-size: 3rem;
    }
    .blog_caption{
        margin:0;
        display: inline-block;
        font-size: 1.4rem;
    }
}
/*------------------------------------------------------------
 ナビゲーションメニュー
------------------------------------------------------------*/
.fade_menu {
    position: relative;
}

.header_menu {
    display: none;
    text-align: center;
}

/* ▼ハンバーガーメニューのスタイル▼ */
.hamburger {
    cursor: pointer;
    height: 40px;
    display: block;
    position: absolute;
    right: 10px;
    width: 40px;
    text-align: center;
    top: -50px;
    z-index: 3;
}
    /* 三本線の見た目 */
    .hamburger span {
        display: block;
        height: 2px;
        position: absolute;
        transition: 0.3s ease-in-out;
        width: 30px;
    }

        .hamburger span:nth-child(1) {
            top: 10px;
        }

        .hamburger span:nth-child(2) {
            top: 20px;
        }

        .hamburger span:nth-child(3) {
            top: 30px;
        }

/* 隠しチェックボックスが選択状態→三本線を×印に見せかける */
#header_menu_status:checked ~ .hamburger {
    z-index: 3;
}

    #header_menu_status:checked ~ .hamburger span:nth-child(1),
    #header_menu_status:checked ~ .hamburger span:nth-child(2),
    #header_menu_status:checked ~ .hamburger span:nth-child(3) {
        top: 16px;
        left: 6px;
    }
    /* 一本目を反時計回りに45度回転 */
    #header_menu_status:checked ~ .hamburger span:nth-child(1) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    /* 二本目を時計回りに45度回転 */
    #header_menu_status:checked ~ .hamburger span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    /* 三本目は透明にする */
    #header_menu_status:checked ~ .hamburger span:nth-child(3) {
        opacity: 0;
    }

@media (min-width:480px) {
    /* スマホ以外の時はハンバーガーメニューは不要 */
    .hamburger {
        display: none;
    }
}
/* ▲ハンバーガーメニューのスタイル▲ */

/* ▼メニュ―本体のスタイル▼ */
/* 隠しチェックボックスが選択状態→ナビゲーションメニューを開く */
#header_menu_status:checked ~ .header_menu {
    display: block;
    position: absolute;
    z-index: 2;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    top: -60px;
}
    /* スマホ表示の際はメニュー全体をタップ可能な領域とする */
    #header_menu_status:checked ~ .header_menu li {
        position: relative;
        height: 60px;
        list-style: none;
    }

        #header_menu_status:checked ~ .header_menu li a {
            display: block;
            width: 100%;
            height: 100%;
            border-bottom: 1px solid;
        }

            #header_menu_status:checked ~ .header_menu li a > span {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%,-50%);
            }

.header_menu ul li:hover {
    transition: all 0.5s ease 0s;
}
/* スマホ以外は常にメニューを横並びで表示する */
@media (min-width:480px) {
    .header_menu {
        display: block;
        overflow: hidden;
        position: relative;
    }

        .header_menu ul {
            display: table;
            table-layout: fixed;
            width: 100%;
        }

        .header_menu li {
            display: table-cell;
            vertical-align: middle;
        }

        .header_menu a {
            position: relative;
            display: inline-block;
        }

            .header_menu a::after {
                position: absolute;
                bottom: -4px;
                left: 0;
                content: '';
                width: 100%;
                height: 2px;
                transform: scale(0, 1);
                transform-origin: left top;
                transition: transform .3s;
            }

            .header_menu a:hover::after {
                transform: scale(1, 1);
            }
}
/* ▲メニュ―本体のスタイル▲ */

/*------------------------------------------------------------
    ローディングアニメーション
------------------------------------------------------------*/
/* ローディング画面 */
#loading {
    width: 100vw;
    height: 100vh;
    transition: all 0.8s;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
  }
  .loaded {
    opacity: 0;
    visibility: hidden;
  }
/*------------------------------------------------------------
 プロフィール
------------------------------------------------------------*/
.author_profile{
    display:flex;
    align-items: center;
}
.author_icon {
    width: 20%;
}
.author_icon img{
    border: 2px solid;
    border-radius: 50%;
}
.author_description{
    width: 80%;
    text-align: left;
    padding:10px;
}
.author_name{
    font-size: 1.6rem;
    font-weight: bold;
    text-align: left;
}

@media (min-width:768px) {
    .author_profile{
        display: block;
    }
    .author_icon{
        width: 100%;
        text-align: center;
        float:none;
        padding:0 10px;
    }
    .author_icon img{
        width: 100px;
    }
    .author_description{
        width: 100%;
    }

    .author_name{
        font-size: 2rem;
        text-align: center;
        margin:0 0 10px 0;
    }
}
/*------------------------------------------------------------
    sbb_viewer.html
    ・PC表示    ：2カラムレイアウト
    ・スマホ表示：サイドメニューの内容を表示切替で管理
------------------------------------------------------------*/
/* ▼レイアウト部分▼ */
.layout_col2 .js_menu,
.layout_col2 .js_content {
    min-height: calc(100vh - 600px);
    width: 100%;
    z-index: 1;
}
.layout_col2 .js_menu{
    padding: 5px;
}
    .layout_col2 .js_menu,
    #sbb_sidemenu_status:checked ~ .js_content {
        display: block;
    }

@media (min-width:768px) {
    .layout_col2 .js_menu,
    .layout_col2 .js_content {
        min-height: calc(100vh - 600px);
    }
    .layout_col2::after {
        content: "";
        display: block;
        clear: both;
    }
    .layout_col2 .js_menu {
        float: left;
        width: 30%;
    }
    .layout_col2 .js_content {
        display: block;
        float: left;
        width: 70%;
        left: 30%;
    }

    .layout_col2 .layout_content .scroll {
        /*  フッターとの共存のために、
            画面の高さからヘッダーメニューの高さ＋フッターの高さ＋要素に指定した余白を減算 */
        height: calc(100vh - 165px);
        overflow-y: auto;
    }
    .layout_col2 .js_menu,
    .layout_col2 .js_content,
    #sbb_sidemenu_status:checked ~ .js_menu {
        display: block;
    }
}
@media (min-width:1140px) {
    .layout_col2 .js_menu {
        width: 340px;
    }

    .layout_col2 .js_content {
        width: 800px;
        left: 340px;
    }
}

.article_area .article_title .title_date{
    font-size: 1.2rem;
}
.article_title {
    margin-bottom: 10px;
}
#sbb_archive_list{
    padding: 0 10px 10px 10px;
}

/* ▲レイアウト部分▲ */
/* ▼デザイン部分▼ */
.list_item_wrapper:hover {
    opacity: 0.7;
}
.list_item,
.list2_item{
    display: flex;
    padding:5px;
    margin-bottom:10px;
}
.list_eyecatch,
.list2_eyecatch{
    width:40%;
    object-fit: cover;
    margin-right: 10px;
}
.list_title,
.list2_title{
    text-align: left;
    font-size: 1.4rem;
    font-weight: bold;
}
.list_title .title_date,
.list2_title .title_date{
    font-weight: initial;
}
.title_name{
    height:5rem;
    display:contents;
}

.list_item_wrapper,
.list2_item_wrapper{
    display: inline-block;
}
#sbb_content .list_item_wrapper,
#sbb_content .list2_item_wrapper{
    width: 100%;
}

@media (min-width:768px) {
    .list_area{
        margin-left:20px;
    }
    #sbb_content .list_item_wrapper {
        max-width: 49%;
        padding: 5px;
    }
    #sbb_content .list_item{
        display: block;
        padding: 10px;
    }
    #sbb_content .list_eyecatch{
        width: 100%;
        height: auto;
    }
}
@media (min-width:960px) {
    #sbb_content .list_item_wrapper {
        max-width: 33%;
    }
}
#sbb_control{
    margin-top: 20px;
    text-align: center;
}

/* ▲デザイン部分▲ */
/*------------------------------------------------------------
/* アコーディオン
------------------------------------------------------------*/
/* 隠しチェックボックスが選択状態→追記を見せる */
#y2024_status ~ #y2024,
#y2023_status ~ #y2023,
#readmore_status ~ #readmore {
    display: none;
}
#y2024_status:checked ~ #y2024,
#y2023_status:checked ~ #y2023,
#readmore_status:checked ~ #readmore {
    display: block;
}
#readmore_status:checked ~ #readmore_guide {
    display: none;
}

#readmore{
    margin-top: 50px;
}

/*------------------------------------------------------------
     リンクのスタイル
------------------------------------------------------------*/

/* ▼ボタンのスタイル▼ */
.btn,
.other_btn {
    display: inline-block;
    position: relative;
    min-width: 200px;
    height: 60px;
    margin: 5px;
    padding: 1em;
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
    border-radius: 5px;
}
.btn:hover{
    opacity:0.7;
}

.small_btn {
    width: 150px;
    height: 30px;
    padding: 0.5em;
    padding: 0.3em;
    font-weight: normal;
}

/* 角に丸みがないボタン */
.square_btn {
    border-radius: 0;
}
/* 正円形ボタン（大） */
.circle_btn {
    width: 150px;
    height: 150px;
    line-height: 150px;
    padding: 0;
    border-radius: 50%;
}
/* 正円形ボタン（小） */
.circle_btn_small {
    width: 90px;
    height: 90px;
    line-height: 90px;
    padding: 0;
    font-weight: normal;
    border-radius: 50%;
}
/* 楕円形ボタン */
.oval_btn {
    border-radius: 35px;
}
/* 二重線のフレーム */
.freme {
    border: 5px double;
    line-height: 20px;
}

    .freme.circle_btn {
        line-height: 140px;
    }

    .freme.circle_btn_small {
        line-height: 80px;
    }

.btn_area {
    width: 100%;
    text-align: center;
}
/* ▲ボタンのスタイル▲ */
/*------------------------------------------------------------
     文書のスタイル
------------------------------------------------------------*/
/* ▼引用▼ */
.component_blockquote {
    border-radius: 5px;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.5);
    display: block;
    margin: 10px;
    padding: 10px;
}

    .component_blockquote div {
        margin-bottom: 5px;
    }

    .component_blockquote cite {
        display: block;
        text-align: right;
    }
/* ▲引用▲ */
/* ▼定義リスト▼ */
/* スマホ閲覧時は定義と説明を縦並び、それ以外は定義と説明を横並びで表示する */
.component_dl {
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

    .component_dl dt,
    .component_dl dd {
        display: block;
        padding : 5px;
    }

    .component_dl dd {
        /* スマホ表示の場合は一字下げる */
        padding-left: 1em;
    }

@media (min-width:480px) {
    .component_dl {
        align-items: stretch;
        display: flex;
        flex-wrap: wrap;
        border-collapse: collapse;
    }

        .component_dl dt {
            width: 150px;
        }

        .component_dl dd {
            width: calc(100% - 150px);
        }
    .line dt,
    .line dd {
        border-bottom: 1px solid;
        margin: 0 0 -1px;
    }
}
/* ▲定義リスト▲ */

/* ▼箇条書き▼ */
.component_list {
    list-style-position: inside;
}
/* ▲箇条書き▲ */

/* ▼テーブル▼ */
.component_table {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-collapse: collapse;
}
    .component_table th,
    .component_table td {
        display: block;
        text-align: left;
        padding: 5px;
    }
.line td, .line th {
    border: 1px solid;
    margin: 0 0 -1px;
}
@media (min-width:480px) {
    .component_table th,
    .component_table td {
        display: table-cell;
        padding: 0;
    }

    .component_table th {
        padding: 0;
        text-align: center;
    }
    .topics th {
        width: 150px;
    }
    .line th {
        border-top: 1px solid;
    }
}
/* ▲テーブル▲ */

/*------------------------------------------------------------
     画像表示
------------------------------------------------------------*/
/* ▼カルーセル▼ */
.carousel{
    width: 100%;
    position: relative;
    display: inline-block;
}
.carousel_prev label,
.carousel_next label{
    display: none;
    width: 0;
    height: 0;
    border-style: solid;
    position: absolute;
    top: 50%;
}
.carousel_prev label {
    border-width: 10px 12px 10px 0;
    border-color: transparent #333 transparent transparent;
    left: 10px;
}
.carousel_next label {
    right:10px;
    border-width: 10px 0 10px 12px;
    border-color: transparent transparent transparent #333;
}
.carousel_controller{
    margin-top:10px;
}
.carousel_controller label{
    content:'';
    display:inline-block;
    margin: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border-style: solid;
    border-color:#333;
}
.carousel_controller label:after{
    content:'';
    display: none;
    width: 8px;
    height: 8px;
    margin: 1px;
    border-radius: 50%;
    border-style: solid;
    background-color:#333;
    border-color:#333;
}
.carousel img{
    display: none;
    margin: auto;
    max-width: 65vw;
}
@media (min-width:480px) {
    .carousel img{
        max-width: 80%;
    }
}

/* 2択カルーセル */
#slide2_1:checked ~ .carousel_prev label:nth-child(2),
#slide2_2:checked ~ .carousel_prev label:nth-child(1),
#slide2_1:checked ~ .carousel_next label:nth-child(2),
#slide2_2:checked ~ .carousel_next label:nth-child(1),
#slide2_1:checked ~ .carousel_controller label:nth-child(1):after,
#slide2_2:checked ~ .carousel_controller label:nth-child(2):after{
    display: block;
}
#slide2_1:checked ~ img:nth-of-type(1),
#slide2_2:checked ~ img:nth-of-type(2){
    display: block;
}
/* 4択カルーセル */
#slide4_1:checked ~ .carousel_prev label:nth-child(4),
#slide4_2:checked ~ .carousel_prev label:nth-child(1),
#slide4_3:checked ~ .carousel_prev label:nth-child(2),
#slide4_4:checked ~ .carousel_prev label:nth-child(3),
#slide4_1:checked ~ .carousel_next label:nth-child(2),
#slide4_2:checked ~ .carousel_next label:nth-child(3),
#slide4_3:checked ~ .carousel_next label:nth-child(4),
#slide4_4:checked ~ .carousel_next label:nth-child(1),
#slide4_1:checked ~ .carousel_controller label:nth-child(1):after,
#slide4_2:checked ~ .carousel_controller label:nth-child(2):after,
#slide4_3:checked ~ .carousel_controller label:nth-child(3):after,
#slide4_4:checked ~ .carousel_controller label:nth-child(4):after{
    display: block;
}
#slide4_1:checked ~ img:nth-of-type(1),
#slide4_2:checked ~ img:nth-of-type(2),
#slide4_3:checked ~ img:nth-of-type(3),
#slide4_4:checked ~ img:nth-of-type(4){
    display: block;
}
/* ▲カルーセル▲ */

/* ▼ポップアップ表示▼ 後日実装*/
/* ▲ポップアップ表示▲ */
/*------------------------------------------------------------
     汎用
------------------------------------------------------------*/
/* 要素間の余白調整 */
.mt5 { margin-top: 5px !important; }
.mt10 { margin-top: 10px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mt40 { margin-top: 40px !important; }
.mt50 { margin-top: 50px !important; }

.mb5 { margin-bottom: 5px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb50 { margin-bottom: 50px !important; }

.ml5 { margin-left: 5px !important; }
.ml10 { margin-left: 10px !important; }
.ml20 { margin-left: 20px !important; }
.ml30 { margin-left: 30px !important; }
.ml40 { margin-left: 40px !important; }
.ml50 { margin-left: 50px !important; }

.p5{ padding:5px !important; }
.p10{ padding:10px !important; }
.p20{ padding:20px !important; }
.p30{ padding:30px !important; }
.p40{ padding:40px !important; }
.p50{ padding:50px !important; }

.w100 { width: 100px !important; }
.w150 { width: 150px !important; }
.w200 { width: 200px !important; }
.w250 { width: 250px !important; }
.w300 { width: 300px !important; }

.w25per { width: 25% !important; }
.w10per { width: 10% !important; }
.w20per { width: 20% !important; }
.w30per { width: 30% !important; }
.w40per { width: 40% !important; }
.w50per { width: 50% !important; }
.w60per { width: 60% !important; }
.w70per { width: 70% !important; }
.w80per { width: 80% !important; }
.w90per { width: 90% !important; }
.w100per { width: 100% !important; }

/* スマホ以外 */
@media (min-width:768px) {
    .nsp_mt5 { margin-top: 5px !important; }
    .nsp_mt10 { margin-top: 10px !important; }
    .nsp_mt20 { margin-top: 20px !important; }
    .nsp_mt30 { margin-top: 30px !important; }
    .nsp_mt40 { margin-top: 40px !important; }
    .nsp_mt50 { margin-top: 50px !important; }
    
    .nsp_mb5 { margin-bottom: 5px !important; }
    .nsp_mb10 { margin-bottom: 10px !important; }
    .nsp_mb20 { margin-bottom: 20px !important; }
    .nsp_mb30 { margin-bottom: 30px !important; }
    .nsp_mb40 { margin-bottom: 40px !important; }
    .nsp_mb50 { margin-bottom: 50px !important; }
    
    .nsp_ml5 { margin-left: 5px !important; }
    .nsp_ml10 { margin-left: 10px !important; }
    .nsp_ml20 { margin-left: 20px !important; }
    .nsp_ml30 { margin-left: 30px !important; }
    .nsp_ml40 { margin-left: 40px !important; }
    .nsp_ml50 { margin-left: 50px !important; }
    
    .nsp_p5{ padding:5px !important; }
    .nsp_p10{ padding:10px !important; }
    .nsp_p20{ padding:20px !important; }
    .nsp_p30{ padding:30px !important; }
    .nsp_p40{ padding:40px !important; }
    .nsp_p50{ padding:50px !important; }
    
    .nsp_w100 { width: 100px !important; }
    .nsp_w150 { width: 150px !important; }
    .nsp_w200 { width: 200px !important; }
    .nsp_w250 { width: 250px !important; }
    .nsp_w300 { width: 300px !important; }
    
    .nsp_w25per { width: 25% !important; }
    .nsp_w10per { width: 10% !important; }
    .nsp_w20per { width: 20% !important; }
    .nsp_w30per { width: 30% !important; }
    .nsp_w40per { width: 40% !important; }
    .nsp_w50per { width: 50% !important; }
    .nsp_w60per { width: 60% !important; }
    .nsp_w70per { width: 70% !important; }
    .nsp_w80per { width: 80% !important; }
    .nsp_w90per { width: 90% !important; }
    .nsp_w100per { width: 100% !important; }
}
/* 文字揃え */
.ta_c { text-align: center !important; }
.ta_r { text-align: right !important; }
.ta_l { text-align: left !important; }

/* 回り込み */
.fl_l { float: left; }
.fl_r { float: right; }
.clear { clear: both; }

/* PC用の要素を目隠し */
.pc,
.pc.inline {
    display: none;
}

.sp {
    display: block;
}
    .sp.inline_block {
        display: inline-block;
    }

@media (min-width:480px) {
    .pc {
        display: block;
    }
        .pc.inline {
            display: inline;
        }
    /* スマホ用の要素を目隠し */
    .sp,
    .sp.inline_block {
        display: none;
    }
}

.elm_chkstatus,
.elm_dispnone {
    display: none;
    font-size: 0;
}

/* アンカーリンクへのジャンプ時の位置調整 */
.jump_point{
    display: block;
    padding-top: 60px;
    margin-top: -60px;
}
@media (min-width:480px) {
    .jump_point{
        padding-top: 100px;
        margin-top: -100px;
    }
}