@charset "utf-8";



/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1+Code:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru&display=swap" rel="stylesheet');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');



/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/*slick.cssの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");

/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("animation.css");
@import url("inview.css");



/*全体の設定
---------------------------------------------------------------------------*/
html,
body {
    margin: 0;
    padding: 0;
    font-size: 13px;/*基準となるフォントサイズ。下の方にある「画面幅900px以上」で基準を大きなサイズに再設定しています。*/
    overflow-x: hidden;
}

body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;/*フォント種類（ゴシック）*/
    -webkit-text-size-adjust: none;
    letter-spacing: 0.05em;
    background: #fff; /*背景色*/
    color: #555; /*全体の文字色*/
    line-height: 2; /*行間*/
}

/*リセット*/
figure {
    margin: 0;
}



dd {
    margin: 0;
}

nav {
    margin: 0;
    padding: 0;
}

/*table全般の設定*/
table {
    border-collapse: collapse;
}

/*画像全般の設定*/
img {
    border: none;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/*videoタグ*/
video {
    max-width: 100%;
}

/*iframeタグ*/
iframe {
    width: 100%;
}

/*ul,olタグ*/
ul,
ol {
    margin-bottom: 30px;
}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
    color: #57524b; /*文字色*/
    transition: 0.3s;
}


/*sectionタグと、詳細ページの共通設定
---------------------------------------------------------------------------*/
section,
main > article {
    margin: 0 auto;
    padding: 5%;/*ボックス内の余白*/
}




/*2カラムブロック（※900px未満では１カラム）
---------------------------------------------------------------------------*/
/*２カラムを囲むブロック*/
.c2 {
    display: flex; /*flexボックスを使う指定*/
    flex-direction: column; /*子要素を縦並びにする*/
}

/*c2内のh2見出し*/
.c2 h2 {
    font-size: 2em;
}

/*小さい端末で見た場合（１カラムになった際）に、画像を常に先頭に持ってくる*/
.c2 .image {
    order: -1;
}




/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
    display: flex; /*flexボックスを使う指定*/
    justify-content: space-between; /*並びかたの種類の指定*/
    align-items: center; /*垂直揃えの指定。天地中央に配置されるように。*/
    background-color: #FFD100;/*background: linear-gradient(180deg, #FFD100, #fbe78b, #FFD100);			背景色グラデーション*/
    position: fixed;
    z-index: 2; /*スクロールしても動かないようにする指定*/
    width: 100%;
    padding: 0 3%; /*上下、左右へのヘッダー内の余白*/
    height: 90px; /*ヘッダーの高さ。変更する場合、数行下にある#mainimgのtopの数値も合わせて変更して下さい。*/
}

/*ヘッダーのリンクテキストの文字色*/
header a {
    color: #000;
    text-decoration: underline;
}

header a:hover {
    color: #fff;
}

/*ロゴ画像*/
header #logo img {
    display: block;
}

header #logo {
    margin-left: 5px;
    margin-bottom: 10px;
    width: 280px; /*幅*/
}


/*トップページのメイン画像
---------------------------------------------------------------------------*/
/*全体を囲むブロック*/
#mainimg {
    width: 100%;
    height: 0;
    padding: 0;
    padding-top: 130%;
    position: relative;
    top: 90px; /*headerのheightの数値と合わせて下さい。*/
    overflow: hidden;
    background: url(../images/mainimg_sp.jpg) no-repeat center center / 100%; /*背景色、背景画像の読み込み、最後の100%は画像幅。*/
    color: #fff; /*文字色*/
}

/*テキストブロック*/
#mainimg #text {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

/*h2見出し*/
#mainimg #text h2 {
    text-align: center;
    font-size: 10vw; /*文字サイズ。画面幅に対する単位です。*/
    line-height: 1.5em; /*text-shadow: 1px 1px 2px rgba(0,0,0,0.3);	テキストの影。右へ、下へ、ぼかし幅。0,0,0は黒の事で0.3は色が30%出た状態。*/
    font-family: "Kiwi Maru", serif;
    font-weight: 200;
    font-style: normal;
    color: #fff;
}

.yellow {
    color: #ffff33;
}

#mainimg #text h2 img {
    position: absolute;
    top: 90px;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 350px;
    animation: toptobottomScale 2.0s ease 0s 1 normal;
}

/* toptobottomScale */
@keyframes toptobottomScale {
    0% {
        transform: translateY(-1200px) scale(0.7);
        opacity: .7
    }

    80% {
        transform: translateY(0) scale(0.7);
        opacity: .7
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}


/*画面幅600px以上の追加指定*/
@media screen and (min-width:600px) {

    #mainimg {
        padding-top: 65%;
        top: 90px; /*headerのheightの数値と合わせて下さい。*/
        background: url(../images/mainimg_pc.jpg) no-repeat center center / 100%; /*背景色、背景画像の読み込み、最後の100%は画像幅。*/
    }

    #mainimg #text h2 img {
        top: 180px;
        margin-top: 2.2em;
        width: 600px;
        animation: toptobottomScale 2.0s ease 0s 1 normal;
    }

    /* toptobottomScale */
    @keyframes toptobottomScale {
        0% {
            transform: translateY(-1200px) scale(0.7);
            opacity: .7
        }

        80% {
            transform: translateY(0) scale(0.7);
            opacity: .7
        }

        to {
            transform: scale(1);
            opacity: 1
        }
    }

    #mainimg #text p img {
        position: absolute;
        top: 100px;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        width: 400px;
        animation: toptobottomScale 2.0s ease 0s 1 normal;
    }

    /* toptobottomScale */
    @keyframes toptobottomScale {
        0% {
            transform: translateY(-1200px) scale(0.7);
            opacity: .7
        }

        80% {
            transform: translateY(0) scale(0.7);
            opacity: .7
        }

        to {
            transform: scale(1);
            opacity: 1
        }
    }
}


/*pタグ。小文字の説明文。*/
#mainimg #text h2 {
    font-weight: 800; /*文字の太さ。数値が大きいほど太くなります。*/
    font-size: 8vw; /*文字サイズ。画面幅に対する単位です。*/
    line-height: 1.5em; /*text-shadow: 1px 1px 2px rgba(0,0,0,0.3);	テキストの影。右へ、下へ、ぼかし幅。0,0,0は黒の事で0.3は色が30%出た状態。*/
    font-family: "Kiwi Maru", serif;
    font-style: normal;
}

.yellow {
    color: #ffff33;
}

.text-pc {
    display: none;
}

#mainimg #text p {
    text-align: center;
    font-size: 4vw; /*文字サイズ*/
    line-height: 1.5em;
    margin: -10px 10px 30px; /*上、左右、下へのpタグ内の余白*/
    font-family: "Kiwi Maru", serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
}

.text-pc {
    display: none;
}





/*画面幅600px以上の追加指定*/
@media screen and (min-width:600px) {

    #mainimg #text h2 {
        margin-top: 30px;
        font-size: 5vw;  /*文字サイズ。画面幅に対する単位です。*/
        line-height: 3.0em;
        color: #fff;
        font-family: "Kiwi Maru", serif;
        font-weight: 400;
        font-style: normal;
    }

    .text-sp {
        display: none;
    }

    .text-pc {
        display: block;
    }


    #mainimg #text p {
        font-size: 20px; /*文字サイズ*/
        margin: -60px 10px 30px; /*上、左右、下へのpタグ内の余白*/
        font-family: "Kiwi Maru", serif;
        font-weight: 400;
        font-style: normal;
        color: #fff;
    }



}


/*menubarブロック初期設定
---------------------------------------------------------------------------*/
#menubar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/*メニューを非表示にしておく*/
#menubar {
    display: none;
}

/*開閉用のスタイル*/
#menubar.db {
    display: block;
}

#menubar.dn {
    display: none;
}

/*メニュー１個あたりの設定*/
#menubar a {
    display: block;
    text-decoration: none;
    font-size: 1em;
    line-height: 1.4em;
    text-align: center; /*テキストを中央に*/
    letter-spacing: 0.1em; /*文字間隔を少しだけ広くする指定*/
    padding: 10px; /*メニュー内の余白*/
}


/*小さな端末用の設定（開閉ブロック）
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.s #menubar.db {
    position: fixed;
    overflow: auto;
    z-index: 100;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    padding: 70px 20px; /*上下、左右へのブロック内の余白*/
    background: rgba(0, 0, 0, 0.9); /*背景色。0,0,0は黒の事で0.9は色が90%出た状態の事。*/
    animation: animation1 0.2s both; /*animation.cssの、animation1を実行する。0.2sは0.2秒の事。*/
    text-align: center; /*内容をセンタリング*/
    color: #fff; /*文字色*/
}

