@charset "utf-8";

/*reset*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* structure */
:root {
    --global-padding: 8px;
    --main-color: #c2cf38;
    --sub-color: #eeeeee;
    --mian-text-color: #333333;
}

body {
    position: relative;
    line-height: 1.8;
    font-size: 16pt;
    font-family: Arial, Helvetica, sans-serif;
}

svg {
    vertical-align: bottom;
    overflow: visible;
}

img {
    max-width: 100%;
}

a {
    color: var(--mian-text-color);
    text-decoration: none;
}

section h2 {
    font-size: 3rem;
    letter-spacing: 5px;
}

section h2::after {
    content: "";
    width: 150px;
    height: 5px;
    border-radius: 12px;
    background: var(--main-color);
    display: block;
}

section h3 {
    font-size: 1.5rem;
    letter-spacing: 5px;
    padding-top: calc(var(--global-padding) *4);
}

#pagetop {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    border: var(--main-color) 3px solid;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all ease 300ms;
    z-index: 999;
}

#pagetop:hover {
    background: var(--main-color);
}

.cls-1 {
    fill: #333;
    transition: all ease 300ms;
}

.pagetop-ico {
    width: 30px;
    transition: all ease 300ms;
}

#pagetop:hover .cls-1 {
    fill: #fff;
}

#pagetop:hover .pagetop-ico {
    transform: translateY(-8px);
}

.sp {
    display: none;
}


/*all-bg*/
#canvas {
    width: 100%;
    height: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

#skt-all-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

/*header*/
.skt-header {
    background: #fff;
    width: 100%;
    padding: calc(var(--global-padding) * 2);
    position: fixed;
    z-index: 99;
    box-shadow: 0 4px 4px rgba(0, 0, 0, .4);
}

