@charset "utf-8";
/* CSS Document */

/** common **/
.width-wrapper {
		padding: 0 10px;
		max-width: 800px;
		width: 100%;
}
.ougi {
    align-items: center;
    font-size: 1.333rem;
    display: flex;
}
.ougi::before {
    background: url("../img/common/ougi.svg") no-repeat center center/contain;
    content: "";
    display: block;
    height: 1.1875em;
    margin-right: 1rem;
    width: 1.875em;
}
.button {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 3rem 0 0;
}
.button a {
    border: 2px solid;
    display: block;
    font-size: 1.16rem;
    font-weight: 600;
    padding: .5em .9em;
    text-align: center;
}
@media screen and (min-width:1024px){
.width-wrapper {
		margin: 0 auto;
}
}

/** footer **/
.site-footer {
    display: block;
    margin-top: 40px;
    padding-bottom: 10px;
    text-align: center;
}



/** spNav **/
.spMenu {
    height: 40px;
    position: fixed;
    right: 10px;
    width: 40px;
    top: 10px;
    z-index: 3000000;
}
.spMenuInner {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    padding: 10px 0;
    width: 100%;
}
.spMenuInner span {
    background: #fff;
    border-radius: 5px;
    height: 2px;
    opacity: 1;
    transition: .4s;
    width: 70%;
}
.open .spMenuInner span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.open .spMenuInner span:nth-child(2) {
    opacity: 0;
}
.open .spMenuInner span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}
.spNav {
    background: rgba(70,70,70,.8);
    height: 0;
    left: 0;
    position: fixed;
    top: 50px;/** ヘッダー高さ **/
    transition: .5s;
    width: 100%;
    z-index: 100;
}
.spNavWrap {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    list-style: none;
    overflow: auto;
}
.spNav-content {
    text-align: center;
}
.spNav-content:not(:last-child) {
    margin-bottom: 2rem;
}
@media screen and (min-width:768px){
.spNav-content {
    transform: scale(1.5);
}
.spNav-content:not(:last-child) {
    margin-bottom: 4rem;
}
}
@media screen and (min-width:1024px){
.spMenu {
    height: 45px;
    width: 60px;
}
.open .spMenuInner span:nth-child(1) {
    transform: translateY(11.5px) rotate(45deg);
}
.open .spMenuInner span:nth-child(3) {
    transform: translateY(-11.5px) rotate(-45deg);
}
}

/** form **/
.form-content {
    flex-direction: column;
}
.form-content + .form-content {
    margin-top: 1.5rem;
}

.form-content dt {
    margin-bottom: 5px;
}
.form-content.hissu dt {
    align-items: center;
    display: flex;
    justify-content: space-between;
}
.form-content.hissu dt::after {
    background: #ff5858;
    border-radius: 3px;
    color: #fff;
    content: "必須";
    font-size: 10px;
    padding: 2px 5px;
}
@media screen and (min-width:768px){
.form-content + .form-content {
    margin-top: 2rem;
}
.form-content.hissu dt {
    justify-content: flex-start;
}
.form-content.hissu dt::after {
    font-size: 1rem;
    margin-left: 1rem;
    padding: 2px 10px;
}
}

.form-btn {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}
.form-btn input {
    background: #e01616;
}

body, button, input, select, textarea {
    font-family: inherit;
}
input, select, textarea {
    font-size: 16px;
}
.mw_wp_form .error {
    font-size: 2rem !important;
    font-weight: 700;
}

m
