@charset "utf-8";
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');
@import url('https://unpkg.com/lenis@1.3.3/dist/lenis.css');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/*---------------------------------------------------------
    Theme Name: Radical Ad
    Description: コーポレートサイト用 wordpressテーマ
    Theme URI: http://radicalad.co.jp/
    Version: 1.0
---------------------------------------------------------*/

/* =============================================
    # reset
============================================= */

html, body, footer, header,
div, section, article, aside, nav,
object, iframe, video, address, img,
h1, h2, h3, h4, h5, h6, p,
small, strong, b, i, span,
dl, dt, dd, ol, ul, li,
table, tr, th, td, form, label {
    font-size: 100%;
    vertical-align: baseline;
    border: 0;
    outline: 0;
    background: transparent;
    margin: 0;
    padding: 0;
}

body {
    line-height: 1;
}

footer, header, div, section, article, aside, nav {
    display: block;
}

a {
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    margin: 0;
    padding: 0;
}

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

input, select, textarea, img, th, td {
    vertical-align: middle;
}

ul, dl, ol {
    list-style: none;
}

/* =============================================
    # 共通設定
============================================= */

* {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-appearance: none;
            appearance: none;
    -webkit-text-size-adjust: 100%;
            text-size-adjust: none;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Roboto', 'Noto Sans JP', Meiryo, sans-serif;
    font-size: clamp(16px, 1.04vw, 20px);
    font-weight: 500;
    font-feature-settings: "palt";
    letter-spacing: 0.06em;
    color: var(--baseC);
    line-height: 2.0;
    background: #fff;
}

@media (width < 840px) {

body {
    font-size: 2.4vw;
}

}

@media (width < 480px) {

body {
    font-size: 3.8vw;
}

}

h1, h2, h3, h4, h5, h6, strong, th {
    font-weight: 600;
}

a {
    color: #05d;
    text-decoration: none;
    transition: .3s;
}

a:hover {
    text-decoration: underline;
}

a:hover img {
    opacity: .6;
}

img, video, object {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    border: none;
    transition: .3s;
}

table {
    table-layout:fixed;
}

table th,
table td {
    vertical-align: middle;
}

/* =============================================
    # 変数
============================================= */

:root {
/* color */
    --baseC: #222;
    --halfC: #888;
    --accentC: #971;
    --thinC: #f6f6f6;
    --dataC: #48f;
    --saasC: #fb0;
    --adC: #3a5;
    --creC: #e43;
}

/* =============================================
    # ヘッダー
============================================= */

header {
    width: 100%;
    font-size: clamp(16px, 1.2vw, 20px);
    padding: 1.5em;
    position: fixed;
    z-index: 9999;
    transition: .3s;
}

header h1 {
    width: 14.8%;
    min-width: 228px;
    max-width: 256px;
    float: left;
}

header h1 img {
    display: block;
}

header h1 .type {
    display: none;
}

@media (width > 1080px) {

header.tiny {
    width: calc(100% - 3em);
    background: #fff;
    margin: 1em 1.5em;
    padding: 0;
    transition: .3s;
    border-radius: 10px;
    box-shadow: 0 0 2em rgba(0,0,0,.1);
    overflow: hidden;
}

header.tiny h1 {
    width: 11%;
    min-width: 171px;
    max-width: 204px;
    margin: 0 .2em;
    padding: .5em;
}

header.tiny h1 .logo {
    display: none;
}

header.tiny h1 .type {
    display: block;
}

}

@media (width <= 1080px) {

header h1 {
    width: 214px;
    min-width: auto;
    max-width: auto;
}

header.tiny {
    background: rgba(255,255,255,.9);
}

}

@media (width < 840px) {

header {
    padding: 1em;
}

}

@media (width < 480px) {

header h1 {
    width: 182px;
    min-width: auto;
    max-width: auto;
}

}

/* =============================================
    # メニューボタン
============================================= */

#nav-btn {
    display: none;
}

@media (width <= 1080px) {

#nav-btn {
    display: block;
    width: 45px;
    height: 45px;
    position: fixed;
    top: 1.5em;
    right: 1.5em;
    z-index: 1000;
    cursor: pointer;
    border-radius: 5px;
}

#nav-icon {
    display: block;
    width: 30px;
    height: 3px;
    text-align: center;
    background: var(--baseC);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .3s;
}

#nav-icon:before,
#nav-icon:after {
    display: block;
    content: "";
    width: 30px;
    height: 3px;
    background: var(--baseC);
    position: absolute;
    top: 50%;
    left: 0;
    transition: .3s;
}

#nav-icon:before {
    transform: translateY(-10px);
}

#nav-icon:after {
    transform: translateY(+8px);
}

#nav-btn:hover #nav-icon,
#nav-btn:hover #nav-icon:before,
#nav-btn:hover #nav-icon:after {
    background: var(--halfC);
}

.close #nav-icon,
.close:hover #nav-icon {
    background: transparent!important;
}

.close #nav-icon:before,
.close #nav-icon:after {
    background: var(--halfC);
    margin-top: -2px;
}

.close:hover #nav-icon:before,
.close:hover #nav-icon:after {
    background: #fff!important;
}

.close #nav-icon:before {
    transform: rotate(-45deg);
}

