@charset "utf-8";
/* CSS Document */

html {
    font-size: 62.5%;
}

body {
    color: #333;
    line-height: 1.6;
    font-size: 16px;
    font-size: 1.6rem;
    /* =16px */
    font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    overflow: auto;
    height: 100%;
}

a {
    outline: none;
    text-decoration: none;
}

img {
    width: 100%;
    text-align: center;
}

p {
    font-size: 1.4rem;
}

.font-bold {
    font-weight: bold;
}


/*///基本////*/
.wrapper {
    width: 100%;
}

.content {
    width: 960px;
    max-width: 100%;
    margin: auto;
}

.ttl_l {
    text-align: center;
    font-size: 5rem;
    color: #ff4641;
    line-height: 1.2;
}

.top_sub_ttl {
    color: #402100;
    font-size: 1.9rem;
    text-align: center;
}

.ttl {
    font-size: 2.4rem;
    text-align: center;
    background: #ffb400;
    color: #ffffff;
    font-weight: bold;
    padding: 10px 0;
}

.sub_text {
    font-size: 1.8rem;
    text-align: left;
    color: #402100;
    font-weight: bold;
}

.center {
    text-align: center;
}

.btn_link {
    width: 479px;
    max-width: 100%;
    display: block;
    margin: auto;
    text-align: center;
}

.btn_link img {
    width: 100%;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.in_flex ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.in_flex .col3_w li {
    width: 33.33%;
    text-align: center;
}

.w30 {
    width: 30%;
    text-align: center;
}

.w20 {
    width: 20%;
    text-align: center;
}

.w50 {
    width: 50%;
    text-align: center;
}

.content_box {
    padding: 20px 10px;
}

.mb_10 {
    margin-bottom: 10px;
}

.mb_20 {
    margin-bottom: 20px;
}

/*///スマホ///*/

/*///header////*/
header .wrapper {
    background: #ff9196;
}

header nav {
    margin: auto 10px;
    padding-bottom: 20px;
}

header nav a {
    color: #ffffff;
    text-align: center;
    display: inline-block;
}

header nav ul li.link a {
    display: block;
    background: #ff4641;
    padding: 10px 20px;
}


/* ロゴ　SP */
.logo_area {
    width: 150px;
    margin: 0 auto;
    padding: 20px 0;
}

/* メインイメージ　SP */
.mainImage {
    padding: 20px 10px 0;
    background: #ffe9b4;
}

.main-bg {
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 12em;
    background: url(../img/top_img.png) no-repeat center bottom;
    background-size: contain;
}

.main-content-ttl {
    max-width: auto;
}

.main-content-ttl p {
    font-weight: bold;
    font-size: 1.6rem;
    color: #402100;
    text-align: center;
}

.main-content-ttl h2 {
    padding: 10px 0;
    font-size: 3.4rem;
    font-weight: bold;
    color: #ff4641;
    line-height: 1.2;
    text-align: center;
}

.main-content-ttl h2+p {
    padding: 0 10px;
    text-align: left;
}

.main-content-ttl h2+p br {
    display: none;
}


.main_visual {
    background: #ffe9b4;
    position: relative;
}

.main_visual .ttl_l {
    padding: 3px 0;
    font-size: 3.4rem;
}

.main_visual p {
    font-size: 1.2rem;
    color: #402100;
}

.main_visual .top_img img {
    width: 100%;
}

.main_visual .text_area {
    padding: 10px 0;
}

.ttl {
    font-size: 1.8rem;
}

.text_ss {
    font-size: 1.2rem;
}

.pcnone {
    display: block !important;
}

.spnone {
    display: none !important;
}

section:nth-child(n+3) {
    margin: 60px 0 0;
}

section.con01 {
    margin-top: 0;
}

/*////スマホナビ/////*/

.content {
    position: relative;
}

.sp_nav {
    top: 0;
    right: 0;
    position: fixed;
    /* background: #ff9196; */
    z-index: 999;
    padding: 8px 4px 10px 8px;
}

#nav-drawer {
    position: relative;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
    display: none;
}

/*アイコンのスペース*/
#nav-open {
    display: inline-block;
    width: 30px;
    height: 22px;
    vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span {
    position: absolute;
    height: 3px;
    /*線の太さ*/
    width: 25px;
    /*長さ*/
    border-radius: 3px;
    background: #422403;
    display: block;
    content: '';
    cursor: pointer;
    transition: all .4s;
}

#nav-open span:nth-child(2) {
    bottom: 10px;
}

#nav-open span:nth-child(3) {
    bottom: 0px;
}

#nav-open.active span:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
}

#nav-open.active span:nth-child(2) {
    opacity: 0;
}

#nav-open.active span:nth-child(3) {
    transform: translateY(-10px) rotate(45deg);
}

/*閉じる用の薄黒カバー*/
#nav-close {
    display: none;
    /*はじめは隠しておく*/
    position: fixed;
    z-index: 99;
    top: 0;
    /*全体に広がるように*/
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    /*最前面に*/
    width: 70%;
    /*右側に隙間を作る（閉じるカバーを表示）*/
    max-width: 330px;
    /*最大幅（調整してください）*/
    height: 100%;
    background: #ff9196;
    /*背景色*/
    transition: .3s ease-in-out;
    /*滑らかに表示*/
    -webkit-transform: translateX(105%);
    transform: translateX(105%);
    /*左に隠しておく*/
    z-index: -1;
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked~#nav-close {
    /* display: block;カバーを表示 */
    opacity: .5;
}

