﻿/******************************************************************************
******************************************************************************
**
** style.cssにおいて
** -- styleではコンテンツ（データ入れ）で使用する基本タグのCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- homeではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/

/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/

.base_w {}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.wrap {
    overflow: hidden;
    background: #1f1f1f;
}

/************************PC用*******************************/

@media screen and (min-width:769px) {

    /***********************************************************/
    /*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
    .sp {
        display: none;
    }

    .mcon {
        word-wrap: break-word
    }

    .mcon a img:hover {
        opacity: 0.8;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease
    }

    .mcon h1 {
        color: #FFF;
        font-size: 40px;
        padding: 10px;
        margin: 20px 0;
    }

    .mcon h2 {
        font-size: 18px;
        margin-bottom: 10px;
        margin-top: 20px;
    }

    .mcon h3 {
        font-size: 16px;
        margin-bottom: 8px;
        margin-top: 16px;
    }

    .mcon h4 {
        font-size: 1.2em;
        margin-bottom: 5px;
        margin-top: 5px;
    }

    .mcon h5,
    .mcon h6 {
        font-size: 1.1em;
        margin-bottom: 2px;
        margin-top: 5px;
    }

    .mcon hr {
        border: none;
        border-top: 1px dotted #000
    }

    .mcon iframe {
        max-width: 100%
    }

    .mcon img {
        max-width: 100%;
        height: auto
    }

    .mcon ol {
        margin-top: 1em;
        margin-bottom: 0.7em
    }

    .mcon ol li {
        margin-left: 1.5em;
        margin-bottom: 0.5rem
    }

    .mcon p {
        margin-bottom: 1em
    }

    .mcon ul {
        margin-top: 1.2em;
        margin-bottom: 0.7em
    }

    .mcon ul li {
        list-style-type: disc;
        margin-left: 1.5em;
        margin-bottom: 0.5rem
    }

    /***********************************************************/
    /***********************  header pc  *******************/
    header {
        padding: 1em 1em 0 1em;
        position: fixed;
        top: 0;
        width: 100%;
        background: #141414;
        border-bottom: solid 3px #4549b2;
        z-index: 10;
        color: #fff;
        opacity: 1;
    }

    header div h1 {
        width: 10%;
        margin-top: 0.5%;
        margin-right: 12%;
        float: left;
    }

    header div p {
        padding: 1em;
        border: 1px solid #fff;
        width: 25%;
        line-height: 1.3;
        float: left;
        margin-right: 5%;
        font-size: 0.9vw;
    }

    header div nav {
        width: 78%;
        float: left;
    }

    header div nav ul {
        padding: 0 3%;
        margin-top: 2%;
    }

    header div nav ul li {
        width: 14%;
        margin-right: 2%;
        float: left;
        text-align: center;
    }

    header div nav ul li a {
        display: inline-block;
        font-size: 1vw;
        color: #fff;
        padding-bottom: 2%;
        position: relative;
    }

    header div nav ul li a::after {
        border-bottom: solid 1px #8995f5;
        bottom: 0;
        content: "";
        display: block;
        transition: all .3s ease;
        -webkit-transition: all .3s ease;
        width: 0;
    }

    header div nav ul li a:hover::after {
        width: 100%;
    }

    header > ul li.line a {
        background: url(http://www.i-satu.com/wp-content/uploads/2019/05/line_icon.png) no-repeat 0 0px;
        right: 268px;
    }

    header > ul li.ex a {
        background: url(http://www.i-satu.com/wp-content/uploads/2019/05/exporter_icon.png) no-repeat 0 0px;
        right: 233px;
    }
    header > ul li.twi a {
        background: url(http://www.i-satu.com/wp-content/uploads/2019/05/twitter_icon.png) no-repeat 0 0px;
        right: 202px;
    }

    header > ul li.wei a {
        background: url(https://www.i-satu.com/wp-content/uploads/2023/04/whatsapp-2.png) no-repeat 0 0px;
        right: 170px;
    }
    header > ul li.face a {
        background: url(http://www.i-satu.com/wp-content/uploads/2019/05/facebook_icon.png) no-repeat 0 0px;
        right: 140px;
    }


    header > ul li a {
        width: 30px;
        height: 30px;
        display: block;
        position: fixed;
        top: 1%;
        -webkit-transition: 0.2s ease-in-out;
        -moz-transition: 0.2s ease-in-out;
        -o-transition: 0.2s ease-in-out;
        transition: 0.2s ease-in-out;
    }

    header > ul li a:hover {
        background-position: 0 bottom;
        -webkit-transition: 0.2s ease-in-out;
        -moz-transition: 0.2s ease-in-out;
        -o-transition: 0.2s ease-in-out;
        transition: 0.2s ease-in-out;

    }

    a {
        text-decoration: none;
    }

    /***********************  main pc  *******************/
    main {
        padding-top: 2.5%;
        background: #1f1f1f;
    }

    main section.slider {
        width: 100%;
        position: relative;
        margin-bottom: 1%;
    }

    main section.slider .slider3 img {
        width: 100%;
    }

    main .slider3 {
        width: 100%;
        background: black;
        opacity: 0.8;
    }

    main .slider3 li {
        overflow: hidden;
    }

    main section.slider p {
        position: absolute;
        top: 52%;
        padding: 1em;
        line-height: 1.3;
        font-size: 1.5vw;
        color: white;
        text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.3);
        background: rgb(222, 184, 135, 0.4)
    }

    main section.setumei {
        height: auto;
        background: #d9d9d9;
    }

    main section.Category h2 {
        font-family: 'Roboto', Century Gothic, sans-serif;
        width: 30%;
        float: left;
        line-height: 3.5;
        text-align: center;
        margin-bottom: 2%;
        margin-right: 1%;
        font-size: 3.5em;
        color: white;
    }

    main section.Category {
        width: 90%;
        margin: 0 auto;
    }

    main .slider2 {
        width: 65%;
        float: left;
        margin-bottom: 3%;
    }

    main .slider2 li {
        overflow: hidden;
        position: relative;
    }

    main .slider2 li:hover img.tran {
        -webkit-transform: rotate(-15deg) scale(1.3);
        transform: rotate(-15deg) scale(1.3);
    }

    main .slider2 li img.tran {
        -webkit-transform: rotate(0) scale(1);
        transform: rotate(0) scale(1);
        -webkit-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    main .slider2 img {
        width: 100%;
    }

    main .slider2 .slick-slide {
        margin: 0.3%;
    }

    main section.Category ul li div {
        position: absolute;
        top: 0;
        left: 0;
        text-align: center;
        z-index: 2;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        -webkit-transition: .3s;
        transition: .3s;
        opacity: 0;
        padding: 1em;
    }

    main section.Category ul li a div p {
        display: block;
        color: #fff;
        height: 100%;
        font-size: 18px;
    }

    main section.Category ul li div p {
        width: 100%;
        height: 100%;
    }

    main section.Category ul li:hover div {
        opacity: 1;
    }

    main section.Category ul li:hover a div p {
        height: 100%;
    }

    /***********************  footer pc  *******************/
    footer {
        background: #1f1f1f;
        text-align: center;
        line-height: 1.5;
    }

    footer a {
        color: #fff;
    }

    footer h3 {
        font-weight: bolder;
        color: #fff;
    }

    footer > div {
        padding: 1em;
        text-align: left;
        width: 80%;
        background: #454545;
    }

    footer > div > div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: stretch;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    footer div div div {
        flex-grow: 1;
        height: auto;
        margin: 5px;
        padding: 1em;
    }

    footer div div div div {
        margin-bottom: 1em;
    }

    footer div div div p a {
        display: inline-block;
        margin-right: 0.5em;
    }

    footer div div div > img {
        width: 30%;
        min-width: 20%;
    }

    footer p {
        line-height: 1.5;
        padding: 2%;
        color: #fff;
    }

    footer > div > p {
        text-align: center;
    }

    footer p small {
        font-size: 11px;
    }
    .button_fot {
        display: inline-block;
        text-align: center;
        text-decoration: none;
        outline: none;
    }
    .button_fot::before,
    .button_fot::after {
        position: absolute;
        z-index: -1;
        display: block;
        content: '';
    }
    .button_fot,
    .button_fot::before,
    .button_fot::after {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: all .3s;
        transition: all .3s;
    }
    .button_fot {
        padding: 0.2em 1em;
        position: relative;
        z-index: 2;
        background-color: #454545;
        border: 2px solid #454545;
        color: #fff;
        overflow: hidden;
        border-radius: 10px;
    }
    .button_fot:hover {
        color: #454545;
    }
    .button_fot::after {
        top: -100%;
        left: -100%;
        width: 100%;
        height: 100%;
    }
    .button_fot:hover::after {
        top: 0;
        left: 0;
        background-color: #fff;
    }
    /*********************/
}

/*PC用終わり*/

/*********************/

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/

.pagetop {
    border-radius: 50%;
    bottom: 30px;
    height: 70px;
    right: 30px;
    position: fixed;
    width: 70px;
    z-index: 100
}

.pagetop_btn {
    background-color: #021774;
    border-radius: 50%;
    color: #FFF;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 9px;
    height: 100%;
    opacity: 0.8;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    width: 100%
}

.pagetop_btn:hover {
    opacity: 1;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/

.index_bnr_list li {
    margin-bottom: 4px
}

.index_bnr_list a {
    padding: 16px 16px 16px 42px;
    border: 1px solid #000000;
    border-radius: 3px;
    display: block;
    text-decoration: none;
    background: url(../images/common/icon_elink_black.png) no-repeat 16px center;
    color: #000000
}

.index_bnr_list a:hover {
    background-color: #000;
    background-image: url(../images/common/icon_elink_white.png);
    color: #FFF
}

.index_news_list {
    display: flex;
}

.index_news_list li {
    width: calc((100% - 60px) / 4);
    margin-right: 20px;
}

.index_news_list li:nth-last-of-type(1) {
    margin-right: 0;
}

.index_news_list a {
    display: block;
    text-align: center;
}

.index_news_list img {
    border: 1px solid #CCC;
    width: 100%;
    height: 200px;
    -o-object-fit: contain;
    object-fit: contain;
    font-family: 'object-fit: contain;';
    margin-bottom: 5px;
}

.index_slide {
    display: flex;
    margin-bottom: 60px;
}

.index_slide_inr_l {
    width: 640px;
}

.index_slide_inr_r {
    width: 320px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/

.page_mcon {
    width: 960px;
    margin: 20px auto 0;
    color: #fff;
}

.page_guide {
    margin: 100px 0 50px;
}

.single_box {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
}

.archive_news_list {
    display: flex;
}

.archive_news_list li {
    width: calc((100% - 60px) / 4);
    margin-right: 20px;
}

.archive_news_list li:nth-last-of-type(1) {
    margin-right: 0;
}

.archive_news_list a {
    display: block;
    text-align: center;
}

.archive_news_list img {
    border: 1px solid #CCC;
    width: 100%;
    height: 200px;
    -o-object-fit: contain;
    object-fit: contain;
    font-family: 'object-fit: contain;';
    margin-bottom: 5px;
}

.single_box_inr_01 {
    border: 1px solid #CCC;
}

.single_box_inr_01 img {
    width: 440px;
    height: 440px;
    -o-object-fit: contain;
    object-fit: contain;
    font-family: 'object-fit: contain;'
}

.single_box_inr_02 {
    width: 480px;
}

.single_guide {
    border-top: 1px solid #CCC;
    padding-top: 50px;
    margin-top: 50px;
}

.newtrade_layout_img {
    position: relative;
}

.newtrade_layout_img_btn_01 {
    position: absolute;
    top: 450px;
    left: calc(50% - 150px);
    width: 300px;
    height: auto;
}

.newtrade_layout_img_btn_02 {
    position: absolute;
    top: 620px;
    left: calc(50% - 150px);
    width: 300px;
    height: auto;
}

/*----------------------------------------------------------------------------
******************************************************************************
** common
******************************************************************************
----------------------------------------------------------------------------*/

.cmn_head_bg_blue_01 {
    background-color: #021774;
    border-left: 5px solid #6B89F2;
    color: #FFF;
    font-size: 20px;
    margin-bottom: 20px;
    padding: 5px 10px;
}

.cmn_shinki {
    text-align: center;
    margin: 60px 0;
}

.cmn_shinki_ttl {
    display: block;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** 編集部分
******************************************************************************
----------------------------------------------------------------------------*/

section.base_w.mb_30 p#text_p {
    text-align: center;
    font-size: 30px;
    font-weight: bolder;
}

#fixeBox {

    position: fixed;

    bottom: 10px;

    left: calc(50% - 480px);

    width: 960px;

}



#fixeBox_close {

    position: fixed;

    bottom: 102px;

    left: calc(50% + 480px);

    cursor: pointer;

}



.fixeBox_none {

    display: none;

}

.clearfix {
    content: "";
    display: block;
    clear: both;
}

/*----------------------------------------------------------------------------
******************************************************************************
** 編集部分 トップ　twitter 貼り付け変更部分
******************************************************************************
----------------------------------------------------------------------------*/

.base_o {
    width: 960px;
    margin: 0 auto 30px auto;
}

.base_o div.flot_lef {
    width: 470px;
    margin-right: 20px;
    float: left;
}

.base_o div.flot_rig {
    width: 470px;
    float: left;
}

/*----------------------------------------------------------------------------
******************************************************************************
** 編集部分 トップ メインボタン
******************************************************************************
----------------------------------------------------------------------------*/

#sinki_btn {
    width: 85%;
    margin: 0 auto;
}

#sinki_btn div {
    width: 45%;
    margin-right: 10%;
    float: left;
}

#sinki_btn div:last-of-type {
    margin-right: 0;
}

#sinki_btn div p {
    font-size: 22px;
    font-weight: bolder;
    padding: 5px 10px 0;
}

#sinki_btn div img {
    width: 100%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** 編集部分 プレミアムセール
******************************************************************************
----------------------------------------------------------------------------*/

div.higawari {
    padding-top: 145px;
}

div.higawari ul#higawari2 {
    width: 892px;
    margin: 0 auto;

}

