@charset "UTF-8";

/***********************************
0. reset css
***********************************/
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 {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    border: 0;
    outline: 0;
    background: transparent;
}

html {
    font-size: 20px;
    overflow-x: hidden;
}

@media (max-width: 610px) {
    html {
        font-size: 95%;
    }
}

@media (max-width: 400px) {
    html {
        font-size: 80%;
        overflow-x: hidden;
    }
}

body {
    line-height: 1.8rem;
    letter-spacing: 0;
    color: #162d61;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
    text-align: center;
}

h3 {
    font-style: normal;
    font-weight: 200;
    font-size: 2.56rem;
    letter-spacing: 0.1rem;
    line-height: 1;
    padding-bottom: 0.5rem;
}

h3 span {
    border-bottom: 1px solid;
}

p {
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0;
}

nav ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

input {
    outline: none;
}

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

a {
    font-size: 100%;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    background: transparent;
    outline: none;
    color: #444444;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    opacity: 0.8 !important;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

img {
    max-width: 100%;
}

ins {
    text-decoration: none;
    color: #000;
    background-color: #ff9;
}

mark {
    font-weight: bold;
    font-style: italic;
    color: #000;
    background-color: #ff9;
}

del {
    text-decoration: line-through;
}

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

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

hr {
    display: block;
    height: 1px;
    padding: 0;
    margin: 0;
    border: 0;
    border-top: 1px solid #9ADAF5;
}

li {
    list-style: none;
}

button {
    outline: none;
    cursor: pointer;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=reset],
input[type=button],
input[type=search] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=search]::-webkit-search-decoration {
    display: none;
}

input[type=submit]::focus,
input[type=reset]::focus,
input[type=button]::focus,
input[type=search]::focus {
    outline-offset: -2px;
}

/*
デバイスの要素表示切り替え
*/

.pc-only {
    display: none;
}

@media (min-width: 400px) {
    .sp-only {
        display: none;
    }

    .pc-only {
        display: block;
    }
}

/***********************************
* font
***********************************/
html {
    font-size: 85%;
    /* -> 10px */
    font-family: "ヒラギノ角ゴ ProN W0", HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
}

/*SP*/
@media (max-width: 400px) {
    html {
        font-size: 80%;
    }
}

.font_num {
    font-family: "Amiri", serif;
    font-style: normal;
    font-weight: 200;
}

.font_en {
    font-family: futura-pt, sans-serif;
    font-weight: 600;
    font-style: italic;
}

.font_din {
    font-family: din-2014, sans-serif;
    font-style: normal;
    font-weight: 200;
}

.font_ja {
    font-family: dnp-shuei-mgothic-std, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.clear {
    clear: both;
}

/***********************************
 bg
***********************************/
body {
    background-color: #fed500;
}

.bg_fix {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: fixed;
    z-index: -1;

}

/*PC*/
@media (max-width: 600px) {
    .bg_fix {
        display: none;
    }
}

/***********************************
 contents
***********************************/

.contents {
    padding: 4rem 5rem;
    color: #fff;
}

.contents .box-ttl {
    text-align: left;
    font-size: 3.5rem;
    line-height: 1.5;
    padding-bottom: 2rem;
}

.contents .box-ttl-emp {
    color: #fed500;
}

.contents .box-ttl-exp {
    text-align: left;
    padding-bottom: 2rem;
}

/*SP*/
@media (max-width: 400px) {
    .contents {
        padding: 4rem 3rem;
    }

    .contents .box-ttl {
        text-align: left;
        font-size: 2.5rem;
        line-height: 3rem;
        padding-bottom: 2rem;
    }
}

/***********************************
main
***********************************/

.main {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
}

.main_visual .logo {
    padding-top: 5rem;
}

.subcopy {
    font-size: 2rem;
    padding: 2rem 0;
    font-weight: bold;
}

.catchcopy h1 {
    line-height: 4rem;
    font-size: 5rem;
    font-weight: lighter;
}

.inquiry-btm a {
    display: block;
    width: 30%;
    font-size: 1.5rem;
    margin: 3rem auto;
    padding: 1.5rem;
    background-color: #fed500;
    border-radius: 5rem;
    border-color: #56c4db;
    border-width: 3px;
    border-style: solid;
    box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.5);
}

