/*  --------------------------------------
    基本設定
    --------------------------------------  */
* {
    /* 要素サイズにborderとpaddingを加算しない */
    box-sizing: border-box;
}
html {
    color: #888;
    font-size: 14pt;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
    /*
    */
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}
@media (max-width: 500px) {
    html {
        font-size: 13pt;
    }
    .mobile_off {
        display: none !important;
    }
}
@media (min-width: 501px) {
    .mobile_on {
        display: none !important;
    }
}
body {
    margin: 0;
    padding: 0;
}

/*  --------------------------------------
    ヘッダー
    --------------------------------------  */
div.header {
    position: sticky;
    z-index: 1;
    top: 0;
    height: 3.0rem;
    background-color: #d7e8f6;
    border-bottom: 2px solid #c1d6e6;
    display: flex;
	box-shadow: 0 8px 9px 0 rgba(0, 0, 0, 0.2);
}
.header_spacer {
    display: none;
    height: 3.0rem;
}
@media (max-width: 500px) {
    div.header {
        position: fixed;
        width: 100%;
    }
    .header_spacer {
        display: block;
    }
}
.header span[data-page] {
    padding: 1.0rem 1.0rem;
}
.header > div:last-child {
	flex-grow: 1;
    text-align: right;
}
.header div:has(> a .logo) {
    padding-top: 0.5rem;
    padding-left: 1.0rem;
}
.header .logo {
    height: 2.0rem;
    width: auto;
}
.header .subtitle {
    height: 100%;
    color: #4472c4;
    font-size: 0.85rem;
    font-weight: bold;
    padding-top: 1.5rem;
    padding-left: 0.5rem;
}
.main_visual {
    position: relative;
	height: 18.0rem;
	padding: 0;
    overflow: hidden;
	box-shadow: 0 -8px 9px 0 rgba(0, 0, 0, 0.2) inset;
    background-image: url(../img/office.png);
    background-repeat: no-repeat;
    background-position: 0 20%;
    background-size: 100% auto;
}
@media (max-width: 500px) {
    .main_visual {
        height: 12.0rem;
    }
}
@media (max-width: 400px) {
    .main_visual {
        background-size: auto 100%;
    }
}
.main_visual .catchphrase {
    position: absolute;
    left: 2.0rem;
    top: 2.0rem;
    color: #fff;
    color: #d7e8f6;
    color: #68a4d9;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 3.5rem;
    text-shadow: 5px 6px 6px rgba(255, 255, 255, 0.8);
}
@media (max-width: 500px) {
    .main_visual .catchphrase {
        top: 1.0rem;
        left: 0.5rem;
        font-size: 1.3rem;
        line-height: 1.5rem;
    }
}
.main_visual .logo {
    position: absolute;
    right: 2.0rem;
    bottom: 3.0rem;
    height: 12.0rem;
    width: auto;

    width: 42%;
    max-width: 32.0rem;
    height: auto;
    filter: drop-shadow(6px 8px 9px rgba(0, 0, 0, 0.8));
}
@media (max-width: 500px) {
    .main_visual .logo {
        right: 1.0rem;
        bottom: 1.0rem;
        width: 60%;
    }
}

/*  --------------------------------------
    ページメニュー
    --------------------------------------  */
.page_menu {
    position: sticky;
    z-index: 1;
    top: 3.0rem;    /* .header::height */
    background-color: #d7e8f6;
}
.page_menu > div {
    border-top: 2px solid #e9f3fb;
}
.page_menu button {
    height: 2.2rem;
}

.header .button,
.menu .button,
span[data-page] {
    display: inline-block;
    text-decoration: none;
    color: #68a4d9;
    cursor: pointer;
    vertical-align: top;
    padding: 0.5rem 1.0rem;
}

/*	--------------------------------------
    メニュー開閉ボタン（ハンバーガーメニュー）
    --------------------------------------	*/
.opener {
    display: inline-block;
    position: absolute;
    top: 0.5rem;
    right: 0.3rem;
    width: 2.2rem;
    height: 2.0rem;
    cursor: pointer;
}
.tinyapp_header .opener {
    top: 0.1rem;
    left: 0.2rem;
}