div.higawari ul#higawari2 li {
    margin-left: 0;
    margin-right: 20px;
    margin-bottom: 190px;
    float: left;
    list-style-type: none;
}

div.higawari ul#higawri2 li:nth-child(3n) {
    margin-right: 0;
}

div.higawari ul#higawari2 li:nth-child(13) {
    margin-bottom: 0;
}

div.higawari ul#higawari2 li:nth-child(14) {
    margin-bottom: 0;
}

div.higawari ul#higawari2 li:nth-child(15) {
    margin-bottom: 0;
}


div.premium {
    padding-top: 167px;
}

div.premium ul#premium {
    width: 892px;
    margin: 0 auto;

}

div.premium ul#premium li {
    margin-left: 0;
    margin-right: 20px;
    margin-bottom: 35px;
    float: left;
    list-style-type: none;
}

div.premium ul#premium li:nth-child(3n) {
    margin-right: 0;
}

div.premium ul#premium li:nth-child(7) {
    margin-bottom: 0;
}

div.premium ul#premium li:nth-child(8) {
    margin-bottom: 0;
}

div.premium ul#premium li:nth-child(9) {
    margin-bottom: 0;
}

div.outlet {
    padding-top: 135px;
}

div.outlet ul#outlet {
    width: 892px;
    margin: 0 auto;

}