.s #menubar.db a {
    display: block;
    color: #fff; /*リンクテキストの文字色*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*開閉用のスタイル*/
#menubar_hdr.db {
    display: flex;
}

#menubar_hdr.dn {
    display: none;
}

/*３本バーを囲むブロック*/
#menubar_hdr {
    position: fixed;
    z-index: 101;
    cursor: pointer;
    right: 20px; /*右からの配置場所指定*/
    top: 20px; /*上からの配置場所指定*/
    padding: 16px 14px; /*上下、左右への余白*/
    width: 46px; /*幅（３本バーが出ている場合の幅になります）*/
    height: 46px; /*高さ*/
    display: flex; /*flexボックスを使う指定*/
    flex-direction: column; /*子要素（３本バー）を縦並びにする*/
    justify-content: space-between; /*並びかたの種類の指定*/
    background: rgba(0, 0, 0, 0.5); /*背景色*/
    border-radius: 50%; /*円形にする*/
}

/*バー１本あたりの設定*/
#menubar_hdr span {
    display: block;
    transition: 0.3s; /*アニメーションにかける時間。0.3秒。*/
    border-top: 2px solid #fff; /*線の幅、線種、色*/
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
    transform-origin: center center; /*変形の起点。センターに。*/
    width: 20px; /*バーの幅*/
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1) {
    transform: rotate(45deg) translate(3.8px, 5px); /*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3) {
    transform: rotate(-45deg) translate(3.8px, -5px);  /*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2) {
    display: none; /*２本目は使わないので非表示にする*/
}


/*mainブロック設定
---------------------------------------------------------------------------*/
/*mainブロック*/
main {
    padding-top: 50px;
}

/*mainブロック内のh2タグ*/
main h2 {
    margin: 1em 0 0.5em; /*上、左右、下へのタグの外にとるスペース*/
    line-height: 1.5; /*行間を少し狭く*/
    font-size: 2.5em; /*文字サイズ。3倍。*/
    text-align: center; /*文字をセンタリング*/
    letter-spacing: 0em; /*文字間隔を少しだけ広くとる設定*/
    color: #ee5e4f; /*文字色*/
    font-family: 'Lato'; /*GoogleFontsの指定*/
    font-weight: 400; /*文字の太さ*/
}

main h2.title_ex {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ff6600; /*文字色*/
    line-height: 1.5; /*行間を少し狭く*/
    font-size: 2.0em;
    margin-top: 75px;
    font-family: 'Lato'; /*GoogleFontsの指定*/
    font-weight: 600; /*文字の太さ*/
}

h2.title_ex::before,
h2.title_ex::after {
    content: '';
    width: 50px;
    height: 1px;
    background-color: #FFD100;
}

h2.title_ex::before {
    margin-right: 20px;
}

h2.title_ex::after {
    margin-left: 20px;
}

/*h2内のsupanタグ。小文字部分です。*/
main h2.title_sub {
    display: block;
    font-weight: normal;
    margin-top: -20px;
    color: #333; /*文字色*/
    font-size: 13px; /*文字サイズ*/
}


main h2.title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    text-align: center;
    color: #ee5e4f; /*文字色*/
    line-height: 1.5; /*行間を少し狭く*/
    font-size: 2.5em;
    font-family: 'Lato'; /*GoogleFontsの指定*/
    font-weight: 400; /*文字の太さ*/
}

h2.title::before,
h2.title::after {
    content: '';
    width: 50px;
    height: 1px;
    background-color: #FFD100;
}

h2.title::before {
    margin-right: 20px;
}

h2.title::after {
    margin-left: 20px;
}

/*h2内のsupanタグ。小文字部分です。*/
main h2.title_sub {
    display: block;
    font-weight: normal;
    margin-top: -20px;
    color: #333; /*文字色*/
    font-size: 13px; /*文字サイズ*/
}



main h2.copy {
    margin: 1em 0 1em;  /*上、左右、下へのタグの外にとるスペース*/
    line-height: 1.5; /*行間を少し狭く*/
    font-size: 1.8em; /*文字サイズ。3倍。*/
    text-align: center; /*文字をセンタリング*/
    letter-spacing: 0.1em; /*文字間隔を少しだけ広くとる設定*/
    color: #7a7a7a; /*文字色*/
    font-family: 'Lato'; /*GoogleFontsの指定*/
    font-weight: 400; /*文字の太さ*/
}

main h2.copy_sub {
    margin: 0 0 1em; /*上、左右、下へのタグの外にとるスペース*/
    line-height: 1.5; /*行間を少し狭く*/
    font-size: 1.2em; /*文字サイズ。3倍。*/
    text-align: center; /*文字をセンタリング*/
    letter-spacing: 0.1em; /*文字間隔を少しだけ広くとる設定*/
    color: #7a7a7a; /*文字色*/
    font-family: 'Lato'; /*GoogleFontsの指定*/
    font-weight: 400; /*文字の太さ*/
}

main h2.copy_sub_s{
    margin: 0 0 1em; /*上、左右、下へのタグの外にとるスペース*/
    line-height: 1.5; /*行間を少し狭く*/
    font-size: 1.0em; /*文字サイズ。3倍。*/
    text-align: center; /*文字をセンタリング*/
    letter-spacing: 0.1em; /*文字間隔を少しだけ広くとる設定*/
    color: #7a7a7a; /*文字色*/
    font-family: 'Lato'; /*GoogleFontsの指定*/
    font-weight: 400; /*文字の太さ*/
}

main h2.copy_sub_top {
    margin: 0 0 1em; /*上、左右、下へのタグの外にとるスペース*/
    line-height: 2; /*行間を少し狭く*/
    font-size: 1.2em; /*文字サイズ。3倍。*/
    text-align: center; /*文字をセンタリング*/
    letter-spacing: 0.1em; /*文字間隔を少しだけ広くとる設定*/
    color: #7a7a7a; /*文字色*/
    font-family: "Kiwi Maru", serif; /*GoogleFontsの指定*/
    font-weight: 700; /*文字の太さ*/
    color: #333; /*文字色*/
}

main p.blog {
    font-size: 1.2em;
    text-align: left;
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width:600px) {
    main h2.copy_sub_top {
        margin: 0 0 1em;  /*上、左右、下へのタグの外にとるスペース*/
        line-height: 3;  /*行間を少し狭く*/
        font-size: 1.8em;  /*文字サイズ。3倍。*/
        text-align: center; /*文字をセンタリング*/
        letter-spacing: 0.1em; /*文字間隔を少しだけ広くとる設定*/
        color: #7a7a7a; /*文字色*/
        font-family: "Kiwi Maru", serif;  /*GoogleFontsの指定*/
        font-weight: 700; /*文字の太さ*/
        color: #333; /*文字色*/
    }
}

main h2.copy_sub a {
    text-decoration: none;
}



main p {
    margin: 0 0 1em; /*上、左右、下へのタグの外にとるスペース*/
    line-height: 1.6em;  /*行間を少し狭く*/
    font-size: 1.2em; /*文字サイズ。3倍。*/
    text-align: center; /*文字をセンタリング*/
    letter-spacing: 0em; /*文字間隔を少しだけ広くとる設定*/
    color: #666666; /*文字色*/
    font-family: 'Lato'; /*GoogleFontsの指定*/
    font-weight: 400; /*文字の太さ*/
}


/*h2内のsupanタグ。小文字部分です。*/
main h2 span {
    display: block;
    font-weight: normal;
    color: #333; /*文字色*/
    font-size: 13px; /*文字サイズ*/
}

main h2 p {
    display: block;
    font-weight: normal;
    color: #777; /*文字色*/
    font-size: 0.8em; /*文字サイズ*/
}

/*mainブロック内のh3タグ*/
main h3 {
    margin: 0 0 1em; /*上、左右、下へのタグの外にとるスペース*/
    color: #ee5e4f; /*文字色*/
}


/*mainブロックのpタグ*/
main p {
    margin: 0 20px 30px; /*上、左右、下へ空けるスペース*/
}

main p + p {
    margin-top: -15px;
}


/*追加の見出しタグ　h2タグ
---------------------------------------------------------------------------*/
main h2.titleset4-parts {
    font-size: 1.3rem; /*文字サイズ。bodyで設定しているfont-sizeに対して1.3倍。*/
    padding: 0.4rem 2rem; /*h2内の余白。上下、左右への順番。*/
    border-radius: 100px; /*角を少しだけ丸くする。適当に大きめサイズであればOK。*/
    background: #fff; /*背景色*/
    color: #ee5e4f; /*文字色*/
}