.close #nav-icon:after {
    transform: rotate(-135deg);
}

}

@media (width < 840px) {

#nav-btn {
    top: 1em;
    right: 1em;
}

}

@media (width < 480px) {

#nav-btn {
    width: 38px;
    height: 38px;
}

}

/* =============================================
    # ナビゲーション
============================================= */

#global-nav {
    float: right;
}

#global-nav ul {
    overflow: hidden;
}

#global-nav ul li {
    margin: 0 0 0 2em;
    padding: .25em 0;
    float: left;
}

#global-nav ul li.nav-download {
    margin: 0 0 0 1em;
}

#global-nav ul li a {
    display: block;
    color: var(--baseC);
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    padding: .75em 0;
}

#global-nav ul li a:hover {
    color: var(--halfC);
}

#global-nav ul li.nav-contact a,
#global-nav ul li.nav-download a {
    color: #fff;
    padding: .75em 2em;
    border-radius: 3em;
}

#global-nav ul li.nav-contact a {
    background: var(--baseC);
    text-shadow: 0 3px 6px rgba(0,0,0,.5);
}

#global-nav ul li.nav-contact a:hover {
    color: #fff;
    background: #111;
}

#global-nav ul li.nav-download a {
    background: var(--accentC);
    text-shadow: 0 3px 6px rgba(120,80,0,1);
}

#global-nav ul li.nav-download a:hover {
    color: #fff;
    background: #b93;
}

#global-nav ul li.nav-privacy {
    display: none;
}

/* =============================================
    # 追従時
============================================= */

@media (width > 1080px) {

.tiny #global-nav ul li {
    margin: 0;
    padding: 0;
}

.tiny #global-nav ul li a {
    font-size: 90%;
    padding: 1em;
}

.tiny #global-nav ul li a::before {
    display: inline-block;
    content: "";
    border: 5px solid transparent;
    border-left: 5px solid var(--accentC);
    margin: 0 .25em 0 0;
    position: relative;
    transition: .3s;
}

.tiny #global-nav ul li a:hover::before {
    border-left: 5px solid var(--halfC);
}

.tiny #global-nav ul li.nav-contact a,
.tiny #global-nav ul li.nav-download a {
    color: #fff;
    padding: 1em 2em;
    border-radius: 0;
}

.tiny #global-nav ul li.nav-contact a::before,
.tiny #global-nav ul li.nav-download a::before {
    display: none;
}

.tiny #global-nav ul li.nav-contact a {
    margin: 0 0 0 .5em;
}

}

/* =============================================
    # サイドナビ時
============================================= */

@media (width <= 1080px) {

#global-nav {
    width: 300px;
    height: 100%;
    background: rgba(0,0,0,.9);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    transition: .3s;
    transform: translate(300px);
    padding: 5em 2em;
}

#global-nav.open {
    transform: translate(0);
}

#global-nav ul li {
    margin: 0;
    float: none;
}

#global-nav ul li.nav-contact {
    margin: 1em 0 0;
}

#global-nav ul li.nav-download {
    margin: .5em 0 0;
}

#global-nav ul li a {
    color: #fff;
    font-size: 20px;
    padding: .5em 0;
    position: relative;
    text-shadow: none;
}

#global-nav ul li a::after {
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--halfC);
    border-right: 2px solid var(--halfC);
    position: absolute;
    top: calc(50% - 4px);
    right: 8px;
    transform: rotate(45deg);
    transition: .3s;
}

#global-nav ul li a:hover {
    color: #fff;
}

#global-nav ul li a:hover::after {
    right: 3px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

#global-nav ul li.nav-contact a,
#global-nav ul li.nav-download a {
    text-align: center;
    text-shadow: none;
    padding: .8em 0;
}

#global-nav ul li.nav-contact a {
    color: var(--baseC);
    background: #fff;
}

#global-nav ul li.nav-contact a:hover {
    color: var(--baseC);
    background: #ccc;
}

#global-nav ul li.nav-contact a::after,
#global-nav ul li.nav-download a::after {
    display: none
}

#global-nav ul li.nav-privacy {
    display: block;
}

}

@media (width < 840px) {

#global-nav ul li a {
    font-size: 2.4vw;
}

}

@media (width < 480px) {

#global-nav ul li a {
    font-size: 3.8vw;
    padding: .5em 0 .5em .5em;
}

#global-nav ul li a::after {
    width: 6px;
    height: 6px;
    top: calc(50% - 3px);
}

#global-nav ul li.nav-contact a,
#global-nav ul li.nav-download a {
    padding: 1em 0;
}

}

/* =============================================
    # フッター
============================================= */

footer {
    font-size: 12px;
    background-color: #fff;
    padding: 8%;
}

footer h1 {
    font-size: 24px;
    font-weight: 700;
}

footer h1 br {
    display: none;
}

footer #footer-nav ul {
    overflow: hidden;
    margin: 1em 0 2em;
}

footer #footer-nav ul li {
    float: left;
    margin: 1em 3em 0 0;
}

footer #footer-nav ul li a {
    color: var(--baseC);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

footer #footer-nav ul li a::before {
    display: inline-block;
    content: "";
    border: 5px solid transparent;
    border-left: 5px solid var(--accentC);
    margin: 0 .25em 0 0;
    position: relative;
    transition: .3s;
}