div.outlet ul#outlet li {
    margin-left: 0;
    margin-right: 20px;
    margin-bottom: 30px;
    float: left;
    list-style-type: none;
}

div.outlet ul#outlet li:nth-child(3n) {
    margin-right: 0;
}

div.premium ul#premium li:nth-child(4+n) {
    margin-bottom: 0;
}


/*----------------------------------------------------------------------------
******************************************************************************
** 編集部分 春の新生活特集（コスメ）
******************************************************************************
----------------------------------------------------------------------------*/

.tokushu {
    background: red;
    padding: 30px;
    font-size: 16px;
    line-height: 1.5;
}

.tokushu ul li {
    list-style-type: none;
    margin: 0;
}

.tokushu #top > p {
    color: red;
    font-size: 20px;
    font-weight: bolder;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    float: left;
    margin: 0;
    margin-right: 15px;
}

.tokushu #top #top_h {
    float: left;
    margin-right: 15px;
    height: 81px;
}

.tokushu #top #top_h h2 {
    margin: 0;
    color: #fff;
    font-size: 51px;
    line-height: 1;
}

.tokushu #top #top_h p {
    color: #fff;
    font-size: 20px;
    font-weight: bolder;
    margin: 0;
    margin-bottom: 10px;
    line-height: 1;
}