#nav-input:checked~#nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    /*中身を表示（右へスライド）*/
    box-shadow: 6px 0 25px rgba(0, 0, 0, .15);
}

/* スマホ用メニュー　*/
#nav-content ul {
    padding: 80px 0 0 0;
}

#nav-content ul li a {
    color: #fff;
    line-height: normal;
    padding: 10px 0;
    display: inline-block;
    width: 100%;
    text-align: center;
}

#nav-content ul li:last-child {
    background: #ff4641;
}

/*////そんなお困りの事に///////*/
.con01 {
    background: #ffb400;
    padding: 0 0 50px;
}

.con01 .box {
    padding: 0 20px 20px;
    background: #fff;
    width: 90%;
    margin: auto;
    border-radius: 15px;
    position: relative;
}

.con01 .box .ttl {
    background: none;
    color: #ff4641;
    font-size: 3rem;
    line-height: 1.2;
}

.con01 .box .nomal_text {
    padding: 20px;
    background: #ff9095;
    color: #fff;
    text-align: left;
    margin-bottom: 10px;
    border-radius: 18px;
}

.con01 .box .nomal_text br {
    display: none;
}


.con01 .list {
    margin-bottom: 10px;
}

.con01 .list li {
    font-size: 1.6rem;
    color: #402100;
}

.con01 .list li:before {
    content: "";
    display: inline-block;
    background: url(../img/check.png) no-repeat;
    background-size: 100%;
    width: 30px;
    height: 25px;
    z-index: 1;
    vertical-align: middle;
    margin-right: 5px;
}

.con01 .box:after {
    content: "";
    display: block;
    background: url(../img/icon06.png) no-repeat;
    width: 130px;
    height: 150px;
    background-size: contain;
    margin-left: auto;
}

.img_top2 {
    max-width: 100%;
    width: 800px;
    display: block;
    margin: auto;
}

.list_img2 .img {
    width: 80%;
    margin: 20px auto;
}

.list_img2 li {
    padding: 10px 20px;
    background: #ffe9b4;
    margin: 10px 0;
    font-size: 1.4rem;
    border-radius: 15px;
}

/*////メールブロック///////*/
.con2 .ttl {
    background: #ff9095;
}

.con2 .content {
    padding: 0 20px;
}

.border {
    position: relative;
}

.border .text {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 20px 0 30px;
    position: relative;
}

.border .text:before {
    content: "";
    background: url(../img/mail_img.png) no-repeat;
    width: 30px;
    height: 23px;
    background-size: 100%;
    position: static;
    display: block;
    margin: 0 auto 10px;
}

.border .text:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 20px 0 20px;
    border-color: #ff9094 transparent transparent transparent;
    z-index: 3;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.con2 .box h3 {
    color: #ff9094;
    text-align: center;
    margin: 20px auto 35px;
    font-size: 1.8rem;
    background: #fff;
    z-index: 1;
    padding: 0 5px;
    width: 80%;
    position: relative;
}

.con2 .box h3:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 20px 0 20px;
    border-color: #ff9094 transparent transparent transparent;
    z-index: 3;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.border .box {
    position: relative;
    padding: 0 10px;
}

.border .box:after {
    content: "";
    display: block;
    border: 3px solid #ff9093;
    position: absolute;
    top: 15px;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translateX(-50%);
    border-radius: 12px;
    z-index: -1;
}

.border .box ul:after {
    content: "";
    display: block;
    background: url(../img/icon06.png) no-repeat;
    background-size: 100%;
    width: 30%;
    height: 150px;
    z-index: 2;
    position: absolute;
    bottom: -150px;
    right: 0;
}

.border .flex .w50:first-child {
    position: relative;
}

.con2 .box li {
    background: #ff9094;
    padding: 5px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 2px solid #fff;
    position: relative;
}

.con2 .box li:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 20px 0 20px;
    border-color: #ff9094 transparent transparent transparent;
    z-index: 3;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.con2 .box li p {
    font-size: 1.4rem;
    font-weight: bold;
}

.con2 .flex p {
    color: #fff;
}

.con2 .flex p:first-child {
    font-size: 1.8rem;
    width: 20%;
}

.con2 .flex p:nth-child(2) {
    width: 20%;
}

.con2 .flex p:last-child {
    width: 55%;
    /*    margin-left: 10px;*/
}

.con2 .flex .w50 {
    width: 100%;
    text-align: left;
    z-index: 1;
}

.con2 .flex .w50:first-child {
    width: 70%;
}

.con2 .flex .w50:first-child p:first-child {
    padding: 10px 20px;
    background: #ff9093;
    border-radius: 15px;
    color: #fff;
    font-weight: bold;
    font-size: 1.8rem;
}

.con2 .flex .w50:first-child p:last-child {
    padding-top: 5px;
    font-size: 1.2rem;
}

.con2 .flex .w50 p {
    color: #333;
    font-size: 1.2rem;
    width: 100%;
    text-align: left;
}

.con2 .flex .w50:last-child p {
    margin: 10px 0 0 0;
    font-weight: bold;
}

.con2-ttl {
    font-size: 2.4rem;
    font-weight: bold;
}

.con2 .text_area .text {
    line-height: 2;
    margin: 40px 0 10px;
    font-size: 1.4rem;
}