footer #footer-nav ul li a:hover {
    color: var(--halfC);
}

footer #footer-nav ul li a:hover::before {
    border-left: 5px solid var(--halfC);
}

footer dl {
    display: table;
}

footer dl dt,
footer dl dd {
    display: table-cell;
    vertical-align: middle;
}

footer dl dt {
    padding: 0 3em 0 0;
}

footer dl dd {
    padding: 0 0 0 3em;
    border-left: 1px solid;
}

footer dt a {
    display: block;
    margin: 0 0 1em;
}

footer dt img {
    display: block;
}

footer dd p::before {
    font-family: FontAwesome;
    margin: 0 .5em 0 0;
}

.ftr-address::before {
    content: "\f3c5";
}
.ftr-tel::before {
    content: "\f095";
}
.ftr-mail::before {
    content: "\f0e0";
}

footer dd p a {
    color: var(--baseC);
    text-decoration: underline;
}

footer dd p a:hover {
    color: var(--halfC);
    text-decoration: none;
}

footer dl dd p br {
    display: none;
}

.ftr-copyright {
    margin: 1em 0 0;
}

.ftr-copyright::before {
    font-family: FontAwesome;
    content: "\f1f9";
    margin: 0 .5em 0 0;
}

@media (width < 840px) {

footer {
    text-align: center;
    padding: 12% 0;
}

footer h1 {
    font-size: 3vw;
}

footer h1 br {
    display: block;
}

footer #footer-nav ul {
    display: flex;
    flex-flow: wrap;
    margin: 1.5em 1.5em 2em;
}

footer #footer-nav ul li {
    width: calc(100%/4 - 1em);
    margin: .5em;
    float: none;
}

footer #footer-nav ul li a {
    display: block;
    font-size: 12px;
    text-align: left;
    background: var(--thinC);
    padding: .75em 1em;
    position: relative;
}

footer #footer-nav ul li a::before {
    display: none;
}

footer #footer-nav ul li a::after {
    display: block;
    content: "";
    width: 4px;
    height: 4px;
    border-top: 1px solid var(--baseC);
    border-right: 1px solid var(--baseC);
    position: absolute;
    top: calc(50% - 2px);
    right: 1em;
    transform: rotate(45deg);
    transition: .3s;
}

footer #footer-nav ul li a:hover::after {
    border-top: 1px solid var(--halfC);
    border-right: 1px solid var(--halfC);
}

footer dl {
    display: block;
    margin: 0;
}

footer dl dt,
footer dl dd {
    display: block;
    padding: 0;
}

footer dl dt {
    margin: 0 0 10px;
}

footer dl dd {
    border-left: none;
}

footer dt a {
    display: inline-block;
    width: 200px;
    margin: 0 0 5px;
}

}

@media (width < 680px) {

footer #footer-nav ul li {
    width: calc(100%/3 - 1em);
}

}

@media (width < 530px) {

footer #footer-nav ul li {
    width: calc(100%/2 - 1em);
}

}

@media (width < 480px) {

footer {
    font-size: 2.8vw;
    padding: 16% 0;
}

footer h1 {
    font-size: 4.6vw;
}

footer #footer-nav ul {
    margin: 1.5em 1em 2em;
}

footer dl dt a {
    width: 50%;
}

footer dl dd p br {
    display: block;
}

}

/* =============================================
    # ページ下部CTA
============================================= */

#cta {
    display: flex;
    color: #fff;
    margin: 3em 1.5em 0;
    border-radius: 1vw;
    overflow: hidden;
}

#cta > div {
    flex: 1;
    position: relative;
    overflow: hidden;
}

#cta > div::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    transition: all .3s ease-out;
}

#cta .cta-contact::after {
    background: url(images/common/cta-contact_01.png) no-repeat center / cover;
}

#cta .cta-download::after {
    background: url(images/common/cta-contact_02.png) no-repeat center / cover;
}

#cta .cta-contact:hover:after,
#cta .cta-download:hover:after {
    transform: scale(1.1);
}

#cta a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 8% 8% 24%;
    position: relative;
    z-index: 999;
    overflow: hidden;
}

#cta a::before {
    font-family: FontAwesome;
    content: "\f061";
    width: 5vw;
    height: 5vw;
    text-align: center;
    line-height: 5vw;
    border: 3px solid #fff;
    border-radius: 50%;
    position: absolute;
    right: 8%;
    bottom: 12%;
    transition: .3s;
}

#cta a:hover::before {
    color: var(--baseC);
    background: #fff;
}

#cta .cta-contact a {
    background: rgba(30,30,30,.9);
}

#cta .cta-download a {
    background: rgba(20,20,20,.9);
}

#cta a:hover {
    background: rgba(0,0,0,.6);
}

#cta p {
    margin: 1em 0 0;
}

@media (width < 480px) {

#cta {
    flex-direction: column;
    border-radius: 0;
}

#cta > div {
    border-radius: 1em;
}

#cta .cta-download {
    margin: 1.5em 0 0;
}

#cta a::before {
    width: 8vw;
    height: 8vw;
    line-height: 8vw;
    border: 2px solid #fff;
}

}

/* =============================================
    # セクション
============================================= */