.tokushu #top ul {
    float: left;
    margin: 0;
}

.tokushu #top ul li {
    font-weight: bolder;
    color: red;
    font-size: 15px;
    padding: 2px 5px 2px 2px;
    margin-bottom: 3px;
    background: #fff;
}

.tokushu #top ul li:last-of-type {
    margin-bottom: 0;
}

.tokushu .top_under {
    color: #fff;
    font-weight: bolder;
}

.tokushu .tokushu_main {
    background: #fff;
    padding: 15px;
}

.tokushu_main p {
    font-weight: bolder;
}

.tokushu .tokushu_main ul {
    margin: 0;
}

.tokushu .tokushu_main ul li {
    width: 49%;
    margin-right: 2%;
    float: left;
}

.tokushu .tokushu_main ul li:last-of-type {
    margin-right: 0;
}

.tokushu .tokushu_main ul li img {
    width: 100%;
}

.tokushu .sub_item {
    background: #fff;
    position: relative;
    text-align: center;
}

.tokushu .sub_item ul {
    margin: 0 auto;
    width: 95%;
}

.tokushu .sub_item ul li {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 20px;
    float: left;
}

.tokushu .sub_item ul li:nth-child(3n) {
    margin-right: 0;
}

.tokushu .sub_item ul li:nth-child(4) {
    margin-bottom: 0;
}

.tokushu .sub_item ul li:nth-child(5) {
    margin-bottom: 0;
}

.tokushu .sub_item ul li:nth-child(6) {
    margin-bottom: 0;
}

.tokushu .sub_item div.hosi_01 {
    position: absolute;
    top: -10px;
    left: 0;
}

.tokushu .sub_item div.hosi_02 {
    position: absolute;
    top: -10px;
    left: 290px;
}

.tokushu .sub_item div.hosi_03 {
    position: absolute;
    top: -10px;
    left: 590px;
}

.tokushu .sub_item div.hosi_04 {
    position: absolute;
    top: 230px;
    left: 0;
}

.tokushu .sub_item div.hosi_05 {
    position: absolute;
    top: 230px;
    left: 290px;
}

.tokushu .sub_item div.hosi_06 {
    position: absolute;
    top: 230px;
    left: 590px;
}

.tokushu .sub_item p {
    color: red;
    font-size: 22px;
    font-weight: bolder;
    text-align: center;
}

.tokushu .foot {
    background: #fff;
    padding: 0 30px;
    text-align: center;
}

.tokushu .foot h3 {
    margin: 0;
    margin-left: 20px;
    width: 30%;
    font-size: 20px;
    background: red;
    color: #fff;
    padding-left: 5px;
}

.tokushu .foot div.me_ka {
    border: 2px solid red;
    padding: 10px;
    text-align: right;
}

.tokushu .foot p {
    display: block;
    font-size: 22px;
    font-weight: bolder;
    color: red;
    margin: 0;
}

.tokushu .foot div.figure {
    border: none;
    margin-top: 20px;
    padding-bottom: 20px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** 編集部分 下層LP
******************************************************************************
----------------------------------------------------------------------------*/

ul.omo1 li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}



