<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* CSS Document */
/*reset*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
button {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    /*font-size: ;*/
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 2;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    /*font-size: 100%;*/
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
    color: #fff;
}

a:hover {
    color: #ccc;
}

a:visited {
    color: #aaa;
}

/* change colours to suit your needs */
ins {
    background-color: ;
    color: #fff;
    text-decoration: none;
}

/* change colours to suit your needs */
mark {
    background-color: ;
    color: #fff;
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.clear {
    clear: both;
}

/*END*/

@use "sass:math";

@function rem($remFz) {
    @return math.div($remFz, 16) * 1rem;
}

html {
    font-size: 62.5%;
}

body {
    -webkit-text-size-adjust: 100%;
    font-family: fot-tsukuardgothic-std, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 2rem;
    color: #fff;
    touch-action: pan-x pan-y;

}

img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

h1 {
    font-size: 1.8rem;
}

h2 {
    margin-bottom: 7%;
    font-size: 2.2rem;
    text-align: center;
}

h3 {
    font-size: 2rem;
    margin-bottom: 7%;
}

.soto {
    position: relative;
}

.naka {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
}

/* overlay */

.overlay::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.OVL_upper {
    position: relative;
    z-index: 2;
}

.vegas-overlay {
    background: url(../img/top/main_overlay.png) center center;
    background-size: cover;
}


/*navigation-------------*/

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: block;
    width: 100%;
    height: 64px;
    background: rgba(0, 0, 0, 0.8);
}

header h1 {
    width: 160px;
    margin: 0 auto;
    float: none;
    text-align: center;
}

header h1 a {
    padding: 12px 0;
    display: block;
    -webkit-transition: all opacity ease 0.4s;
    transition: all opacity ease 0.4s;
}

header h1 img {
    display: block;
}

.table {
    display: table;
    height: 100%;
    width: 100%;
}

.cell {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

#menu-trigger {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 99;
    transition: all all 0.5s ease;
    transform: scale(0.85);
}

#menu-trigger div {
    position: relative;
    display: block;
    height: 3px;
    margin-bottom: 7px;
    width: 40px;
    background: #fff;
    transition: all all 0.5s ease;
    border-radius: 3px;
}

#menu-trigger:hover {
    cursor: pointer;
}

#menu-trigger:hover div:nth-child(odd) {
    width: 35px;
}

#menu-trigger:hover div:nth-child(even) {
    width: 25px;
}

#menu-trigger.clicked div:nth-child(even) {
    opacity: 0;
}

#menu-trigger.clicked div:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
}

#menu-trigger.clicked div:nth-child(3) {
    transform: rotate(-45deg);
    top: -8px;
}

#menu-trigger.clicked:hover {
    transform: scale(0.75);
}

#menu-trigger.clicked:hover div {
    width: 40px !important;
}

.menu {
    position: fixed;
    top: -100vh;
    width: 100%;
    height: 100vh;
    z-index: 98;
    background: #000;

}

nav .menu {
    overflow-y: hidden;
}

nav.open .menu {
    top: 0;
    overflow-y: scroll;
}

.menu-tint {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    z-index: -1;
}

.menu-tint.open {
    opacity: 0.15;
    z-index: 97;
}

.cell {
    padding: 60px 3% 10%;
    vertical-align: top;
}

.cell li {
    padding: 7px 0;
}

.navi,
.navi02 {
    display: none;
}

.nav-open,
.nav-open02 {
    padding: 15px;
    color: #fff;
    position: relative;
}

.nav-open::before,
.nav-open02::before {
    /* 閉じている時 */
    content: "＋";
    position: absolute;
    right: 20px;
}

.nav-open.active::before,
.nav-open02.active::before {
    /* 開いている時 */
    content: "－";
    position: absolute;
    right: 20px;
}

h2.nav-open,
h2.nav-open02 {
    font-size: 1.75rem;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.2);
}

.naviwaku {
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 10px 0;
}