main {
    background-color: transparent;
    transition: background-color 1s ease;
}

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

.container {
    padding: 6em 0;
    position: relative;
}

.sec-wrap {
    display: flex;
}

.sec-wrap > div {
    flex: 1;
}

.sec-wrap > div.sec-title {
    flex-grow: .32;
}

.sec-wrap > div.sec-title img {
    display: block;
    width: 28%;
    margin: 0 0 .5em;
}

@media (width < 840px) {

.sec-wrap {
    flex-direction: column;
}

.sec-wrap > div.sec-title img {
    display: block;
    width: 12%;
    margin: 0 1em 0 0;
    float: left;
    position: relative;
    top: -.5em;
}

}

@media (width < 480px) {

.container {
    padding: 4em 0;
}

.sec-wrap > div.sec-title img {
    display: block;
    width: 12%;
    margin: 0 0 .5em;
    float: none;
    position: relative;
    top: 0;
}

}

/* # Wrap
============================ */

.wrap {
    width: min(100% - 3em, 1280px);
    margin-inline: auto;
    position: relative;
}

/* =============================================
    # 見出し
============================================= */

.hl-01 {
    font-size: clamp(40px, 3.0vw, 56px);
    line-height: 1.3;
}

.hl-02 {
    font-size: clamp(34px, 2.4vw, 48px);
}

.hl-03 {
    font-size: clamp(28px, 2.0vw, 40px);
}

.hl-04 {
    font-size: clamp(22px, 1.66vw, 32px);
}

.hl-05 {
    font-size: clamp(18px, 1.38vw, 26px);
}

@media (width < 840px) {

.hl-01 {
    font-size: 5.2vw;
}

.hl-02 {
    font-size: 4.6vw;
}

.hl-03 {
    font-size: 4.0vw;
}

.hl-04 {
    font-size: 3.4vw;
}

.hl-05 {
    font-size: 2.8vw;
}

}

@media (width < 480px) {

.hl-01 {
    font-size: 7.6vw;
}

.hl-02 {
    font-size: 6.8vw;
}

.hl-03 {
    font-size: 6.0vw;
}

.hl-04 {
    font-size: 5.2vw;
}

.hl-05 {
    font-size: 4.4vw;
}

}

/* =============================================
    # ラベル
============================================= */

.label-01 {
    display: block;
    font-size: clamp(18px, 1.38vw, 26px);
    font-weight: 600;
    line-height: 1;
    margin: 0 0 1.5em;
    text-shadow: 2px 2px 0px #fff,
                -2px -2px 0px #fff,
                -2px 2px 0px #fff,
                2px -2px 0px #fff,
                2px 0px 0px #fff,
                -2px 0px 0px #fff,
                0px 2px 0px #fff,
                0px -2px 0px #fff;
}

.label-01 strong {
    display: inline-block;
    color: var(--accentC);
    font-size: clamp(34px, 2.4vw, 48px);
    letter-spacing: -0.02em;
    border-right: 2px solid var(--baseC);
    margin: 0 .5em 0 0;
    padding: 0 .5em 0 0;
}

.label-02 {
    display: block;
    color: var(--accentC);
    font-size: clamp(16px, 1.04vw, 20px);
    font-weight: 600;
}

.label-02 strong {
    display: block;
    color: var(--baseC);
    font-size: clamp(28px, 2.0vw, 40px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 .25em;
}

.label-03 {
    display: block;
    color: var(--accentC);
    font-size: clamp(16px, 1.04vw, 20px);
    font-weight: 600;
    line-height: 1;
    margin: 0 0 2em;
}

.label-03 strong {
    display: inline-block;
    color: var(--baseC);
    font-size: clamp(28px, 2.0vw, 40px);
    letter-spacing: -0.02em;
    border-right: 2px solid var(--baseC);
    margin: 0 .5em 0 0;
    padding: 0 .5em 0 0;
}

.label-04 {
    font-size: clamp(22px, 1.66vw, 32px);
    font-weight: 600;
    line-height: 1.6;
    margin: 0 0 1em;
}

@media (width < 840px) {

.label-01 {
    font-size: 3.4vw;
}

.label-01 strong {
    display: block;
    font-size: 5.6vw;
    border-right: none;
    margin: 0 0 .5em;
    padding: 0;
}

.label-02 {
    font-size: 2.4vw;
}

.label-02 strong {
    font-size: 3.4vw;
}

.label-03 {
    font-size: 2.4vw;
}

.label-03 strong {
    font-size: 3.4vw;
}

.label-04 {
    font-size: 3.4vw;
}

}

@media (width < 480px) {

.label-01 {
    font-size: 4.4vw;
    line-height: .8;
}

.label-01 strong {
    font-size: 8.4vw;
}

.label-02 {
    font-size: 3.8vw;
    line-height: 1;
    margin: 0 0 2em;
}

.label-02 strong {
    display: inline-block;
    font-size: 5.2vw;
    border-right: 2px solid var(--baseC);
    margin: 0 .5em 0 0;
    padding: 0 .5em 0 0;
}

.label-03 {
    font-size: 3.8vw;
}

.label-03 strong {
    font-size: 5.2vw;
}

.label-04 {
    font-size: 5.2vw;
}

}

/* =============================================
    # テーブル
============================================= */

.table-01 {
    width: calc(100% + 2em);
    border-collapse: separate;
    border-spacing: 1em 0;
    margin: -2em -1em 0;
}

.table-01 th,
.table-01 td {
    padding: 2em 1em;
}

.table-01 th {
    width: 25%;
    vertical-align: top;
    text-align: left;
    border-bottom: 2px solid var(--baseC);
}

.table-01 td {
    border-bottom: 2px solid #eee;
}

@media (width < 840px) {

.table-01 {
    margin: 1em -1em 0;
}

}

@media (width < 480px) {

.table-01 {
    margin: -1em -1em 0;
}

.table-01 th,
.table-01 td {
    width: 100%;
    float: left;
}

.table-01 th {
    width: 100%;
    vertical-align: top;
    text-align: left;
    border-bottom: 2px solid #eee;
    padding: 1.5em 1em 1em;
}

.table-01 td {
    border-bottom: 2px solid var(--baseC);
    padding: 1em 1em 1.5em;
}

}

/* =============================================
    # 背景
============================================= */

.bg-thin {
    background: var(--thinC);
}

/* =============================================
    # 区切り
============================================= */

.bor-top {
    border-top: 1px dashed var(--halfC);
}

/* =============================================
    # video
============================================= */

#video-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 102%;
    height: 100vh;
    z-index: -1;
}