.inquiry-btm a:hover {
    color: #fff;
    border-color: #fed500;
    background-color: #56c4db;
    box-shadow: 0 0 2rem 0 #56c4db;
    -webkit-transition: all 0.3s;
    transition: all 0.5s;
}

.jump-menu {
    margin: 0 3rem;
}

.jump-menu ul {
    display: flex;
    margin-bottom: 3rem;
}

.jump-menu ul li {
    padding: 0 1rem;
    padding-top: 10rem;
    border-left: 1px dotted #999;
    line-height: 1.3rem;
    width: 100%;
}

.jump-menu ul li:first-child {
    border: none;
}

.jump-menu ul li a {
    display: block;
    width: 100%;
    height: 70%;
}

.jump-menu ul li .menu-btm {
    height: 1rem;
    width: 70%;
    margin: 0 auto;
    padding: 0.5rem;
    text-align: center;
    background-color: #fed500;
    border-radius: 5rem;
    border-color: #56c4db;
    border-width: 3px;
    border-style: solid;
    box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.5);
    background-image: url(../img-assets/menu-btm.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1rem;
}

.jump-menu ul li .menu-btm:hover {
    border-color: #fed500;
    background-color: #56c4db;
    box-shadow: 0 0 1rem 0 #56c4db;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.jump-menu .menu-fmt {
    background-image: url(../img-assets/menu-fmt.png);
    background-size: 5rem;
    background-repeat: no-repeat;
    background-position: center 20%;
}

.jump-menu .menu-target {
    background-image: url(../img-assets/menu-target.png);
    background-size: 5rem;
    background-repeat: no-repeat;
    background-position: center 20%;
}

.jump-menu .menu-access {
    background-image: url(../img-assets/menu-access.png);
    background-size: 5rem;
    background-repeat: no-repeat;
    background-position: center 20%;
}

.jump-menu .menu-support {
    background-image: url(../img-assets/menu-support.png);
    background-size: 5rem;
    background-repeat: no-repeat;
    background-position: center 20%;
}

/*SP*/
@media (max-width: 400px) {


    .subcopy {
        line-height: 1.5rem;
        font-size: 0.5rem;
        padding: 1rem 0;
        font-weight: bold;
    }

    .catchcopy h1 {
        line-height: 3.2rem;
        font-size: 2.5rem;
        font-weight: lighter;
        padding-bottom: 2rem;
    }

    .inquiry-btm a {
        width: 50%;
        font-size: 1rem;
        margin: 5rem auto;
        padding: 1rem;
        border-width: 5px;
        box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.5);
    }

    .jump-menu {
        margin: 0 1rem;
    }

    .jump-menu ul li {
        padding: 0 0.5rem;
        padding-top: 5rem;
        line-height: 1.3rem;
        font-size: 0.8rem;
    }

    .jump-menu ul li .menu-btm {
        height: 1rem;
        width: 70%;
        padding: 0.1rem;
        border-width: 5px;
        background-size: 15%;
    }

    .jump-menu .menu-fmt,
    .jump-menu .menu-target,
    .jump-menu .menu-access,
    .jump-menu .menu-support {
        background-size: 3rem;
    }

}


/***********************************
多種多様なフォーマット
***********************************/
#box-format {
    background-color: #162d61;
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(/img-assets/box-format-bg.svg);
}

.box-carousel {
    margin-top: 10vw;
}

.box-creative-pc {
    display: flex;
    flex-wrap: wrap-reverse;
    flex-direction: row-reverse;
    margin-bottom: 5em;
}

.box-creative-pc-area {
    display: flex;
    align-items: center;
    width: 65%;
}

.exec-panel {
    min-width: 320px;
    overflow-x: clip;
    padding: 0 30px;
    position: relative;
    /* max-width: 356px; */
    display: flex;
    justify-content: center;
    width: 50%;
}

.phone {
    left: 21px;
    top: -191px;
    position: absolute;
}

.exec-frame-wrapper {
    position: relative;
    z-index: 10;
}

/*デモをみる*/
/*PC*/
@media screen and (min-width:740px) {}

