/*
Theme Name: ICCコーポレートトレーニング
Theme URI: https://www.iccworld.co.jp/houjin
Description: ICCコーポレートトレーニングのテーマ
Version: 1.0.0
Author: sh-ueda
*/

.form-group {
    max-width: 540px;
    margin: 20px auto;
}
.form-group .form-control {
    border: solid 1px #ccc;
    border-radius: 4px;
    padding: 8px;
    width: 100%;
    margin-top: 5px;
}
.form-group .form-control.error { border: solid 1px red; }
.form-group label.error {
  font-size: 12px;
  color: red;
}
.form-group .required { color: #cc0000; }

/* smartphone */
@media screen and (max-width:767px) {
  .u-nmt-S { margin-top: -10px; }
  .u-nmb-S { margin-bottom: -10px; }
  .u-nmt-M { margin-top: -20px; }
  .u-nmb-M { margin-bottom: -20px; }
  .u-nmt-L { margin-top: -30px; }
  .u-nmb-L { margin-bottom: -30px; }
  .u-nmt-XL { margin-top: -40px; }
  .u-nmb-XL { margin-bottom: -40px; }
}

/* modal
-----------------------------------------------*/
.bg_onetime_popup {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.bg_onetime_popup.js_active {
    opacity: 1;
    visibility: visible;
}

.onetime_popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 50%;
    max-width: 800px;
	min-width:400px;
    background-color: #fff;
    cursor: pointer;
}

.onetime_popup_title {
    position: relative;
    padding: 10px 50px;
    margin: 0px;
    color: #fff;
    font-size: 32px;
    text-align: center;
    line-height: 1.5;
}
.onetime_popup_title:before,
.onetime_popup_title:after {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: 30px;
    height: 4px;
    background-color: #000;
    content: "";
}
.onetime_popup_title:before {
    transform: rotate(45deg);
}
.onetime_popup_title:after {
    transform: rotate(-45deg);
}

.onetime_popup_content {
    padding: 5px 20px 20px;
    text-align: center;
}