/*追加の見出しタグ　h3タグ
---------------------------------------------------------------------------*/
main h3.titleset4-parts {
    font-size: 1.2rem; /*文字サイズ。bodyで設定しているfont-sizeに対して1.2倍。*/
    padding: 0.4rem 2rem; /*h2内の余白。上下、左右への順番。*/
    border-radius: 100px; /*角を少しだけ丸くする。適当に大きめサイズであればOK。*/
    border: 1px solid #ccc; /*枠線の幅、線種、色*/
}


/*丈夫のコピー部分の背景
---------------------------------------------------------------------------*/
/*.topcopy{
    background-image: url(../images/back_l.jpg),url(../images/back_r.jpg);
    background-size: 25%,30%;
    background-repeat:no-repeat,no-repeat;
    background-position:0% 30%,100% 30%;
    background-color:rgba(255,255,255,0.5);
    background-blend-mode:saturation;

}*/

.topcopy {
    margin-top: 30px;
    margin-bottom: -50px;
}


/*list-c2-parts（お問い合わせ、オンラインショップ）
---------------------------------------------------------------------------*/
.list-c2-parts > a {
    text-decoration: none;
    display: block;
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width:600px) {

    /*２つのボックスを囲むボックス*/
    .list-c2-parts {
        display: flex; /*横並びにする*/
    }

}

/*追加指定ここまで*/



/*ボックス１個あたり*/
.list-c2-parts .list-parts {
    text-align: center;
    position: relative;
    overflow-y: hidden;
    color: #fff; /*文字色*/
    padding: 5rem 2rem; /*上下、左右へのボックス内の余白*/
    margin: 1rem 0;  /*上下、左右へのマージン*/
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width:600px) {

    .list-c2-parts > * {
        flex: 1;
    }

    .list-c2-parts .list-parts {
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .list-c2-parts > a .list-parts {
        height: 100%;
    }

}

/*追加指定ここまで*/


/*左側ボックスの背景*/
.list-c2-parts .list-parts.image1-parts {
    background: url("../images/top_01event.jpg") no-repeat center center / cover;
}

/*右側ボックスの背景*/
.list-c2-parts .list-parts.image2-parts {
    background: url("../images/top_02project.jpg") no-repeat center center / cover;
}

/*ダンロードの背景*/
.list-c2-parts .list-parts.image3-parts {
    background: url("../images/to_download.jpg") no-repeat center center / cover;
}

/*マウスオン用のアニメーション*/
.list-c2-parts .list-parts::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /*写真に重ねておく半透明の黒い色。0,0,0は黒のことで0.6は色が60%出た状態。*/
    transition: transform 0.3s 0.1s; /*アニメーションの速度（0.3秒）と待機時間（0.1秒）。*/
}

.list-c2-parts .list-parts:hover::before {
    transform: translateY(100%); /*マウスオンで半透明の黒を枠外へ出す。-100%にすると逆に移動します。*/
}

/*h4見出し*/
.list-c2-parts h4 {
    font-weight: 200; /*細字にする*/
    line-height: 1.2; /*行間を狭く*/
}

/*h4見出し内のメインテキスト（main-text-parts）*/
.list-c2-parts h4 .main-text-parts {
    display: block;
    font-size: 3rem; /*文字サイズ。3倍。*/
    padding-top: 1.5rem; /*上に空ける余白*/
    padding-bottom: 3rem; /*下に空ける余白*/
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width:600px) {

    .list-c2-parts h4 .main-text-parts {
        font-size: 4rem;  /*文字サイズ。4倍。*/
    }

}

/*追加指定ここまで*/


/*h4見出し内のサブテキスト（sub-text-parts）*/
.list-c2-parts h4 .sub-text-parts {
    position: relative;
    padding: 0 5rem;  /*上下、左右への余白設定ですが、両サイドのラインの配置にも影響します。お好みで。*/
}

/*h4見出し内のサブテキストの左右のライン*/
.sub-text-parts::before {
    left: 0;
}

.sub-text-parts::after {
    right: 0;
}

.list-c2-parts h4 .sub-text-parts::before,
.list-c2-parts h4 .sub-text-parts::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 2rem;  /*線の長さ*/
    border-top: 1px solid #fff;  /*ラインの幅、線種、色*/
}

/*見出しの下の説明テキスト*/
.list-c2-parts .list-parts .text-parts {
    position: relative;
    z-index: 1;
    font-size: 0.85rem; /*文字サイズ85%*/
}





/*画面幅600px以上の追加指定*/
@media screen and (min-width:600px) {

    /*マウスオン用のアニメーション*/
    .list-c2-parts .list-parts::before {
        background: rgba(0, 0, 0, 0.6); /*写真に重ねておく半透明の黒い色。0,0,0は黒のことで0.6は色が60%出た状態。*/
    }

}


/*list-grid6
---------------------------------------------------------------------------*/
.overview {
    background-color: fff;
}

.list-grid6-parts .list-parts * {
    margin: 0;
    padding: 0;
}

/*ボックス１個あたり*/
.list-grid6-parts .list-parts {
    display: grid;
    grid-template-rows: auto 1fr; /*１つ目（この場合はfigure要素のサイズ）は自動に、２つ目（この場合はtextブロック））を目一杯使う*/
    text-align: center; /*テキストをセンタリング*/
    margin-bottom: 2rem; /*ボックスの下に空けるスペース。2文字分。*/
}

.list-grid6-parts .list-parts h4 {
    font-size: 1.1rem; /*文字サイズを85%に*/
    line-height: 1.5; /*行間を少し狭く*/
}

/*ボックス内のp要素*/
.list-grid6-parts .list-parts p {
    font-size: 1.0rem; /*文字サイズを85%に*/
    line-height: 1.5; /*行間を少し狭く*/
}

/*ボックス内のfigure画像*/
.list-grid6-parts .list-parts figure {
    margin-bottom: 1rem; /*画像の下に空けるスペース。1文字分。*/
    border-radius: 50%; /*角を丸くする指定。正方形が土台なら正円になります。*/
    overflow: hidden;
}

.list-grid6-parts .list-parts figure img {
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.05); /*ボックスの影。右へ、下へ、ぼかし幅、最後は色の指定で0,0,0は黒の事で、0.05は色が5%出た状態。*/
}

/*ボックス内のfigure画像（※アスペクト比を1:1にした場合）*/
.list-grid6-parts.square .list-parts figure {
    width: 100%;
    aspect-ratio: 1 / 1; /*幅に対して高さを同じにする*/
}

.list-grid6-parts.square .list-parts figure img {
    width: 100%;
    height: 100%;
    object-fit: cover; /*コンテナいっぱいにカバー、余分な部分はカット*/
    object-position: center; /*中央部分を表示*/
}

/*画面幅500px以上の追加指定*/
@media screen and (min-width:600px) {

    /*ブロック全体を囲むブロック*/
    .list-grid6-parts {
        display: grid;
        grid-template-columns: repeat(1, 1fr);  /*2列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
        gap: 3rem;  /*ブロックの間に空けるマージン的な指定。３文字分。*/
        margin: 0 50px;
    }

}

/*追加指定ここまで*/