/* 三本線 */
.opener_bar {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.33rem;
    border-radius: 0.18rem;     /* height ÷ 2*/
    background-color: #4472c4
}
.opener_bar:nth-of-type(1) {
    top: 0;
}
.opener_bar:nth-of-type(2) {
    top: 0.84rem;    /* 「abf_opener_menu.height － span.height」の 1/2 */
}
.opener_bar:nth-of-type(3) {
    bottom: 0;
}

#menu_opener {
    display: none;
}
.menu {
    position: fixed;
    top: 3.0rem;    /* .header::height */
    right: 0;
    z-index: 1;
    width: 12.0rem;
    min-width: auto;
    max-width: auto;
    background-color: #d7e8f6;
    transition: opacity .4s ease-in-out, min-height .4s ease-in-out, max-height .4s ease-in-out;
}
input:checked + .menu {
    opacity: 0;
    min-height: 1px;
    max-height: 1px;
}
.menu .button {
    width: 100%;
}
    
/*	--------------------------------------
	フッター
	--------------------------------------	*/
.footer {
    display: flex;
    height: 3.0rem;
    width: 100%;
    background-color: #d7e8f6;
}
.footer > div {
    height: 100%;
    padding: 0.3rem 1.0rem;
    padding-top: 0.5rem;
}
.footer > div:last-child {
    flex-grow: 1;
    padding-top: 1.5rem;
    text-align: right;
}
.footer a {
    color: #68a4d9;
    text-decoration: none;
}
@media (max-width: 500px) {
    .footer > div {
        padding: 0.3rem 0.5rem;
        padding-top: 0.5rem;
        font-size: 0.9rem;
    }
}

/*	--------------------------------------
    ビュー
    --------------------------------------	*/
.page_view > div:last-child {
    padding-bottom: 8.0rem;
}

/*	--------------------------------------
    ボタン
    --------------------------------------	*/
.button {
    position: relative;
    overflow: hidden;
}
.button::after {
    content: "";
    position: absolute;
    margin: auto;
    width: 1px;
    height: 1px;
    top: 0.5rem;
    left: 1.5rem;
    bottom: 0;
    right: 0;
    background-color: rgba(103, 170, 233, 0.5);
    border-radius: 50%;
    opacity: 0;
    transform: scale(200.0);
    transition: all 0.9s ease;
}
.button:active::after {
    opacity: 1.0;
    transform: scale(1);
    transition: 0s;
}
    
    
/*  --------------------------------------
    コンテンツ
    --------------------------------------  */
.contents {
    padding: 2.0rem 1.0rem;
    line-height: 1.4rem;
}
@media (min-width: 500px) {
    .contents > div {
        padding-left: 1.0rem;
    }
    .contents {
        padding-bottom: 0;
    }
}

/* 見出し１ */
h1 {
    width: 40.0rem;
    font-size: 1.2rem;
    letter-spacing: 0.15rem;
    padding: 0.3em;
    padding-left: 1.0rem;
    margin-bottom: 1.8rem;
    color: #bbb;
    border-top: solid 2px #ddd;
    border-bottom: solid 2px #ddd;
    background-color: #f8f8f8;
}
@media (max-width: 500px) {
    h1 {
        width: 100%;
    }
}


