@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/************************************
** 全体設定
************************************/

/* 約物半角 */
.yakuhan {
    font-family: YakuHanJP, "Yu Gothic", sans-serif;
}

/* 禁則処理 */
body {
    line-break: strict;
    word-break: break-all;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* contactページ以外はリキャプチャのバッジを隠す */
body:not(.contact) .grecaptcha-badge {
    visibility: hidden;
}

/* 改行制御 */
.nowrap {
    white-space: nowrap;
}

/* 回転 */
.rotate {
    display: inline-block;
    transform: rotate(20deg)
}

/* 両端揃え */
.justify {
    text-align: justify;
    text-justify: inter-ideograph;
}

/* 縦書き */
.tate {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

/* 中央揃え */
.tac {
    text-align: center;
}

/* グレースケール */
.gray-scale {
    filter: grayscale(100%);
}

.none{
	display:none!important;
}

/* スマホ用テキストアライン変更 */
@media screen and (max-width: 767px) {
    .sp-txt-center {
        text-align: center;
    }
    .sp-txt-left {
        text-align: left;
    }
}
@media screen and (min-width: 768px) {
    .sp-txt-left {
        text-align: center;
    }
    .sp-txt-center {
        text-align: left;
    }
}

/* スマホだけ電話番号リンク発信 */
@media (min-width: 769px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}

/* テキストリンク用アンダーラインとホバーエフェクト */
.underline a {
    color: #1a1a1a;
    text-decoration: none;
}
.underline a:hover {
    color: #333;
}
.underline:hover {
    color: #333;
    text-decoration: underline;
}

.underline_w a {
    color: #fff;
    text-decoration: none;
}
.underline_w a:hover {
    color: #eee;
}
.underline_w:hover {
    color: #eee;
    text-decoration: underline;
}


/* フッター上ウィジェットの上下余白を削除 */
#before_footer_widget {
    margin: 0;
}

/* スマホ時は非表示 */
@media(min-width:751px) {
    .sp-none {
        display: none !important;
    }
}
/* スマホ時はカラム順番を逆に */
@media (max-width: 768px) {
    .swell-col-reverse .swell-block-columns__inner {
        flex-direction: column-reverse;
    }
}
/************************************
** フォントウェイト
************************************/
.fw400 {
    font-weight: 400 !important;
}

.fw500 {
    font-weight: 500 !important;
}

.fw600 {
    font-weight: 600 !important;
}

.fw700 {
    font-weight: 700 !important;
}

.fw800 {
    font-weight: 800 !important;
}

.fw900 {
    font-weight: 900 !important;
}

/************************************
** ヘッダー
************************************/
/* ヘッダーの表示範囲の調整 */
@media screen and (min-width: 960px) {

    .l-header__inner.l-container,
    .l-fixHeader__inner.l-container {
        max-width: 90%;
    }
}

/* 下層ページのヘッダー幅をトップに合わせる */
.l-header .l-container {
    max-width: 100% !important;
}

.l-fixHeader__inner {
    max-width: 100%;
}


/************************************
** パンくずリスト　カスタマイズ
************************************/

/* パンくずリストの位置 */
.p-breadcrumb {
    margin: 0;
}

/* 境界線をなくす */
.-body-solid .p-breadcrumb.-bg-on {
    box-shadow: none;
}

/* 背景色と文字色 */
#breadcrumb,
.p-breadcrumb {
    background: #fff !important;
    color: #999 !important;
    letter-spacing: -1px;
}

/* サブページ名の透過を解除 */
.p-breadcrumb__item:last-child span {
    opacity: 1 !important;
}

/* ホームの文字のカスタマイズ */
.p-breadcrumb__text .__home {
    display: block;
    font-size: 1em !important;
}

/* サブページの文字のカスタマイズ */
.p-breadcrumb__text {
    color: #333 !important;
    font-size: 1.2em !important;
    display: block;
    padding-left: 10px;
}

@media screen and (max-width: 767px) {

    #breadcrumb,
    .p-breadcrumb {
        display: none;
    }
}

/************************************
** ホバーエフェクト
************************************/

/* ホバーで彩度を上げる */
.hover-mono {
    filter: grayscale(100);
    transition: filter 0.2s;
}

.hover-mono:hover {
    filter: grayscale(0);
}

/* ホバーで明るく/暗く（背景色を指定する） */
.hover-light:hover {
    opacity: 0.8;
    transition: 0.3s;
}

.hover-bright:hover {
    border-radius: 3px;
    transition: 0.3s;
    box-shadow: -5px -5px 10px 0px rgba(255, 255, 255, 0.5), 5px 5px 10px 0px rgba(255, 255, 255, 0.5);
}

/************************************
** カーニング
************************************/
.ls-1 {
    letter-spacing: -1px !important;
}

.ls1 {
    letter-spacing: 1px !important;
}

.ls2 {
    letter-spacing: 2px !important;
}

.ls3 {
    letter-spacing: 3px !important;
}

.ls4 {
    letter-spacing: 4px !important;
}

/************************************
** トラッキング
************************************/
.lh1 {
    line-height: 1 !important;
}

.lh1-1 {
    line-height: 1.1 !important;
}

.lh1-2 {
    line-height: 1.2 !important;
}

.lh1-3 {
    line-height: 1.3 !important;
}

.lh1-4 {
    line-height: 1.4 !important;
}

.lh1-5 {
    line-height: 1.5 !important;
}

/************************************
**flex box設定
************************************/
.flex-box {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
}

.flex-center-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-start-center {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
}

.flex-center-start {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
}

.flex-end-end {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: flex-end !important;
}

.flex-center-end {
    display: flex !important;
    justify-content: flex-center !important;
    align-items: flex-end !important;
}

.flex-end-center {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
}

.flex-end-start {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: flex-start !important;
}

.flex-start-center {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
}

/************************************
** シャドウ設定
************************************/
.text-shadow-thin {
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
    box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}

.text-shadow-blue {
    text-shadow: 2px 3px 3px rgba(3, 41, 112, 0.3);
}

.main-text-shadow {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.6;
    color: #ffffff;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
    font-weight: bold;
}
.light-shadow {
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
}
.white-shadow {
    box-shadow: 0px 5px 10px 0px rgba(255, 255, 255, 0.5);
}

/************************************
** 余白設定
************************************/

/* マージン */
.m10 {
    margin: 10px;
}

.m20 {
    margin: 20px;
}

.m30 {
    margin: 30px;
}

.m40 {
    margin: 40px;
}

.m50 {
    margin: 50px;
}

.m60 {
    margin: 60px;
}

/* マージントップ */
.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;
}