/*画面幅800px以上の追加指定*/
@media screen and (min-width:800px) {

    /*ブロック全体を囲むブロック*/
    .list-grid6-parts {
        grid-template-columns: repeat(3, 1fr);  /*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
    }

}

/*追加指定ここまで*/


/*テーブルスマホ
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
@media screen and (max-width:600px) {
    .ta3-parts caption {
        font-weight: bold;  /*太字に*/
        padding: 0.2rem 1rem;  /*ボックス内の余白*/
        border-radius: 5px;  /*角を丸くする指定*/
        background: #555; /*背景色*/
        color: #fff;  /*文字色*/
        margin-bottom: 10px;
    }

    /*テーブルブロック設定*/
    .ta3-parts {
        border-collapse: collapse;
        font-size: 1.2em;
        border-spacing: 0 1rem;  /*ここと、この下の数字は揃えておきます。要素間の隙間みたいなものです。*/
        table-layout: fixed;
        width: 100%;
        margin-bottom: 2rem;  /*テーブルの下に空けるスペース。２文字分。*/
    }

    /*th（左側）、td（右側）の共通設定*/
    .ta3-parts th,
    .ta3-parts td {
        display: block;  /* セルをブロック要素に指定 */
        width: 100%; /* セルを親要素いっぱいの幅に指定 */
        padding: 0.6rem; /*ボックス内の余白*/
        word-break: break-all;  /*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
    }

    /*th（左側）のみの設定*/
    .ta3-parts th {
        background: #eee; /*背景色*/
        border-radius: 4px; /*角を丸くする指定*/
    }

    .ta3-parts td p {
        font-size: 75%;
        margin-left: -3px;
        text-align: left;
    }

}

/*テーブルPC
---------------------------------------------------------------------------*/
@media screen and (min-width:600px) {
    .ta3-parts caption {
        font-weight: bold;  /*太字に*/
        padding: 0.2rem 1rem;  /*ボックス内の余白*/
        border-radius: 5px;  /*角を丸くする指定*/
        background: #555;  /*背景色*/
        color: #fff; /*文字色*/
    }


    /*テーブルブロック設定*/
    .ta3-parts {
        border-collapse: separate;
        border-spacing: 0 1rem; /*ここと、この下の数字は揃えておきます。要素間の隙間みたいなものです。*/
        table-layout: fixed;
        width: 100%;
        margin-bottom: 0.1rem; /*テーブルの下に空けるスペース。２文字分。*/
    }


    /*th（左側）、td（右側）の共通設定*/
    .ta3-parts th,
    .ta3-parts td {
        padding: 0.8rem; /*ボックス内の余白*/
        word-break: break-all; /*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
    }

    .ta3-parts td {
        padding: 0.8rem; /*ボックス内の余白*/
        word-break: break-all; /*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
        font-size: 1.2em;
    }

    .ta3-parts td p {
        font-size: 75%;
        margin-left: -3px;
        text-align: left;
    }

    /*th（左側）のみの設定*/
    .ta3-parts th {
        width: 20%;  /*幅*/
        background: #eee; /*背景色*/
        border-radius: 4px; /*角を丸くする指定*/
    }
}

}

/*追加指定ここまで*/




/*フッター
---------------------------------------------------------------------------*/
#footer1-parts * {
    margin: 0;
    padding: 0;
}

#footer1-parts ul {
    list-style: none;
}

/*ブロック全体*/
#footer1-parts {
    background: #eee; /*背景色*/
    padding: 30px;
    color: #555; /*文字色*/ /*padding: var(--content-space);	フッター内の余白。css冒頭のcontent-spaceを読み込みます。*/
    display: flex;
    flex-direction: column-reverse; /*フッターメニューがロゴより先に表示されるように。逆（htmlの順番通りの表示）がいいならこの１行を削除。*/
}

/*ロゴやSNSアイコンが入ったブロック*/
#footer1-parts div.footer1-1-parts {
    display: flex;
    flex-direction: column;
    gap: 1rem; /*このブロック内のボックス同士の間に空ける余白。１文字分。*/
}

#footer1-parts div.footer1-1-parts a {
    text-decoration: none;
}

#footer1-parts div.footer1-1-parts a:hover {
    color: #FFD100;
}

.big {
    font-size: 120%;
}

/*メニューブロック*/
#footer1-parts div.footer1-2-parts {

    flex: 1;
    font-size: 0.85rem;  /*文字サイズを85%に*/
    display: flex;
    gap: 1rem;  /*メニューブロック同士の間の余白。2文字分。*/
    margin-left: -30px;
    margin-bottom: 1rem;  /*メニューブロックの下に１文字分の余白を空ける。*/
}

#footer1-parts div.footer1-2-parts a {
    text-decoration: none;
}

#footer1-parts div.footer1-2-parts a:hover {
    color: #FFD100;
}


/*画面700px以上の追加指定*/
@media screen and (min-width:700px) {

    #footer1-parts {
        flex-direction: row;  /*表示順をデフォルトにする*/
        gap: 2rem;  /*ロゴのブロックとメニューのブロックとの間の余白。2文字分。*/
    }

    /*ロゴやSNSアイコンが入ったブロック*/
    #footer1-parts div.footer1-1-parts {
        text-align: left;
        width: 40%;   /*幅。40%。*/
    }

    /*メニューブロック*/
    #footer1-parts div.footer1-2-parts {
        justify-content: flex-end;  /*ブロックを右に寄せる。この行を削除すれば、左によります。*/
        margin-bottom: 0; /*下の余白をなくす*/
        margin-right: 5px;
    }

    #footer1-parts div.footer1-2-parts a {
        text-decoration: none;
    }

    #footer1-parts div.footer1-2-parts a:hover {
        color: #FFD100;
    }

}

/*追加指定ここまで*/


/*Copyright部分*/
#footer1-parts small {
    display: block;
}


/*SNSアイコン
---------------------------------------------------------------------------*/
.sns1-parts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;  /*アイコン同士のマージン的な要素。１文字分。*/
}

.sns1-parts i {
    font-size: 30px; /*アイコンサイズ*/
}


/*お知らせブロック
---------------------------------------------------------------------------*/
.news4-parts {
    margin-left: 1rem; /*左に１文字分のスペース*/
    margin-right: 1rem; /*右に１文字分のスペース*/
    background: rgba(255, 255, 255, 1.02); /*背景色。0,0,0は黒のことで0.02は色が2%出た状態。*/
    border-radius: 10px; /*角を丸くする指定。お好みで。*/
    overflow: hidden;
}

/*奇数行目を背景色を少し濃くする。全体同じ色がよければここの数行は削除。*/
.news4-parts dt:nth-of-type(odd),
.news4-parts dd:nth-of-type(odd) {
    background: rgba(0, 0, 0, 0.05);
}

/*日付(dt)設定*/
.news4-parts dt {
    padding: 1rem 1rem 0; /*dt内の余白。上、左右、下への順番。*/
}

/*記事(dd)設定*/
.news4-parts dd {
    padding: 1rem; /*dd内の余白*/
}

/*ブロック内のspan。日付の横のアイコン的な部分の共通設定*/
.news4-parts dt span {
    display: inline-block;
    text-align: center;
    line-height: 1.8; /*行間（アイコンの高さ）*/
    border-radius: 2px; /*角を丸くする指定*/
    padding: 0 1rem; /*上下、左右へのブロック内の余白*/
    width: 8rem; /*幅。６文字分。*/
    transform: scale(0.8); /*80%のサイズに縮小*/
    background: #fff; /*背景色*/
    color: #777; /*文字色*/
    border: 1px solid #777;
}

/*icon-bg1-parts。サンプルでは「重要」と書いてあるマーク*/
.news4-parts .icon-bg1-parts {
    border-color: transparent; /*上の枠線の色を引き継ぎたくないので透明にし、ここの背景色をそのまま出す。*/
    background: #cd0000; /*背景色*/
    color: #fff; /*文字色*/
}

/*icon-bg2-parts。サンプルでは「サービス」と書いてあるマーク*/
.news4-parts .icon-bg2-parts {
    border-color: transparent; /*上の枠線の色を引き継ぎたくないので透明にし、ここの背景色をそのまま出す。*/
    background: #006acd; /*背景色*/
    color: #fff; /*文字色*/
}

/*画面幅700px以上の追加指定*/
@media screen and (min-width:700px) {

    /*ブロック全体*/
    .news4-parts {
        display: grid;
        grid-template-columns: auto 1fr; /*横並びの指定。日付とアイコン部分の幅は自動で、内容が入るブロックは残り幅一杯とる。*/
    }

    /*日付(dt)設定*/
    .news4-parts dt {
        padding: 1rem 0 1rem 2rem; /*dt内の余白。上、右、下、左への順番。*/
    }

    /*記事(dd)設定*/
    .news4-parts dd {
        padding: 1rem 2rem 1rem 0;  /*dd内の余白。上、右、下、左への順番。*/
    }

    /*リンク*/
    .news4-parts a {
        text-decoration: none;
    }


    .news4-parts a:hover {
        color: #ff9900;
    }




}

/*追加指定ここまで*/


/*listブロック
---------------------------------------------------------------------------*/
.list-container .list {
    margin-bottom: 30px;  /*ボックス同士の上下間に空けるスペース*/
    padding: 20px;  /*ボックス内の余白*/
    background: #fff;  /*背景色*/
    color: #999; /*文字色*/
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1); /*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
    position: relative;
}

/*ボックス内のh4タグ*/
.list-container .list h4 {
    margin: 0;
    color: #666; /*文字色*/
}

.list-container .list h4 a {
    color: #666; /*リンクテキストの文字色*/
}

/*ボックス内のpタグ*/
.list-container .list p {
    margin: 0;
    font-size: 0.8em; /*文字サイズを80%に*/
}

/*list内のNEWマーク*/
.list-container .list .new {
    font-size: 0.6em; /*文字サイズ*/
    background: #ff0000; /*背景色*/
    color: #fff;  /*文字色*/
    width: 50px; /*幅*/
    line-height: 50px;  /*高さ*/
    border-radius: 50%;  /*角丸のサイズ。円形になります。*/
    text-align: center; /*テキストをセンタリング*/
    position: absolute;
    left: -10px; /*listブロックに対して左からの配置場所の指定*/
    top: -10px; /*listブロックに対して上からの配置場所の指定*/
    transform: rotate(-30deg); /*回転。まっすぐ表示させたいならこの１行を削除。*/
}