#video-wrap video {
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
     object-fit: cover;
    -o-object-position: center;
     object-position: center;
}

/* =============================================
    # ボタン
============================================= */

p.btn-01 {
    margin: 2em 0 0!important;
}

.btn-01 a {
    color: var(--baseC);
    display: inline-block;
    font-weight: 700;
    border: 3px solid var(--baseC);
    background-color: #fff;
    padding: .75em 3em .75em 2em;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-01 a::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--baseC);
    position: absolute;
    left: -100%;
    top: 0;
    transition: .3s;
    z-index: -1;
}

.btn-01 a:hover {
    color: #fff;
    text-decoration: none;
}

.btn-01 a:hover::before {
    left: 0;
}

.btn-01 a::after {
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--baseC);
    border-right: 2px solid var(--baseC);
    margin-top: -5px;
    position: absolute;
    top: 50%;
    right: 1.5em;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: .3s;
}

.btn-01 a:hover::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    right: 1em;
}


/* =============================================
    # ファーストビュー
============================================= */

#firstView {
    min-height: 100%;
    padding: 9em 8%;
    position: relative;
}

#firstView h1 {
    font-size: clamp(76px, 6.6vw, 104px);
    line-height: 1.4;
    font-weight: 800;
    animation: fvh1 2s ease forwards;
}

@keyframes fvh1 {
    0%  {opacity: 0;}
    20% {opacity: 0;}
    50% {opacity: 1;}
}

#firstView h1 span {
    font-size: clamp(46px, 3.6vw, 64px);
    margin: 0 .1em;
}

#firstView h2 {
    font-size: clamp(28px, 2.0vw, 40px);
    font-weight: 600;
    margin: .75em 0 0;
}

#firstView h2 span {
    display: inline-block;
    color: #fff;
    padding: 0 .5em;
    position: relative;
}

#firstView h2 span::before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--baseC);
    position: absolute;
    top: 0;
    left: 0;
    animation: fvh2 2s ease forwards;
    transform-origin: left center;
}

#firstView h2 span strong {
    padding: 0 .5em;
    position: relative;
    z-index: 1;
    animation: fvh2 2s ease forwards;
}

@keyframes fvh2 {
    0% {
        opacity: 0;
        transform: scaleX(0) translateX(0);
    }
    20% {
        opacity: 0;
        transform: scaleX(0) translateX(0);
    }
    50% {
        opacity: 1;
        transform: scaleX(1) translateX(0);
    }
}

#firstView p {
    font-size: clamp(18px, 1.38vw, 26px);
    font-weight: 600;
    margin: 1.5em 0 0;
}

br.sp {
    display: none;
}

del {
    text-decoration: none;
}

.scroll_down {
    position: absolute;
    bottom: 0;
    right: 50%;
    animation: arrowmove 1s ease-in-out infinite;
    transition: opacity 0.3s, visibility 0.3s;
    opacity: 1;
    visibility: visible;
}

.scroll_down.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.scroll_down a {
    width: 24px;
    height: 24px;
    color: var(--baseC);
    text-decoration: none;
    position: absolute;
    left: -12px;
    bottom: 1em;
}

.arrow {
    position: absolute;
    width: 28px;
    height: 5px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
}

.arrow:first-child {
    animation: move 3s ease-out 1s infinite;
}

.arrow:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
}

.arrow:before,
.arrow:after {
    content: '';
    width: 51%;
    height: 100%;
    background: var(--baseC);
    position: absolute;
    top: 0;
}

.arrow:before {
    left: 0;
    transform: skew(0deg, 30deg);
}

.arrow:after {
    width: 50%;
    right: 0;
    transform: skew(0deg, -30deg);
}

@keyframes move {
  25% { opacity: 1; }
  33% { opacity: 1; transform: translateY(30px); }
  67% { opacity: 1; transform: translateY(40px); }
  100% { opacity: 0; transform: translateY(55px) scale3d(0.5, 0.5, 0.5); }
}