.mcon .omo1 h2 {
    color: #021774;
    font-size: 38px;
    text-align: center;
}

div.omo1_qes {
    position: relative;
    width: 960px;
    text-align: center;
}

ul.omo1_qes_hukidashi li {
    font-size: 25px;
    border-radius: 2em;
    margin: 10px;
    padding: 20px;
    text-align: center;
    display: inline-block;
    background-color: #366886;
    border-radius: 55px;
    position: absolute;
    width: 300px;
    line-height: 1.2;
    color: #fff;
    font-weight: bold;
    text-shadow: 1px 1px 1px #2b2b2b;
}


ul.omo1_qes_hukidashi li:nth-child(1) {
    top: 0%;
    left: 6%;
}

ul.omo1_qes_hukidashi li:nth-child(2) {
    top: 30%;
    left: 1%;
}

ul.omo1_qes_hukidashi li:nth-child(3) {
    top: 0%;
    right: 6%;

}

ul.omo1_qes_hukidashi li:nth-child(4) {
    top: 30%;
    right: 1%;

}


li.omo1_point .left,
.right {
    display: table-cell;
    vertical-align: top;

}

li.omo1_point .left {
    width: 10%;
    font-size: 25px;
    vertical-align: top;
    padding-right: 3%;
    position: relative;
    padding: 10px;
    background: #021774;
    color: #fff;
}

/* アイコンを右に表示 */

li.omo1_point .left::before {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    right: -15px;
    top: 20px;
    border-left: 15px solid #021774;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}


li.omo1_point .right {
    vertical-align: top;
    font-size: 17px;
    padding-left: 2%;
}

li.omo1_point:nth-child(1) {
    border-bottom: 1px dotted #000;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

li.omo1_point:nth-child(2) {
    border-bottom: 1px dotted #000;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

li.omo1_btn a {
    font-size: 37px;
    text-decoration: none;
    width: 450px;
    height: auto;
    display: block;
    padding: 1%;
    text-align: center;
    margin: 0 auto;

}



.omo1_do_left {
    display: table-cell;
    width: 37%;
}

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

.omo1_check_left {
    display: table-cell;
}

.omo1_check_right {
    display: table-cell;
    width: 80%;
    vertical-align: middle;
}

.omo1_qes img {
    margin: 0 auto;
    margin-right: 180px;
}



p.omo1_check_p {
    font-size: 33px;
    color: #9e9e9e;
    font-family: serif;
    font-weight: bold;
    line-height: 1.3;
    margin: 0;
    padding: 0;
}

.omo1_do_right p {
    font-size: 58px;
    font-weight: bold;
    line-height: 1.3;
    margin: 0;
    font-family: cursive;
    color: #fb7882;
    text-shadow: 2px 1px 0px #710009;
}

p.omo1_btn_p {
    background: #efefef;
    font-size: 23px;
    border: 2px solid #a0a0a0;
    padding: 10px;
}

ul.omo1_Point {
    border: 5px solid #021774;
    padding: 15px;
    margin: 0;

}

.mcon .omo1 h2 {
    color: #021774;
    font-size: 38px;
    text-align: center;
}

p.omo1_check_p span {
    font-size: 46px;
    color: #bb9d2a;
}

.omo1_checkk {
    border-bottom: 10px solid #fcd41a;
    border-top: 10px solid #fcd41a;
    padding: 10px 0;
    /* border: 10px solid #fcd41a; */
    box-shadow: 5px 4px 7px #ccc;
}

ul.omo1 li:nth-child(1) p {
    margin: 0;
}

.mcon .omo1 h2.Point_omo {
    background: #021774;
    color: #fff;
    width: 470px;
    margin: 0;
    border-radius: 0.3em 0.3em 0 0;
}


/*----------------------------------------------------------------------------
******************************************************************************
** 編集部分 下層LP2
******************************************************************************
----------------------------------------------------------------------------*/

#omo2 {
    text-align: center;
}

#omo2 ul li {
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-bottom: 4em;
}

<strong > #omo2 h2</strong > {
    font-size: 50px;
}

#omo2 ul li:nth-child(1) ul li {
    display: inline-block;
    width: 222px;
    height: 150px;
    font-size: 33px;
    font-weight: bold;
}

#omo2 ul li:nth-child(1) ul li:nth-child(1) {
    color: #e99c1f;
}

#omo2 ul li:nth-child(1) ul li:nth-child(2) {
    color: #f19ec2;
}

#omo2 ul li:nth-child(1) ul li:nth-child(3) {
    color: #00b7ee;
}

#omo2 ul li:nth-child(1) ul li:nth-child(4) {
    color: #11b4b1;
}

#omo2 ul li:nth-child(2) ul li {
    display: inline-block;
    width: 30%;
    margin: 1%;
}

#omo2 ul li:nth-child(4) ul li {
    font-size: 22px;
    line-height: 1.5;
    margin: 0;
}