/*求人一覧ページ（ist2　横長ブロックタイプ）
---------------------------------------------------------------------------*/
/*list2ボックス。１個あたりのボックスの指定です。*/
.list2 {
    display: flex;  /*flexボックスを使う指定*/
    border-bottom: 1px solid #ccc; /*下線の幅、線種、色*/
    padding: 25px 0; /*上下、左右へのボックス内の余白*/
}

.list2 div {
    flex: 1;
}

/*１つ目のボックスにのみ上に線を入れる*/
.list2:nth-of-type(1) {
    border-top: 1px solid #ccc; /*上の線の幅、線種、色*/
}

/*ボックス内のfigure画像*/
.list2 figure {
    width: 20%; /*画像の幅*/
    margin-right: 20px; /*画像の右側に空けるスペース*/
}

/*ボックス内のh4タグ*/
.list2 h4 {
    margin: 0; /*デフォルトマージンを一旦リセット*/
    margin-bottom: 10px;  /*下に少し余白を作る*/
    color: #ee5e4f; /*文字色*/
}

.list2 h4 a {
    color: #ee5e4f; /*リンクテキストの文字色*/
}

.list2 h4 a:hover {
    color: #333; /*マウスオン時の文字色*/
}

/*ボックス内のpタグ*/
.list2 p {
    margin: 0;
    font-size: 0.7em; /*文字サイズを70%に。*/
}


/*求人一覧ページのlistボックス内の情報詳細欄（tableっぽく見える所）
---------------------------------------------------------------------------*/
/*ボックス全体*/
dl.line {
    margin: 0;
    display: flex; /*flexボックスを使う指定*/
    flex-wrap: wrap; /*折り返す指定*/
    font-size: 0.7em; /*文字サイズを70%に。*/
    border-top: 1px solid #ccc; /*上の線の幅、線種、色*/
}

/*左右のボックス*/
dl.line dt,
dl.line dd {
    border-bottom: 1px solid #ccc; /*下線の幅、線種、色*/
    padding: 0 5px; /*上下、左右へのボックス内の余白*/
}


/*左のボックス*/
dl.line dt {
    width: 8em; /*幅。8文字(em)分。*/
    background: #f0f0f0; /*背景色*/
}

/*右のボックス*/
dl.line dd {
    width: calc(100% - 8em); /*「8em」は上の「dl.line dt」のwidthの値です。*/
}

/*list2ブロック内でのline設定*/
.list2 dl.line dt:nth-of-type(1),
.list2 dl.line dd:nth-of-type(1),
.list2 dl.line dt:nth-of-type(2),
.list2 dl.line dd:nth-of-type(2) {
    border-top: none;
}


/*サムネイルスライドショー
---------------------------------------------------------------------------*/
/*画像１枚あたりの設定*/
.list-slide .list {
    margin: 10px; /*画像の外側に空けるスペース*/
}


/*FAQ
---------------------------------------------------------------------------*/
/*FAQボックス全体*/
.faq {
    padding: 0 5px; /*上下、左右へのボックス内の余白*/
}

/*質問*/
.faq dt {
    border-radius: 3px;  /*枠を角丸にする指定*/
    margin-bottom: 20px; /*下に空けるスペース*/
    background: linear-gradient(#fff, #f7f7f7); /*背景グラデーション*/
    text-indent: -2em;  /*テキストのインデント。質問が複数行になった際に、テキストの冒頭を揃える為に設定しています。*/
    padding: 5px 1em 5px 3em; /*ボックス内の余白。ここを変更する場合、上のtext-indentも調整します。*/
    border: 1px solid #e4e2d7; /*枠線の幅、線種、色*/
}

/*アイコン（Font Awesome）*/
.faq dt::before {
    font-family: "Font Awesome 5 Free";  /*Font Awesomeを使う指定*/
    font-size: 1.7em;
    content: "\f059";  /*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
    color: #ff0000;  /*アイコンの色*/
    font-weight: bold;
    padding-right: 1em;  /*アイコンとテキストの間の余白*/
}

/*回答*/
.faq dd {
    padding: 5px 1em 30px 3em;  /*ボックス内の余白**/
}

/*opencloseを適用した要素のカーソル*/
.openclose {
    cursor: pointer; /*カーソルの形状。リンクと同じスタイルにしてクリックできると認識してもらう。*/
}

.faq dt span {
    text-indent: 0;
}


/*icon
---------------------------------------------------------------------------*/
.icon {
    display: inline-block;
    margin: 1px;
    line-height: 1.5;
    padding: 0px 10px;
    border: 1px solid #999;
    color: #999;
    font-weight: normal;
    font-size: 0.8em;
}

.icon.newicon {
    border-color: transparent;
    background: #f00;
    color: #fff;
}

.icon.upicon {
    border-color: transparent;
    background: #54b1ff;
    color: #fff;
}

/*btnの設定
---------------------------------------------------------------------------*/
a.btn1,
a.btn2 {
    display: inline-block;
    text-decoration: none;
    letter-spacing: 0.1em;
    border-radius: 3px;
    padding: 20px 40px;
    font-size: 1.2em;
    margin-top: 30px;
    margin-bottom: -50px;
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);
}

a.btn1 {
    background: #ffce2b;
    color: #444;
}

a.btn2 {
    background: #ee5e4f;
    color: #fff;
}

.radius {
    border-radius: 100px !important;
}

a.btn1 i,
a.btn2 i {
    margin-left: 20px;
}

a:hover.btn1,
a:hover.btn2 {
    transform: scale(1.03);
    filter: brightness(1.1);
}


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
    font-weight: bold;  /*太字に*/
    padding: 10px 5px; /*上下、左右へのボックス内の余白。基本的に数行下の「.ta1 th, .ta1 td」のpaddingと揃えておけばOKです。*/
    background: #eee; /*背景色*/
    margin-bottom: 15px; /*下に空けるスペース*/
}

/*ta1テーブルブロック設定*/
.ta1 {
    border-top: 1px solid #ccc; /*テーブルの一番上の線。幅、線種、色*/
    width: 100%;
    margin: 0 auto 30px; /*最後の「30px」がテーブルの下に空けるスペースです*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
    border-bottom: 1px solid #ccc; /*テーブルの下線。幅、線種、色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th,
.ta1 td {
    padding: 10px 5px; /*上下、左右へのボックス内の余白*。基本的に数行上の「.ta1 caption」のpaddingと揃えておけばOKです。*/
    word-break: break-all; /*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
    width: 30%; /*幅*/
    text-align: left; /*左よせにする*/
}


/*背景色パターン
---------------------------------------------------------------------------*/
.bg1 {
    background: #eee;
}

.bg2 {
    background: #fde0dd;
}

.bg3 {
    background: #FFD100;
}

.bg3 h2 {
    color: #555;
}

.bg4 {
    background: #FFD100;
}

.bg4 p {
    text-align: left;
    font-size: 1.0em;
}

.bg5 {
    background: #e4e4e2;
}

.bg5 p {
    text-align: left;
    font-size: 1.0em;
}

.bg6 {
    background: #fbfbd2;
}