.con2 .text_area .text .line span {
    background: linear-gradient(transparent 50%, #ffb400 50%);
    display: initial;
    font-size: 1.6rem;
}

.con2 .text_area .text_ss {
    margin-bottom: 40px;
}

.con2_img {
    max-width: 360px;
    padding-top: 30px;
}

.con2_img span {
    display: block;
    text-align: center;
    margin: auto;
}





/*////3つの特徴///////*/
.con03 {
    background: #ffb400;
    padding-bottom: 50px;
}

.con03 .ttl {
    font-size: 2.5rem;
    line-height: 1.4;
    padding: 20px 0;
}

.con03 .ttl_area {
    max-width: 800px;
    margin: 0 auto;
    background: #ffb400;
    justify-content: space-around;
}

.con03 .sub_text {
    margin: 10px 0;
}

.three_box {
    padding: 0 20px;
}

.three_box .box_inner {
    background: #fff;
    padding: 20px;
}

.three_box .box_inner:first-child {
    border-radius: 15px 15px 0 0;
    margin-bottom: 10px;
}

.three_box .box_inner:last-child {
    border-radius: 0 0 15px 15px;
    margin-top: 10px;
}

.box_inner img {
    max-width: 80%;
    margin: auto;
    display: block;
}

/*////攻撃対策機能について///////*/
.b_text {
    font-weight: bold;
    color: #402100;
    line-height: 1.8;
    margin: 30px 0px;
    font-size: 100%;
    padding: 0 10px;
}

.con04 .box_inner {
    background: #ffe9b4;
    padding: 30px 15px;
}

.con04 .box_inner h3 {
    text-align: left;
    display: inline-block;
    width: 250px;
    margin-left: 10px;
    vertical-align: top;
    font-weight: bold;
}

.num_box .box_inner h3 span.db {
    display: block;
}

.num_box .box_inner h3 span.din {
    display: inline;
}

.num_box .box_inner {
    position: relative;
    border-top: 1px dashed #412200;
}

.num_box .box_inner:first-child {
    border-top: none;
}

.before,
.after {
    width: 60px;
}

.before {
    display: inline-block;
}

.after {
    margin-left: auto;
}

ul.list_01 {
    margin: 10px;
    padding: 0 20px;
    list-style: disc;
    list-style-position: outside;
}

ul.list_01 li {
    padding: 2px 0;
    font-size: 1.4rem;
}

/*.list_01 li:before {
    content: "・";
    display: inline-block;
    margin-right: 3px;
}*/
.con04 .box_inner img {
    max-width: 100%;
    margin: auto;
    display: block;
}

.con04-ttl-1 {
    padding: 0 0 0 10px;
}

.con04-ttl-2 {
    padding: 30px 10px 0;
}


/*///コラム////*/
.con05 {
    padding: 0 20px;
}

.con05 h4 {
    margin: 20px 0 10px;
}

.con05 .box {
    background: #ffd6d9;
    padding: 20px;
    border-radius: 50px;
    margin-bottom: 120px;
    position: relative;
    ;
}

.con05 .box:after {
    content: "";
    display: block;
    background: url(../img/icon03.png) no-repeat;
    background-size: 100%;
    height: 140px;
    width: 40%;
    z-index: 1;
    position: absolute;
    right: 30px;
    bottom: -110px;
}

.con05 .box:before {
    content: "";
    display: block;
    background: url(../img/arrow_r.png) no-repeat;
    background-size: 100%;
    width: 80px;
    height: 70px;
    position: absolute;
    bottom: -60px;
    right: 150px;
}

/*///料金////*/
.con06 .pay {
    width: 250px;
    margin: 30px auto;
    border: 10px solid #ffb400;
    padding: 10px;
    background: #fee9b4;
    color: #402100;
    text-align: center;
}

.con06 .pay span {
    display: block;
}

.con06 .pay span:first-child {
    font-size: 2.5rem;
    font-weight: bold;
}

.con06 .pay span:nth-child(2) {
    font-size: 3.6rem;
    font-weight: bold;
}

.con06 .pay span:last-child {
    font-size: 1.8rem;
}

.con06 .font_l {
    font-size: 1.4rem;
    font-weight: normal;
    display: block;
}

.con06 p {
    color: #402100;
    /*    font-size: 100%; */
}

.con06 h3 {
    color: #ff4641;
    font-size: 2rem;
    text-align: center;
    margin: 0 0 10px;
}

.con06-plantxt {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin: 10px 0;
}

.con06 .table_box {
    border: 10px solid #ffb400;
    background: #fde9b4;
    padding: 15px;
    margin-bottom: 30px;
}

.con06 .table_box p:first-child {
    font-size: 2rem;
    margin-bottom: 10px;
}

.table_box table {
    border: 4px solid #ffb400;
    width: 100%;
    margin-bottom: 20px;
}

.table_box table th {
    background: #ffb617;
    color: #fff;
    text-align: center;
}

.table_box table td {
    background: #fff;
    padding: 15px;
    vertical-align: middle;
    font-size: 1.2rem;
}

.table_box table td {
    background: #fff;
    padding: 15px;
    vertical-align: middle;
    border-right: 2px solid #ffb617;
    border-bottom: 2px solid #ffb617;
}

.table_box table td:last-child {
    border: 0;
    border-bottom: 2px solid #ffb617;
}

.table_box table tr:last-child td {
    border-bottom: 0;
}

.con06 .table_box02 p {
    padding: 0 10px;
}

.con06 .table_box02 .mt {
    margin: 20px 0 10px;
}

.tb-box02-ttl {
    max-width: 520px;
    margin: 0 auto;
    font-weight: bold;
}

/*2つ目表*/
.table_box02 table {
    border: 2px solid #333;
    width: 100%;
}

.table_box02 table th,
.table_box02 table td {
    padding: 5px;
    vertical-align: middle;
    border-bottom: 1px solid #333;
    border-right: 1px solid #333;
    text-align: center;
    font-size: 1.2rem;
    background: #e1e1e1;
}

.table_box02 table th {
    border-bottom: 1px solid #333;
    border-right: 1px solid #333;
    text-align: center;
}

.bg_y {
    background: #ffb617 !important;
}

.table_box02 table td span {
    font-size: 1.1rem;
}

/*///Secure Email Gatewayについて////*/
.con07 h3 {
    color: #ff4641;
    margin: 20px 0 40px;
    padding: 0 15px;
    font-size: 100%;
    font-weight: bold;
    text-align: left;
}

.con07 .img {
    width: 95%;
    margin: 0 auto 40px;
}

.con07 .img.logo_aws {
    width: 40%;
}

.con07 .text_box {
    padding: 0 15px;
    margin-bottom: 20px;
}

.con07 .text_box a {
    color: #06f;
    text-decoration: underline;
}


.con07 .ttl_inner {
    max-width: 570px;
    margin: 0 auto;
    padding: 15px 0;
    text-align: center;
    background: #fde9b4;
    font-size: 1.6rem;
    position: relative;
}

.con07 .ttl_inner span {
    display: block;
    width: 30%;
    height: 30%;
    position: absolute;
    right: -5px;
    top: 5px;
}

.con07 .ttl_plus {
    width: 30px;
    height: 30px;
    margin: 0 auto 25px;
    padding: 15px 0 0;
}

.con07 .inner {
    max-width: 790px;
    margin: 0 auto;
    padding: 0 10px;
    position: relative;
}

.con07 .icon_seg {
    width: 80px;
    height: 80px;
    position: absolute;
    top: -30px;
    left: -5px;
}

.con07 .inner ul {
    padding: 30px;
    background: #fde9b4;
    list-style: disc;
}

.con07 .inner ul li {
    padding: 2px 0;
}

/*///スタートガイド SP ////*/
.con08 .ttl_inner {
    max-width: 790px;
    margin: 0 auto;
    text-align: left;
    background: #fde9b4;
    padding: 15px;
    margin: 20px 20px 0px;
}

.con08 .ttl_inner br {
    display: none;
}

ul.con08-list-01 {
    max-width: 760px;
    margin: 0 auto;
    padding: 30px;
    list-style-type: disc;
    list-style-position: outside;
}

ul.con08-list-01 li {
    padding: 2px 0;
}

.con08 .list_02 {
    margin: 0 0 60px 0;
    padding: 0 20px;
    font-size: 1.4rem;
}

.con08 .list_02 ul li {
    padding-bottom: 5px;
}

.con08 .list_02 ul li span {
    display: block;
    font-weight: bold;
}

.con08 .btn {
    padding: 0 20px;
    margin: 0 0 20px;
}

.con08-ttl {
    padding: 0 10px 5px;
    font-weight: bold;
    padding-left: 1rem;
    text-indent: -1rem;
}

.con08-ttl i {
    padding-right: 3px;
}

.red02 {
    /*color: #f1131f;*/
    padding: 2px 5px;
    margin-right: 5px;
    font-size: 1.9rem;
    display: inline-block !important;
}

/*///お問合せ////*/
section.con09 {
    margin-bottom: 0;
}

.red {
    background: #ff9196;
    padding: 2px 5px;
    color: #fff;
    margin-right: 5px;
    font-size: 1.4rem;
}

.gray {
    background: #666;
    padding: 2px 5px;
    color: #fff;
    margin-right: 5px;
    font-size: 1.4rem;
}

select,
input {
    background: #fff;
    padding: 10px;
    width: 100%;
    margin-bottom: 20px;
    margin-top: 5px;
}

.submit_btn,
.hs-button {
    background: #ff9095;
    color: #fff;
    width: 200px;
    padding: 15px;
    text-align: center;
    display: block;
    margin: 40px auto 0;
}

.con09 {
    background: #fde9b4;
    padding: 40px 20px 60px;
}

.con09 .ttl {
    background: none;
    color: #402100;
}

.con09 .text {
    color: #402100;
}

.form_inner .arrow_c {
    content: "";
    display: inline-block;
    background-image: url(../img/arrow_c.png);
    background-size: 15px 10px;
    background-repeat: no-repeat;
    background-position: right 20px center;
}

/*---------------------------------------------------
トップへボタン
----------------------------------------------------*/
#topBtn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: none;
}