.mt60 {
    margin-top: 60px !important;
}

/* マージンボトム */
.mb0 {
    margin-bottom: 0 !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;
}

.mb60 {
    margin-bottom: 60px !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;
}

.ml60 {
    margin-left: 60px !important;
}

/* マージンライト */
.mr10 {
    margin-right: 10px !important;
}

.mr20 {
    margin-right: 20px !important;
}

.mr30 {
    margin-right: 30px !important;
}

.mr40 {
    margin-right: 40px !important;
}

.mr50 {
    margin-right: 50px !important;
}

.mr60 {
    margin-right: 60px !important;
}

/* パディング */
.p10 {
    padding: 10px !important;
}

.p20 {
    padding: 20px !important;
}

.p30 {
    padding: 30px !important;
}

.p40 {
    padding: 40px !important;
}

.p50 {
    padding: 50px !important;
}

.p60 {
    padding: 60px !important;
}

/* パディングトップ */
.pt0 {
    padding-top: 0 !important;
}

.pt10 {
    padding-top: 10px !important;
}

.pt20 {
    padding-top: 20px !important;
}

.pt30 {
    padding-top: 30px !important;
}

.pt40 {
    padding-top: 40px !important;
}

.pt50 {
    padding-top: 50px !important;
}

.pt60 {
    padding-top: 60px !important;
}

/* パディングボトム */
.pb0 {
    padding-bottom: 0 !important;
}

.pb10 {
    padding-bottom: 10px !important;
}

.pb20 {
    padding-bottom: 20px !important;
}

.pb30 {
    padding-bottom: 30px !important;
}

.pb40 {
    padding-bottom: 40px !important;
}

.pb50 {
    padding-bottom: 50px !important;
}

.pb60 {
    padding-bottom: 60px !important;
}

/* パディングレフト */
.pl0 {
    padding-left: 0 !important;
}
.pl6{
    padding-left:6px !important;
}

.pl10 {
    padding-left: 10px !important;
}

.pl20 {
    padding-left: 20px !important;
}

.pl30 {
    padding-left: 30px !important;
}

.pl40 {
    padding-left: 40px !important;
}