.bg6 p {
    text-align: left;
    font-size: 1.2em;
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {
    display: block;
}

/*ボタンの設定*/
.pagetop a {
    display: block;
    text-decoration: none;
    text-align: center;
    z-index: 99;
    position: fixed;  /*スクロールに追従しない(固定で表示)為の設定*/
    right: 20px; /*右からの配置場所指定*/
    bottom: 20px; /*下からの配置場所指定*/
    color: #fff;  /*文字色*/
    font-size: 1.5em;  /*文字サイズ*/
    background: rgba(0, 0, 0, 0.2); /*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
    width: 60px; /*幅*/
    line-height: 60px; /*高さ*/
    border-radius: 50%; /*円形にする*/
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.color-theme,
.color-theme a {
    color: #ee5e4f !important;
}

.color-check,
.color-check a {
    color: #f00 !important;
}

.c {
    text-align: center !important;
}

.ws {
    width: 95%;
    display: block;
}

.wl {
    width: 95%;
    display: block;
}

.mb30 {
    margin-bottom: 30px !important;
}

.mb40 {
    margin-bottom: 30px !important;
}

.mt30 {
    margin-top: 30px !important;
}

.look {
    display: inline-block;
    padding: 0px 10px;
    background: #eee;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin: 2px 0;
    word-break: break-all;
}

.small {
    font-size: 0.6em;
    letter-spacing: normal !important;
}

.large {
    font-size: 1.8em !important;
}

.block {
    display: block !important;
}

.sh {
    display: block;
}

.pc {
    display: none;
}

.hidden {
    position: absolute;
    top: -9999px;
    left: -9999px;
}



/*---------------------------------------------------------------------------
ここから下は画面幅400px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width:400px) {


    /*btnの設定
---------------------------------------------------------------------------*/
    a.btn1,
    a.btn2 {
        padding: 0px 15px;
    }

    a.btn1 i,
    a.btn2 i {
        margin-left: 10px;
    }


    /*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}



/*---------------------------------------------------------------------------
ここから下は画面幅900px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:900px) {


    /*全体の設定
---------------------------------------------------------------------------*/
    html,
    body {
        font-size: 15px;  /*基準となるフォントサイズの上書き*/
    }


    /*2カラムブロック
---------------------------------------------------------------------------*/
    /*２カラムを囲むブロック*/
    .c2 {
        flex-direction: row; /*子要素を横並びにする*/
        justify-content: space-between;  /*並びかたの種類の指定*/
        align-items: center; /*垂直揃えの指定。天地中央に配置されるように。*/

        margin-left: -6%;
        margin-right: -6%;
    }

    /*画像ブロック*/
    .c2 .image {
        width: 60%;
    }

    /*テキストブロック*/
    .c2 .text {
        width: 40%;
        padding: 0 3%;
    }

    /*最初(左)に配置*/
    .c2 .l {
        order: -1;
    }

    .c2 p {
        text-align: left;
    }


    /*画像を右側に配置する場合の設定*/
    .c2 .image.r {
        overflow: hidden; /*margin-right: -6%;	画像を画面枠ギリギリまで移動する*/
        border-radius: 100px 0px 0px 100px; /*角を丸くする指定。左上、右上、右下、左下への順番。*/
    }

    /*画像を左側に配置する場合の設定*/
    .c2 .image.l {
        overflow: hidden; /*margin-left: -6%;	画像を画面枠ギリギリまで移動する*/
        border-radius: 0px 100px 100px 0px; /*角を丸くする指定。左上、右上、右下、左下への順番。*/
    }


    /*トップページのメイン画像
---------------------------------------------------------------------------*/
    /*テキストブロック*/
    #mainimg #text {
        text-align: center;
        width: 100%; /*幅*/
    }


    /*menubarブロック設定
---------------------------------------------------------------------------*/
    /*メニューブロックの設定*/
    #menubar {
        font-size: 0.78em; /*文字サイズを少し小さくする*/
        font-weight: bold;
        color: #333;

    }

    #menubar ul {
        display: flex; /*flexボックスを使う指定*/
    }

    /*メニュー１個あたりの設定*/
    #menubar a {
        padding: 10px 5px;  /*上下、左右への余白*/
        font-family: "M PLUS Rounded 1c", sans-serif;
        font-weight: 400;
        font-style: normal;
    }



    /*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
    /*ハンバーガーメニューを非表示にする*/
    #menubar_hdr {
        display: none;
    }


    /*「お知らせ」ブロック
---------------------------------------------------------------------------*/
    /*日付(dt)設定*/
    #new dt {
        width: 14em;  /*幅。14文字(em)分。*/
        display: flex; /*flexボックスを使う指定*/
        justify-content: space-between; /*日付とアイコンをそれぞれ端に寄せる*/
    }

    /*日付の横のマーク（共通設定）*/
    #new dt span {
        display: inline-block; /*表示させる*/
        width: 6em; /*幅。6文字(em)分。*/
        background: #999; /*背景色*/
        color: #fff;  /*文字色*/
        font-size: 0.8em;  /*文字サイズを80%に。*/
        text-align: center;  /*文字をセンタリング*/
        margin-right: 1em;  /*アイコンの右側に空けるスペース*/
        align-self: flex-start; /*高さを間延びさせない指定*/
        line-height: 1.8;  /*行間を少し狭く*/
        position: relative;
        top: 0.4em; /*上下の配置バランスの微調整*/
    }

    /*bg1設定。サンプルテンプレートでは「サービス」と書いてあるマーク*/
    #new dt span.icon-bg1 {
        background: #ee5e4f; /*背景色*/
    }

    /*記事(dd)設定*/
    #new dd {
        width: calc(100% - 14em); /*「14em」は上の「#new dt」のwidthの値です。*/
    }


    /*フッターメニュー設定
---------------------------------------------------------------------------*/
    /*ボックス全体の設定*/
    #footermenu {
        font-size: 0.8em; /*文字サイズ*/
        padding: 20px 50px; /*上下、左右へのボックス内の余白*/
    }


    /*listブロック
---------------------------------------------------------------------------*/
    /*listブロック全体を囲むブロック*/
    .list-container {
        display: flex; /*flexボックスを使う指定*/
        flex-wrap: wrap; /*折り返す指定*/
    }

    /*１個あたりのボックス設定*/
    .list-container .list {
        display: flex; /*flexボックスを使う指定*/
        justify-content: space-between; /*並びかたの種類の指定*/
        flex-direction: column;  /*子要素を縦並びにする*/
        width: 32%; /*幅。３列になります。*/
        margin-right: 2%;
    }

    .list-container .list:nth-of-type(3n) {
        margin-right: 0;
    }

    /*ボックス内のtextブロック*/
    .list-container .list .text {
        flex: 1;
    }


    /*求人一覧ページ（ist2　横長ブロックタイプ）
---------------------------------------------------------------------------*/
    /*list2ボックス。１個あたりのボックスの指定です。*/
    .list2 {
        padding-left: 10px; /*ボックス内の左側にだけ余白を作る*/
    }


    /*求人一覧ページのlistボックス内の情報詳細欄（tableっぽく見える所）
---------------------------------------------------------------------------*/
    /*list2ブロック内でのline設定*/
    .list2 dl.line dd {
        width: calc(50% - 8em - 10px);  /*大きな端末向けの再設定。２列にしたいので、100%でなく半分の50%から引いています。*/
        margin-right: 10px; /*２列になった際の間のスペース*/
    }

    .list2 dl.line {
        border-top: none;
    }

    .list2 dl.line dt:nth-of-type(1),
    .list2 dl.line dd:nth-of-type(1),
    .list2 dl.line dt:nth-of-type(2),
    .list2 dl.line dd:nth-of-type(2) {
        border-top: 1px solid #ccc;
    }


    /*テーブル
---------------------------------------------------------------------------*/
    /*テーブル１行目に入った見出し部分（※caption）*/
    .ta1 caption {
        padding: 5px 15px;  /*上下、左右へのボックス内の余白*/
    }

    /*th（左側）、td（右側）の共通設定*/
    .ta1 th,
    .ta1 td {
        padding: 20px 15px;  /*上下、左右へのボックス内の余白*/
    }

    /*th（左側）のみの設定*/
    .ta1 th {
        width: 20%;  /*幅*/
    }


    /*その他
---------------------------------------------------------------------------*/
    .ws {
        width: 48%;
        display: inline;
    }

    .sh {
        display: none;
    }

    .pc {
        display: inline-block;
    }


    /*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}

/*btn-animation1 アニメーションボタン（枠線をぐるっとなぞるアニメーション）
---------------------------------------------------------------------------*/
@keyframes w {
    0% {
        width: 0px;
    }

    100% {
        width: 100%;
    }
}

@keyframes h {
    0% {
        height: 0px;
    }

    100% {
        height: 100%;
    }
}

/*ボタンの一番の外側のボックス*/
.btn-animation1-parts {
    background-color: #fff;
    position: relative; /*枠線をアニメーションさせる為に必要な指定*/
    display: inline-block;
    box-shadow: 0px 0px 0px 1px #ccc inset;  /*デフォルトで見えている枠線の設定*/
}

/*上のbtn-animation1の内側にあるボックス*/
.btn-animation1-inner-parts {
    display: block;
    text-decoration: none;
    padding: 0.5em 3em;  /*ボタン内の余白。上下、左右へ。emは文字の単位。1emが1文字分という事です。*/
    letter-spacing: 0.1em; /*文字間隔を少しだけ広くとる*/
    text-indent: 0.1em; /*letter-spacingを設定するとその分全体のテキスト位置がずれるので、戻す設定。同じ数字にしておけばOKです。*/
}

/*ボタン内でiタグを使う場合の設定*/
.btn-animation1-inner-parts i {
    display: inline-block;
    transition: 0.3s; /*アニメーションにかける時間。0.3秒。*/
    padding-left: 1em; /*テキストと、iタグの間の余白*/
}

.btn-animation1-inner-parts:hover i {
    transform: translateX(5px); /*マウスオン時にiタグを5pxだけ右に移動する*/
}