@media (width < 940px) {

#firstView {
    min-height: 90vh;
    padding: 8em 8% 8em;
}

#firstView h1 {
    font-size: 10.4vw;
    line-height: 1.2;
}

#firstView h1 span {
    font-size: 6.4vw;
}

#firstView h2 {
    font-size: 3.4vw;
}

#firstView p {
    font-size: 2.8vw;
}

br.sp {
    display: block;
}

.scroll_down {
    opacity: 0;
}

}

@media (width < 480px) {

#firstView {
    min-height: 90vh;
    padding: 8em 8% 8em;
}

#firstView h1 {
    font-size: 11.6vw;
}

#firstView h1 span {
    font-size: 7.6vw;
}

#firstView h2 {
    font-size: 3.8vw;
}

#firstView p {
    font-size: 3.8vw;
}

.scroll_down {
    bottom: 6em;
    opacity: 1;
}

}

/* ==========================================
    #
============================================= */

#service > h2 {
    text-align: center;
    padding: 6% 0 0;
    position: relative;
}

#service > h2::before,
#service > h2::after {
    content: "";
    display: block;
    width: 20%;
    height: 2px;
    background: var(--baseC);
    margin: 0 auto;
    position: absolute;
    bottom: .65em;
}

#service > h2::before {
    left: calc(50% - 10em);
}

#service > h2::after {
    right: calc(50% - 10em);
}

#service .container::before {
    display: block;
    width: 100%;
    color: #f6f6f6;
    font-size: 12vw;
    font-weight: 600;
    text-align: center;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 0;
    overflow: hidden;
    transform: translate(0, -50%);
    opacity: 0;
    transition: all 2s ease;
}

#service .visible::before {
    opacity: 1;
    transform: translate(0, -60%);
}

.data-solutions::before {
    content: "DATA SOLUTIONS";

}
.saas-dev::before {
    content: "SAAS DEVELOPMENT";
}
.ad-solutions::before {
    content: "AD SOLUTIONS";
}
.creative-design::before {
    content: "CREATIVE DESIGN";
}

.service-thumb {
    width: 34%;
    float: left;
}

.service-thumb img {
    display: block;
    margin: 0 0 2em;
    border-radius: .5vw;
}

.service-content {
    width: 60%;
    float: right;
}

.service-content .numbering {
    display: inline-block;
    font-weight: 700;
    border: 2px solid var(--baseC);
    margin: 0 0 1em;
    padding: 0 1em;
}

.service-content h3 {
    font-size: clamp(28px, 2.0vw, 40px);
    font-weight: 700;
    line-height: 1.6;
    margin: 0 0 .75em;
}

.service-content h3 br {
    display: none;
}

.service-logo-vl {
    display: block;
    width: 18vw;
    margin: 0 0 2em;
}

.service-logo-at {
    display: block;
    width: 22vw;
    margin: 0 0 2em;
}

.service-content h4 {
    margin: 2em 0 0;
}

.service-content h4 span {
    display: inline-block;
    color: #fff;
    background: var(--accentC);
    padding: .25em 1.5em;
}

.service-content ul {
    border-top: 2px solid var(--accentC);
}

.service-content ul li {
    font-weight: 700;
    border-bottom: 1px dotted var(--baseC);
    margin: .5em 0;
    padding: .75em 1em .75em 2.25em;
    position: relative;
}

.service-content ul li::before {
    display: block;
    content: "";
    width: 6px;
    height: 12px;
    border-bottom: 3px solid var(--baseC);
    border-right: 3px solid var(--accentC);
    margin-top: -9px;
    position: absolute;
    top: 50%;
    left: 1em;
    transform: rotate(45deg);
}

@media (width < 840px) {

#service > h2 {
    padding: 12% 0 0;
}

#service > h2::before {
    left: calc(50% - 7em);
}

#service > h2::after {
    right: calc(50% - 7em);
}

#service .container::before {
    display: none;
}

.service-thumb {
    width: 100%;
    margin: 1em 0 0;
    float: none;
    overflow: hidden;
}

.service-thumb img {
    display: block;
    width: 46%;
    float: left;
    margin: 2%;
    border-radius: 1vw;
}

.service-content {
    width: 100%;
    text-align: center;
    float: none;
    margin: 2em 0 0;
}

.service-content h3 {
    font-size: 3.4vw;
}

.service-logo-vl {
    width: 32vw;
    margin: 0 auto 1.5em;
}

.service-logo-at {
    width: 40vw;
    margin: 0 auto 1.5em;
}

.service-content h4 {
    text-align: left;
}

.service-content ul {
    text-align: left;
}

}

@media (width < 480px) {

#service > h2 {
    margin: 0 0 -1em;
    padding: 18% 0 0;
}

#service > h2::before,
#service > h2::after {
    width: 22%;
}

#service > h2::before {
    left: calc(50% - 6em);
}

#service > h2::after {
    right: calc(50% - 6em);
}

.service-thumb {
    margin: 0;
}

.service-thumb img {
    width: 50%;
    margin: 0;
    border-radius: 1.5vw;
}

.service-content h3 {
    font-size: 5.2vw;
}

.service-content h3 br {
    display: block;
}

.service-logo-vl {
    width: 60vw;
}