/* 見出し２ */
h2 {
    width: 20.0rem;
    font-size: 1.2rem;
    letter-spacing: 0.15rem;
    padding-left: 0.8rem;
    padding-bottom: 0.5rem;
    color: #68a4d9;
    position: relative;
}
h2:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0.4rem;
    height: 4px;
    width: 100%;
    border-radius: 2px;
    background: -webkit-linear-gradient(to right, #d7e8f6, transparent);
    background: linear-gradient(to right, #d7e8f6, transparent);
}
/* ２つ目以降のh2 */
h2 + div + h2 {
    margin-top: 2.0rem;
}

/* 見出し：汎用 */
.cap {
    font-size: 1.2rem;
    color: #68a4d9;
}
.cap img {
    height: 1.2rem;
    width: auto;
    vertical-align: text-top;
    margin-right: 0.8rem;
}
.cap + div {
    padding-top: 0.5rem;
    padding-left: 2.8rem;
}
/* ２つ目以降のcapクラス */
.cap + div + .cap {
    margin-top: 1.5rem;
}

/* 見出し：吹き出し */
.cap.bubble {
    position: relative;
    padding-left: 2.8rem;
}
.cap.bubble:before {
    position: absolute;
    content: "";
    color: #eff8ff;
    background: #d7e8f6;
    font-size: 1.8rem;
    border-radius: 50%;
    top: -0.2rem;
    left: 0;
    width: 1.8rem;
    height: 1.8rem;
    line-height: 1.8rem;
    text-align: center;
}
/* 吹き出しのヒゲ */
.cap.bubble:after {
    content: '';
    display: block;
    position: absolute;
    left: 1.6rem;
    height: 0;
    width: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #d7e8f6;
    top: 0.3rem;
}
/* Good! */
.cap.good.bubble:before {
    /*
    content: "\1f592";
    font-weight: bold;
    color: #a0cbf0;
    */
    content: "\1f44d\1f3fb";
    font-size: 1.2rem;
    line-height: 1.6rem;
}

/* 見出し：番号 */
.cap[data-num] {
    position: relative;
    padding-left: 2.8rem;
}
.cap[data-num]:before {
    position: absolute;
    content: attr(data-num);
    color: #eff8ff;
    background: #d7e8f6;
    font-size: 1.8rem;
    border-radius: 50%;
    top: -0.2rem;
    left: 0;
    width: 1.8rem;
    height: 1.8rem;
    line-height: 1.8rem;
    text-align: center;
}

/* 見出し用クォビット */
.quobitt {
    display: inline-block;
    position: relative;
    width: 1.8rem;
    height: 1.8rem;
    background: #4472c4;
    background: #d7e8f6;
    border-radius: 50%;
    vertical-align: bottom;
}
.quobitt:before,
.quobitt::after {
    position: absolute;
    content: "";
    background: #fff;
    border-radius: 0.25rem;
    top: 0.5rem;
    width: 0.25rem;
    height: 0.6rem;
}
.quobitt:before {
    left: 0.5rem;
}
.quobitt::after {
    right: 0.5rem;
}

/*  --------------------------------------
    図
    --------------------------------------  */
.free_pos {
    position: relative;
}
.free_pos > div {
    position: absolute;
}
img.overview {
    height: 20.0rem;
    width: auto;
}
.overview_text_send,
.overview_text_rcv {
    color: #3ecbcb;
    color: #68a4d9;
    font-weight: bold;
    text-shadow: 3px 4px 4px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}
.overview_text_send {
    top: 2.5rem;
    left: 12.0rem;
}
.overview_img {
    filter: drop-shadow(3px 4px 6px rgba(0, 0, 0, 0.3));
}
.overview_frame {
    width: 30.0rem;
    height: 22.0rem;
}
@media (max-width: 500px) {
    .overview_frame {
        transform: scale(0.78);
        translate: -12% -12%;
        height: 16.5rem;
    }
    img.overview {
        height: auto;
        width: 130%;
    }
    .overview_text_send {
        left: 10.0rem;
    }
}
@media (max-width: 420px) {
    .overview_frame {
        height: 15.0rem;
    }
    .overview_text_send {
        left: 9.0rem;
    }
}

/*  --------------------------------------
    背景
    --------------------------------------  */
/* クォビット */
.bg_quobitt {
    background-color: #f8f8f8;
    background-image: url(../img/quobitt_bg.png);
    background-repeat: no-repeat;
    background-position: 90% 0%;
}
@media (max-width: 500px) {
    .bg_quobitt {
        background-position: 100% 70%;
        background-size: 20rem;
    }
}

/* ドット */
div:has(> .bg_dot) {
    position: relative;
}
.bg_dot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/bg_dot.png);
    background-repeat: no-repeat;
    background-position: 100% 0%;
    background-size: auto 100%;
    z-index: -1;
    filter: opacity(0.6) blur(0.55px);
}
@media (max-width: 500px) {
    .bg_dot {
        translate: 0 50%;
    }
}
@media (max-width: 400px) {
    .bg_dot {
        translate: 0 45%;
    }
}
.bg_dot > div {
    position: absolute;
    color: #fff;
    font-weight: bold;
    font-size: 3.0rem;
}

