﻿@charset "utf-8";
/* =======================================

	 CSS BrowserReset BaseElements

 ======================================= */
html, body, div, span, nav, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer,
hgroup, menu, nav, section, time, mark, audio, video {
	    margin: 0;
    padding: 0;
    border: 0;
    /* font-family: 'ＭＳ Ｐゴシック', Arial, sans-serif; */
    font-family: helvetica,"Hiragino Kaku Gothic ProN","メイリオ","ＭＳ Ｐゴシック",sans-serif;
    font-size: 16px;
}

body {
	width: 100%;
}

html {
	width: 100%;
}

img {
	vertical-align: text-bottom;
}

strong {
	font-weight: bold;
}

ol, ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

caption, th, td {
	font-weight: normal;
	text-align: left;
	vertical-align: top;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}

blockquote, q {
	quotes: "" "";
}

a:focus {
/*\*/
	overflow: hidden;
/**/
}

option {
	padding-right: 10px;
}

/* ------------------------------
	HTML5 ELEMENTS
------------------------------ */
header, article, aside, section, footer,
nav, menu, details, hgroup, summary, figcaption, figure {
	display: block;
}



/* モーダル */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal.open {
    display:block;
}

.modal-content {
    background-color: #fefefe;
    margin: 12% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 40%;
    text-align: center;
    border-radius: 10px;
    position: relative;
}

/* モーダルを固定 */
/*.modal.fixed {
    overflow:hidden;
}*/

.customer-id 
{
    font-size: larger;
}
.label-customer-id 
{
    font-size: larger;
}

/* 電話番号 */
.phone_number {
    font-size: larger;
}

/* ボタン */
.buttons {
    display: flex;
    justify-content: center;
}

#button-skip, #button-update {
    display: inline-block;
    padding: 18px 20px;
    border-radius: 30px;
    background-color: #008080;
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

/* URLのリンク */
#url-cancel {
    display: inline-block;
    color: blue;
    text-decoration: underline;
    margin-top: 10px;
}

/* ×ボタンのスタイル */
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}