/*枠線共通*/
.btn-animation1-parts::before,
.btn-animation1-parts::after,
.btn-animation1-inner-parts::before,
.btn-animation1-inner-parts::after {
    content: "";
    position: absolute;
    background-color: #666; /*background(背景)スタイルですが、hover時の枠線の色になります。*/
    animation-duration: 0.2s; /*アニメーションにかける時間。１辺あたり0.2秒。*/
    animation-fill-mode: forwards; /*アニメーション完了時に最後のフレームを維持。この１行を外してみると別の動作になって面白い動きになります。*/
    animation-timing-function: linear; /*アニメーションの速度のタイプ。同じ速度にする。*/
}

/*ラインアニメーション１（左上→右上）*/
.btn-animation1-parts:hover::before {
    left: 0px; /*開始地点の指示*/
    top: 0px; /*開始地点の指示*/
    height: 1px; /*線の幅の代わりになります*/
    animation-name: w; /*上の「@keyframes」で使うアニメーション名の指定。*/
}

/*ラインアニメーション２（右上→右下）*/
.btn-animation1-parts:hover::after {
    right: 0px; /*開始地点の指示*/
    top: 0px; /*開始地点の指示*/
    width: 1px; /*線の幅の代わりになります*/
    animation-name: h; /*上の「@keyframes」で使うアニメーション名の指定。*/
    animation-delay: 0.2s; /*アニメーションを0.2秒遅れてスタートさせる。*/
}

/*ラインアニメーション３（右下→左下）*/
.btn-animation1-inner-parts:hover::before {
    right: 0px; /*開始地点の指示*/
    bottom: 0px;  /*開始地点の指示*/
    height: 1px; /*線の幅の代わりになります*/
    animation-name: w; /*上の「@keyframes」で使うアニメーション名の指定。*/
    animation-delay: 0.4s; /*アニメーションを0.4秒遅れてスタートさせる。*/
}

/*ラインアニメーション４（左下→左上）*/
.btn-animation1-inner-parts:hover::after {
    left: 0px; /*開始地点の指示*/
    bottom: 0px;  /*開始地点の指示*/
    width: 1px; /*線の幅の代わりになります*/
    animation-name: h; /*上の「@keyframes」で使うアニメーション名の指定。*/
    animation-delay: 0.6s; /*アニメーションを0.6秒遅れてスタートさせる。*/
}





/*list-grid7 プロジェクトページで使用
---------------------------------------------------------------------------*/
.list-grid7-parts .list-parts * {
    margin: 0;
    padding: 0;
}

/*ブロック全体を囲むブロック*/
.list-grid7-parts {
    padding-top: 20px; /*画像が少し上にずれるので適当に余白を確保*/
}

/*ボックス１個あたり*/
.list-grid7-parts .list-parts {
    display: grid;
    position: relative;
    border-radius: 5px;  /*角を少しだけ丸く*/
    background: #fafafa;  /*背景色*/
    color: #555; /*文字色*/
    border: 1px solid #ccc; /*枠線の幅、線種、色*/
    padding: 2rem; /*ボックス内の余白。２文字分。*/
    margin-bottom: 2rem; /*ボックスの下に空けるスペース。2文字分。*/
}

/*ボックス内のh4見出し*/
.list-grid7-parts .list-parts h4 {
    text-align: center; /*テキストをセンタリング*/
    margin-bottom: 0.5rem; /*下に0.5文字分の余白を空ける*/
}

/*ボックス内のp要素*/
.list-grid7-parts .list-parts p {
    font-size: 0.85rem; /*文字サイズを85%に*/
    line-height: 1.5;  /*行間を少し狭く*/
}

/*ボックス内のfigure画像*/
.list-grid7-parts .list-parts figure {
    margin: 0 auto;
    width: 150px; /*画像サイズ*/
    margin-top: -40px; /*本来の場所より上にずらす*/
    margin-bottom: 2rem; /*画像の下に空けるスペース*/
    border-radius: 50%;  /*円形にする*/
    overflow: hidden;
    background: #fed720; /*背景色。画像に透過部分がある場合に見えます。*/
}

/*ボックス内のfigure画像（※アスペクト比を1:1にした場合）*/
.list-grid7-parts.square .list-parts figure {
    aspect-ratio: 1 / 1;  /*幅に対して高さを同じにする*/
}

.list-grid7-parts.square .list-parts figure img {
    width: 100%;
    height: 100%;
    object-fit: cover; /*コンテナいっぱいにカバー、余分な部分はカット*/
    object-position: center; /*中央部分を表示*/
}

/*画面幅800px以上の追加指定*/
@media screen and (min-width:800px) {

    /*ブロック全体を囲むブロック*/
    .list-grid7-parts {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
        gap: 2rem /*ブロックの間に空けるマージン的な指定。２文字分。*/
    }

    /*ボックス内のfigure画像*/
    .list-grid7-parts .list-parts figure {
        width: 180px;  /*画像サイズ*/
        margin-top: -50px; /*本来の場所より上にずらす*/
    }

}

/*追加指定ここまで*/


/*list-grid8-parts　イベントページ参加方法
---------------------------------------------------------------------------*/
.list-grid8-parts .list-parts * {
    margin: 0;
    padding: 0;
}

/*ブロック全体を囲むブロック*/
.list-grid8-parts {
    display: grid;
}

/*画面幅500px以上の追加指定*/
@media screen and (min-width:500px) {

    /*ブロック全体を囲むブロック*/
    .list-grid8-parts {
        grid-template-columns: repeat(2, 1fr); /*2列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
        gap: 1rem; /*ブロックの間に空けるマージン的な指定*/
    }

}

/*追加指定ここまで*/


/*画面幅800px以上の追加指定*/
@media screen and (min-width:800px) {

    /*ブロック全体を囲むブロック*/
    .list-grid8-parts {
        grid-template-columns: repeat(3, 1fr); /*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
        gap: 1rem; /*ブロックの間に空けるマージン的な指定*/
    }

}

/*追加指定ここまで*/


/*ボックス１個あたり*/
.list-grid8-parts .list-parts {
    display: grid;
    position: relative;
    padding: 1rem; /*ボックス内の余白*/
    background: #fffbea; /*背景色*/
    color: #333333; /*文字色*/
    grid-template-rows: auto 1fr; /*１つ目（この場合はfigure要素のサイズ）は自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
    border-radius: 20px; /*角を少しだけ丸くする指定*/
    overflow: hidden;
    margin-bottom: 10px;
}

/*ボックス内のfigure画像*/
.list-grid8-parts .list-parts figure {
    margin: -1rem -1rem 0.5rem; /*上、左右、下への指定。上、左右についてはボックスのpaddingと相殺させて枠一杯に画像が出るようにしています。*/
}

/*ボックス内のh4要素*/
.list-grid8-parts .list-parts h4 {
    text-align: center;
    line-height: 1.6em;
    margin-bottom: 10px;
}

/*ボックス内のp要素*/
.list-grid8-parts .list-parts p {
    text-align: left;
    font-size: 0.9rem; /*文字サイズを85%に*/
    color: #333333; /*文字色*/
    line-height: 1.5; /*行間を少し狭く*/
}


/*ボタン
---------------------------------------------------------------------------*/
.list-grid8-parts .btn-parts a {
    display: block;
    text-decoration: none;
    font-size: 1rem;
    text-align: center; /*テキストをセンタリング*/
    background: #ff9900;  /*背景色*/
    color: #fff; /*文字色*/
    padding: 5px 10px; /*ボタン内の余白*/
    margin-top: 1rem; /*ボタンの上に空けるスペース*/
}


/*アイコン
---------------------------------------------------------------------------*/
/*共通*/
.list-grid8-parts .icon-bg1-parts,
.list-grid8-parts .icon-bg2-parts {
    overflow: hidden;
    position: absolute;
    left: 0px; /*左からの配置場所*/
    top: 0px; /*上からの配置場所*/
    font-size: 0.7rem; /*文字サイズ。70%*/
    width: 10rem; /*幅。10文字分*/
    padding-top: 2rem; /*テキストの上にとる余白。2文字分。*/
    text-align: center; /*テキストをセンタリング*/
    transform: rotate(-45deg) translate(-2.4rem, -3rem); /*反時計回りに45度回転、X軸に-2.4文字分、Y軸に-3文字分移動。*/
}

/*icon-bg1-parts（サンプルだと「NEW」）*/
.list-grid8-parts .icon-bg1-parts {
    background: #ff3535; /*背景色*/
    color: #fff; /*文字色*/
}

/*icon-bg2-parts（サンプルだと「UP」）*/
.list-grid8-parts .icon-bg2-parts {
    background: #358bff; /*背景色*/
    color: #fff; /*文字色*/
}