/* AppBeads */
div:has(> .bg_appbeads) {
    background-color: #f8f8f8;
    background-color: #f8fdfb;
    position: relative;
}
.bg_appbeads {
    position: absolute;
    background-image: url(../img/appbeads_bg.png);
    background-repeat: no-repeat;
    background-position: 90% 40%;
    background-size: 30rem;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}
@media (max-width: 500px) {
    .bg_appbeads {
        background-position: 100% 20%;
        background-size: 20rem;
    }
}

.bg {
    background-image: url(../img/bg.png);
    background-repeat: no-repeat;
    background-position: 0% 100%;
    background-size: 100% auto;
}

div:has(> .bg2) {
    position: relative;
    overflow: hidden;
}
.bg2 {
    position: absolute;
    bottom: 0;
    right: 0;
    filter: opacity(0.9) blur(0.85px);
    border-radius: 10%;
    -webkit-mask-image: radial-gradient(rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 75%);
    mask-image: radial-gradient(rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 75%);
}

/* Bizパーソン */
div:has(> .bg_office) {
    position: relative;
}
.bg_office {
    position: absolute;
    z-index: -2;
    top: 0;
    right: 0;
    width: 30.0rem;
    height: 70.0rem;
    background-image: url(../img/bg_office.png);
    background-repeat: no-repeat;
    filter: opacity(0.8);
    -webkit-mask-image: radial-gradient(rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 70%);
    mask-image: radial-gradient(rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 70%);
}
.bg_biz_person {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    width: 30.0rem;
    height: 70.0rem;
    background-image: url(../img/bg_biz_person.png);
    background-repeat: no-repeat;
    background-position: 50% 80%;
    background-size: 15rem;
}
@media (max-width: 1200px) {
    .bg_biz_person {
        display: none;
    }
}

/* 壁紙 */
.bg_wall {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url(../img/bg_wall.png);
    background-repeat: repeat;
    background-size: 80%;
    filter: opacity(0.2);
}

/*  --------------------------------------
    流れ：横
    --------------------------------------  */
.flow_h {
    padding: 1.0rem 1.0rem;
}
.flow_h > div {
    display: inline-block;
    background-color: #d7e8f6;
    padding: 1.0rem 1.5rem;
    text-align: center;
    color: #68a4d9;
    position: relative;
    min-width: 7.0rem;
}
.flow_h > div.red {
    color: #f29d9d;
    background-color: #fce2e2;
}
@media (max-width: 500px) {
    .flow_h {
        padding: 1.0rem 0;
    }
    .flow_h > div {
        padding: 1.0rem 0.7rem;
        min-width: 5.0rem;
    }
}
@media (max-width: 430px) {
    .flow_h {
        width: 110%;
        transform: scale(0.9);
        translate: -5%;
    }
    .flow_h > div:last-child {
        padding: 1.0rem 0.0rem;
        min-width: 4.0rem;
    }
}
@media (max-width: 380px) {
    .flow_h {
        width: 118%;
        transform: scale(0.82);
        translate: -8%;
    }
}

/* 最初と最後のブロックの角を丸める */
.flow_h > div:first-child {
    border-radius: 0.3rem 0 0 0.3rem;
}
.flow_h > div:last-child {
    border-radius: 0 0.3rem 0.3rem 0;
}

/* 矢印 */
.flow_h > div + div::before,
.flow_h > div:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    top: 0.7rem;
    height: 2.0rem;
    background-color: #f8f8f8;
}
/* 矢印の三角部（ブロックの左側） */
.flow_h > div + div::before {
    left: -1px;
    width: calc(2.0rem / 2);
    clip-path: polygon(0 0, 100% 50%, 0% 100%);
}
/* 矢印の矩形部（ブロックの右側） */
.flow_h > div:not(:last-child)::after {
    right: 0.0rem;
    width: 0.5rem;
}
@media (max-width: 500px) {
    .flow_h > div + div::before {
        width: calc(2.0rem / 3);
    }
    .flow_h > div:not(:last-child)::after {
        width: 0.25rem;
    }
}

/*  --------------------------------------
    流れ：縦
    --------------------------------------  */