.naviwaku li:not(:last-child) {
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
}

nav.open h1 img {
    width: 160px;
}

/*END-------------*/

/*背景動画設定のCSS-----*/

/*header設定*/
#header {
    position: relative;
    height: 100vh;
}

#video-area {
    position: fixed;
    z-index: -1;
    /*最背面に設定*/
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
}

#video {
    /*天地中央配置*/
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh;
    /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw;
    /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}

/*見出し設定*/
#top_mark {
    /*要素の配置*/
    position: absolute;
    /*要素を天地中央寄せ*/
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    /*見た目の調整*/
    color: #fff;
    text-shadow: 0 0 15px #666;
}

/*レイアウト------------*/

#top_mark img {
    width: 42vw;
    height: 42vw;
}

.wrap {
    padding: 10% 2%;
    position: relative;
}

.Ettl {
    font-size: 4rem;
    font-family: "Calisto MT", Georgia, serif;
    text-align: center;
}

.Bword {
    font-weight: 700;
    margin-bottom: 7%;
}


#top_point {
    background: url(../img/top/point_back_sp.webp) bottom center;
    background-size: cover;
}

body.Android #top_point {
    background-attachment: fixed;
}

.overlay02::after {
    background-image: radial-gradient(rgba(114, 114, 114, 0.2), rgba(0, 0, 0, 0.8));
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    z-index: 1;
}

.blc_box {
    position: relative;
    background: #000;
    padding: 20% 5% 5%;
    margin: 30% 7% 0%;
    text-align: center;
}

.number {
    position: absolute;
    top: -5%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
    font-size: 10rem;
    font-family: "Calisto MT", Georgia, serif;
    color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 1px #fff;
    text-stroke: 1px #fff;
}

#top_office {
    background: #1C1920;
    z-index: 2;
}

#kind_list {
    display: none;
}

.selectbox-001 {
    position: relative;
}

.selectbox-001::before,
.selectbox-001::after {
    position: absolute;
    content: '';
    pointer-events: none;
}

.selectbox-001::before {
    display: inline-block;
    right: 0;
    width: 2.8em;
    height: 2.8em;
    border-radius: 0 3px 3px 0;
    background-color: #000000;
}

.selectbox-001::after {
    position: absolute;
    top: 50%;
    right: 1.4em;
    transform: translate(50%, -50%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
}

.selectbox-001 select {
    appearance: none;
    min-width: 100%;
    height: 2.8em;
    padding: .4em 3.6em .4em .8em;
    border: none;
    border-radius: 3px;
    background-color: #ccc;
    color: #333;
    font-size: 1em;
    cursor: pointer;
}

.selectbox-001 select:focus {
    outline: 2px solid #000000;
}

.zip::before {
    content: "〒";
    padding-right: 10px;
}

.telno::before {
    content: "TEL:";
    padding-right: 10px;
}

.closed::before {
    content: "時間:";
    padding-right: 10px;
}

#office_btn,
.TOL_dtl_btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#office_btn li {
    width: 30%;
    height: 45px;
    line-height: 45px;
    margin: 5% 1.5%;
    border: 1px solid #fff;
    text-align: center;
    position: relative;
}

#office_btn li a,
.TOL_dtl_btn p a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;

}

#office_btn li a:hover,
.TOL_dtl_btn p a:hover,
.TOL_dtl_btn p a:hover i.fa-solid {
    background: #fff;
    color: #000;
    transition: all 0.3s;
}

#top_office_list {
    width: 90%;
    margin: 0 auto;
    padding: 5% 0;
}

.panel&gt;.flex_box&gt;div {
    margin: 0 0 20% 0;
}

.panel&gt;.flex_box&gt;div&gt;a&gt;img {
    opacity: 0.5;
    transition: all 0.3s;
}

.panel&gt;.flex_box&gt;div&gt;a:hover&gt;img {
    opacity: 1;
    transition: all 0.3s;
}