/*トップページ下部の主催などの三列部分　list-grid1-parts
---------------------------------------------------------------------------*/
.list-grid1-parts .list-parts * {
    margin: 0;
    padding: 0;
}

/*ブロック全体を囲むブロック*/
.list-grid1-parts {
    display: grid;
}

/*ボックス１個あたり*/
.list-grid1-parts .list-parts {
    display: grid;
    position: relative;
    margin: 25px 10px;
}

/*ボックス内のh4要素*/
.list-grid1-parts .list-parts h4 {
    font-size: 1rem; /*文字サイズを85%に*/
    text-align: center;
    margin-top: 20px;
    line-height: 1.5; /*行間を少し狭く*/
}


/*ボックス内のp要素*/
.list-grid1-parts .list-parts p {
    font-size: 0.85rem; /*文字サイズを85%に*/
    line-height: 1.5; /*行間を少し狭く*/
}

/*画面幅500px以上の追加指定*/
@media screen and (min-width:500px) {

    /*ブロック全体を囲むブロック*/
    .list-grid1-parts {
        grid-template-columns: repeat(2, 1fr);  /*2列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
        gap: 1rem; /*ブロックの間に空けるマージン的な指定*/
    }

}

/*追加指定ここまで*/


/*画面幅800px以上の追加指定*/
@media screen and (min-width:800px) {

    /*ブロック全体を囲むブロック*/
    .list-grid1-parts {
        grid-template-columns: repeat(3, 1fr);  /*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
        gap: 1rem;  /*ブロックの間に空けるマージン的な指定*/
    }

}

/*追加指定ここまで*/


/*ボックス１個あたり*/
.list-grid1-parts .list-parts {
    padding: 1rem; /*ボックス内の余白*/
    background: #fff; /*背景色*/
    color: #555; /*文字色*/
    grid-template-rows: auto 1fr; /*１つ目（この場合はfigure要素のサイズ）は自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); /*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

/*ボックス内のfigure画像*/
.list-grid1-parts .list-parts figure img {
    margin-bottom: 0.5rem;  /*画像の下に空けるスペース*/
}


/*トップページ下部の主催などの三列部分　ボタン
---------------------------------------------------------------------------*/
.list-grid1-parts .btn-parts a {
    display: block;
    text-decoration: none;
    font-size: 1rem;
    text-align: center; /*テキストをセンタリング*/
    background: #555; /*背景色*/
    color: #fff;  /*文字色*/
    padding: 5px 10px; /*ボタン内の余白*/
    margin-top: 1rem; /*ボタンの上に空けるスペース*/
}


/*トップページ下部の主催などの三列部分　アイコン
---------------------------------------------------------------------------*/
/*共通*/
.list-grid1-parts .icon-bg1-parts,
.list-grid1-parts .icon-bg2-parts,
.list-grid1-parts .icon-bg3-parts {
    overflow: hidden;
    position: absolute;
    left: 42%; /*左からの配置場所*/
    top: -15%; /*上からの配置場所*/
    font-size: 0.7rem; /*文字サイズ。70%*/
    width: 4em; /*幅*/
    line-height: 4em; /*高さ*/
    text-align: center; /*テキストをセンタリング*/
    border-radius: 50%; /*円形にする*/
}

/*icon-bg1-parts（サンプルだと「NEW」）*/
.list-grid1-parts .icon-bg1-parts {
    background: #ff3535; /*背景色*/
    color: #fff; /*文字色*/
}

/*icon-bg2-parts（サンプルだと「UP」）*/
.list-grid1-parts .icon-bg2-parts {
    background: #358bff; /*背景色*/
    color: #fff; /*文字色*/
}

/*icon-bg3-parts（サンプルだと「UP」）*/
.list-grid1-parts .icon-bg3-parts {
    background: #33cc00; /*背景色*/
    color: #fff; /*文字色*/
}


/*トップページ下部の主催などの三列部分　アイコン
---------------------------------------------------------------------------*/
.formdesign {
    text-align: center;
}

.formdesign p {
    text-align: left;
}




/*btn2
---------------------------------------------------------------------------*/
a.btn2-parts {
	display: inline-block;text-decoration: none;
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる*/
	border-radius: 3px;		/*角を丸くする指定*/
	padding: 0.3rem 2rem;	/*上下、左右へのボタン内の余白*/
	box-shadow: 1px 2px 3px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、ぼかし幅。0,0,0は黒の事で0.2は色が20%出た状態。*/
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
	background: #999;	/*背景色*/
	color: #fff;		/*文字色*/
}

/*アイコン*/
a.btn2-parts i {
	padding-left: 1em;	/*アイコンとテキストの間の余白*/
}

/*マウスオン時*/
a:hover.btn2-parts {
	transform: scale(1.03);		/*103%に拡大する*/
}


/*ダンロードページリンクのボタン*/
/*btn3-parts
---------------------------------------------------------------------------*/
a.btn3-parts {
	text-decoration: none;display: inline-block;
	background: linear-gradient(#ff9727, #ff7827);/*背景グラデーション*/
	color: #fff;	/*文字色*/
	padding: 3rem 3rem;	/*ボタン内の余白。上下、左右へ。*/
	font-size: 1.3rem;	/*文字サイズを130%*/
	border-radius: 5px;	/*角を少しだけ丸くする*/
	box-shadow: 3px 3px 8px rgba(194,79,10,0.3);	/*ボタンの影。右へ、下へ、ぼかす量、194,79,10は暗いオレンジ系のrgb値で0.3は色が30%出た状態*/
}

/*アイコン*/
a.btn3-parts i {
	padding-left: 1em;	/*アイコンとテキストの間の余白*/
}

/*マウスオン時に少しずらす*/
a.btn3-parts:hover,a.btn4-parts:hover {
	box-shadow: none;	/*ボックスの影を消す*/
	position: relative;
	left: 1px;
	top: 1px;
}


/*iOSダンロードページリンクのボタン*/
/*btn3-parts
---------------------------------------------------------------------------*/
a.btn4-parts {
	text-decoration: none;display: inline-block;
	background: linear-gradient(#4694ff, #307ee7);/*背景グラデーション*/
	color: #fff;	/*文字色*/
	padding: 3rem 3rem;	/*ボタン内の余白。上下、左右へ。*/
	font-size: 1.3rem;	/*文字サイズを130%*/
	border-radius: 5px;	/*角を少しだけ丸くする*/
	box-shadow: 3px 3px 8px rgba(194,79,10,0.3);	/*ボタンの影。右へ、下へ、ぼかす量、194,79,10は暗いオレンジ系のrgb値で0.3は色が30%出た状態*/
}

/*アイコン*/
a.btn4-parts i {
	padding-left: 1em;	/*アイコンとテキストの間の余白*/
}

/*マウスオン時に少しずらす*/
a.btn4-parts:hover,a.btn4-parts:hover {
	box-shadow: none;	/*ボックスの影を消す*/
	position: relative;
	left: 1px;
	top: 1px;
}


/*ダウンロードページのメイン画像
---------------------------------------------------------------------------*/

/*全体を囲むブロック*/
#downloadtop {
    width: 100%;
    height: 0;
    padding: 0;
    padding-top: 140%;
    position: relative;
    top: 90px; /*headerのheightの数値と合わせて下さい。*/
    overflow: hidden;
    background: url(../images/downloadtop_sp.jpg) no-repeat center center / 100%; /*背景色、背景画像の読み込み、最後の100%は画像幅。*/
    color: #fff; /*文字色*/
}


/*ダウンロードページ画面幅600px以上の追加指定*/
@media screen and (min-width:600px) {

    #downloadtop {
        padding-top: 140%;
        top: 90px; /*headerのheightの数値と合わせて下さい。*/
        background: url(../images/downloadtop_pc.jpg) no-repeat center center / 100%; /*背景色、背景画像の読み込み、最後の100%は画像幅。*/
    }
}

	
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
    
    
/* 021 */
.button021 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}

.button021 a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(107,182,255, 0.2);
  transition: all 0.3s;
}
.button021 a:hover::before {
  opacity: 0;
  transform: scale(0.4, 0.4);
}
.button021 a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
  border: 2px solid rgb(107,182,255, .4);
  transform: scale(1.2, 1.2);
}
.button021 a:hover::after {
  opacity: 1;
  transform: scale(1, 1);
}
    
    
video {
    width: 100%;
    height: auto;
    display: flex;
  justify-content: center;
}
    
    
    /*---------------------------------------------------------------------------
ここから下は画面幅900px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:900px) {
    video {
    width: 800px;
    height: auto;
    display: flex;
  justify-content: center;
}
  }  