.skt-header div {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.skt-logo {
    width: 150px;
    height: 55px;
    cursor: pointer;
    transition: all ease 300ms;
}

.skt-logo:hover {
    opacity: .7;
}

.skt-header-list {
    list-style-type: none;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.skt-header-list li {
    padding-right: calc(var(--global-padding) * 4);
    font-size: .9rem;
    letter-spacing: 2px;
    font-weight: bold;
    transition: all ease 100ms;
    color: var(--mian-text-color);
}

.skt-header-list li:hover {
    color: var(--main-color);
    opacity: .7;
}

/*main-contents*/
.skt-mv {
    padding-top: calc( var(--global-padding)*11 );
}

.skt-mv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#main-wrapper {
    background: url(../img/sec-01-bg.png) top left no-repeat;
}

.skt-main-contents {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    color: var(--mian-text-color);
    padding: calc(var(--global-padding)*4);
}

/*section-01*/
.skt-sec-01 {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding-top: 100px;
}

/*section-01-left*/
.skt-sec-01 .sec-left {
    width: 50%;
}

.skt-sec-01 .sec-left h4 {
    font-size: 2rem;
    letter-spacing: 5px;
    line-height: 1.3;
    padding-top: calc(var(--global-padding) *4);
}

.skt-sec-01 .sec-left .caption {
    font-size: 1.2rem;
    letter-spacing: 5px;
    padding-top: calc(var(--global-padding) *4);
}

.skt-sec-01 .sec-left .skt-brand {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skt-sec-01 .sec-left .skt-brand {
    padding-top: calc(var(--global-padding) *4);
}

.skt-sec-01 .sec-left .skt-brand p:first-child {
    font-size: 1rem;
    font-weight: bold;
    border-radius: 25px;
    border: 3px solid #333;
    width: 30%;
    text-align: center;
}

.skt-sec-01 .sec-left .skt-brand p:last-child {
    width: 60%;
    transition: all ease 300ms;
}

.skt-sec-01 .sec-left .skt-brand p:last-child:hover {
    opacity: .7;
}

/*section-01-right*/
.skt-sec-01 .sec-right {
    width: 40%;
    background: #fff;
    border: 3px solid var(--main-color);
    border-radius: 12px;
    position: relative;
}

.skt-sec-01 .sec-right dd {
    padding: 0 calc(var(--global-padding) *3) calc(var(--global-padding) *3) calc(var(--global-padding) *3);
}

.skt-sec-01 .sec-right dl dt img {
    border-radius: 8px 8px 0 0;
}

.skt-sec-01 .sec-right h3 {
    letter-spacing: 5px;
    padding-top: var(--global-padding)
}

.skt-sec-01 .sec-right h3::after {
    content: "";
    width: 150px;
    height: 5px;
    border-radius: 12px;
    background: var(--main-color);
    display: block;
    margin-top: 8px;
}

.skt-sec-01 .sec-right p {
    font-size: 1rem;
    padding-top: calc(var(--global-padding) *2);
    letter-spacing: 3px;
}



/*エリアスライド*/
.area-slide {
    padding: calc(var(--global-padding) *4) calc(var(--global-padding) *4) calc(var(--global-padding) *4) calc(var(--global-padding) *6);
}

.area {
    padding-top: calc(var(--global-padding) *2);
}

.area:first-child {
    padding-top: 0;
}

.area dl {
    display: flex;
    align-items: center;
    width: 100%;
}

.area .area-name dt {
    width: 15%;
}

.area .area-name dd {
    width: 85%;
    padding: 0;
    font-weight: bold;
}

.area .lab-name::before {
    content: "";
    width: 150px;
    height: 5px;
    border-radius: 12px;
    background: var(--main-color);
    display: block;
}

.area .lab-name li {
    list-style-type: none;
    font-size: 1rem;
}

.area .lab-name li:first-child {
    padding-top: calc(var(--global-padding) *2)
}


/*section-02*/

.skt-sec-02 {
    padding-top: 150px;
}

.skt-cp-table {
    display: flex;
    justify-content: center;
}

.skt-cp-table table {
    width: 60%;
    text-align: left;
    border-collapse: collapse;
}

.skt-cp-table table th {
    width: 30%;
    letter-spacing: 2px;
    padding: calc(var(--global-padding) *3);
    position: relative;
    font-size: 1rem;
}

.skt-cp-table table th::after {
    content: "";
    background: var(--main-color);
    width: 100%;
    height: 3px;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 12px 0 0 12px;
}

.skt-cp-table table td {
    width: 70%;
    letter-spacing: 2px;
    padding: calc(var(--global-padding) *3);
    position: relative;
    font-size: .9rem;
}

.skt-cp-table table td::after {
    content: "";
    background: var(--sub-color);
    width: 100%;
    height: 3px;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 0 12px 12px 0;
}

/*footer*/
footer {
    padding-top: 150px;
}

footer div {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--main-color);
    width: 100%;
    height: 80px;
}

footer p {
    color: #fff;
    font-size: .9rem;
}

@media screen and (max-width : 860px) {
    .skt-sec-01 {
        display: block;
    }

    .skt-sec-01 .sec-left {
        width: 100%;
        margin: 0 auto;
    }

    .skt-sec-01 .sec-right {
        width: 100%;
        margin-top: calc(var(--global-padding)*6);
    }

    .sp {
        display: block;
    }
}

@media screen and (max-width : 480px) {

    .skt-logo {
        width: 130px;
        height: 50px;
    }

    .skt-header-list li {
        padding-right: calc(var(--global-padding)* 2);
        font-size: .8rem;
    }

    .skt-main-contents {
        padding: calc(var(--global-padding)* 3);
    }

    section h2 {
        font-size: 2rem;
    }

    .skt-sec-01 {
        padding-top: 40px;
    }

    .skt-sec-01 .sec-left h4 {
        font-size: 2rem;
        letter-spacing: 5px
    }

    .skt-sec-01 .sec-left .caption {
        font-size: .9rem;
    }

    .skt-sec-01 .sec-left .skt-brand p:first-child {
        width: 35%;
        font-size: .8rem;
    }

    .skt-cp-table table {
        width: 100%;
    }

    .skt-cp-table table th {
        padding: 0;
    }

    #pagetop {
        right: 20px;
    }

    .sp {
        display: block;
    }
}