table.flow {
    margin-left: 1.0rem;
}
table.flow > tbody > tr > td {
    vertical-align: top;
}
table.flow > tbody > tr > td:first-child {
    padding-bottom: 0.5rem;
}
table.flow > tbody > tr > td:last-child {
    padding-top: 1.0rem;
    padding-left: 1.5rem;
}
@media (max-width: 500px) {
    table.flow td,
    table.flow th {
        width: 100%;
        display: block;
    }
    table.flow {
        margin-left: 0;
    }
    table.flow > tbody > tr > td:first-child {
        padding-bottom: 0;
    }
    table.flow > tbody > tr > td:last-child {
        padding-top: 0;
        padding-left: 0;
    }
    .bg_biz_person + h1 {
        margin-bottom: 1.0rem;
    }
}

/* 見出し */
.cap_flow {
    width: 11.0rem;
    height: 6.0rem;
    border-radius: 0.5rem;
    position: relative;
    background-color: #d7e8f6;
}
.case2 .cap_flow {
    background-color: #fce2e2;
}
.cap_flow > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-weight: bold;
}
.cap_flow > img {
    position: absolute;
    bottom: 0.3rem;
    right: 0.4rem;
    width: auto;
    height: 5.0rem;
    opacity: 0.5;
}
.cap_flow > div:first-child {
    font-size: 4.0rem;
    font-weight: bold;
    color: #fff;
    padding-top: 1.5rem;
}
.cap_flow > div:last-child {
    font-size: 1.8rem;
    line-height: 2.0rem;
    color: #68a4d9;
    padding-top: 1.0rem;
    padding-right: 1.2rem;
    vertical-align: middle;
    text-align: right;
}
.case2 .cap_flow > div:last-child {
    color: #f29d9d;
}
@media (max-width: 500px) {
    .cap_flow {
        transform: scale(0.7);
        translate: -15%;
    }
}

/*	--------------------------------------
    補足事項など
    --------------------------------------	*/
.boxes {
    width: 40.0rem;
}
@media (max-width: 500px) {
    .boxes {
        width: 100%;
    }
}
.boxes > div {
    padding: 0.5rem 1.0rem;
    border-radius: 0.3rem;
    background-color: #f4faff;
}
.boxes > div + div {
    margin-top: 0.4rem;
}
.boxes .cap {
    font-size: inherit;
    color: #68a4d9;
}

.row:has(> .article_box) {
    flex-wrap: wrap;
}
.row > .article_box:not(:last-child) {
    margin-right: 2.0rem;
}
.article_box {
    border-radius: 24px;
    border-radius: 1.6rem;
    box-shadow: 0 2px 12px 2px rgba(160, 160, 160, 0.2);
    background-color: #f7f8fa;
    padding: 1.6rem;
    max-width: 20.0rem;
    margin-bottom: 2.0rem;
}

/* ポイント */
.article_box.point_ix_finger,
.article_box.point_ok_hand {
    background-repeat: no-repeat;
    background-position: 90% 100%;
    background-size: 55% auto;
    min-height: 22.0rem;
}
.article_box.point_ix_finger {
    background-image: url(../img/point_ix_finger.png);
}
.article_box.point_ok_hand {
    background-image: url(../img/point_ok_hand.png);
}

/* 例 */
.article_box.example .cap {
    margin-bottom: 0.5rem;
}
.article_box.example img {
    width: 100%;
    height: auto;
    line-height: 0;
    border: 1px solid #ccc;
    border-radius: 0.2rem;
}
.article_box.example a {
    font-size: 85%;
}

/*	--------------------------------------
    線
    --------------------------------------	*/
.bar_bevel {
    border-radius: 0.25rem;
    box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.1) inset;

    height: 0.25rem;
    background-color: #fafafa;
    background-color: transparent;
}
.bar_bevel_v {
    border-radius: 0.25rem;
    box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.1) inset;

    display: inline-block;
    width: 0.25rem;
    margin-top: 0.2rem;
    height: calc(2.2rem - 0.4rem);
}

/*	--------------------------------------
    価格表
    --------------------------------------	*/