.service-logo-at {
    width: 70vw;
}

.service-content p {
    text-align: left;
}

.service-content p br {
    display: none;
}

}


/* ==========================================
    #
============================================= */

#message {
    background-image: url(images/message-bg_01.svg);
    background-repeat: no-repeat;
    background-size: 50%;
}

.message-wrap {
    display: flex;
}

.message-wrap > div {
    flex: 1;
}

.message-wrap > div.message {
    flex-grow: 1.5;
}

.message {
    margin: 2em 0 0;
}

.message h3 {
    font-size: clamp(28px, 2.0vw, 40px);
    font-weight: 700;
    line-height: 1.6;
    margin: 0 0 .75em;
}

.message p {
    margin: 2em 0 0;
}

.message p img {
    display: inline-block;
    width: 8vw;
    vertical-align: top;
    margin: 0 0 0 .5em;
}

.photo img {
    display: block;
    width: 75%;
    margin: 2em 0 0 25%;
    border-radius: .5vw;
}

.photo img.disp-sp {
    display: none;
}

@media (width < 840px) {

#message {
    background-size: 75%;
}

.message-wrap {
    flex-direction: column;
}

.message h3 {
    font-size: 3.4vw;
}

.message p img {
    width: 16vw;
}

.photo {
    margin: 2em 0 0;
}

.photo img {
    width: 46%;
    margin: 2%;
    float: left;
    border-radius: 1vw;
}

}

@media (width < 480px) {

#message h3 {
    font-size: 5.2vw;
}

.message {
    margin: 1em 0 0;
}

.message p.sign {
    font-size: 80%;
}

.message p img {
    width: 24vw;
}

.photo {
    margin: 2em 0 0;
}

.photo img {
    width: 96%;
    margin: 2%;
    float: none;
    border-radius: 1.5vw;
}

.photo img.disp-pc {
    display: none;
}

.photo img.disp-sp {
    display: block;
}

}


/* ==========================================
    # パンくず
============================================= */

.breadcrumb {
    margin: 0 0 2em;
}

.breadcrumb ul {
    overflow: hidden;
}

.breadcrumb ul li {
    font-size: 75%;
    margin: 0 2em 0 0;
    float: left;
    position: relative;
}

.breadcrumb ul li::before {
    display: block;
    content: "";
    width: 4px;
    height: 4px;
    border-top: 1px solid var(--halfC);
    border-right: 1px solid var(--halfC);
    position: absolute;
    top: calc(50% - 2px);
    right: -1em;
    transform: rotate(45deg);
}

.breadcrumb ul li:last-child::before {
    display: none;
}

.breadcrumb ul li a {
    color: var(--halfC);
}

/* ==========================================
    # シングルページ
============================================= */

main.single {
    background: #fff;
}

.single .wrap {
    width: min(100% - 3em, 1000px);
}

#single-title {
    padding-top: calc(6em + 2vw);
    padding-bottom: 4em;
    position: relative;
}

#single-title .wrap::before {
    content: "";
    display: block;
    width: 6px;
    height: 100%;
    background: var(--accentC);
    position: absolute;
    top: 0;
    left: -8%;
}

#single-title .date {
    color: var(--accentC);
    font-size: 80%;
    margin: 0 0 1em;
}

#single-title .date span::before {
    font-family: FontAwesome;
    content: "\f073";
    margin: 0 .5em 0 0;
}

.single .container {
    padding: 0 0 6em;
}

@media (width < 840px) {

.single .container {
    padding: 0 0 5em;
}

#single-title {
    padding-bottom: 3em;
}

#single-title .wrap::before {
    display: none;
}

}

@media (width < 480px) {

.single .container {
    padding: 0 0 4em;
}

#single-title {
    padding-bottom: 2em;
}

#single-title .description br {
    display: none;
}

}

/* # シングルページタイトル - アイコン
============================ */

#contact #single-title .wrap {
    background: url(images/contact-single-title.svg) no-repeat right center / auto 90%;
}

#thanks #single-title .wrap {
    background: url(images/thanks-single-title.svg) no-repeat right center / auto 90%;
}

#entry #single-title .wrap {
    background: url(images/entry-single-title.svg) no-repeat right center / auto 90%;
}

#request #single-title .wrap {
    background: url(images/request-single-title.svg) no-repeat right center / auto 90%;
}

#download #single-title .wrap {
    background: url(images/download-single-title.svg) no-repeat right center / auto 90%;
}

#privacy #single-title .wrap {
    background: url(images/privacy-single-title.svg) no-repeat right center / auto 90%;
}

@media (width < 840px) {

#contact #single-title .wrap {
    background: url(images/contact-single-title.svg) no-repeat right top / auto 60%;
}

#thanks #single-title .wrap {
    background: url(images/thanks-single-title.svg) no-repeat right top / auto 60%;
}

#request #single-title .wrap {
    background: url(images/request-single-title.svg) no-repeat right top / auto 60%;
}

#download #single-title .wrap {
    background: url(images/download-single-title.svg) no-repeat right top / auto 60%;
}

#privacy #single-title .wrap {
    background: url(images/privacy-single-title.svg) no-repeat right top / auto 60%;
}

}

@media (width < 480px) {

#contact #single-title .wrap {
    background: url(images/contact-single-title.svg) no-repeat right 1em / 30% auto;
}

