@charset "UTF-8";

/* 
------------------------------------*/
/*全て共通：hideエリアをはじめは非表示*/
.hide-area{
	display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:before{
	content: none;
}
.modaal-close:focus::after, .modaal-close:hover::after {
    background-color: #fff;
}
.modaal-close::after {
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
    height: 2px;
    width: 20px;
}
.modaal-wrapper .modaal-close, .modaal-close:hover {
    box-shadow: none;
    position: absolute;
    border: 1px solid #333;
    border-radius: 0;
    width: 30px;
    height: 30px;
    background-color: #333;
}
.modaal-overlay {
    display: none;
}
.modaal-container {
    border-radius: 20px;
}
.modaal-content-container {
    padding: 40px 0;
}
.modaal-content-container .inner {
    max-height: 600px;
  overflow-y: scroll;
}


            /* 【スマートフォン用のスタイル記述】 */
            @media screen and (min-width: 760px) {
                .modaal-container {
                    border-radius: 35px;
                }
                .modaal-content-container {
                    padding: 60px 0;
                }
            }

            /* 【タブレット用のスタイル記述】 */
            @media screen and (min-width: 960px) {
            }