.box-creative-select {
    position: relative;
    width: 184px;
    height: 40px;
    border-radius: 8px;
    background: #fed500;
    color: #333;
    margin: 1rem auto;
}

.box-creative-select select {
    color: #333;
    font-size: 16px;
    padding: 7px 16px 9px;
    line-height: 1.5rem;
    width: 100%;
    background-color: initial;
    border-style: none;
}

.box-creative-demo {
    color: #fed500;
    background-color: #162d61;
    border-radius: 5rem;
    border-color: #56c4db;
    border-width: 5px;
    border-style: solid;
    box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.5);
    margin: 3rem auto;
    padding: 1rem;
    width: 50%;
}

/***********************************
豊富なターゲットメニュー
***********************************/
#box-target {
    font-size: 1.5em;
    background-color: #264ba3;
    background-position: top right;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(/img-assets/box-target-bg.png);
}

.box-target-icon {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    color: #fed500;
    margin: 0 auto;
    width: 100%;
}

.box-target-icon li {
    padding: 1em 4em;
}

.box-target-icon li img {
    width: 3em;
}

.box-target-text-top img {
    width: 3em;
    margin: 0 auto;
    padding: 2rem 0;
}

.box-target-text {
    color: #fed500;
    background-color: #162d61;
    width: 29rem;
    padding: 3em;
    margin: 0 auto;
    border-radius: 1rem;
}

/*SP*/
@media (max-width: 400px) {
    #box-target {
        font-size: 1em;
    }

    .box-target-icon li {
        width: 25%;
        padding: 0.5rem;
        font-size: 1em;
    }

    .box-target-icon li img {
        width: 80%;
    }

    .box-target-text-top img {
        width: 10%;
        margin: 0 auto;
        padding: 2rem 0;
    }

    .box-target-text {
        width: 19rem;
        padding: 1rem;
        border-radius: 1rem;
    }
}

/***********************************
世界最大の在庫にアクセス
***********************************/
#box-access {
    background-color: #162d61;
    background-position: top right;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(/img-assets/box-access-bg.png);
}

.box-access-icon {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    color: #fed500;
    margin: 0 auto;
    width: 100%;
}

.box-access-icon li {
    width: 15em;
    padding-bottom: 2em;
}

.box-access-icon li img {
    width: 5em;
}

.box-access-icon .icon-text {
    font-size: 1.5em;
    padding: 1em;
    text-align: center;
}

/*SP*/
@media (max-width: 400px) {
    .box-access-icon li {
        width: 30%;
        padding: 0.5rem;
    }

    .box-access-icon .icon-text {
        font-size: 1rem;
        padding: 0.5rem;
    }
}

/***********************************
配信後の分析まで一括サポート
***********************************/
#box-support {
    background-color: #264ba3;
    background-position: right top;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(/img-assets/box-support-bg.png);
}

.box-support-list {
    margin: 5rem auto;
}

.box-support-list li {
    color: #fed500;
    border: 1px solid #fed500;
    border-radius: 4rem;
    padding: 1rem;
    margin: 0 auto;
    margin-bottom: 1rem;
    background-color: #162d61;
    text-align: left;
    font-size: 1.5rem;
    width: 50%;
}

.support-step {
    font-size: 1rem;
    padding-left: 1rem;
}

.support-num {
    font-size: 2rem;
    padding-left: 1rem;
    padding-right: 3rem;
}

.box-support-txt {
    text-align: left;
    line-height: 1.5;
    font-size: 1.5rem;
    margin: 0 auto;
    padding-bottom: 2rem;
    width: 50%;
}

.support-creative {
    text-align: left;
    margin-top: 2rem;
    margin: 0 auto;
    width: 50%;
}

.support-creative span {
    background-color: #fed500;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    color: #162d61;
}

.support-creative dd {
    padding: 1rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 1px #fed500 dotted;
}

/*SP*/
@media (max-width: 400px) {
    .box-support-list {
        margin-bottom: 5rem;
    }

    .box-support-list li {
        width: 80%;
    }

    .support-num {
        padding-right: 1.5rem;
    }

    .box-support-txt {
        width: 80%;

    }

    .support-creative {
        width: 80%;
    }
}



