@charset "utf-8";
@import url(../style.css?v=1);
/* フォーム共通スタイル定義 */
.contact_form,
.form_confirm main,
.form_submit main {
	margin: 0 auto;
	width: 96%;
	max-width: 640px;
}

.emphasize1 {
    color: rgb(255, 91, 89);
    font-style: normal;
    font-weight: bold;
    font-size: 1.5em;
}

.emphasize2 {
    color: rgb(255, 91, 89);
    font-style: normal;
    font-size: 1em;
    font-weight: bold;
}

.font_red {
    color: #f34444;
}

.flow_list {
    list-style: none;
    margin: 16px auto;
    padding: 0;
    width: 100%;
    max-width: 334px;
}

@media screen and (min-width: 768px) {
    .flow_list {
        width: auto;
        max-width: none;
        text-align: center;
    }

    .flow_list li {
        display: inline-block;
        width: 160px;
        margin-right: 32px;
    }

    .flow_list li:last-child {
        margin-right: 0;
    }
}

.flow_list li {
    position: relative;
    height: 160px;
    text-align: center;
}

.flow_list li .inner {
    background: #a6d0e5;
    color: white;
    border-radius: 50%;
    width: 160px;
    height: 100%;
    font-weight: bold;
}

.flow_list li .inner.right {
    position: absolute;
    right: 0;
}

.flow_list li .inner.left {
    position: absolute;
    left: 0;
}