.j_ttl h3 {
    text-align: center;
    line-height: 1.5;
    padding-top: 15px;
    position: unset;
    transform: none;
}

.TOL_dtl_btn p {
    height: 40px;
    line-height: 40px;
    margin: 5% 1.5%;
    border: 1px solid #fff;
    text-align: center;
    position: relative;
    font-family: fot-tsukuardgothic-std, sans-serif, "Calisto MT", Georgia, serif;
}

.TOL_dtl_btn p:nth-child(1) {
    width: 50%;
}

.TOL_dtl_btn p:nth-child(2),
.TOL_dtl_btn p:nth-child(3) {
    width: 20.5%;
}

i.fa-solid {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
    font-style: normal;
}

i.fa-brands {
    font-family: "Font Awesome 5 Brands";
    font-weight: 500;
    color: #fff;
    font-style: normal;
}

i.fa-location-dot::before {
    content: '\f3c5';
}

i.fa-phone::before {
    content: '\f095';
}

i.fa-instagram::before {
    content: '\f16d';
}

i.fa-pen-to-square::before {
    content: '\f044';
    font-size: 3.1rem;
}

footer .flex_box div:nth-child(2) {
    background: url(../img/top/new.png) center 7px no-repeat;
}

#top_blog_ttl {
    background: url(../img/top/blog_back_sp.webp) bottom right #1C1920;
    background-size: cover;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    width: 100%;
}

#top_blog_ttl::before {
    content: "";
    display: block;
    padding-top: 50%;
}

#top_blog_ttl&gt;div:first-of-type {
    position: absolute;
    top: -9vw;
    right: 2vw;
    z-index: 2;
}

.blc_back {
    background: #1C1920;
    padding: 10% 7%;
    position: relative;
}

#top_blog.blc_back {
    height: 80vw;
    padding: 0;
}

.card01 .slide-content {
    padding: 3.2rem 0 1rem !important;
}

#top_blog .card01 {
    position: absolute;
    top: -25vw;
    left: 0;
    width: 100%;
}

#top_blog_bottom.blc_back {
    padding: 5% 7% 10%;
}

.slide-media.img-cover {
    background: #000;
}

a.swiper-slide img {
    opacity: .5;
}

a:hover.swiper-slide img {
    opacity: 1;
}

#top_blog .slide-media&gt;p {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 5px;
    background: #1C1920;
    font-size: 1.5rem;
}

#top_voice_ttl {
    background: url(../img/top/voice_back_sp.webp) bottom right;
    background-size: cover;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    height: 40vw;
}

#top_voice_ttl .naka {
    width: 100%;
}

/*ふきだし*/
#top_voice ul li {
    position: relative;
    border: 1px solid #fff;
    color: #333;
    font-weight: bold;
    margin-bottom: 10%;
    min-height: 25vw;
}

#top_voice ul li:before {
    position: absolute;
    top: 100%;
    left: 50px;
    transform: skew(-25deg);
    height: 15px;
    width: 15px;
    border-right: 1px solid #fff;
    background: #1C1920;
    content: "";
}

#top_voice li a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    padding: 5%;
}

#top_voice li a:hover {
    color: #000;
    background: #fff;

}

/*END*/

/*footer_menu*/

footer {
    background: url(../img/top/footer_back_sp.webp) bottom left;
    background-size: cover;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 170px;
}

footer .flex_box&gt;div&gt;a {
    border: 1px solid #666;
    width: 100%;
    display: block;
    height: 62px;
    line-height: 62px;
}

footer .flex_box a:hover {
    background: #fff;
    color: #000;
    transition: all 0.3s;
}

footer .flex_box a:hover i.fa-solid,
footer .flex_box a:hover i.fa-brands {
    color: #000;
}

/*
footer .flex_box&gt;div:nth-child(3) i {
    display: block;
}

footer .flex_box&gt;div:nth-child(3)&gt;a {
    font-size: 2.5rem;
    line-height: 0.8;
    padding: 5px 0 0 0;
}

footer .flex_box&gt;div:nth-child(3)&gt;a&gt;span {
    font-size: 1.8rem;
}
*/

