@charset "UTF-8";

/* ↓共通 */
* {
    line-height: 1.5em;
    letter-spacing: 0.1em;
}
a {
    color: #333333;
    text-decoration: none;
}
a:hover {
    opacity: 0.7;
}
img {
    width: 100%;
}
body {
    background: #fff;
}
/* ↑共通 */
.wpcf7-not-valid-tip {
    display: none !important;
}
.formarea {
    padding: 100px 0;
}
.formarea-inner {
    width: 92%;
    max-width: 1040px;
    margin: 0 auto;
}
.formarea-head h2 {
    display: block;
    text-align: center;
    position: relative;
    padding: 50px 0 0 0;
}
.formarea-head h2::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 616px;
    bottom: 15px;
    left: 0;
    margin: auto;
    width: 166px;
    height: 115px;
    background: url(../images/form_01.png) no-repeat;
    background-size: 100% auto;
}
.formarea-items {
    background: #F1F8FF;
    padding: 30px;
}
.formarea-item {
    margin-bottom: 40px;
}
.formarea-item a {
    text-decoration: underline;
}
.formarea-item__ttl {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 16px;
}
.formarea-item__red {
    color: #dc3232;
}
.formarea-item__blue {
    color: #03539d;
}
.formarea-agree {
    font-size: 16px;
}
/*入力エリア*/
.formarea-flex__box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.formarea-flex__box .label {
    width: 25%;
    text-align: center;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}
.formarea-flex__box .formarea-flex__yymmdd,
.formarea-flex__box .formarea-flex__time {
    width: 36%;
}
.formarea-flex__box::after{
    content:"";
    display: block;
    width: 36%;
}
.formarea input[type="text"],
.formarea input[type="email"],
.formarea input[type="tel"],
.formarea select,
.formarea input[type="date"],
.formarea textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    appearance: none;
}
.formarea input[type="submit"] {
    border: none;
    background: none;
    font-size: 18px;
}
.formarea .formarea-flex__time select {
    padding: 12px;
}
.formarea-agree input {
    margin-right: 10px;
}
.formarea-btn {
    margin: 40px auto 0;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
    background-color: #f33821;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    font-size: 14px;
    font-weight: bold;
    width: 290px;
}
.formarea-btn:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25), 0 5px 5px rgba(0, 0, 0, 0.22);
}
/*アコーディオン全体*/
.accordion-area {
    list-style: none;
    padding-left: 0;
}
.accordion-area li {
    margin-bottom: 10px;
    width: 100%;
}
.accordion-area section {
  position: relative;
}
.accordion-area section .title {
    margin: 0;
}
/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-weight: normal;
    padding: 10px;
    transition: all .5s ease;
    border: 1px solid #333333;
    background: #ffffff;
}
/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    transition: 0.3s;
}
.title::before{
    top:48%;
    right: 15px;
    transform: rotate(0deg);
}
.title::after{    
    top:48%;
    right: 15px;
    transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.title.close::after{
  transform: rotate(0deg);
}
/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    padding: 30px;
    position: relative;
}
.box p {
    margin: 0;
}
.box ul {
    list-style-type: none;
    padding: 0;
}
.accordion-area li ul.formarea-item__man {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.accordion-area li ul.formarea-item__man li {
    width: 49%;
}
.accordion-area li ul.formarea-item__man li:first-child {
    width: 100%;
}

@media (max-width: 768px) {
    .box {
        padding: 30px 10px;
    }
    .formarea-flex__box .label {
        width: 100%;
        padding: 10px 0;
        margin-bottom: 10px;
    }
    .formarea-flex__box .formarea-flex__yymmdd,
    .formarea-flex__box .formarea-flex__time {
        width: 49%;
    }
    .formarea-items {
        padding: 20px;
    }
    .formarea-item__input_date {
        margin-bottom: 22px;
    }
    .formarea-head h2::before {
        display: none;
    }
    .formarea-btn {
        width: 100%;
    }
}

.wpcf7-spinner {
    display: none !important;
}