.pricing {
    margin-left: 1.0rem;
}
.pricing th {
    vertical-align: top;
    text-align: left;
    background-color: #f4f4f4;
    padding: 1.0rem 0.5rem;
    font-weight: normal;
}
.pricing td {
    padding-left: 1.0rem;
    vertical-align: top;
}
.pricing td + td {
    border-bottom: 1px solid #ddd;
}
.pricing .plus {
    display: inline-block;
    font-weight: bold;
    padding: 0 0.3rem;
    color: #68a4d9;
}
.pricing > tbody > tr > td:last-child {
    padding-left: 2.0rem;
    text-align: right;
}
.pricing table td:last-child {
    font-size: 0.9rem;
}
@media (max-width: 500px) {
    .pricing {
        margin-left: 0;
    }
    .pricing td {
        padding-left: 0;
    }
    .pricing > tbody > tr > td:last-child {
        padding-left: 0.5rem;
    }
}

/*  --------------------------------------
    問い合わせ
    --------------------------------------  */
.inq_info {
    line-height: 1.4rem;
    width: 40.0rem;
    margin-top: 3.0rem;
    margin-left: 2.0rem;
    display: inline-block;
    padding: 0.5rem 1.0rem;;
    border-radius: 0.3rem;
    background-color: #d7e8f6;
}
[id="result"] .inq_info {
    background-color: #fae6fd;
}

/* 問い合わせ項目 */
.inq_fields {
    margin-top: 1.5rem;
    margin-left: 2.0rem;
}
.inq_fields td {
    padding-top: 1.0rem;
}
.inq_fields tr td:first-child {
    color: #4472c4;
    font-weight: bold;
    text-align: right;
    padding-top: 1.4rem;
    padding-right: 1.0rem;
    vertical-align: top;
}
[id="result"] .inq_fields tr td:first-child {
    padding-top: 1.2rem;
}
.inq_fields input[type="text"] {
    background-color: #fff;
    border: none;
    border-bottom: 3px solid #4472c4;
    border-radius: 5px 5px 0 0;
    padding: 0.2rem 0.3rem;
    font-size: 1.0rem;
    width: 20.0rem;
}
.inq_fields input[type="text"]::placeholder {
    color: #ddd;
}
.inq_fields label > span {
    position: relative;
    display: inline-block;
}
.inq_fields label > span::before {
    content: "";
    position: absolute;
    display: block;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.6;
    border-radius: 0.2rem;
}
.inq_fields label > span > span {
    display: inline-block;
    padding: 0.2rem;
}
.inq_fields textarea {
    resize: none;
    overflow: auto;
    border: 2px solid #4472c4;
    border-radius: 0.3rem;
    padding: 0.3rem;
    font-size: 1.0rem;
    width: 30.0rem;
}
@media (max-width: 500px) {
    .inq_fields {
        margin-top: 1.5rem;
        margin-left: 1.0rem;
    }
    table.inq_fields td,
    table.inq_fields th {
        width: 100%;
        display: block;
    }
    .inq_fields tr td:first-child {
        text-align: left;
        padding-top: 1.4rem;
    }
    .inq_fields textarea {
        width: 100%;
    }
    .inq_info {
        margin-left: 1.0rem;
        width: calc(100% - 2.0rem);
    }
    .mobile_center {
        text-align: center;
    }
}

.inq_conf {
    display: inline-block;
    border-bottom: 3px solid #4472c4;
    padding: 0.2rem 0.3rem;
    font-size: 1.0rem;
    height: 1.4rem;
    min-width: 20.0rem;
}

/* 送信ボタン */
input[type="submit"] {
    padding: 0.3rem 1.0rem;
    background-color: #ccfbfb;
    color: #1abcbc;
    border: 2px solid #1abcbc;
    border-radius: 0.3rem;
    font-size: 1.2rem;
    font-weight: bold;
    transition: 0.2s;
    cursor: pointer;
}
input[type="submit"]:active {
    transform: translateY(2px);
}

/* エラー */
.error {
    background-color: #ffdddd !important;
}
.error_msg {
    color: #ff6464;
}

/*  --------------------------------------
    プライバシーポリシー
    --------------------------------------  */
.pp_frame {
    line-height: 1.8rem;
    padding: 1.0rem 2.0rem;
}
@media (max-width: 500px) {
    .pp_frame {
        padding: 3.0rem 1.0rem;
    }
}

/*	--------------------------------------
    リスト
    --------------------------------------	*/