/***********************************
利用シーン
***********************************/
#box-scene {
    background-color: #162d61;
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(/img-assets/box-access-bg.svg);
    text-align: left;
}

.box-scene-txt {
    margin: 0 auto;
    margin-top: 2rem;
    width: 70%;
}

.box-scene-txt dt {
    font-size: 1.5em;
    background-color: #fed500;
    padding: 1rem 2rem;
    border-radius: 2rem;
    color: #162d61;
    text-align: center;
}

.box-scene-txt dd {
    padding: 2rem;
}

/*SP*/
@media (max-width: 400px) {
    .box-scene-txt {
        width: 90%;
    }
}

/***********************************
費用
***********************************/
#box-cost {
    color: #264ba3;
}

#box-cost .box-cost-wrap {
    margin: 0 auto;
    background-color: #fff;
    border-radius: 2rem;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, .2);
}

#box-cost .box-cost-ttl {
    font-size: 1.6rem;
    padding: 2rem 0;
}

#box-cost table {
    background-color: #fff;
    padding: 1rem;
    width: 100%;
    border-radius: 2rem;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, .2);
}

#box-cost table th {
    border-bottom: 1px solid #fed500;
    padding: 5rem 3rem;
    text-align: left;
    width: 12rem;
}

#box-cost table tr {
    border-bottom: 1px solid #162d61;
    padding: 2rem 1rem;
}

#box-cost table tr:last-child th,
#box-cost table tr:last-child {
    border: none;
}

/*SP*/
@media (max-width: 400px) {
    #box-cost .box-cost-wrap {
        width: 100%;
    }

    #box-cost table th {
        padding: 2rem;
        width: 8rem;
    }
}

/***********************************
問い合わせ
***********************************/
#box-inquiry {
    color: #264ba3;
}

#box-inquiry .box-inquiry-wrap {
    margin: 0 auto;
    width: 100%;
    background-color: #fff;
    border-radius: 2rem;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, .2);
}

#box-inquiry .box-inquiry-ttl {
    font-size: 1.6rem;
    padding: 2rem 0;
}

#box-inquiry form {
    background-color: #fff;
    border-radius: 2rem;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, .2);
    text-align: left;
    padding: 5rem;
}

#box-inquiry fieldset {
    margin-bottom: 1rem;
}

#box-inquiry legend {
    padding: 0.1rem 0;
    border-bottom: 2px solid #264ba3;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

#box-inquiry fieldset li {
    padding: 0.5rem 0;
}

.form-input input,
#box-inquiry textarea {
    border-color: transparent;
    border-radius: 0.5rem;
    background-color: #eee;
    padding: 1rem 2rem;
    margin-bottom: 1rem;
    width: 80%;
}

#box-inquiry textarea {
    width: 80%;
    height: 10rem;
}

.form-submit {
    width: 100%;
    text-align: center;
}

.form-submit input {
    position: relative;
    top: 4rem;
    width: 100%;
    font-size: 1.2rem;
    margin: 0 auto;
    padding: 1rem;
    color: #222;
    background-color: #fed500;
    border-radius: 5rem;
    border-color: #56c4db;
    border-width: 5px;
    border-style: solid;
    box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.5);
}

/*SP*/
@media (max-width: 400px) {
    #box-inquiry .box-inquiry-wrap {
        width: 100%;
    }

    #box-inquiry form {
        padding: 2rem;
    }
}

/***********************************
footer
***********************************/
footer {
    margin: 1rem 0;
}

footer ol {
    display: flex;
    justify-content: center;
}

footer ol li {
    padding: 1rem;
    text-align: center;
}

/************************************
PC用
************************************/
@media screen and (min-width:740px) {

    /*    display: flex;
    justify-content: space-between;
    */
    .reserve_button_btm {
        margin-bottom: -40px;
    }

    .agageninzu-txt1 {
        position: relative;
        top: 150px;
        left: 20px;
    }

    .agageninzu-txt2 {
        position: relative;
        right: -395px;
        top: -25px;
    }

    .agageninzu-txt3 {
        position: relative;
        top: 130px;
        left: 20px;
    }

    .agageninzu-txt4 {
        position: relative;
        right: -395px;
        top: -45px;
    }

}