#thanks #single-title .wrap {
    background: url(images/thanks-single-title.svg) no-repeat right 1em / 30% auto;
}

#request #single-title .wrap {
    background: url(images/request-single-title.svg) no-repeat right 1em / 30% auto;
}

#download #single-title .wrap {
    background: url(images/download-single-title.svg) no-repeat right 1em / 30% auto;
}

#privacy #single-title .wrap {
    background: url(images/privacy-single-title.svg) no-repeat right 1em / 30% auto;
}

}

/* ==========================================
    # PDF一覧
============================================= */

.pdf-list {
    display: flex;
    flex-flow: wrap;
    gap: 3em;
}

.pdf-list li {
    width: calc(100%/3 - 2em);
    background: #fff;
    position: relative;
}

.pdf-list li h2 {
    line-height: 1.5;
    margin: 1em 0 .5em;
    padding: 0 0 0 1.5em;
    position: relative;
}

.pdf-list li h2::before {
    font-family: FontAwesome;
    content: "\f058";
    color: var(--accentC);
    margin: 0 .5em 0 0;
    position: absolute;
    left: 0;
}

.pdf-list li p {
    font-size: 80%;
}

.pdf-list li p a {
    display: block;
    width: 60%;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background: var(--baseC);
    margin: 1em auto 0;
    padding: .5em 0;
    border-radius: 3px;
}

.pdf-list li p a:hover {
    background: var(--halfC);
}

@media (width < 840px) {

.pdf-list {
    gap: 2em;
}

.pdf-list li {
    width: calc(100%/2 - 1em);
}

}

@media (width < 480px) {

.pdf-list {
    gap: 3em 0;
}

.pdf-list li {
    width: 100%;
}

.pdf-list li h2 {
    font-size: 110%;
}

.pdf-list li h2 br {
    display: none;
}

.pdf-list li p {
    font-size: 100%;
}

.pdf-list li p a {
    padding: .75em 0;
}

}

/* ==========================================
    # プライバシーポリシー
============================================= */

#privacy .container h3 {
    margin: 1em 0;
}

#privacy .container p,
#privacy .container ul {
    font-size: 80%;
    margin: 1em 0;
}

#privacy .container ul {
    list-style: decimal;
    margin: 0 0 0 1.5em;
}

/* ==========================================
    # お問い合わせ・資料請求
============================================= */

/* # レイアウト
============================ */

.caution {
    font-size: 80%;
    background: var(--thinC);
    margin: 0 auto 2em;
    padding: 1em;
}

#mailform {
}

#mailform form {
    display: flex;
    flex-flow: wrap;
    position: relative;
}

#mailform form dl {
    width: 50%;
    padding: .5em;
}

#mailform form dl.textbox {
    width: 100%;
}

#mailform form dl dt {
    font-weight: 600;
    position: relative;
    margin: 0 0 .25em;
}

#mailform form dl dt span {
    display: inline-block;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    margin: 0 1em 0 0;
    padding: .5em .75em;
    border-radius: 3px;
}

#mailform form dl dt span.must {
    background: #e44;
}

#mailform form dl dt span.any {
    background: #aaa;
}

#mailform form dl dd {
}

#mailform form .agree {
    width: 100%;
    font-size: 80%;
    text-align: center;
    margin: 1.5em auto 0;
}

#mailform form .agree a {
    color: var(--baseC);
    text-decoration: underline;
}

#mailform form .submitWrap {
    width: 100%;
    text-align: center;
    margin: 1.5em 0 0;
}

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

#mailform form {
    display: flex;
    flex-flow: wrap;
    position: relative;
}

#mailform form dl {
    width: 100%;
    padding: .5em;
}

#mailform form .agree {
    text-align: left;
}

}

/* # フォームパーツ
============================ */

::-webkit-input-placeholder {
    color:#ccc;
}

.subject {
    display: none;
}

#mailform form input,
#mailform form textarea,
#mailform form select {
    width: 100%;
    font-family: 'Roboto', 'Noto Sans JP', Meiryo, sans-serif;
    font-size: 16px;
    border: 1px solid #ddd;
    background: #fff;
    padding: 1em;
    outline: none;
    border-radius: 5px;
}

#mailform form input:focus,
#mailform form select:focus,
#mailform form textarea:focus {
    outline: 1px solid;
    outline-offset: -1px;
    background: #fff;
}

#mailform form input[type="submit"] {
    display: inline-block;
    width: 320px;
    color: #fff;
    font-family: 'Roboto', 'Noto Sans JP', Meiryo, sans-serif;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
    border: none;
    background-color: var(--baseC);
    padding: 1em;
    position: relative;
    top: 0;
    border-radius: 5px;
    -webkit-transition-duration:0.3s;
    transition-duration: 0.3s;
    cursor: pointer;
}

#mailform form input[type="submit"]:hover {
    background-color: var(--halfC);
}

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

#mailform form input[type="submit"] {
    width: 86%;
    font-size: 16px;
}

}

/* # その他
============================ */

.wpcf7-spinner,
.grecaptcha-badge {
    display: none!important;
}


/* ==========================================
    # サンクスページ
============================================= */

#thanks .container p {
    margin: 1em 0;
}