ul {
    margin: 0;
    padding: 0;
    padding-left: 0.2rem;
}
ul li {
    list-style-type: none;
    padding-left: 1.4rem;
    position: relative;
}
ul > li + li {
    margin-top: 0.5rem;
}
ul li::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0.35rem;
    left: 0;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background-color: #68a4d9;
}

/*	--------------------------------------
    表
    --------------------------------------	*/
table.grid {
    border-collapse: separate;
    border-spacing : 0;
    border: 1px solid #ccc;
    border-radius: 0.3rem;
}
table.grid tr + tr > th,
table.grid tr + tr > td,
table.grid thead + tbody tr:first-child th,
table.grid thead + tbody tr:first-child td,
table.grid tbody + tfoot tr:first-child th,
table.grid tbody + tfoot tr:first-child td {
        border-top: 1px solid #ccc;
}
table.grid td {
    vertical-align: text-top;
}
table.grid th + th,
table.grid th + td,
table.grid td + th,
table.grid td:not([rowspan]) + td {
    border-left: 1px solid #ccc;
}
table.grid td[rowspan]:not(:last-child) {
    border-right: 1px solid #ccc;
}
table.grid th,
table.grid td {
    padding: 0 0.5rem;
    white-space: nowrap;
}
table.grid > tfoot > tr > td {
    background-color: #eee;
}

/* 金額 */
.bill > tfoot > tr > td:first-child {
    text-align: center;
}
.bill > tbody > tr > td:last-child,
.bill > tfoot > tr > td:last-child {
    text-align: right;
}

/*	--------------------------------------
    リンク
    --------------------------------------	*/
a.link {
    display: inline-block;
    padding: 0.8rem 1.2rem;
    border: 2px solid #ccc;
    border-radius: calc(0.8rem * 2);
    text-decoration: none;
    color: #888;
    cursor: pointer;
}
a:not(.link):not(.button) {
    color: #6bf;
    color: #3aabd2;
    text-decoration: underline;
}
.page_view a[target="_blank"]:not(.link):not(.button) {
    position: relative;
    margin-right: 1.3rem;
}
.page_view a[target="_blank"]:not(.link):not(.button)::after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 1.0rem;
    height: 1.0rem;
    top: 0.0rem;
    margin-left: 0.3rem;
	background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100% 100%;
    background-image: url(../img/link.png);
}

/*	--------------------------------------
    アイコン文字
    --------------------------------------	*/
.icon {
    display: inline-block;
    position: relative;
    width: 1.0rem;
    height: 1.0rem;
    vertical-align: middle;
}
.icon::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;

    mask-size: 100% 100%;
    mask-position: center;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
}
.icon.download {
    margin-left: 0.5rem;
}
.icon.download::before {
    background: #aaa;
    mask-image: url(../img/download_b.png);
    -webkit-mask-image: url(../img/download_b.png);
}
.icon.mail::before {
    mask-image: url(../img/mail_b.png);
    -webkit-mask-image: url(../img/mail_b.png);
}
span[data-page] .icon {
    vertical-align: top;
}
a .icon::before,
span[data-page] .icon::before {
    background: #68a4d9;
}

/*	--------------------------------------
    ショートパーツ
    --------------------------------------	*/
.narrow {
    letter-spacing: -0.15rem;
}
.row {
    display: flex;
}
.row_wrap {
    display: flex;
    flex-wrap: wrap;
}
.phrase {
    padding: 0.5rem 1.5rem;
    padding-right: 0;
}
.mono {
    font-family: "lowline-only", monospace, monospace;
}
.copyright {
    color: #4472c4;
}
em {
    color: #e47cc6;
    font-weight: bolder;
    font-style: normal;
}
.gap02  { margin-top:   0.2rem; }
.gap05b { margin-bottom:0.5rem; }
.gap05  { margin-top:   0.5rem; }
.gap05r { margin-right: 0.5rem; }
.gap10  { margin-top:   1.0rem; }
.gap10b { margin-bottom:1.0rem; }
.gap10r { margin-right: 1.0rem; }
.gap20  { margin-top:   2.0rem; }
.gap30  { margin-top:   3.0rem; }
.gap40  { margin-top:   4.0rem; }