#omo2 ul li:nth-child(3) h2 {
    font-size: 85px;
    color: #bb9d2a;
    font-weight: bold;
    text-shadow: 7px 7px 0px #bb9d2a54;
    text-align: center;
    line-height: 1.2;
}

#omo2 ul li:nth-child(2) h3 {
    font-size: 30px;
    color: #fff;
    font-family: serif;
    background: #656565;
}

#omo2 ul li:nth-child(2) ul li p {
    font-size: 22px;
    line-height: 1.2;
    font-weight: bold;
    background: linear-gradient(transparent 50%, #f5d822 50%);
}


#omo2 ul li.gray {
    background: url(http://www.i-satu.com/wp-content/uploads/2018/04/60-lines.png) #ffffff;
}

#omo2 ul li.gray ul {
    margin: 0 30px;
    border: 1px solid #000;
    padding: 20px;
    background: #fff;
}

#omo2 ul li:nth-child(3) ul li {
    font-size: 20px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    text-align: left;
    font-weight: bold;
    line-height: 1.9;
}

#omo2 ul li:nth-child(3) ul {
    padding: 1em;
    margin: 0 0 1em 0;
    border: double 5px #021774;
}

#omo2 ul li:nth-child(3) h3 {
    background: #021774;
    margin: 0;
    padding: 0;
    font-size: 45px;
    color: #fff;
}

#omo2 ul li:nth-child(3) ul li span.kazu {
    background: #021774;
    border-radius: 10em;
    padding: 7px 12px;
    color: #fff;
    font-size: 16px;
}

#omo2 ul li:nth-child(3) ul li .hikouki {
    text-align: center;
}

#omo2 ul li:nth-child(3) ul li span.nouhau {
    font-size: 30px;
}



#omo2 ul li:nth-child(3) ul li p {
    display: inline-block;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

#omo2 ul li:nth-child(4) ul {
    background: #efefef;
    font-size: 23px;
    border: 2px solid #a0a0a0;
    padding: 10px;
    margin: 0;
    margin-bottom: 20px;
}

#omo2 ul li:nth-child(4) a {
    font-size: 37px;
    text-decoration: none;
    width: 450px;
    height: auto;
    display: block;
    padding: 1%;
    text-align: center;
    color: #fff;
    margin: 0 auto;

}



#omo2 ul li:nth-child(4) p {
    font-size: 50px;
    margin: 0;
    color: #021774;
    font-weight: bold;
}

#omo2 ul li:nth-child(1) h2 {
    position: relative;
    padding-left: 25px;
    font-size: 37px;
    color: #021774;
}

#omo2 ul li:nth-child(1) h2:before {
    position: absolute;
    content: '';
    bottom: -3px;
    left: 0;
    width: 0;
    height: 0;
    border: none;
    border-left: solid 15px transparent;
    border-bottom: solid 15px rgb(2, 23, 116);
}

#omo2 ul li:nth-child(1) h2:after {
    position: absolute;
    content: '';
    bottom: -3px;
    left: 10px;
    width: 100%;
    border-bottom: solid 3px rgb(2, 23, 116);
}

#omo2 ul li.gray h2 {
    text-align: left;
    font-size: 35px;
}

#omo2 ul li:nth-child(3) ul li:nth-child(2) ul li {
    width: 18%;
    border: none;
    margin: 5px;
    padding: 5px;
    color: #021774;
    text-shadow: 1px 1px 1px #fff;
    font-weight: bold;
}

.otoiawase,
.otoiawase_2 {
    display: table-cell;
    vertical-align: middle;
}

.otoiawase {
    width: 73%;
}

#omo2 ul li:nth-child(3) ul li:nth-child(2) ul {
    text-align: center;
    margin: 0;
    padding: 0;
    border: none;
    background: #0217741f;
}

#omo2 ul li:nth-child(3) ul li:nth-child(2) ul li img {
    border: 5px solid #fff;
    box-shadow: 1px 1px 1px #8a8a8a;
    width: 160px;
    height: 100px;
    background-size: cover;
}

#omo2 ul li:nth-child(3) ul li:nth-child(2) ul li img.migi {
    border: none;
    box-shadow: none;
    width: 20px;
    height: auto;
    margin-right: 0px;
}

#omo2 ul li:nth-child(3) ul li:nth-child(2) ul li img.migi,
p {
    display: inline-block;
    vertical-align: middle;
}

#omo2 ul li:nth-child(3) ul li .hikouki img {
    border: 5px solid #fff;
    box-shadow: 1px 1px 1px #8a8a8a;
}



/*----------------------------------------------------------------------------
******************************************************************************
** 編集部分 下層LP3
******************************************************************************
----------------------------------------------------------------------------*/

#omo3 ul li:nth-child(1) h2 {
    font-size: 50px;
    color: #021774;
    text-align: center;
    line-height: 1.2;
    padding: 0.3em;
    border-top: 4px solid;
    border-bottom: 4px solid;
}

#omo3 ul li:nth-child(1) p.pop {
    font-size: 50px;
    color: #ffffff;
    background: #a0a5aa;
    margin: 0;
}