.footer_btn_nav {
    position: fixed;
    left: 0;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 70px;
    transform: translateY(100%);
    transition: .3s;
    z-index: 3;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.85);
}

.footer_btn_nav div {
    width: 20%;
    height: 70px;
    text-align: center;
    font-size: 3.5rem;
    padding: 3px;
}

.active {
    transform: translate(0);
}

/*recruit_bnr*/
.banner {
    position: fixed;
    /*構造の固定*/
    bottom: 75px;
    /*上に固定*/
    right: 15px;
    /*右に固定*/
    width: 150px;
    /*バナーの横幅*/
    height: 49px;
    /*縦幅*/
    z-index: 2;
}

.banner-relative {
    /*構造の相対化*/
    position: relative;
    width: 100%;
    height: 100%; //.banner にサイズを合わせる。
}

.banner-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    /*横幅を合わせる*/
    height: 100%;
    /*縦幅を合わせる*/
}

.banner-close {
    position: absolute;
    /*画像の固定*/
    top: -15px;
    /*下に固定*/
    right: -12px;
    /*右に固定*/
    background-color: #000;
    /*赤色*/
    font-size: 24px;
    /*大きさ*/
    width: 25px;
    /*横幅*/
    height: 25px;
    text-align: center;
    /*整形*/
    cursor: pointer;
    /*カーソルをポインターに*/
    z-index: 1;
    /*ｘボタンを前面へ*/
    border-radius: 25px;
    line-height: 24px;
}

.banner-close&gt;p {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

/*bnr_END*/

/*END*/

/****
  *  dl-table sp
  ****/

.dl-table {
    /**  &lt;dl class="dl-table"&gt;  **/
    padding: 2% 0 6% 0;
    text-align: center;
    width: 100%;
}

dl.dl-table dt,
dl.dl-table dd {
    padding: .5rem;
    box-sizing: border-box;
    border-top: 1px dotted #666;
}

dl.dl-table dt:last-of-type,
dl.dl-table dd:last-of-type {
    border-bottom: 1px dotted #666;
}

dl.dl-table dd:last-of-type {
    border-top: none;
}

/****
  *  dl-table sp_END
  ****/
#kind_list,
#copy,
.sp_none,
.tab_none {
    display: none;
}


@media (min-width: 768px) {

    h2.nav-open,
    h2.nav-open02 {
        font-size: 2rem;
    }

    .tab_none {
        display: inherit;
    }

    .blc_box {
        padding: 12% 5% 5%;
    }

    .panel&gt;.flex_box {
        display: flex;
        flex-wrap: wrap;
    }

    .panel&gt;.flex_box&gt;div {
        margin: 0 3% 20% 3%;
        width: 44%;
    }

    .j_ttl h3 {
        min-height: 14vw;
    }

    #top_blog.blc_back {
        height: 40vw;
    }

    #top_voice ul li {
        min-height: 19vw;
    }

}