#topBtn a {
    display: block;
    width: 50px;
    height: 0;
    padding-top: 50px;
    background: #620c10;
    overflow: hidden;
    border-radius: 50%;
    position: relative;
    border: 1px #222 solid;
}

#topBtn a::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: 3px #fff solid;
    border-right: 3px #fff solid;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
}

.descWrap {
    background-color: #FEE0DE;
    padding: 30px 10px;
}

.descIn {
    max-width: 960px;
    width: 100%;
    margin: auto;
}

.descIn h2 {
    color: #AC0009;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 3.75rem;
    text-align: center;
    letter-spacing: .3rem;
}

.descIn h3 {
    color: #AC0009;
    font-size: 2rem;
    font-weight: bold;
    line-height: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.descIn ul li {
    color: #AC0009;
    margin-left: .5rem;
    margin-right: .5rem;
    margin-bottom: 5px;
    letter-spacing: .1rem;
}

.descIn ul {
    display: flex;
    flex-wrap: wrap;
}

.descIn ul {
    max-width: 750px;
    width: 100%;
    margin: auto;
}

.arrow_box {
    position: relative;
    width: 100%;
    background: #FF9093;
    padding: 20px;
    text-align: left;
    color: #FFFFFF;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    font-weight: bold;
    font-size: 1.8rem;
}

.arrow_box:after {
    border: solid transparent;
    content: '';
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    border-color: rgba(255, 144, 147, 0);
    border-top-width: 17px;
    border-bottom-width: 17px;
    border-left-width: 16px;
    border-right-width: 16px;
    margin-left: -16px;
    border-top-color: #FF9093;
    top: 100%;
    left: 50%;
}

.arrow_box a {
    color: #f7ffaa;
    text-decoration: underline;
}

.con2_imgWrap {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 20px;
}

textarea {
    background-color: #fff;
}




/* media 480 -
---------------------------------------*/
@media screen and (min-width:480px) {
    .content_box {
        padding: 50px 10px;
    }

    .ttl {
        font-size: 2.4rem;
    }

    /*///header////*/
    header nav .col3 {
        justify-content: space-between;
    }

    .main-bg {
        padding-bottom: 20em;
    }

    .main_visual .text_area {
        position: absolute;
        left: 20px;
        top: 10px;
    }

    .main_visual .top_img {
        padding-top: 250px;
    }

    .main_visual .ttl_l {
        font-size: 4.5rem;
        line-height: 1.2;
    }

    .main_visual p {
        font-size: 1.4rem;
    }

    /*///あんしんクラウドメールフィルター////*/
    .con2 .box h3 {
        width: 250px;
    }

    .border .box ul:after {
        height: 220px;
        bottom: -200px;
    }

    .con2_img {
        /*    width: 300px;*/
        margin: 50px auto 0;
        position: relative;
    }

    .con2 .flex .w50:last-child p {
        font-size: 100%;
        margin: 30px auto 0;
        /* text-align: center; */
        text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff;
    }

    /*----------------*/

    /*///攻撃対策機能について////*/
    .con04 .box_inner h3 {
        position: absolute;
        top: 50px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        font-size: 1.8rem;
        text-align: center;
        margin: 0;
    }

    .con04 .after {
        position: absolute;
        top: 35px;
        right: 20px;
    }

    .num_box .box_inner {
        border: none;
    }

    .con05 .box:after {
        width: 35%;
    }

    /*//料金///*/
    .table_box table td {
        font-size: 100%;
    }
}

/* media 479-770  -
---------------------------------------*/
@media screen and (min-width:479px) and (max-width: 770px) {
    .con05 .box:after {
        width: 20%;
    }

    .con03 .ttl {
        font-size: 4rem;
        font-weight: bold;
        padding: 40px 0;
    }

}

/* media 680 -
---------------------------------------*/
@media screen and (min-width:680px) {

    .main-bg {
        padding-bottom: 25em;
    }

    .main_visual .ttl_l {
        font-size: 5rem;
        line-height: 1.5;
    }

    .main_visual p {
        font-size: 1.9rem;
    }

    /*--------------*/
    .con2 .text_area .text {
        font-size: 1.8rem;
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
    }

    .con2 .text_area .text_ss {
        margin-bottom: 100px;
        font-size: 100%;
    }

    .con2 .box li p {
        font-size: 1.6rem;
    }

    .con2 .box h3 {
        width: 55%;
        font-size: 2.4rem;
    }

    .con2 .flex:first-child img {
        width: 40%;
    }

    .con2 .flex .w50 p {
        font-size: 100%;
    }

    .con2 .flex .w50:first-child {
        width: 38%;
        order: 2;
        margin-left: 50px;
    }

    .con2 .flex .w50:last-child {
        width: 52%;
        order: 1;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
    }

    .con2 .flex .w50:last-child:before {
        content: "";
        display: block;
        background: url(../img/mail_img.png) no-repeat;
        background-size: 100%;
        width: 85px;
        height: 50px;
        margin-left: 70px;
    }

    .con2 .flex .w50:last-child p {
        margin: 0 10px 0 20px;
    }

    .con2_img {
        margin: 0;
        position: relative;
    }

    .con2_img:before {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 50px 50px 0 50px;
        border-color: #ff9094 transparent transparent transparent;
        position: absolute;
        left: 50px;
    }

    .con2 .flex .w50:first-child p:first-child:before {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 15px 50px 15px;
        border-color: transparent transparent #ff9094 transparent;
        position: absolute;
        top: -40px;
        right: 50px;
    }

    .con2_img:before {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 50px 50px 0 50px;
        border-color: #ff9094 transparent transparent transparent;
        position: absolute;
        left: 50px;
    }

    .con2_img span {
        display: block;
        padding: 50px 0 0;
        background: #fff;
        width: 100%;
    }

    ul.con08-list-01 {
        padding: 30px 50px;
    }

    .border {
        margin-top: 60px;
    }

    .border .text {
        font-size: 2.1rem;
        margin: 0;
    }

    .border .text:before {
        left: 70px;
        width: 60px;
        height: 60px;
        position: absolute;
    }

    .border:before {
        content: "";
        display: block;
        background: #ff9094;
        height: 80%;
        position: absolute;
    }

    .border:before {
        width: 40px;
        left: 80px;
    }

    .border .box ul {
        width: 600px;
        max-width: 80%;
    }

    .border .box ul:after {
        bottom: 0;
        height: 250px;
    }

    .border .box {
        padding: 0 30px;
        margin-top: 50px;
    }

    .border .text:after,
    .con2 .box h3:after,
    .con2 .box li:after {
        display: none;
    }

    /* con07 PC 680-------------*/
    .con07 .ttl_inner span {
        width: 30%;
        height: 30%;
    }

    .descIn ul {
        justify-content: center;
    }

    .con2_imgWrap {
        flex-direction: row;
    }

    .arrow_box:after {
        border-top-width: 10px;
        border-bottom-width: 10px;
        border-left-width: 30px;
        border-right-width: 30px;
        margin-top: -10px;
        border-right-color: #FF9093;
        border-top-color: unset;
        right: 100%;
        top: 50%;
        left: unset;
        margin-left: 0;
    }

    .descIn h3 {
        letter-spacing: .2rem;
    }
}


/* media 768 -
---------------------------------------*/
@media screen and (min-width:768px) {

    /* メインイメージ　PC */
    .mainImage {
        padding: 20px 10px 0;
        background: #ffe9b4;
    }

    .main-bg {
        padding-bottom: 12em;
        background: url(../img/top_img_pc.png) no-repeat right bottom;
        background-size: contain;
    }

    .main-content-ttl {
        max-width: 320px;
    }


    .content {
        width: 960px;
        margin: 0 auto;
    }

    .pcnone {
        display: none !important;
    }

    .spnone {
        display: block !important;
    }

    p {
        font-size: 1.6rem;
    }

    .logo_area {
        width: 15%;
    }

    /* PC用ナビゲーション 768～ ----------------*/
    ul.navPc {
        display: flex;
        align-items: center;
        padding: 0;
    }

    ul.navPc li {
        width: 14%;
        text-align: center;
    }

    ul.navPc li:nth-child(4) {
        width: 8%;
    }

    ul.navPc li:nth-child(5) {
        width: 16%;
    }

    ul.navPc li:nth-child(6) {
        width: 18%;
    }

    ul.navPc li:last-child {
        width: 16%;
        margin: 0 0 0 2%;
    }

    ul.navPc li:last-child a {
        display: block;
        background: #ff4641;
        padding: 10px 5px;
    }


    .ttl {
        font-size: 3rem;
        padding: 20px 0;
    }

    section:nth-child(n+3) {
        margin-bottom: 150px;
    }

    .con01 .box:after {
        content: "";
        display: block;
        background: url(../img/icon06.png) no-repeat;
        width: 300px;
        height: 400px;
        background-size: 100%;
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .con01 .box .ttl {
        font-size: 4rem;
        letter-spacing: 3px;
    }

    .con01 .box {
        width: 850px;
        max-width: 95%;
        padding: 30px;
    }

    .con01 .box .nomal_text {
        width: 62%;
        line-height: 1.8;
        font-size: 2.1rem;
        text-align: center;
    }

    .con01 .box .nomal_text br {
        display: block;
    }


    .con01 .list {
        width: 50%;
        line-height: 2;
        margin: 20px 0;
    }

    .con01 .text_ss {
        font-size: 100%;
        width: 50%;
    }

    .con2 .content {
        width: 870px;
        margin: auto;
        ;
    }

    .con2 .text_area .text_ss {
        margin-bottom: 100px;
        font-size: 100%;
    }

    .con2 .text_area .text .line span {
        font-size: 2rem;
    }

    .con2 .text_area .text:before {
        content: "";
        display: block;
        width: 30%;
        height: 200px;
        background: url(../img/icon02.png) no-repeat;
        background-size: 100%;
        margin-right: 20px;
    }

    .con2 .flex:first-child img {
        width: 50%;
    }

    .con2 .flex .w50 p {
        font-size: 100%;
    }

    .con2 .flex .w50:last-child {
        /*        width: 50%;*/
        order: 1;
    }

    .con2_img {
        margin: 0;
        position: relative;
    }

    .con2_img:before {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 50px 50px 0 50px;
        border-color: #ff9094 transparent transparent transparent;
        position: absolute;
        left: 50px;
    }

    .con2 .flex .w50:first-child p:first-child:before {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 15px 50px 15px;
        border-color: transparent transparent #ff9094 transparent;
        position: absolute;
        top: -40px;
        right: 120px;
    }

    .con2_img {
        position: relative;
    }

    .con2_img:before {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 50px 50px 0 50px;
        border-color: #ff9094 transparent transparent transparent;
        position: absolute;
        left: 50px;
    }

    .con2_img span {
        display: block;
        padding: 50px 0 0;
        background: #fff;
    }

    .border .text {
        font-size: 2.8rem;
        margin: 0;
    }

    .border {
        margin-top: 60px;
    }

    .border .box ul:after {
        bottom: 0;
        height: 300px;
    }

    .con03 .ttl {
        font-size: 5rem;
        font-weight: bold;
        padding: 40px 0;
    }

    .con03 .sub_text {
        text-align: center;
        margin: 10px 0;
        font-size: 2rem;
    }

    .three_box .box_inner {
        display: flex;
        flex-wrap: wrap;
    }

    .three_box .box_inner img {
        order: 2;
        width: 30%;
    }

    .three_box .box_inner .sub_text {
        order: 1;
        width: 100%;
    }

    .three_box .box_inner p {
        order: 3;
        width: 60%;
    }

    .con04 .content,
    .con05 .content {
        width: 870px;
        max-width: 95%;
        margin: auto;
    }

    .b_text {
        font-size: 2rem;
        margin: 60px 0 40px;
        text-align: center;
    }

    .num_box .box_inner {
        display: flex;
        flex-wrap: nowrap;
        padding: 0;
    }

    .num_box .box_inner:before {
        content: "";
        display: block;
        width: 80px;
        height: auto;
        background: #ffb400;
    }

    .num_box .box_inner div {
        padding: 30px 20px 30px 30px;
        width: 100%;
    }

    .num_box .box_inner .num05 {
        padding-bottom: 60px;
    }

    .con04 .box_inner h3 {
        position: static;
        transform: initial;
        text-align: left;
        padding-left: 20px;
    }

    .num_box .box_inner h3 span.db,
    .num_box .box_inner h3 span.din {
        display: inline;
    }


    .con04 .num05 .after {
        bottom: 50px;
    }

    .before {
        display: none;
    }

    .con04 .after {
        left: -10px;
        right: inherit;
        bottom: 0;
        top: inherit;
        width: 100px;
    }

    .num_box .box_inner:last-child:after {
        content: "";
        display: block;
        background: url(../img/function_arrow.png) no-repeat;
        background-size: 100%;
        width: 150px;
        position: absolute;
        bottom: -144px;
        height: 180px;
    }

    .num_box {
        margin-bottom: 200px;
    }

    .num_box .box_inner div:before {
        display: block;
        font-size: 6rem;
        color: #fff;
        font-family: '小塚ゴシック Pro', 'Kozuka Gothic Pro', sans-serif;
        position: absolute;
        left: 20px;
    }

    .num01:before {
        content: "1";
    }

    .num02:before {
        content: "2";
    }

    .num03:before {
        content: "3";
    }

    .num04:before {
        content: "4";
    }

    .num05:before {
        content: "5";
    }

    .con05 .box {
        padding: 40px;
        margin-bottom: 200px;
    }

    .con05 .box h3,
    .con05 .box h4 {
        font-size: 1.8rem;
    }

    .con05 .box p {
        line-height: 1.8;
    }

    .con05 .box:after {
        width: 20%;
        height: 40%;
        bottom: -160px;
    }

    .con05 .box:before {
        right: 250px;
    }

    .con06 .content {
        width: 870px;
        margin: auto;
    }

    .con06 .pay {
        margin: 60px auto 40px;
        width: 400px;
        padding: 30px 0;
    }

    .con06 p {
        margin-bottom: 10px;
    }

    .con06 .table_box p:first-child {
        font-size: 2.5rem;
    }

    .con06 .table_box p:nth-child(2) {
        width: 500px;
        margin: auto;
    }

    .con06 h3 {
        font-size: 2.5rem;
        margin: 60px 0 20px;
    }

    .table_box02 table th,
    .table_box02 table td {
        font-size: 1.8rem;
        padding: 20px;
    }

    .table_box table td {
        font-size: 1.8rem;
    }

    /* con07 PC 769-------------*/
    .con07 .box_inner {
        margin-top: 40px;
    }

    .con07 h3 {
        font-size: 2.4rem;
        margin: 60px 0;
        text-align: center;
    }

    .con07 .content {
        width: 870px;
        margin: auto;
    }

    .con07 .img.logo_aws {
        width: 150px;
    }

    .con07 .ttl_inner span {
        width: 20%;
        height: 20%;
        right: 0;
        top: -20px;
    }

    .con07 .ttl_plus {
        width: 40px;
        height: 40px;
        margin: 0 auto 25px;
        padding: 15px 0 0;
    }

    .con07 .icon_seg {
        width: 110px;
        height: 110px;
        position: absolute;
        top: -60px;
        left: -5px;
    }

    .con07 .inner ul {
        padding: 30px 30px 30px 50px;
        background: #fde9b4;
        list-style: disc;
    }


    /* con08 PC 768 ------------- */
    .con08 .ttl_inner {
        font-size: 1.8rem;
        margin-top: 60px;
        padding: 15px 0;
        text-align: center;
    }

    .con08 .ttl_inner br {
        display: block;
    }

    .con08 .content {
        width: 870px;
        margin: 0 auto;
    }

    .list_01 li {
        font-size: 100%;
    }

    .con08 .list_02 {
        font-size: 100%;
    }

    .con08 .btn {
        margin-bottom: 40px;
    }

    /*お問合せ*/
    section.con09 {
        margin-bottom: 0;
    }

    .con09 .content {
        width: 870px;
        margin: auto;
    }

    .form_inner {
        margin: 60px 0 0;
    }

    .form_inner div {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: center;
    }

    .form_inner div label {
        width: 30%;
    }

    .form_inner select,
    .form_inner input {
        width: 60%;
    }
}


/* media 959 -
---------------------------------------*/
@media screen and (min-width:959px) {
    header .content {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    header nav {
        width: 100%;
        padding: 0;
    }

    header nav .w50 {
        width: 60%;
    }

    /* PC用ナビゲーション 959～ ----------------*/
    ul.navPc {
        padding: 0 0 0 2%;
    }

    ul.navPc li:last-child {
        margin: 0;
    }

    .con2 .flex .w50:first-child p:first-child {
        font-size: 2.1rem;
    }

    .con2 .flex .w50:first-child p:last-child {
        padding-top: 0;
        font-size: 1.6rem;
    }

    ul.con08-list-01 {
        padding: 30px 50px 30px 0;
    }

    .in_flex .col3_w li {
        width: auto;
        display: inline-block;
        margin: 0 5px;
    }

    .con08 .ttl_inner br {
        display: none;
    }

    /*メインイメージPC -------*/
    .main-bg {
        padding-bottom: 17em;
    }

    .main-content-ttl {
        max-width: 460px
    }

    .main-content-ttl p {
        font-weight: bold;
        font-size: 1.6rem;
        color: #402100;
        text-align: center;
    }

    .main-content-ttl h2 {
        padding: 10px 0;
        font-size: 5rem;
        font-weight: bold;
        color: #ff4641;
        line-height: 1.2;
        text-align: center;
    }

    .main-content-ttl h2+p {
        padding: 0;
        text-align: center;
    }

    .main-content-ttl h2+p br {
        display: block;
    }

}

/*footer denet 追加
*/
footer {
    background: #ff9196;
}

footer p,
footer a,
footer img {
    font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN", sans-serif !important;
    font-size: 98%;
    margin: 0;
    padding: 0;
    line-height: 1.7em;
    letter-spacing: 0.1em;
}

.logoimg {
    background-color: #fff;
}

.flexRBC {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.footerAddOuter.flexRBC,
.footeriPadWrap.flexRBC {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.footerAddOuter {
    max-width: 1000px;
    padding: 20px 15px;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}

.footerAddOuter.flexRBC,
.footeriPadWrap.flexRBC {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.footerIsocWrapiPad {
    margin: 0;
    text-align: center;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 350px;
}

.footerIsocWrap,
.footerLogo {
    display: none;
}

.footerListOuter {
    margin-bottom: 30px;
}

.footerListOuter ul li a::before {
    font-family: "Font Awesome 5 Solid";
    display: none;
    content: "\f138";
}

.footerListOuter ul li svg {
    margin-right: 5px;
    color: #99000A;
}

.footerListOuter ul li a {
    color: #37474F;
}

#menu-footerprivacy-1 li {
    line-height: 1.5rem;
}

.footerAddIn {
    font-size: 85%;
    padding-left: 10px;
    letter-spacing: normal;
}

.footerAddIn {
    border-left: 1px solid #444;
}

.footerTokyoWrap+.footerTokyoWrap {
    margin-top: 1em;
}

.footeriPadOuter {
    padding: 0 15px;
    margin-top: 10px;
}

.footerIsocWrapiPad img {
    width: 49%;
    min-width: 169px;
}

.footerLogoiPad {
    margin-top: 30px;
}

.footerIsocWrapiPad img+img {
    margin-left: 2%;
}


.footerCaution {
    text-align: left;
    line-height: 1.4em;
    margin-bottom: 1.5em;
    color: #fff;
    font-size: 85%;
}

.footerCopy {
    line-height: 1.5em;
    color: #fff;
    text-align: center;
}

@media screen and (min-width: 44.375em) {
    .footerAddOuter.flexRBC {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }


}

/**
 * 14.2 - >= 710px
 */
@media screen and (min-width: 44.375em) {
    .footerCaution {
        text-align: center;
        margin-bottom: .5rem;
    }

    .footerAddOuter {
        justify-content: center;
    }

    .footerAddOuter.flexRBC {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .footerListOuter {
        margin-bottom: 0;
        margin-left: 30px;
        border-left: 1px solid #444;
    }

    .footerListOuter ul li a svg {
        display: none;
    }

    .footeriPadWrap.flexRBC {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .footerIsocWrapiPad {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        max-width: 350px;
        width: 100%;
        max-height: 80px;
    }

    .footerLogoiPad {
        margin-top: 0;
        margin-right: 30px;
    }

    .footeriPadOuter {
        margin-top: 40px;
    }

    .footerListOuter ul li {
        padding-left: 1rem;
    }

    .footerListOuter ul li {
        line-height: 1.2;
    }

    .footerListOuter ul li+li {
        margin-top: 10px;
    }

    .avoidanceDivImg.flexRBC {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }


}

/**
 * 14.3 - >= 855px
 */
@media all and (min-width: 53.375em) {

    .footerLogo,
    .footerIsocWrap {
        display: block;
    }

    .footerIsocWrap {
        width: 150px;
    }

    .footerIsocWrap div+div {
        margin-top: 10px;
    }

    .footerAddOuter.flexRBC {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .footerListOuter {
        margin-left: 0;
    }

    .footerAddOuter.flexRBC>div+div {
        margin-left: 1.5%;
    }

    .footeriPadOuter {
        display: none;
    }

    .footerAddOuter {
        padding-top: 40px;
    }

    .apnCon .PCcase img,
    .apnCon .PCcase {
        width: 100%;
        max-width: 100%;
    }

    .footerAddIn a {
        color: #37474F;
    }

    .footerListOuter li a {
        letter-spacing: normal;
    }


}

/* denet 追加
*/