#omo3 ul li:nth-child(1) ul li {
    display: inline-block;
    width: 30%;
    margin: 1%;
    vertical-align: top;
    border: 5px solid #a0a5aa;
    background: none;
    padding: 0;
    border-radius: 1em;
}

#omo3 ul li:nth-child(1) ul li h3 {
    text-align: center;
    background: #a0a5aa;
    color: #fff;
    font-weight: bold;
    font-size: 27px;
    margin: 0;
}


#omo3 ul li:nth-child(1).ce {
    text-align: center;
}

#omo3 ul li:nth-child(1) p {
    display: block;
    text-align: center;
}

#omo3 ul li:nth-child(2) h2 {
    font-size: 48px;
    text-align: center;
    color: #e71f19;
    line-height: 1.3;
    margin: 0;
    margin-bottom: 10px;
}

#omo3 ul li:nth-child(3) p {
    font-size: 45px;
    margin: 0;
    text-align: center;
    line-height: 1.3;
    margin: 10px 0 0 0;
    font-weight: bold;
    text-shadow: 1px 1px 1px #fff;
}

#omo3 ul li:nth-child(3) p.red {
    color: #e71f19;
    margin: 5px 0 20px 0;
    font-size: 60px;
}

#omo3 ul li {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#omo3 ul li:nth-child(2) {
    background: url(http://www.i-satu.com/wp-content/uploads/2018/04/absurdity.png) #e8e8e8;
    padding: 11em 1em 1em;
    border-radius: 1em 1em 0 0;
    margin-top: 50px;
    box-shadow: 1px 2px 1px rgba(153, 153, 153, 1);
}

#omo3 ul li:nth-child(3) {
    background: url(http://www.i-satu.com/wp-content/uploads/2018/04/absurdity.png) #f3f3f3;
    text-align: center;
    border-radius: 0 0 1em 1em;
    box-shadow: 1px 2px 1px rgba(153, 153, 153, 1);
}


#omo3 ul li:nth-child(4) h2 {
    font-size: 50px;
}


#omo3 ul li:nth-child(5) a.submit_btn {
    background: url(http://www.i-satu.com/wp-content/uploads/2018/04/btnbefore.png) no-repeat;
    width: 650px;
    height: 110px;
    display: block;
}

#omo3 ul li:nth-child(5) a.submit_btn:hover {
    background: url(http://www.i-satu.com/wp-content/uploads/2018/04/btnafter.png) no-repeat;
    width: 650px;
    height: 110px;
    display: block;
}

#omo3 ul li:nth-child(5) p {
    display: block;
    font-size: 20px;
}

#omo3 ul li:nth-child(1) img.under {
    position: absolute;
    left: 43.5%;
    margin-top: 0px;
}

#omo3 ul li:nth-child(4) {
    margin: 4em 0;
}

#omo3 ul li:nth-child(5) img {
    position: relative;
}

#omo3 ul li:nth-child(5) .sikaku {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

#omo3 ul li:nth-child(5) .sikaku_p {
    background: #ffffff8c;
    margin-bottom: 10px;
    text-align: center;
    width: 370px;
    margin-left: 10px;
}

#omo3 ul li:nth-child(5) .big_sikaku {
    position: relative;
}

#omo3 ul li:nth-child(5) p {
    display: block;
    font-size: 20px;
    margin: 0;
}




/*----------------------------------------------------------------------------
******************************************************************************
** 編集部分 下層LP4
******************************************************************************
----------------------------------------------------------------------------*/

#omo4 ul li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#omo4 a.hanbai_btn {
    background: url(http://www.i-satu.com/wp-content/uploads/2018/04/btn.png) no-repeat;
    width: 150px;
    height: 112px;
    display: block;
    background-size: 100%;
}


#omo4 h2 {
    font-size: 50px;
    text-align: center;
    margin: 0;
}


ul.omo4_qes_hukidashi li:nth-child(1) {
    top: 0%;
    left: 6%;
}

ul.omo4_qes_hukidashi li:nth-child(2) {
    top: 36%;
    left: 1%;
}

ul.omo4_qes_hukidashi li:nth-child(3) {
    top: 0%;
    right: 6%;
}

ul.omo4_qes_hukidashi li:nth-child(4) {
    top: 35%;
    right: 1%;
}



#omo4 ul.omo4_qes_hukidashi li {
    font-size: 25px;
    border-radius: 2em;
    margin: 10px;
    padding: 14px;
    text-align: center;
    display: inline-block;
    background-color: #ffffff;
    border-radius: 68px;
    position: absolute;
    width: 300px;
    line-height: 1.2;
    color: #868686;
    font-weight: bold;
    border: 2px solid #868686;
}

#omo4 .Trouble.block {
    background: url(http://www.i-satu.com/wp-content/uploads/2018/04/absurdity.png) #f2f0f1;
    padding: 20px;
}


#omo4 .Trouble_left {
    width: 70%;
    display: inline-block;
    vertical-align: top;
}

#omo4 .Trouble_right {
    display: inline-block;
}

