/*
Theme Name: saikyobj
Description: 
*/
@charset "utf-8";
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 * 変数
 * ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
:root {
  --main-color: #222;
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 * 全般
 * ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
body,input,textarea,select,button {
    color: var(--main-color);
    /* sans-serifは指定fontがブラウザに存在しない場合に使用される最低限のfont */
    font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
    font-size: 16px;
}
body {
    /* iPhoneSafari自動文字サイズ調整対策 */
    -webkit-text-size-adjust: 100%;
    background-color: var(--main-color);
    line-height: 1.7em;
    margin: 0px;
}
h1,h2,h3,h4,p,ul,ol,div.margin-block {
    margin-block-start: 14px;
    margin-block-end: 14px;
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 * ヘッダー・フッター
 * ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#header {
    background: linear-gradient(90deg, rgb(255, 255, 255), rgb(160, 160, 160));
}
#footer {
    background: linear-gradient(90deg, rgb(255, 255, 255), rgb(160, 160, 160));
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 * page-description
 * ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#page-description {
    align-items: center; /* テキストを縦中央に */
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    display: flex;
    padding: 1em 1.2em;
    justify-content: center; /* テキストを横中央に */
    line-height: 1.4;
    max-width: 100%; /* 両端いっぱいに */
    min-height: 50px; /* 高さ調整：最低でも50pxに */
    width: 100%;
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 * 見出し
 * ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
h1.site-title {
    font-size: 1.75em;
    text-align: center;
}
h1.site-title .site-title-sub {
    background-color: var(--main-color);
    border-radius: 30px;
    color: #fff;
    font-size: .5em;
    font-weight: normal;
    margin-left: 2px;
    padding: 2px 4px;
    vertical-align: middle;
}
h2.l-title {
    border: 2px solid rgba(34,34,34,0.7);
    border-style: solid none;
    font-size: 1.1em;
    padding: 10px;
}
h3.m-title {
    background: linear-gradient(90deg, rgb(255, 255, 255), rgb(160, 160, 160));
    border: solid 0px var(--main-color);
    border-radius: 8px;
    font-size: 1em;
    padding: 14px 10px;
}
h4.s-title {
    font-size: 1em;
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 * テキスト
 * ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
div.sub-text {
    font-size: 0.9em !important;
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 * 強調
 * ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
strong,span.sizeup {
    color: #cc3366;
    font-size: 1.05em;
    font-weight: bold;
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 * リンク
 * ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
a {
    color: #005599;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    transition: color 0.2s, text-decoration 0.2s;
}
a.tag {
    font-weight: bold;
}
a:visited {
    color: #005599; /* 通常リンクと同じ */
}
a:hover,a:focus,a:active {
    color: #003366;
    text-decoration: underline;
}
/* サイトタイトル */
h1.site-title a,h1.site-title a:visited,h1.site-title a:hover,h1.site-title a:focus,h1.site-title a:active {
    color: var(--main-color);
    text-decoration: none;
}
/* ボタン */
a.button {
    background: var(--main-color);
    border-radius: 25px;
    color: #fff;
    display: block;
    opacity: .9;
    padding: 14px 0px;
    text-align: center;
    width: 100%;
}
a.button-blue {
	background: #00d;
}
a.button:visited, a.button:hover,a.button:focus,a.button:active {
    color: #fff;
}
/* アンカー */
a.anchor:hover,a.anchor:active {
    text-decoration: none;
}
a.anchor:focus {
    text-decoration: none;
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 * フォーム
 * ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
input,textarea {
    /* width:100%でハミ出る対策 */
    /* ブラウザ標準のpaddingやborderが原因 */
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* iosでcssが効かない対策 */
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}
input::placeholder {
    color: #767d83;
}
input[type=text],input[type=email] {
    border: solid 1px var(--main-color);
    border-radius: 8px;
    height: 52px;
    padding: 4px 14px;
    width: 100%;
}
textarea {
    border: solid 1px var(--main-color);
    border-radius: 8px;
    /* textarea下部余白対策 */
    display: block;
    /* 5行 */
    height: calc( 1.7em * 5);
    line-height: 1.7em;
    padding: 14px 14px;
    resize: none;
    width: 100%;
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 * 検索フォーム
 * ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
.search-form {
    align-items: center;
    background: #fff;
    border: 1px solid var(--main-color);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}
.search-form input {
    border: none;
    box-sizing: border-box;
    font-size: 1em;
    height: 50px;
    outline: none;
    padding: 4px 14px;
    width: 700px;
}
.search-form button {
    align-items: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    height: 50px;
    justify-content: center;
    width: 50px;
}
.search-form button::after {
    content: '';
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%20%3Cpath%20d%3D%22M23.7%2020.8%2019%2016.1c-.2-.2-.5-.3-.8-.3h-.8c1.3-1.7%202-3.7%202-6C19.5%204.4%2015.1%200%209.7%200S0%204.4%200%209.7s4.4%209.7%209.7%209.7c2.3%200%204.3-.8%206-2v.8c0%20.3.1.6.3.8l4.7%204.7c.4.4%201.2.4%201.6%200l1.3-1.3c.5-.5.5-1.2.1-1.6zm-14-5.1c-3.3%200-6-2.7-6-6s2.7-6%206-6%206%202.7%206%206-2.6%206-6%206z%22%20fill%3D%22%23000000%22%3E%3C%2Fpath%3E%20%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    height: 20px;
    width: 20px;
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 * Contact Form 7
 * ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
.wpcf7 .screen-reader-response {
    display: none;
}
.wpcf7-not-valid-tip {
    color: #f00;
    display: block;
    font-size: 1em;
}
.wpcf7-response-output {
    color: #f00;
}
.hidden-fields-container {
    display: none !important;
} 
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 * コンテナ
 * ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
.container {
    background: #FFF;
    /* 中央寄対応 */
    margin: 0 auto;
    overflow: hidden;
    padding-inline: 10px;
    width: auto;
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 * メイン領域（1カラム）
 * ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#main {
    float: none;
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 * パンくず
 * ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
.breadcrumb {
    font-size: 0.9rem;
    margin: 1em 0;
}
.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}
.breadcrumb li {
    align-items: center;
    display: flex;
}
.breadcrumb li + li::before {
    content: ">";
    margin: 0 0.5em;
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 * カード
 * ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
 .card-wrapper-s,.card-wrapper-l {
    display: flex;
    flex-wrap: wrap;
}
.card-wrapper-s {
    gap: 14px 2%;
}
.card-wrapper-l {
    gap: 14px 3%;
}
.card-s,.card-l {
    display: flex;
    flex-direction: column;
}
.card-s {
    width: 32%; /* 3列 */
}
.card-l {
    width: 48.5%; /* 2列 */
}
.card-content {
    display: flex;
    flex-basis: auto;
    flex-direction: column;
    flex-grow: 1;
    flex-shrink: 1;
}
.card-content h3 {
    flex-grow: 1;
    font-size: 1em;
    margin-block-end: 0px;
}
.card-content .sub-text {
    margin-block-start: 4px;
    margin-block-end: 14px;
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 * 画像・iframe・動画
 * ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
.img-wrapper,.iframe-wrapper,.video-wrapper {
    /* アスペクト比 */
    aspect-ratio: 16 / 9;
    background: var(--main-color);
    border-radius: 8px;
    height: auto;
    overflow: hidden;
    position: relative;
    width: auto;
}
.img-wrapper img,.iframe-wrapper iframe,.video-wrapper video {
    /* divで囲んだimgタグの謎の余白対策 */
    /* インライン要素のためvertical-align: baseline;となりこれが余白の原因 */
    display: block;
    height: 100%;
    width: 100%;
}
.img-wrapper img,.iframe-wrapper iframe {
    object-fit: contain;
}
.video-wrapper video {
    /* GIFを400×225pxにリサイズしてwebmに変換すると上部に隙間ができる問題に対応 */
    object-fit: cover;
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 * 動画
 * ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
.video-wrapper video {
    border: none; /* PC-Chromeの枠線を消す */
    filter: drop-shadow(0px 0px rgba(0,0,0,0)); /* iPhone-safariの枠線を消す */
    outline: none; /* PC-Chromeの枠線を消す */
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 * ラベル
 * ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
.label-new,.label-osusume {
    position: relative;
}
.label-new:before,.label-osusume:before {
    border-style: solid;
    border-width: 70px 70px 0 0;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    top: 0;
    width: 0;
    z-index: 2;
}
.label-new:before {
    border-color: #00d transparent transparent transparent;
}
.label-osusume:before {
    border-color: #f00 transparent transparent transparent;
}
.label-new:after,.label-osusume:after {
    color: #fff;
    content: attr(data-label);
    font-size: 0.9em;
    left: 8px;
    position: absolute;
    top: 10px;
    transform: rotate(-45deg);
    z-index: 3;
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 * reCAPTCHA v3
 * ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
.grecaptcha-badge {
    bottom: 70px !important;
    overflow: hidden !important;
    right: 4px !important;
    transition: all 0.3s ease !important;
    width: 70px !important;
}
.grecaptcha-badge:hover {
    width: 256px !important;
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 * 先頭にスクロール
 * ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#scrolltop{
    background: var(--main-color);
    border-radius: 50%;
    bottom: -50px;
    height: 50px;
    opacity: .5;
    position: fixed;
    right: 12px;
    width: 50px;
}
#scrolltop a {
    display: block;
    height: 50px;
    position: relative;
    text-decoration: none;
    width: 50px;
}
#scrolltop a::before {
    bottom: 0;
    color: #fff;
    content: '\f139';
    font-family: 'Font Awesome 6 Free';
    font-size: 25px;
    font-weight: 900;
    height: 25px;
    left: 0;
    margin: auto;
    opacity: .5;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0px;
    width: 25px;
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 * コピーライト
 * ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#copyright {
    text-align: center;
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 * 2K -
 * ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
 @media only screen and (min-width: 1921px) {
    .container {
        width: 1920px;
    }
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 * 768-1920px
 * ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
@media only screen and (max-width: 1920px) and (min-width: 768px) {
}
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 * スマホ
 * ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
@media only screen and (max-width: 767px) {
    body,input,textarea,select,button {
        font-size: 14px;
    }
    h1.site-title {
        font-size: 1.5em;
    }
    .search-form input {
        width: 250px;
    }
    .card-wrapper-s{
        gap: 14px 3%;
    }
    .card-s {
        width: 48.5%; /* 2列 */
    }
    .sm-visible {
        display: inline-block;
    }
    .sm-hidden {
        display: none;
    }
    #page-description {
        padding: 1em;
    }
    h2.l-title {
        border-width: 1px;
        font-size: 1em;
    }
    .label-new:before,.label-osusume:before {
        border-width: 45px 45px 0 0;
    }
    .label-new:after,.label-osusume:after {
        left: 2px;
        top: 2px;
    }
    .card-content .margin-block {
    margin-block-start: 0px;
    margin-block-end: 0px;
    }
}