.pl50 {
    padding-left: 50px !important;
}

.pl60 {
    padding-left: 60px !important;
}

/* パディングライト */
.pr0 {
    padding-right: 0 !important;
}

.pr10 {
    padding-right: 10px !important;
}

.pr20 {
    padding-right: 20px !important;
}

.pr30 {
    padding-right: 30px !important;
}

/* パディング上下 */
.ptb0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.ptb10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.ptb20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.ptb30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.ptb40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.ptb50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

.ptb60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

/* パディング左右 */
.plr10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.plr20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.plr30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
}

.plr40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.plr50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
}

.plr60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
}

.plr64 {
    padding-left: 64px !important;
    padding-right: 64px !important;
}

.plr72 {
    padding-left: 72px;
    padding-right: 72px;
}

/************************************
** 角丸設定
************************************/
.radius0 {
    border-radius: 0px !important;
}

.radius0 img {
    border-radius: 0px !important;
}

.radius6 {
    border-radius: 6px;
}

.radius6 img {
    border-radius: 6px;
}

.radius8 {
    border-radius: 8px;
}

.radius8 img {
    border-radius: 8px;
}

.radius10 {
    border-radius: 10px;
}

.radius10 img {
    border-radius: 10px;
}

.radius20 {
    border-radius: 20px !important;
}

.radius20 img {
    border-radius: 20px !important;
}

.radius30 {
    border-radius: 30px !important;
}

.radius30 img {
    border-radius: 30px !important;
}

.radius40 {
    border-radius: 40px !important;
}

.radius40 img {
    border-radius: 40px !important;
}

.radius50 {
    border-radius: 50px !important;
}

.radius50 img {
    border-radius: 50px !important;
}

.radius9999 {
    border-radius: 9999px !important;
}

.radius9999 img {
    border-radius: 9999px !important;
}