#omo4 .Trouble_left h3 {
    font-size: 30px;
}

#omo4 .cha_gray {
    background: url(http://www.i-satu.com/wp-content/uploads/2018/04/absurdity.png) #f2f0f1;
}

#omo4 .con_left,
.con_right {
    display: inline-block;
    vertical-align: middle;
    width: 48%;

}

#omo4 .con_left {

    margin: 20px;
    padding: 10px;
    background: #ffffffc2;
    width: 438px;
    height: 130px;
    margin-top: 55px;
}


.omo_contact_Form.block p {
    display: block;
}



#omo4 .Enlargement.block ul li {
    background-color: #ffffff;
    color: #656565;
    margin: 2em;
    padding: 1em;
    position: relative;
    box-shadow: 1px 1px 0 rgba(255, 255, 255, .4) inset, 0 0 1px rgba(146, 146, 146, 0.8) inset, 2px 2px 2px rgba(0, 0, 0, .4);
}

#omo4 .cont_left,
.cont_right {
    display: inline-block;
    vertical-align: middle;

}

#omo4 .Enlargement.block ul li i {
    font-size: 133px;
    color: #c30d23;
}

#omo4 .Enlargement.block ul li:nth-child(1) i {
    margin-right: 20px;
}

#omo4 .Enlargement.block ul li:nth-child(3) i {
    margin-right: 20px;
}


#omo4 .Enlargement.block ul li:nth-child(2) i {
    margin-left: 20px;
}

#omo4 .Enlargement.block ul li:nth-child(4) i {
    margin-left: 20px;
}

#omo4 .Enlargement.block {

    background: url(http://www.i-satu.com/wp-content/uploads/2018/04/absurdity.png) #f2f0f1;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

#omo4 .Enlargement.block h3 {
    font-size: 35px;
    line-height: 1.3;

}

#omo4 .Enlargement.block h2 {
    color: #ffffff;
    font-size: 60px;
    background: #c30d23;
    text-shadow: 5px 5px 1px rgb(125, 31, 31);
}

#omo4 .omo_contact_Form.block h2 {
    color: #fff;
    text-shadow: 1px 1px 1px #000;
}

#omo4 .omo_contact_Form.block {
    background: url(http://www.i-satu.com/wp-content/uploads/2018/04/ipad-820272_1920_2-2.jpg) no-repeat;
    background-size: 100%;
    width: 100%;
    height: 317px;
    position: relative;
}

#omo4 .Trouble h2 {
    font-size: 46px;
    text-align: center;
    margin: 0;
    line-height: 1.2;
    padding: 20px 20px;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    background: #868686;
    margin-bottom: 10px;
}

#omo4 .Enlargement.block ul li:nth-child(2) {
    background-color: #c30d23;
    color: #fff;
}

#omo4 .Enlargement.block ul li:nth-child(2) i {
    color: #fff;
}

#omo4 .Enlargement.block ul li:nth-child(4) {
    background-color: #c30d23;
    color: #fff;
}

#omo4 .Enlargement.block ul li:nth-child(4) i {
    color: #fff;
}

#omo4 .Enlargement.block ul li:nth-child(2) .cont_left {
    width: 82%;
}

#omo4 .Enlargement.block ul li:nth-child(4) .cont_left {
    width: 82%;
}

p.goi_otoiawase {
    text-align: center;
    font-size: 22px;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    margin: 0;
}

#omo4 .omo1_qes img {
    margin: 0;
    padding-right: 38px;
}

#omo4 .Trouble.block ul li {
    width: 33%;
    text-align: center;
    font-size: 115px;
    display: inline-block;
    margin: 0;
    margin-top: -85px;
    vertical-align: top;
    color: #484848;
}

#omo4 .Trouble.block ul li a {
    font-size: 40px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid;
    padding: 10px;
    background: #fff;
    /* border-bottom: 7px solid; */
    display: block;
    color: #ff0000;
    margin-top: 65px;
    border: 3px solid;
    margin: 65px 10px 0 10px;
    border-radius: 1em;
    text-decoration: none;
    -webkit-transition: 0.8s;
    -moz-transition: 0.8s;
    -o-transition: 0.8s;
    -ms-transition: 0.8s;
    transition: 0.8s;
}

#omo4 .Trouble.block ul li p {
    font-size: 25px;
    display: block;
    line-height: 1.2;
    font-weight: bold;
    margin-top: -49px;
    vertical-align: top;
    padding: 0 20px;
}

#omo4 .Trouble.block ul {
    margin: 0;
}

#omo4 .Trouble.block ul li a:hover {
    background: #f00;
    color: #fff;
    border: none;
    border: 3px solid #f00;
}

#omo4 .omo1_qes p {
    margin: 0;
}

#omo4 .start.block h2 span {
    background-image: linear-gradient(to top, rgba(255, 0, 0, 0.33) 30%, transparent 30%);
}

#omo4 .Enlargement.block ul li:nth-child(1) .cont_right {
    width: 82%;
}

/*********************/

}

/*PC用終わり*/

/*********************/
