@charset "UTF-8";
/* CSS Document */
*,*::before,*::after{
/*リセット*/
margin: 0;
padding: 0;
box-sizing: border-box;
}
a{
color: #333;
text-decoration: none;
}
img{
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
body{
font-family: "Jost", sans-serif;
font-optical-sizing: auto;
  font-weight: thin;
  font-style: normal;
    line-height: 1.75rem;
    letter-spacing: 1px;
    min-width: 1300px;
    color: #333;
}
.container{
 max-width: 1160px;
 padding: 0 40px;
 margin: 0 auto;
}
h2{
font-size: 40px;
padding: 150px 0 20px 0;
position: relative;
width: 100%;text-align: center;
}
p{font-size: 18px;}

.copy{
 text-align: center;
 font-size: 12px;
 padding: 10px;
}
/*パン*/
.bread-list ul{
margin: 20px 0;
}
.bread-list li {
    display: inline-block; 
    margin-right: 10px; 
    padding: 10px 0;
}
.bread-list li a {
    text-decoration: none; 
    color: #337ab7; 
    white-space: nowrap; 
}
.bread-list li a:hover {
    text-decoration: underline;
    color: #4a74a5;
}
.bread-list li:not(:last-child)::after {
    content: " > "; 
    margin-left: 10px; 
    color: #ccc; 
}.bread-list li:last-child {
    color: #555; 
    font-weight: bold; 
}
/**/
header{
width: 100vw;
border-bottom: 2px solid #ddd;
padding: 20px 0;
}
header h1 a img{height: 40px;width: auto;}

.page-subtitle{
text-align: center;
font-size: 16px;
color: #555;
margin-bottom: 70px;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    max-width: 80%; /*フォームの幅*/
    margin: 0 auto 80px auto;
}
.form-caution {
    text-align: right;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}
.required-note {/*必須項目*/
    background-color: #f44336;
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    margin-right: 5px;
    font-weight: bold;
}
.form-dl {
    margin-bottom: 40px;
    border-top: 1px solid #eee;
}
.form-dl dt {
    background-color: #f9f9f9;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 18px;
    border-bottom: 1px solid #eee;
    border-left: 5px solid #4a74a5; /* 青いライン */
    display: flex;
    align-items: center;
    margin-top: -1px; 
}
.form-dl dd {
    padding: 30px;
    border-bottom: 1px solid #eee;
    margin-left: 0; 
}
.required {/*必須*/
    background-color: #f44336;
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
    margin-left: 10px;
    font-weight: normal;
}
.form-dl input[type="text"],
.form-dl input[type="email"],
.form-dl input[type="tel"],
.form-dl select,
.form-dl textarea {
    width: 100%;
    height: 60px;
    max-width: 500px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; 
    font-size: 18px;
    transition: border-color 0.3s;
}
.form-dl input:focus,
.form-dl select:focus,
.form-dl textarea:focus {
    border-color: #4a74a5; 
    outline: none;
}
.form-dl textarea {
    max-width: 100%; 
    height: auto;
    resize: vertical; 
}
.privacy-check {
    text-align: center;
    margin: 40px 0;
    font-size: 15px;
}
.privacy-check a {
    color: #4a74a5;
    text-decoration: underline;
}
.submit-area {
    text-align: center;
}
.submit-btn {
    background-color: #4a74a5;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s;
    width: 100%;
    max-width: 300px;
}
.submit-btn:hover {
    background-color: #3a6495; 
}
placeholder{font-size: 15px;}