@charset "utf-8";
/* CSS Document */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:"Shippori Mincho";
    line-height: 1.6;
    color: #333;
   /* background-color: #f9f9f9;*/
}

header {
    /*background-color: #2c3e50;*/
    color: rgba(87, 71, 56, 0.80);
    padding: 1em;
    text-align: center;
}

header h1 {
    margin: 0;
}

main {
    padding: 2em;
}
section {
    margin-bottom: 2em;
}

h2 {
    color: #2c3e50;
    margin-bottom: 0.5em;
}
h3{
    transform: rotate(90deg);
    color: #FFFFFF;
    -webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: #DAA520;
font-family: "Zen Antique";
font-size: 95px;
font-style: normal;
font-weight: 400;
line-height: normal;
position:absolute;
right: -8%;
top:44%;
}
p {
    margin-bottom: 1em;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1em;
    background-color: white;
}

th, td {
    border: 1px solid #ddd;
    padding: 0.5em;
    text-align: center;
}

th {
    background-color: #f2f2f2;
}

footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 1em;
}

footer a {
    color: white;
    text-decoration: none;
}
.top{
    width: 100%;
    height: auto;
}
.accordion {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    /*border-radius: 8px;*/
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0);
    overflow: hidden;
}

/* 各アコーディオンアイテムのスタイル */
.accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.accordion-item:last-child {
    border-bottom: none;
}

/* アコーディオンヘッダーのスタイル */
.accordion-header {
    padding: 15px;
    background-color: #2c3e50;
    color: #ffffff;
    cursor: pointer;
    user-select: none;
}

.accordion-header:hover {
    background-color: #0056b3;
}

/* アコーディオンコンテンツのスタイル */
.accordion-content {
    display: none;
    padding: 15px;
    background-color: #f9f9f9;
    transition: max-height 0.2s ease-out;
}

/* 開いているアコーディオンコンテンツのスタイル */
.accordion-content.show {
    display: block;
}

.contact-form {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.contact-form h2 {
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
    height: 100px;
}

.radio-group {
    display: flex;
    gap: 10px;
}

.radio-group label {
    display: flex;
    align-items: center;
}

.radio-group input {
    margin-right: 5px;
}

button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #2c3e50;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

@media (max-width: 600px) {
	.top {
		height: auto;
	}
	.sou-top{
		font-size: 25px;
		top: 170px;
		transform: none;
		left: auto;
		right: auto;
	}
    .contact-form {
        padding: 20px;
    }
}