.flow_list li .inner .text {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.how_to_contact .title {
    text-align: center;
}

.flow_list li:not(:last-child)::after {
    content: "";
    display: block;
    width: 50%;
    height: 26px;
    background-image: url("flow_arrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 93%;
    left: 50%;
    transform: translateX(-50%) rotate(-22deg);
    z-index: 1;
}

.flow_list li:nth-of-type(even)::after {
    transform: translateX(-50%) rotate(-96deg);
}

@media screen and (min-width: 768px) {
    .flow_list li:not(:last-child)::after {
        top: 50%;
        left: 103%;
        transform: translateY(-50%) rotate(-136deg);
        width: 20%;
    }
}

.form_contact_flow {
    display: table;
    width: 100%;
    margin: 16px 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.form_contact_flow li {
    display: table-cell;
    width: 33%;
    border: solid 1px rgb(220, 220, 220);
    border-left: none;
    box-sizing: border-box;
    position: relative;
    color: rgb(3, 69, 150);
    background: white;
    vertical-align: middle;
    padding: 8px 0;
    font-size: 0.8em;
    position: relative;
    height: 100%;
}

.form_contact_flow li:not(:last-child)::after {
    content: "";
    display: block;
    height: 100%;
    width: 16px;
    background-image: url("arrow1.png");
    background-size: 100% 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 100%;
    z-index: 1;
    margin-left: -1px;
}

.form_contact_flow li:not(:last-child).cur::after {
    background-image: url("arrow2.png");
}

.form_contact_flow li:not(:last-child).prev::after {
    background-image: url("arrow3.png");
}

.form_contact_flow li.cur,
.form_contact_flow li.prev {
    color: white;
    background: rgb(3, 69, 150);
    border-right: none;
}

.form_contact_flow li:not(:first-child) {
    padding-left: 16px;
}

.contact_form {
    border-top: solid 2px rgb(3, 69, 150);
}

label.option {
	display: inline-block;
	margin: 0 1em 0 0;
}
label.option input[type=radio] {
	vertical-align: middle;
}
label.option .text {
	vertical-align: middle;
}

.contact_form_list dt {
    font-weight: bold;
}

.contact_form_list dd {
    margin-left: 0;
    margin-bottom: 16px;
    width: 100%;
}

.contact_form .q_type {
    display: block;
    margin: 8px 0;
}

.contact_form .required_marker {
    color: red;
}

.contact_form input[type=text] {
    box-sizing: border-box;
    width: 100%;
    max-width: 640px;
    box-sizing: border-box;
}
.contact_form input[type=text]:invalid {
    background-color: #fdd;
	border-color: red;
}
.contact_form input[type=email] {
    box-sizing: border-box;
    width: 100%;
    max-width: 640px;
    box-sizing: border-box;
}
.contact_form input[type=email]:invalid {
    background-color: #fdd;
	border-color: red;
}
.contact_form input[type=tel]:invalid {
    background-color: #fdd;
    border-color: red;
}
.contact_form textarea {
    box-sizing: border-box;
    width: 100%;
    max-width: 640px;
    height: 6em;
    font-family: inherit;
    font-size: medium;
    border: 1px solid #383838;
    border-radius: 8px;
    outline: none;
}

.contact_form .submit_button {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    font-weight: bold;
    background-color: white;
    color: #3c5da8;
    margin: 8px 0;
    padding: 16px 0;
    border: solid 2px #3c5da8;
    pointer-events: auto;
    cursor: pointer;
}
.contact_form:invalid button[type=submit] {
	background: #CCC;
	color: #888;
}

.contact_content .form_contact_flow {
    margin: 0;
}

.submit_button_wrapper {
    display: flex;
}

.contact_form .fix_btn {
    display: block;
    width: 100%;
    background: #F8F8F8;
    color: black;
    border-color: #F8F8F8;
    font-weight: normal;
    cursor: pointer;
    border: none;
    padding: 16px 0;
}

.contact_form .fix_btn:hover {
    border-color: #F8F8F8;
}

.home_link {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    color: white;
    font-weight: bold;
    margin: 8px 0;
    padding: 16px 0;
    background: rgb(3, 69, 150);
    border: solid 2px rgb(3, 69, 150);
    text-decoration: none;
}

.home_link:hover {
    transition: .2s;
    background: white;
    color: black;
}

.heading_1 {
    text-align: center;
}

.mekulo_point,
.access_log,
.published_flow {
    background-color: #EAF4F9;
}

.eg_page_container img {
    display: block;
    width: 100%;
}

.mekulo_point_list {
    padding-left: 0;
    list-style: none;
}

.mekulo_point_list li {
    border: solid 1px #70BEE6;
    padding: 16px;
    background-color: white;
    margin: 8px 0;
}

.mekulo_point_list li .title {
    margin: 0;
    color: #70BEE6;
    text-align: center;
}

.how_to_list {
    padding-left: 0;
    list-style: none;
}

.how_to_list li {
    padding: 16px;
    background-color: #EAF4F9;
    margin: 8px 0;
}

.how_to_list li .title {
    margin: 0;
    color: #70BEE6;
    text-align: center;
}

.how_to_list li .title::before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    margin: auto;
    background-size: 100%;
    background-repeat: no-repeat;
}

.how_to_list li.koujou .title::before {
    background-image: url("icon_koujou.png");
}

.how_to_list li.seo .title::before {
    background-image: url("icon_seo.png");
}

.how_to_list li.page .title::before {
    background-image: url("icon_page.png");
}

.access_log {
    margin-right: 0;
    margin-left: 0;
}

.access_log img {
    display: block;
    width: 100%;
}

.access_log_1 {
    overflow-x: scroll;
}

.access_log_1 img {
    width: 280%;
}

.access_log_2 figcaption,
.access_log_3 figcaption {
    font-weight: bold;
    text-align: center;
}

.ueda_homepage_ss {
    display: block;
    width: 100%;
}

.price_table {
    width: 100%;
    border-spacing: 4px;
}

.price_table th {
    background-color: #70BEE6;
    color: white;
    font-weight: normal;
    padding: 16px;
}

.price_table td {
    background-color: #EAF4F9;
    font-weight: bold;
    text-align: center;
    padding: 32px 0;
}

.content_block {
    padding: 16px;
    max-width: 800px;
    margin: auto;
    box-sizing: border-box;
}

.firstview_area {
    background-image: url("firsrtview_back_sp.jpg");
    background-size: cover;
    position: relative;
}

.firstview_area::before {
    content: "";
    display: block;
    padding-top: 58%;
}

.firstview_area .image_base_box {
    position: relative;
    height: 100%;
    max-width: 800px;
    margin: auto;
}

.firstview_area .text_box {
    display: block;
    width: 100%;
    margin: 0;
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.firstview_area .image_base_box .left_box {
    width: 32%;
    position: absolute;
    bottom: 0;
    left: 16px;
}

.firstview_area .image_base_box .right_box {
    width: 50%;
    position: absolute;
    bottom: 0;
    right: 16px;
}

.firstview_area .image_base_box img {
    display: block;
    width: 100%;
}

@media only screen and (min-width: 720px) {
    .flex_box.eg_page_container {
        display: flex;
    }

    .flex_box.eg_page_container img {
        width: 48%;
        margin: auto;
        flex-basis: 48%;
    }

    .flex_box.mekulo_point_list {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .flex_box.mekulo_point_list li {
        flex-basis: 42%;
    }

    .flex_box.how_to_list {
        display: flex;
        justify-content: space-between;
    }

    .flex_box.how_to_list li {
        flex-basis: 28%;
    }

    .access_log_1 img {
        width: 100%;
    }

    .flex_box.access_log_group {
        display: flex;
        justify-content: space-around;
        align-items: flex-start;
    }

    .flex_box.access_log_group > * {
        flex-basis: 40%;
    }
}

@media only screen and (min-width: 800px) {
    .firstview_area {
        background-image: url("firstview_back.jpg");
    }

    .firstview_area::before {
        content: none;
    }

    .firstview_area {
        height: 500px;
    }

    .firstview_area .text_box {
        font-size: 32px;
        top: 32px;
    }
}

/* ナビリンク */
.nav_link {
    background: rgba(170, 170, 170, 0.7);
    backdrop-filter: blur(4px);
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 5;
    border-top: solid 1px gray;
}

.nav_link_container {
    margin: 4px 0;
    padding: 0 16px;
}

.contact_button_wrapper {
    margin-bottom: 4px;
}

.nav_link .contact_button {
    display: inline-block;
    width: 49%;
    box-sizing: border-box;
    color: white;
    font-size: 12px;
    padding: 8px;
    text-align: center;
    font-weight: bold;
    line-height: 19.2px;
    border-radius: 2px;
}

.nav_link .tel_button .accept {
    font-size: 8px;
}

@media screen and (min-width: 375px) {
    .nav_link .contact_button {
        font-size: 12.8px;
    }
}

@media screen and (min-width: 414px) {
    .nav_link .contact_button {
        font-size: 16px;
    }
}

.nav_link .contact_button button {
    text-align: left;
}

.nav_link .contact_button.blue {
    margin-right: 1%;
    background: rgb(3, 69, 150);
    border: solid 1px rgb(3, 69, 150);
}

.nav_link .contact_button.red {
    margin-left: 1%;
    background: rgb(255, 91, 89);
    border: solid 1px rgb(255, 91, 89);
}

.nav_link .tel_button {
    display: block;
    width: 100%;
    text-align: center;
    font-weight: bold;
    color: black;
    background: white;
    line-height: 14.4px;
    padding: 8px 0;
    border-radius: 2px;
}

.nav_link .tel_button .number {
    display: block;
    font-size: 16px;
    color: rgb(255, 91, 89);
}

@media screen and (min-width: 768px) {
    .nav_link_container {
        width: 600px;
        margin: 8px auto;
    }
}

button {
    background: none;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font: inherit;
    padding: 0;
    color: inherit;
}

.page_footer {
    padding-bottom: 98px;
}

@media screen and (min-width: 768px) {
    .page_footer {
        padding-bottom: 106px;
    }
}