
body{font-family: 'Noto Sans JP', sans-serif;}
p,div{margin-bottom:10px;}
ul{list-style-type: none;}
.box{
    border:1px solid #d8d8d8;
    padding:10px;
    border-radius: 10px;
    box-sizing: border-box;
}

.box .in-box{
    border-radius: 10px;
    background-color:#ffe6ee;
    border-bottom:2px solid #cc3467;
    padding:20px;
}

h1{
    font-weight: normal;
    font-size: 30px;
    margin-bottom:10px;
}

h2{
    width:100%;
    padding:12px;
    background-color: #cc3467;
    border-radius: 10px;
    color:#fff;
    font-weight: normal;
    font-size: 18px;
    margin-bottom:20px;
    box-sizing: border-box;
}

h3{
    font-weight: normal;
    font-size: 18px;
    margin-bottom:6px;
    color: #cc3467;
}

h4{
    color:#cc3467;
    margin-bottom:8px;
}

sup{
    color:#fff;
}

.in-box sup{
    color:#cc3467;
}

input[type="text"],
input[type="number"],
select{
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 3px;
    border: 2px solid #ddd;
    box-sizing: border-box;
}

select{
    color:#757575;
    margin-bottom:10px;
}

select option{
    color:#000;
}

input[type="text"]:focus{
    border: 2px solid #cc3467;
    z-index: 10;
    outline: 0;
}

input[type="submit"]{
    background-color:#cc3467;
    color:#fff;
    width:200px;
    text-align: center;
    padding:12px;
    border:0;
    cursor: pointer;
}

.top_line{
    width:100%;
    height:10px;
    background-color:#cc3467;
    margin-bottom:60px;
}

.wrapper{
    width:640px;
    margin:0 auto;
    box-sizing: border-box;
}

@media screen and (max-width: 640px) {
    .wrapper{
        width:100%;
        padding:0 12px;
    }
}

.description{
    border:1px solid #cc3467;
    padding:20px;
    box-sizing: border-box;
    font-size:14px;
    line-height: 20px;
}

/* = radio = */
ul.radio li{
    margin-bottom:12px;
}

ul.radio li label{
    position: relative;
    cursor: pointer;
    padding-left: 30px;
    padding-top:2px;
}

ul.radio li input {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%); 
    margin: -1px;
}

ul.radio li label::before,
ul.radio li label::after {
  content: "";
  display: block; 
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

ul.radio li label::before {
    background-color: #fff;
    border: 1px solid #cc3467;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    left: 5px;
}

ul.radio li label::after {
    background-color: #cc3467;
    border-radius: 50%;
    opacity: 0;
    width: 16px;
    height: 16px;
    left: 8px;
}

ul.radio li input:checked + label::after{
    opacity: 1;
}

/* = cal = */
.ui-widget-content{
    border: 1px solid #cc3467;
}

.ui-widget-header{
    border: 1px solid #cc3467;
    background-color: #cc3467;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default{
    border: 0;
    background-color:#ffe6ee;
    color:#cc3467;
}

.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus{
    background:#ffe6ee;
    border:0;
    cursor: pointer;
}

.sc{
    /*background-color: #df7b9b;*/
    background-color: #282828;
    text-align: center;
}

.sc:hover{
    opacity: 0.7;
}

.sc a{
    display:block;
    width:100%;
    text-decoration: none;
    color:#fff;
    padding:10px 0;
}

.sc a i{
    margin-left:10px;
}


.submit{
    text-align: center;
}

@media screen and (max-width: 640px) {
    .submit input[type="submit"]{
        margin-bottom:8px;
    }
}

.error{
    font-size:12px;
    color:red;
}

.return-btn{
    width: 200px;
    margin: 0 auto;
    background-color: #cc3467;
    box-sizing: border-box;
}

.return-btn a{
    width: 100%;
    display: block;
    padding: 10px;
    box-sizing: border-box;
    color:#fff;
    text-decoration: none;
}

/* = modal =*/

.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    background: #fff;
    left: 50%;
    padding: 40px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 60%;
}