h1 {
	width: 800px;
    text-align: center;
    font-size: 1.6em;
	margin: 0 auto;
    margin-bottom: 0.5em;
    color: #364e96;/*文字色*/
    border: solid 3px #364e96;/*線色*/
    padding: 0.5em;/*文字周りの余白*/
    border-radius: 0.5em;/*角丸*/
}

h2 {
	width: 800px;
    text-align: center;
    font-size: 1.4em;
	margin: 0 auto;
    padding: 0.5em;
    background: aliceblue;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.23);
}


@media screen and (max-width: 768px) {
    h1 {
		width: 90%;
        font-size: 1.2em;
    }
    h2 {
		width: 90%;
        font-size: 1.0em;
    }
}

body { font-family: Arial, sans-serif; margin: 1em; margin-bottom: 0; }

.sample-table, .result-table {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    padding: 1.5em;
    margin-top: 1.5em;
    font-size: 0.95em;
    line-height: 1.3;
}

.sample-table {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.result-table {
    background: url('image/kekkon_back_30pct.png') top center/cover no-repeat;
}

.information-textarea {
	width: 800px;
	text-align: left;
	margin: 0 auto;
	/*outline: dashed 1px black;*/
}

.form-input {
	width: 400px;
	text-align: center;
	margin: 0 auto;
    font-size: 1.2em;
	/*outline: dashed 1px black;*/
}

@media screen and (max-width: 768px) {
	.information-textarea {
		width: 100%;
		text-align: left;
		margin: 0 auto;
		/*outline: dashed 1px black;*/
	    font-size: 0.95em;
	}
    .form-input {
		width: 100%;
		text-align: center;
		margin: 0 auto;
		/*outline: dashed 1px black;*/
    }
}


.btn-square-shadow {
  display: inline-block;
  font-size: 0.8em;
  padding: 0.5em 1em;
  text-decoration: none;
  background: #668ad8;/*ボタン色*/
  color: #fff;
  width: 320px;
  height: 60px;
  border-bottom: solid 4px #627295;
  border-radius: 3px;
}
.btn-square-shadow:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px);/*下に動く*/
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);/*影を小さく*/
  border-bottom: none;
}


/* テーブルスタイル */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1em;
    font-size: 0.95em;
}

th, td {
    border: 1px solid #ccc;
    padding: 0.4em 0.6em;
    text-align: center;
}

th {
    background-color: #f8f8f8;
}

.information-info {
    font-size: 0.95em;  /* PCサイズ */
    line-height: 1.3;
    text-align: center;
    margin-top: 1em;
}

@media screen and (max-width: 768px) {
    .information-info {
        font-size: 0.8em;  /* スマホサイズ */
        line-height: 1.2;
    }
}

/* 次回記念日の行 */
tr.highlight {
    background-color: #ffeeba;
    font-weight: bold;
    color: #000;
}

/* スマホ用調整 */
@media screen and (max-width: 768px) {
    .sample-table, .result-table {
        font-size: 0.8em;
        line-height: 1.2;
        padding: 1em;
    }
    table {
        font-size: 0.8em;
        overflow-x: auto;
        display: block;
    }
}


/* フッターのスタイル */
.service-footer {
    background-color: #f0f4f8;
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid #dae1e8;
    text-align: center;
}

.footer-links {
    display: inline-flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.footer-links a {
    color: #5a6c7d;
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #364e96;
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .service-footer {
        margin-top: 3rem;
    }

    .footer-links {
        gap: 1rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }
}