.radius-top-10 {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.radius-top-10 img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.radius-top-20 {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.radius-top-20 img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.radius-left-10 {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.radius-left-10 img {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.radius-left-20 {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.radius-left-20 img {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.radius-right-10 {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.radius-right-10 img {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.radius-right-20 {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.radius-right-20 img {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

/************************************
** 背景画像の配置
************************************/

/* 背景画像のサイズと位置の調整 */
.bg-contain {
    background-size: contain !important;
}

.bg-cover {
    background-size: cover !important;
}

.bg-repeat {
    background-repeat: repeat !important;
    background-size: auto !important;
}

.bg-repeat-none {
    background-repeat: no-repeat !important;
}

.bg-repeat-y {
    background-repeat: repeat-y !important;
}

.bg-repeat-x {
    background-repeat: repeat-x !important;
}

.bg-position-top {
    background-position: top !important;
}

.bg-position-center {
    background-position: center;
}

/* 背景画像の上にドットレイヤーを敷く */
.is-layer-dot {
    position: relative;

    &:after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        content: "";
        display: block;
        background-color: rgba(0, 0, 0, .4);
        background-image: radial-gradient(#000 20%, transparent 0), radial-gradient(#000 20%, transparent 0);
        background-position: 0 0, 10px 10px;
        background-size: 4px 4px;
    }
}

/************************************
** 背景色
************************************/
.bg-color-main {
    background: #145d91;
}
.bg-color-lightgray {
    background: #efefef;
}

.bg-color-blue {
    background: #0000ff;
}

.bg-color-green {
    background: #048a3c;
}
.bg-color-yellow {
    background: #fcdc0a;
}

.bg-color-gray {
    background: #eee;
}

.bg-color-red {
    background: #d60012 !important;
}

.bg-color-white {
    background: #fff;
}

.bg-color-white-50 {
    background: rgba(255, 255, 255, 0.5);
}
.bg-color-white-60 {
    background: rgba(255, 255, 255, 0.6);
}
.bg-color-white-70 {
    background: rgba(255, 255, 255, 0.7);
}
.bg-color-white-80 {
    background: rgba(255, 255, 255, 0.8);
}

.bg-color-black {
    background: #1a1a1a;
}

.bg-color-bluegrade {
    background-color: #1890d0;
    background-image: linear-gradient(90deg, #1890d0 60%, #004492 100%);
}

.bg-color-light-yellow {
    background-color: #f6f8de;
}

.bg-grad-yellow-white {
    background-color: #f6f8de;
    background-image: -webkit-linear-gradient(160deg, #f6f8de 1%, #ffffff 50%, #f6f8de 90%);
    background-image: -moz-linear-gradient(160deg, #f6f8de 1%, #ffffff 50%, #f6f8de 90%);
    background-image: -o-linear-gradient(160deg, #f6f8de 1%, #ffffff 50%, #f6f8de 90%);
    background-image: linear-gradient(160deg, #f6f8de 1%, #ffffff 50%, #f6f8de 90%);
}

/************************************
** フッターのカスタマイズ
************************************/

.footer-box {
    min-height: 284px;
}

/* スマホ時の上下のマージンを調整 */
@media not all and (min-width: 960px) {
    .w-footer__box {
        padding: 0;
    }
    .w-footer__box+.w-footer__box {
        margin-top: 0;
    }
    .l-footer__foot, .l-footer__widgetArea {
        padding-bottom: 2em;
        padding-top: 2em;
    }

}
/* カラム内コンテンツを垂直方向センター揃え */
@media (min-width: 960px) {
    .w-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/* フッターウィジェットのパディンブボトムを削除 */
.l-footer__widgetArea {
    padding-bottom: 0;
}

/* コピーライト */
.l-footer .copyright {
    font-size: 14px !important;
    letter-spacing: 1px;
    text-align: center;
}

/* フッターメニューの下線を削除 */
.c-listMenu a {
    font-size: 14px;
    border-bottom: 0 !important;
}

/************************************
** ページトップボタン
************************************/

.p-fixBtnWrap {
    bottom: 30px;
    right: 30px;
}

.c-fixBtn {
    background-color: #155d92 !important;
    color: #fff !important;
    border: 3px solid #fff;
    border-radius: 4px;
    opacity: 1;
    height: 72px;
    width: 72px;
}

.c-fixBtn__icon {
    font-size: 34px
}

@media (min-width: 960px) {
    .hov-bg-main:hover {
        background-color: #fff !important;
        color: #155d92 !important;
        border: 3px solid #155d92;
    }
}

@media screen and (max-width: 767px) {
    .c-fixBtn {
        display: none;
    }
}

/************************************
** スマホ用ハンバーガーメニュー
************************************/

/* 元々あるスマホのグロナビを消す */
.p-spMenu__nav {
    display: none;
}

.c-widget__title.-spmenu {
    display: none;
}

/* 元々あるハンバーガーアイコンを非表示に */
.c-iconBtn__icon {
    display: none;
}

/* ハンバーガーの3本線をCSSで作成 */
.l-header__menuBtn {
    position: relative;
}

.c-iconBtn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition: background-color 0.3s;
}

.c-iconBtn::before,
.c-iconBtn::after {
    content: "";
    display: block;
    width: 25px;
    height: 2px;
    background-color: inherit;
    position: absolute;
    transition: transform 0.125s;
}

.c-iconBtn::before {
    top: -7px;
}

.c-iconBtn::after {
    top: 7px;
}

/* ハンバーガーがクリックされた時の動き */
[data-spmenu="opened"] .c-iconBtn {
    width: 100%;
    height: 100%;
    background-color: transparent;
}

[data-spmenu="opened"] .c-iconBtn::before,
[data-spmenu="opened"] .c-iconBtn::after {
    top: auto;
    background-color: #fff;
    transition: transform 0.3s;
}

[data-spmenu="opened"] .c-iconBtn::before {
    transform: rotate(45deg);
}

[data-spmenu="opened"] .c-iconBtn::after {
    transform: rotate(135deg);
}

/* スマホ開閉メニューのデザインを調整 */
.p-spMenu__inner {
    width: 100vw;
    height: 100%;
    --color_menu_bg: rgba(20, 93, 145, 1);
    /* 開閉メニューの背景色 */
    color: #fff;
    /* メニューテキストの色 */
    transition: all 0.45s ease-out;
    z-index: 1;
}

.p-spMenu__inner::before {
    background-color: var(--color_menu_bg);
}

.p-spMenu__overlay {
    background-color: transparent;
}

/* クリック時のスマホ開閉メニューの動きをドロワーからフェードに変更 */
.-right .p-spMenu__inner {
    transform: translateX(0);
    opacity: 0;
    transition: opacity 0.45s;
}

[data-spmenu="opened"] .p-spMenu__inner {
    transform: translateX(0);
    opacity: 1;
}
/************************************
** スマホ用固定ボタン
************************************/
/* 先頭のメニューを非表示*/
.menu_btn{
	display:none;
}
/* アイコンのカラー変更*/
.icon__color{
	color:#145d91;
}
/************************************
** グローバルナビ　設定
************************************/
/* メニューの高さ*/
.c-gnav>.menu-item {
    height: 80px;
    position: relative;
}
/* メニューとメニューの間隔*/
.c-gnav>.menu-item>a {
    padding: 10px 20px;
}
/* ホバー*/
.c-gnav>li:hover>a,
.c-gnav>.-current>a {
    color: #fff;
    transition: all .25s;
}

.c-gnav>.menu-item>a .ttl {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 500;
    color: #fff;
}
.c-gnav>.menu-item>a .ttl:hover {
    color: #fff;
}
/* メニュー下タイトル */
.c-smallNavTitle {
    display: block;
    position: relative;
    top: 6px;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    text-align: left;
    opacity: 1;
}
@media (min-width: 960px) {
    .-parallel .l-header__gnav .c-gnav>li>a {
        padding: 16px 30px;
    }
}
/* サブメニューカスタマイズ */
.c-gnav .sub-menu a {
    background-color: #F2D5D5;
}
.c-gnav .sub-menu a:hover {
    background-color: #fff;
}

/************************************
** 投稿リストブロック　カラム数設定
************************************/
/* 4列表示 */
@media (min-width: 960px) {
    .-col4 .-type-card.-pc-col3 .p-postList__item, .-col4 .-type-thumb.-pc-col3 .p-postList__item {
        width: calc(100% / 4);
    }
}

/* 5列表示 */
@media (min-width: 960px) {
    .-col5 .-type-card.-pc-col3 .p-postList__item, .-col5 .-type-thumb.-pc-col3 .p-postList__item {
        width: calc(100% / 5);
    }
}

/************************************
** 見出し・タイトル
************************************/
.post_content h2 {
    font-size: clamp(20px, 3.2vw, 2.3rem);
    margin: 2em 0 1em;
}

h2.wp-block-heading {
    font-size: clamp(18px, 3vw, 2rem);
}
/* 縦線からの距離を調整 */
.post_content h2:where(:not([class^="swell-block-"]):not(.faq_q):not(.p-postList__title)) {
    padding: 0 24px;
}

h2.is-style-section_ttl {
    font-size: clamp(22px, 4vw, 2.6rem);
    position: relative;
    margin: 0 0 20px 0;
    padding: 6% 2%;
    line-height: 1.2;
    overflow: hidden;
}
h3.is-style-section_ttl {
    font-size: clamp(18px, 2.5vw, 1.8rem);
    position: relative;
    margin: 0 0 40px 0;
    padding: 4% 2%;
    line-height: 1.0;
    overflow: hidden;
}
h4.is-style-section_ttl {
    font-size: clamp(16px, 2vw, 1.6rem);
    margin-bottom: 16px;
}

/************************************
** フォントサイズ
************************************/

.fs-ss {
    font-size: 12px !important;
}

.fs-s {
    font-size: 14px !important;
}

.fs-m {
    font-size: clamp(15px, 2.2vw, 22px) !important;
}

.fs-l {
    font-size: clamp(18px, 2.5vw, 2.2vw) !important;
}

.fs-ll {
    font-size: clamp(20px, 3.2vw, 3.4vw) !important;
}

.fs-xl {
    font-size: clamp(22px, 4vw, 4vw) !important;
}

/************************************
** フォント
************************************/
.lato {
    font-family: "Lato", sans-serif;
}
.raleway {
    font-family: "Raleway", sans-serif;
}

/************************************
** 投稿リスト関連
************************************/
.c-postTitle__date {
    display: none;
}

/* アイキャッチのホバー時の着色を削除 */
.p-postList__thumb:before {
    background: none;
}

/************************************
** ボーダーライン
************************************/

.top-line-blue-gray {
    border-top: 1px solid #d7dfe4;
}

.border-box{
    border:1px solid #eee;
    padding:10px;
}

/************************************
** Snow Monkey Forms チェックBOX調整
************************************/

.smf-form .smf-radio-button-control__control {
	height:20px!important;
}
	.smf-form .smf-checkbox-control__control {
		height:20px!important;
	}
@media screen and (max-width: 767px) {
	.smf-form .smf-radio-button-control__control {
	height:17px!important;
}
	.smf-form .smf-checkbox-control__control {
		height:17px!important;
	}
}