@media (min-width: 1025px) {

    .pc_none {
        display: none;
    }

    .sp_none {
        display: initial;
    }

    #container {
        padding-left: 100px;
        width: 100%;
    }

    .flex_box {
        display: flex;
        flex-wrap: wrap;
    }

    .flex_tbl {
        display: table;
    }

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

    h2 {
        font-size: 2.6rem;
    }

    h3 {
        font-size: 2.4rem;
    }

    p {
        font-size: 2.0rem;
    }

    #top_mark img {
        width: 15vw;
        height: 15vw;
    }

    header {
        display: none;
    }

    #menu-trigger:hover {
        cursor: pointer;
    }


    /*
    #menu-trigger {
        position: fixed;
        left: initial;
        right:33px;
        z-index: 99;
        transition:all all 0.5s ease;
        transform: scale(0.85);
    }
    
    #menu-trigger:hover div:nth-child(odd) {
        width: 35px;
    }
    
    #menu-trigger:hover div:nth-child(even) {
        width: 25px;
    }
    
    #menu-trigger.clicked div:nth-child(even) {
        opacity: 0;
    }
    
    #menu-trigger.clicked div:nth-child(1) {
        transform: rotate(45deg);
        top: 12px;
    }
    
    #menu-trigger.clicked div:nth-child(3) {
        transform: rotate(-45deg);
        top: -8px;
    }
    
    #menu-trigger.clicked:hover {
        transform: scale(0.75);
    }
    
    #menu-trigger.clicked:hover div {
        width: 40px !important;
    }
    */

    h1 {
        font-size: 3.2rem;
    }

    h1 img {
        width: 290px;
    }

    .menu {
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        left: calc(-100% + 100px);
        width: 100%;
        height: 100vh;
        z-index: 98;
        background: #000;
    }

    nav.open .menu {
        left: 0;
    }

    .table {
        padding: 0 0 0 100px;
        width: calc(100% - 100px);
    }

    .cell {
        display: flex;
        flex-wrap: wrap;
        padding: 40px 3% 25px;
    }

    .cell&gt;h1,
    .cell&gt;.hr {
        width: 100%;
    }

    .cell&gt;.hr {
        height: 50px;
    }

    .cell&gt;div:not(:first-of-type) {
        padding: 20px 0 20px 20px;
        text-align: left;
    }

    .cell&gt;div:nth-child(3),
    .cell&gt;div:nth-child(6) {
        width: 18%;
        font-size: 83%;
    }

    .cell&gt;div:nth-child(4),
    .cell&gt;div:nth-child(5) {
        width: 32%;
    }

    .cell&gt;div a::before {
        content: "\f0da";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        color: #fff;
        font-style: normal;
        padding-right: 7px;
    }

    .cell&gt;div&gt;ul {
        padding-left: 30px;
    }

    .cell li {
        text-indent: -15px;
    }

    .navi,
    .navi02 {
        display: inherit;
    }

    .nav-open,
    .nav-open02 {
        padding: 15px;
        color: #fff;
        position: relative;
    }

    .nav-open::before,
    .nav-open02::before {
        /* 閉じている時 */
        content: "";
        position: inherit;
        right: inherit;
    }

    .nav-open.active::before,
    .nav-open02.active::before {
        /* 開いている時 */
        content: "";
        position: inherit;
        right: inherit;
    }

    h2.nav-open,
    h2.nav-open02 {
        margin-bottom: 0;
        background: none;
        text-align: left !important;
        padding: 7px 0;
    }

    .naviwaku {
        border: none;
        margin: inherit;
    }

    .naviwaku li:not(:last-child) {
        border-bottom: none;
    }

    /*hover*/
    .link16 {}

    .link16 a {
        display: inline-block;
        position: relative;
        transition: .3s;
        font-size:95%;
    }
    
    .link16 a::after {
        position: absolute;
        bottom: 0;
        left: 0;
        content: '';
        width: 0;
        height: 1px;
        background-color: rgba(255, 255, 255, 0.6);
        transition: .3s;
    }

    .link16 a:hover::after {
        width: 100%;
    }

    /*hover_end*/


    #copy {
        display: block;
        transform: rotate(-90deg);
        position: fixed;
        z-index: 98;
        padding: 0;
        bottom: 50%;
        left: -100px;
        margin: 0;
        text-align: right;
    }

    #copy p {
        font-size: 1.4rem;
    }

    #sns {
        width: 100px;
        position: fixed;
        bottom: 25px;
        left: 0;
        z-index: 98;
    }

    #sns a {
        width: 50px;
        text-align: center;
    }

    #sns .fa-instagram {
        display: block;
        font-size: 42px;
        line-height: 63px;
        background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%),
            radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%),
            radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%),
            radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%),
            radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%),
            radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%),
            radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent),
            -webkit-gradient(linear, left top, left bottom, from(#6559ca), color-stop(30%, #bc318f), color-stop(50%, #e33f5f), color-stop(70%, #f77638), to(#fec66d));
        background: -webkit-radial-gradient(35% 90%, circle farthest-corner, #fec564, transparent 50%),
            -webkit-radial-gradient(0 140%, circle farthest-corner, #fec564, transparent 50%),
            -webkit-radial-gradient(0 -25%, ellipse farthest-corner, #5258cf, transparent 50%),
            -webkit-radial-gradient(20% -50%, ellipse farthest-corner, #5258cf, transparent 50%),
            -webkit-radial-gradient(100% 0, ellipse farthest-corner, #893dc2, transparent 50%),
            -webkit-radial-gradient(60% -20%, ellipse farthest-corner, #893dc2, transparent 50%),
            -webkit-radial-gradient(100% 100%, ellipse farthest-corner, #d9317a, transparent),
            -webkit-linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
        background: -o-radial-gradient(35% 90%, circle farthest-corner, #fec564, transparent 50%),
            -o-radial-gradient(0 140%, circle farthest-corner, #fec564, transparent 50%),
            -o-radial-gradient(0 -25%, ellipse farthest-corner, #5258cf, transparent 50%),
            -o-radial-gradient(20% -50%, ellipse farthest-corner, #5258cf, transparent 50%),
            -o-radial-gradient(100% 0, ellipse farthest-corner, #893dc2, transparent 50%),
            -o-radial-gradient(60% -20%, ellipse farthest-corner, #893dc2, transparent 50%),
            -o-radial-gradient(100% 100%, ellipse farthest-corner, #d9317a, transparent),
            -o-linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
        background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%),
            radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%),
            radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%),
            radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%),
            radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%),
            radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%),
            radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent),
            linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
        color: white !important;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }


    #sns .fa-pen-to-square {
        display: block;
        font-size: 35px;
        line-height: 63px;
        font-weight: inherit;
        padding-left: 7px;
        background: url(../img/top/new_iro.png) center top no-repeat;
        color: #4db9bb;
    }

    #menu-trigger {
        left: 30px;
    }

    .Ettl {
        font-size: 6.5rem;
    }

    /*END*/



    /*top*/


    #top_point .Ettl,
    #top_point h2 {
        color: #000;
    }

    #top_content .OVL_upper&gt;div:nth-child(1) {
        width: 35%;
        padding: 5%;
    }

    #top_content .OVL_upper&gt;div:nth-child(2) {
        width: 65%;
        padding: 5%;
    }

    #top_point {
        background: url(../img/top/point_back.webp) bottom center no-repeat;
        background-attachment: fixed;
        background-size: cover;
    }

    .blc_box {
        width: 31%;
        padding: 5% 3% 4%;
        margin: 5% 1% 0%;
    }

    .blc_box p {
        font-size: 2.6rem;
    }

    .blc_box:first-child,
    .blc_box:last-child {
        padding: 6.5% 3% 4%;
    }

    .number {
        font-size: 15rem !important;
        top: -3%;
    }

    #kind_list {
        display: flex;
        flex-wrap: wrap;
        padding: 0 3%;
    }

    #kind_list li a::before {
        content: "\f105";
        padding-right: 10px;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
    }

    #kind_list li a:hover::before {
        content: "\f101";
        padding-right: 10px;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
    }

    #kind_list li {
        width: 24%;
    }

    #kind_list li:nth-child(3),
    #kind_list li:nth-child(7),
    #kind_list li:nth-child(11) {
        width: 28%;
    }

    #top_office_list {
        width: 100%;
    }

    .panel&gt;.flex_box&gt;div {
        width: 28%;
        margin: 0 2.6% 10%;
    }

    .panel&gt;.flex_box&gt;div:nth-last-child(-n+3) {
        margin: 0 2.6% 0%;
    }

    .panel .soto {
        min-height: 140px;
    }

    .j_ttl h3 {
        width: 100%;
        min-height: 7vw;
    }

    .TOL_dtl_btn p {
        height: 46px;
    }

    #office_btn li {
        height: 70px;
        line-height: 70px;
    }

    #top_blog_ttl {
        background: url(../img/top/blog_back.webp) center right #1C1920 no-repeat;
        background-size: cover;
    }

    #top_blog_ttl.wrap {
        padding: 0;
    }

    #top_blog_ttl&gt;div:first-of-type {
        top: -4vw;
    }

    #top_blog_ttl::before {
        padding-top: 30%;
    }

    .l-inner {
        max-width: inherit !important;
    }

    #top_blog .card01 {
        top: -15vw;
    }

    #top_blog.blc_back {
        height: 12vw;
    }

    #top_blog_bottom.blc_back {
        padding: 0 0 5% 0;
    }

    #top_blog_bottom.blc_back p,
    #top_voice .TOL_dtl_btn p {
        width: 30% !important;
        height: 70px;
        line-height: 70px;
    }

    #top_voice_ttl {
        background: url(../img/top/voice_back.webp) center right;
        background-size: cover;
        background-attachment: fixed;
        height: 15vw;
    }

    #top_voice_ttl.wrap {
        padding: 1% !important;
    }

    #top_voice_ttl h2 {
        margin-bottom: inherit;
    }

    #top_voice {
        padding: 5% 7%;
    }

    #top_voice ul li {
        margin-bottom: 5%;
        min-height: 130px;
    }

    #top_voice li a {
        padding: 2%;

    }

    #top_voice li a:hover {
        transition: all 0.3s;
    }

    footer {
        background: url(../img/top/footer_back.webp) center right no-repeat;
        background-attachment: fixed;
        background-size: cover;
        height: 25vw;
        position: relative;
    }

    /*footer_nav*/
    .footer_btn_nav {
        position: absolute;
        height: 130px;
    }

    .footer_btn_nav div {
        width: 20%;
        height: 130px;
        font-size: 2.4rem;
        padding: 10px;
    }

    .active {
        transform: inherit;
    }

    footer i,
    footer .icon-line {
        display: block;
    }

    footer .flex_box&gt;div&gt;a {
        height: 110px;
        line-height: 1.5;
        font-family: "Calisto MT", Georgia, serif;
    }

    footer .flex_box&gt;div&gt;a {
        padding: 17px 0 0 0;
    }

    footer .flex_box div:nth-child(2) {
        background: url(../img/top/new.png) center 16px no-repeat;
    }

    i.fa-pen-to-square::before{
        font-size: inherit;
    }

    /*footer_nav_END*/

    .banner {
        bottom: 130px;
    }


    /****
  *  dl-table PC
  ****/

    .dl-table {
        /**  &lt;dl class="dl-table"&gt;  **/
        padding: 0;
    }

    .dl-child {
        /**  dlに入れ子dlをするときのclass  **/
        margin: 0;
    }

    dl.dl-table dt,
    dl.dl-table dd {
        margin: 0;
        box-sizing: border-box;
        text-align: left;
    }

    dl.dl-table dt {
        float: left;
        width: 25%;
        padding: 1rem;
        font-weight: bold;
        border-top: 1px dotted #666;
        border-bottom: 0;

    }

    dl.dl-table dd {
        margin-left: 25%;
        padding: 1rem;
        border-top: 1px dotted #666;
        border-bottom: 0;

    }

    dl.dl-table dt:first-of-type,
    dl.dl-table dd:first-of-type {
        border-top: none;
    }

    dl.dl-table dt:last-of-type,
    dl.dl-table dd:last-of-type {
        border-bottom: 1px dotted #666;
    }

    dl.dl-table dd:last-of-type {
        border-top: 1px dotted #666;
    }

    dl.dl-table dd:after {
        display: table;
        clear: both;
        height: 0;
    }

    /****
  *  dl-table PC_END
  ****/


}</pre></body></html>