@charset "UTF-8";
#loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 130px;
  -webkit-mask-image: url("../image/loader.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  mask-image: url("../image/loader.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  background: #35324C;
  z-index: 1000;
}
#loader.fixed {
  position: fixed;
}

/* modal */
/*==================================*/
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 98;
  background: white;
  border-radius: 7px;
  width: 90%;
  max-height: calc(var(--vh, 1vh) * 90);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
  overflow-x: hidden;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
}
.modal.is_open {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}
.modal.second {
  z-index: 100;
}
.modal header {
  background: #2A273E;
  color: #f1fbff;
  padding: 0.6em 1em;
  border-radius: 7px 7px 0 0;
}
.modal .modal_contents {
  padding: 0 1em 2em;
  margin-top: 2em;
  flex-grow: 1;
  overflow: auto;
}
.modal footer {
  position: sticky;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em;
  border-top: 1px solid #ccc;
  background: white;
  z-index: 2;
}

[data-modal], [data-confirm] {
  cursor: pointer;
}
[data-modal] input, [data-confirm] input {
  cursor: pointer !important;
}

#overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 97;
}
#overlay.second {
  z-index: 99;
}

/* confirm */
/*====================================== */
.confirm {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  width: 90%;
  max-width: 350px;
  z-index: 100;
}
.confirm h2 {
  font-size: 1.2em;
  padding: 1.5em 1.5em 0.2em;
  text-align: center;
}
.confirm .message {
  padding: 0 1.5em 1em;
  text-align: center;
  line-height: 1.6;
}
.confirm footer {
  display: flex;
  align-items: center;
  border-top: 1px solid #bbbfc0;
}
.confirm footer > div {
  width: 50%;
  padding: 1.1em 0 0.9em;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
}
.confirm footer .close_modal {
  color: red;
  border-right: 1px solid #bbbfc0;
}
.confirm footer:not(.close_modal) {
  color: #053686;
}

/* input area */
/*==================================*/
.fx_gr {
  display: flex;
  align-items: center;
  margin-bottom: 1.2em;
}
.fx_gr > p {
  margin-right: 0.7em;
  text-align: right;
  font-size: 0.9em;
}
.fx_gr > div, .fx_gr > label {
  flex-grow: 1;
}

.ip_gr {
  margin-bottom: 1.2em;
}
.ip_gr > p {
  font-size: 0.9em;
  font-weight: 500;
  margin-bottom: 0.3em;
  color: #646c72;
}

.ip_box {
  border-radius: 30px;
  background: #fafafa;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ip_box:hover {
  cursor: pointer;
}
.ip_box input:not([type=radio]):not([type=checkbox]) {
  font-size: 0.8em;
  padding: 0.4em 0.8em 0.2em;
  background: none;
  border: none;
}
.ip_box input:not([type=radio]):not([type=checkbox]):focus {
  box-shadow: none;
}
.ip_box input:not([type=radio]):not([type=checkbox]):hover {
  cursor: pointer;
}
.ip_box .icon_calendar_input {
  font-size: 8px;
  margin-right: 1em;
}

.ip_box_select {
  border-radius: 30px;
  background: #fafafa;
  border: 1px solid #ccc;
  position: relative;
}
.ip_box_select:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.8em;
  background: #ccc;
  height: 5px;
  width: 8px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.ip_box_select select {
  width: 100%;
  border: none;
  background: transparent;
}

.required {
  display: flex;
  align-items: center;
}
.required:after {
  content: "必須";
  display: block;
  color: white;
  background: #FB6750;
  border-radius: 3px;
  padding: 0.3em 0.5em 0.1em;
  margin-left: 0.4em;
  font-size: 0.7em;
  font-weight: 500;
}

.max_input [data-max-length] {
  font-size: 0.7em;
  display: block;
  text-align: right;
  margin-top: 0.4em;
}
.max_input [data-max-length]:after {
  content: " / " attr(data-max-length) "文字";
}

[data-rq], [data-regular], [data-limit] {
  position: relative;
}
[data-rq][data-error-message].label_icon, [data-regular][data-error-message].label_icon, [data-limit][data-error-message].label_icon {
  border-color: #FB6750;
}
[data-rq][data-error-message] input:not([type=radio]):not([type=checkbox]), [data-rq][data-error-message] textarea, [data-rq][data-error-message] select, [data-regular][data-error-message] input:not([type=radio]):not([type=checkbox]), [data-regular][data-error-message] textarea, [data-regular][data-error-message] select, [data-limit][data-error-message] input:not([type=radio]):not([type=checkbox]), [data-limit][data-error-message] textarea, [data-limit][data-error-message] select {
  border-color: #FB6750;
}
[data-rq][data-error-message] input:not([type=radio]):not([type=checkbox]):focus, [data-rq][data-error-message] textarea:focus, [data-rq][data-error-message] select:focus, [data-regular][data-error-message] input:not([type=radio]):not([type=checkbox]):focus, [data-regular][data-error-message] textarea:focus, [data-regular][data-error-message] select:focus, [data-limit][data-error-message] input:not([type=radio]):not([type=checkbox]):focus, [data-limit][data-error-message] textarea:focus, [data-limit][data-error-message] select:focus {
  border-color: #FB6750;
  box-shadow: 0 0 1px 1px rgba(251, 103, 80, 0.5);
}

.label_icon {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: white;
}
.label_icon:focus-within {
  border-color: #E2552A;
  box-shadow: 0 0 1px 1px rgba(226, 85, 42, 0.5);
}
.label_icon input:not([type=radio]):not([type=checkbox]) {
  border: none;
}
.label_icon input:not([type=radio]):not([type=checkbox]):focus {
  box-shadow: none;
}
.label_icon i {
  padding-right: 0.7em;
  width: 2.2em;
}
.label_icon .icon_eye_show, .label_icon .icon_eye_hide {
  cursor: pointer;
}
.label_icon[data-error-message]:focus-within {
  border-color: #FB6750;
  box-shadow: 0 0 1px 1px rgba(251, 103, 80, 0.5);
}
.label_icon[data-error-message] input:not([type=radio]):not([type=checkbox]):focus, .label_icon[data-error-message] textarea:focus, .label_icon[data-error-message] select:focus {
  box-shadow: none;
}

/* ボタン */
/*==================================*/
.btn {
  padding: 1em 0 0.8em;
  color: white;
  border-radius: 4px;
  border: 1px solid;
  font-weight: 500;
  cursor: pointer;
}
.btn.bs {
  background: #E2552A;
  border-color: #C83D17;
  box-shadow: 0 2px #C83D17;
}
.btn.bs2 {
  background: #43415E;
  border-color: #232035;
  box-shadow: 0 2px #232035;
}
.btn.red {
  background: #FB6750;
  border-color: #C9301D;
  box-shadow: 0 2px #C9301D;
}
.btn.yel {
  background: #FFB40F;
  border-color: #DD9300;
  box-shadow: 0 2px #DD9300;
}
.btn.wht {
  background: white;
  border-color: #E2552A;
  box-shadow: 0 2px #E2552A;
  color: #E2552A;
}
.btn.gry {
  background: #f8f8f8;
  border-color: #ccc;
  box-shadow: 0 2px #ccc;
}
.btn.gry:not([class*=c_]) {
  color: #565c60;
}
.btn.is_medium {
  padding: 0.65em 0 0.45em;
}
.btn:active {
  box-shadow: none;
}
.btn.active {
  opacity: 0.7;
  box-shadow: none !important;
  pointer-events: none;
}
.btn:has(input:checked) {
  box-shadow: none;
}

.btn2 {
  padding: 0.984em 0;
  background: white;
  border: 1px solid;
  border-radius: 4px;
  font-size: 0.95em;
  cursor: pointer;
}
.btn2.bs {
  border-color: #E2552A;
  color: #E2552A;
}

a.btn, div.btn,
a.btn2, div.btn2 {
  display: block;
  text-align: center;
  text-decoration: none;
}

.upload_btn {
  background: #f7f8fa;
  border: 1px solid #a1a7ad;
  box-shadow: 0 1px #a1a7ad;
  padding: 0.7em 0 0.6em;
  color: #474d54;
  font-weight: 500;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}
.upload_btn i {
  color: #474d54;
}
.upload_btn > input {
  display: none;
}

.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.x_btn {
  position: relative;
  transform: rotate(45deg);
  border-radius: 50%;
  cursor: pointer;
}
.x_btn:before, .x_btn:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
}
.x_btn:before {
  width: 70%;
  height: 0.1em;
}
.x_btn:after {
  width: 0.1em;
  height: 70%;
}

@media (hover: hover) {
  .btn:hover, .upload_btn:hover {
    box-shadow: none;
    opacity: 0.7;
  }
}
@media (hover: none) {
  .btn:active, .upload_btn:active {
    box-shadow: none;
    opacity: 0.7;
  }
}
/** box */
/**================================= */
.box {
  border: 1px solid #ccc;
  background: #f8f8f8;
  padding: 2.7em 1.8em;
  border-radius: 7px;
}

.box2, .box2_2 {
  border: 1px solid #43415E;
  background: #f9f9fc;
  border-radius: 7px;
}

.box2 {
  padding: 2em 1.7em;
}

.box2_2 {
  padding: 1.2em;
}

.box3 {
  border: double #F9774A;
  border-width: 5px 0;
  padding: 1.5em 1em;
}

.box4 {
  background: #fee6de;
  padding: 2em 1.5em;
}

.box5 {
  background: #f2f2f6;
  padding: 2em 1.5em;
}

.box6 {
  background: #d6fadc;
  padding: 2em 1.5em;
}

/* search_form */
/*==================================*/
.search_form {
  border: 1px solid #ccc;
  border-radius: 37px;
  padding: 0.4em;
  display: flex;
  align-items: center;
}
.search_form > label {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.search_form .icon_search {
  margin: 0.1em 0.2em 0 0.2em;
}
.search_form input:not([type=radio]):not([type=checkbox]) {
  border: none;
  padding: 0 0.4em;
  margin-top: 0.1em;
}
.search_form input:not([type=radio]):not([type=checkbox]):focus {
  box-shadow: none;
}
.search_form .search_btn {
  background: #E2552A;
  border-radius: 30px;
  padding: 0.5em 1.2em 0.4em;
  font-size: 0.8em;
  font-weight: 500;
  color: white;
}
.search_form:focus-within {
  border-color: #E2552A;
  box-shadow: 0 0 1px 1px rgba(226, 85, 42, 0.5);
}

/** hr */
/**====================================== */
hr {
  border: none;
  height: 1px;
}

.hr1 {
  background: #ccc;
}

/** message */
/**====================================== */
.err_msg {
  border: 2px solid #E44933;
  background: #ffe1dc;
  color: #E44933;
  border-radius: 5px;
  margin-bottom: 1.5em;
  line-height: 1.8;
}
.err_msg *:not([class*=c_]) {
  color: #E44933;
}

#res_msg {
  position: fixed;
  background: white;
  box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.6);
  border-radius: 4px;
  font-weight: 500;
  font-size: 1.3em;
  z-index: 200;
  padding: 1em;
  width: max-content;
}
#res_msg h2 {
  font-size: 1.1em;
}
#res_msg i {
  font-size: 1.15em;
}

.important_msg {
  border: 3px solid #cc1800;
  position: relative;
  padding: 3.5em 2em 1.3em;
  line-height: 1.8;
}
.important_msg h2 {
  background: #cc1800;
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.4em 1.5em;
  font-weight: 500;
}
.important_msg h2 i {
  color: white;
}
.important_msg ol {
  margin-left: 1.5em;
}
.important_msg ol li:not(:last-child) {
  margin-bottom: 0.5em;
}

/** pager */
/**====================================== */
.page_nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.page_nav > span {
  font-size: 0.8em;
  margin-right: 0.7em;
}
.page_nav .pager {
  list-style: none;
  display: flex;
  align-items: center;
}
.page_nav .pager li {
  width: 30px;
  height: 30px;
  border: 1px solid #E2552A;
  position: relative;
}
.page_nav .pager li a {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 4;
  color: #E2552A;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_nav .pager li a.active, .page_nav .pager li a:hover {
  background: #E2552A;
  color: white;
}
.page_nav .pager li a.active i, .page_nav .pager li a:hover i {
  color: white;
}
.page_nav .pager li:not(:last-child) {
  margin-right: 0.4em;
}

/** toggle */
/**====================================== */
[data-toggle] {
  cursor: pointer;
}
[data-toggle] .toggle_arrow {
  transition: 0.4s;
}
[data-toggle].is_open .toggle_arrow {
  transform: rotate(180deg);
}

.toggle_area {
  transition: height 0.3s;
  overflow: hidden;
}
.toggle_area.is_close {
  height: 0;
}

/** background */
/**====================================== */
.b_bs {
  background: #E2552A;
}

.b_yel_l {
  background: #fdfd6b;
}

.b_pnk {
  background: pink;
}

/** link */
/**====================================== */
.underline {
  text-decoration: underline;
}
.underline:hover {
  text-decoration: none;
}

.hover_underline:hover {
  text-decoration: underline;
}

/** title */
/**====================================== */
.tle1 {
  font-size: 1.45em;
  margin-bottom: 1.2em;
  background: #35324C;
  border-radius: 3px;
  color: white;
  padding: 0.7em 1em;
  line-height: 1;
  font-weight: 500;
}
.tle1 i {
  display: inline-block;
  margin: -1px 7px 0 0;
  color: white;
}

.tle2 {
  color: #35324C;
  border-bottom: 2px solid #35324C;
  padding: 0.2em 0.3em 0;
  font-size: 1.3em;
}

.tle3 {
  color: #E2552A;
  border-bottom: 2px solid #E2552A;
  padding: 0.2em 0.3em;
  font-size: 1.3em;
}

.tle4 {
  color: #35324C;
  border: 3px #43415E solid;
  font-size: 1.3em;
  position: relative;
  background: white;
  padding: 0.6em 0.6em 0.4em;
  box-shadow: 5px 5px #43415E;
  margin: 0 5px 1.2em 0;
}
.tle4 *:not([class*=c_]) {
  color: #35324C;
}

/* font */
/*==================================*/
.fs07 {
  font-size: 0.7em;
}

.fs08 {
  font-size: 0.8em;
}

.fs09 {
  font-size: 0.9em;
}

.fs1 {
  font-size: 1rem;
}

.fs11 {
  font-size: 1.1rem;
}

.fs12 {
  font-size: 1.2em;
}

.fs13 {
  font-size: 1.3em;
}

.fs14 {
  font-size: 1.4em;
}

.fs15 {
  font-size: 1.5em;
}

.fs17 {
  font-size: 1.7em;
}

.fs2 {
  font-size: 2em;
}

.fs4 {
  font-size: 4em;
}

.fw_500 {
  font-weight: 500;
}

.fw_700 {
  font-weight: 700;
}

.f_bld {
  font-weight: bold;
}

.tx_c {
  text-align: center;
}

.tx_r {
  text-align: right;
}

.tx_l {
  text-align: left;
}

.lh_18 {
  line-height: 1.8;
}

.lh_22 {
  line-height: 2.2;
}

.lh_25 {
  line-height: 2.5;
}

.c_bs {
  color: #E2552A;
}

.c_red {
  color: #FB6750;
}

.c_wht {
  color: white;
}

.c_grn {
  color: #52ef73;
}

.c_gry {
  color: gray;
}

.c_link {
  color: #33a1ff;
}

.ff_poppins {
  font-family: "Poppins", sans-serif;
}

.v_top {
  vertical-align: top;
}

.v_middle {
  vertical-align: middle;
}

/* table */
/*====================================== */
table.th_l th:not([class*=tx_]) {
  text-align: left;
}
table.th_v_top th {
  vertical-align: top;
}
table.th_fw_500 th {
  font-weight: 500;
}
table.td_c td:not([class*=tx_]) {
  text-align: center;
}

.tb2 {
  border-top: 1px solid #ccc;
}
.tb2 th {
  padding: 0.6em 1.2em 0.4em;
  background: #f2f2f2;
  color: #7a7877;
}
.tb2 th *:not([class*=c_]) {
  color: #7a7877;
}
.tb2 td {
  padding: 0.9em 1.2em 0.7em;
}
.tb2 th, .tb2 td {
  border: solid #ccc;
  border-width: 0 0 1px 0;
}

.tb3 {
  border: solid #ccc;
  border-width: 1px 1px 0 0;
}
.tb3 th, .tb3 td {
  padding: 0.8em 1.2em 0.6em;
  border: solid #ccc;
  border-width: 0 0 1px 1px;
}
.tb3 th {
  background: #f2f2f2;
  color: #7a7877;
}
.tb3 th *:not([class*=c_]) {
  color: #7a7877;
}

.tb4 {
  border: solid #b9b8cc;
  border-width: 1px 1px 0 0;
}
.tb4 th, .tb4 td {
  padding: 0.7em 1em 0.5em;
  border: solid #b9b8cc;
  border-width: 0 0 1px 1px;
}
.tb4 th {
  background: #35324C;
  color: #efeff4;
}
.tb4 th *:not([class*=c_]) {
  color: #efeff4;
}

/** margin */
/**====================================== */
.mgn {
  margin: auto;
}

.ml_auto {
  margin-left: auto;
}

.mt2px {
  margin-top: 2px;
}

.mt01 {
  margin-top: 0.1em;
}

.mb01 {
  margin-bottom: 0.1em;
}

.mr01 {
  margin-right: 0.1em;
}

.mt02 {
  margin-top: 0.2em;
}

.mb02 {
  margin-bottom: 0.2em;
}

.mr02 {
  margin-right: 0.2em;
}

.mt03 {
  margin-top: 0.3em;
}

.mb03 {
  margin-bottom: 0.3em;
}

.mr03 {
  margin-right: 0.3em;
}

.mt04 {
  margin-top: 0.4em;
}

.mb04 {
  margin-bottom: 0.4em;
}

.mr04 {
  margin-right: 0.4em;
}

.mt05 {
  margin-top: 0.5em;
}

.mb05 {
  margin-bottom: 0.5em;
}

.mr05 {
  margin-right: 0.5em;
}

.mt06 {
  margin-top: 0.6em;
}

.mb06 {
  margin-bottom: 0.6em;
}

.mr06 {
  margin-right: 0.6em;
}

.mt07 {
  margin-top: 0.7em;
}

.mb07 {
  margin-bottom: 0.7em;
}

.mr07 {
  margin-right: 0.7em;
}

.mt1 {
  margin-top: 1em;
}

.mb1 {
  margin-bottom: 1em;
}

.mt2 {
  margin-top: 2em;
}

.mb2 {
  margin-bottom: 2em;
}

.mt3 {
  margin-top: 3em;
}

.mb3 {
  margin-bottom: 3em;
}

.mt4 {
  margin-top: 4em;
}

.mb4 {
  margin-bottom: 4em;
}

.mt5 {
  margin-top: 5em;
}

.mb5 {
  margin-bottom: 5em;
}

.mt6 {
  margin-top: 6em;
}

.mb6 {
  margin-bottom: 6em;
}

.mt15 {
  margin-top: 1.5em;
}

.mb15 {
  margin-bottom: 1.5em;
}

.mt25 {
  margin-top: 2.5em;
}

.mb25 {
  margin-bottom: 2.5em;
}

.mt35 {
  margin-top: 3.5em;
}

.mb35 {
  margin-bottom: 3.5em;
}

.mt45 {
  margin-top: 4.5em;
}

.mb45 {
  margin-bottom: 4.5em;
}

.mt55 {
  margin-top: 5.5em;
}

.mb55 {
  margin-bottom: 5.5em;
}

.mt65 {
  margin-top: 6.5em;
}

.mb65 {
  margin-bottom: 6.5em;
}

.mr0 {
  margin-right: 0;
}

.ml15 {
  margin-left: 1.5em;
}

.mr1 {
  margin-right: 1em;
}

.ml1 {
  margin-left: 1em;
}

.mr2 {
  margin-right: 2em;
}

.ml2 {
  margin-left: 2em;
}

.mr3 {
  margin-right: 3em;
}

.ml3 {
  margin-left: 3em;
}

.mr4 {
  margin-right: 4em;
}

.ml4 {
  margin-left: 4em;
}

.mr15 {
  margin-right: 1.5em;
}

.mr25 {
  margin-right: 2.5em;
}

.mr35 {
  margin-right: 3.5em;
}

/** width */
/**====================================== */
.w120px {
  width: 120px;
}

.w160px {
  width: 160px;
}

.w180px {
  width: 180px;
}

.w240px {
  width: 240px;
}

.w270px {
  width: 270px;
}

.w96 {
  width: 96%;
}

.w94 {
  width: 94%;
}

.w100px {
  width: 100px;
}

.wmax100px {
  max-width: 100px;
}

.w200px {
  width: 200px;
}

.wmax200px {
  max-width: 200px;
}

.w300px {
  width: 300px;
}

.wmax300px {
  max-width: 300px;
}

.w400px {
  width: 400px;
}

.wmax400px {
  max-width: 400px;
}

.w500px {
  width: 500px;
}

.wmax500px {
  max-width: 500px;
}

.w600px {
  width: 600px;
}

.wmax600px {
  max-width: 600px;
}

.w700px {
  width: 700px;
}

.wmax700px {
  max-width: 700px;
}

.w800px {
  width: 800px;
}

.wmax800px {
  max-width: 800px;
}

.w900px {
  width: 900px;
}

.wmax900px {
  max-width: 900px;
}

.w1000px {
  width: 1000px;
}

.wmax1000px {
  max-width: 1000px;
}

.w1100px {
  width: 1100px;
}

.wmax1100px {
  max-width: 1100px;
}

.w1200px {
  width: 1200px;
}

.wmax1200px {
  max-width: 1200px;
}

.wmax120px {
  max-width: 120px;
}

.wmax180px {
  max-width: 180px;
}

.w150px {
  width: 150px;
}

.wmax150px {
  max-width: 150px;
}

.w250px {
  width: 250px;
}

.wmax250px {
  max-width: 250px;
}

.w350px {
  width: 350px;
}

.wmax350px {
  max-width: 350px;
}

.w450px {
  width: 450px;
}

.wmax450px {
  max-width: 450px;
}

.w550px {
  width: 550px;
}

.wmax550px {
  max-width: 550px;
}

.w650px {
  width: 650px;
}

.wmax650px {
  max-width: 650px;
}

.w750px {
  width: 750px;
}

.wmax750px {
  max-width: 750px;
}

.w850px {
  width: 850px;
}

.wmax850px {
  max-width: 850px;
}

.w950px {
  width: 950px;
}

.wmax950px {
  max-width: 950px;
}

.w1em {
  width: 1em;
}

.w2em {
  width: 2em;
}

.w3em {
  width: 3em;
}

.w4em {
  width: 4em;
}

.w5em {
  width: 5em;
}

.w6em {
  width: 6em;
}

.w7em {
  width: 7em;
}

.w8em {
  width: 8em;
}

.w9em {
  width: 9em;
}

.w10em {
  width: 10em;
}

.w11em {
  width: 11em;
}

.w12em {
  width: 12em;
}

.w13em {
  width: 13em;
}

.w14em {
  width: 14em;
}

.w15em {
  width: 15em;
}

.w16em {
  width: 16em;
}

.w17em {
  width: 17em;
}

.w18em {
  width: 18em;
}

.w1_5em {
  width: 1.5em;
}

.w2_5em {
  width: 2.5em;
}

.w3_5em {
  width: 3.5em;
}

.w4_5em {
  width: 4.5em;
}

.w5_5em {
  width: 5.5em;
}

.w6_5em {
  width: 6.5em;
}

.w7_5em {
  width: 7.5em;
}

.w8_5em {
  width: 8.5em;
}

.w9_5em {
  width: 9.5em;
}

.w10_5em {
  width: 10.5em;
}

.w11_5em {
  width: 11.5em;
}

.w12_5em {
  width: 12.5em;
}

.w13_5em {
  width: 13.5em;
}

.w14_5em {
  width: 14.5em;
}

.w15_5em {
  width: 15.5em;
}

.w10 {
  width: 10%;
}

.w20 {
  width: 20%;
}

.w30 {
  width: 30%;
}

.w40 {
  width: 40%;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w70 {
  width: 70%;
}

.w80 {
  width: 80%;
}

.w90 {
  width: 90%;
}

.w100 {
  width: 100%;
}

.w25 {
  width: 25%;
}

.w48 {
  width: 48%;
}

.wmin200px {
  min-width: 200px;
}

.w_max_content {
  width: max-content;
}

/* height */
/*==================================*/
.hmin200px {
  min-height: 200px;
}

.hmin300px {
  min-height: 300px;
}

/* search input */
/*====================================== */
input[type=search]::-webkit-search-cancel-button {
  cursor: pointer;
}

/* チェックボックス */
/*====================================== */
.checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.checkbox input {
  width: 1.4em;
  height: 1.4em;
  border: 1px solid #E2552A;
  border-radius: 2px;
  position: relative;
  margin: 0 0.3em 0.1em 0;
}
.checkbox input:after {
  content: "";
  position: absolute;
  width: 51%;
  height: 20%;
  border: solid white;
  border-width: 0 0 0.1em 0.1em;
  opacity: 0;
  top: 27%;
  left: 19%;
  transform: rotate(-50deg);
  transition: 0.1s;
}
.checkbox input:checked {
  background: #E2552A;
}
.checkbox input:checked:after {
  opacity: 1;
}

.checkbox_area.fx {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: -1em;
}
.checkbox_area.fx .checkbox {
  margin-bottom: 1em;
}
.checkbox_area.fx .checkbox:not([class*=w]):not(:last-child) {
  margin-right: 1.5em;
}

/* ラジオボタン */
/*====================================== */
.radio {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.radio input {
  width: 1.5em;
  height: 1.5em;
  border: 0.12em solid #ccc;
  border-radius: 50%;
  margin: 0 0.3em 2px 0;
  position: relative;
  cursor: pointer;
  background: white;
}
.radio input:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: #E2552A;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  transition: 0.2s ease-in-out;
}
.radio input:checked {
  border-color: #E2552A;
}
.radio input:checked:before {
  transform: translate(-50%, -50%) scale(1);
}

.radio_area.fx {
  display: inline-flex;
  flex-wrap: wrap;
  margin-bottom: -1em;
}
.radio_area.fx .radio {
  margin-bottom: 1em;
}
.radio_area.fx .radio:not(:last-child) {
  margin-right: 1.7em;
}
.radio_area.row {
  display: flex;
  flex-direction: column;
}
.radio_area.row .radio {
  margin-bottom: 1em;
}

/* セレクトボックス */
/*====================================== */
.select {
  position: relative;
}
.select:after {
  content: "";
  position: absolute;
  top: 16px;
  right: 1em;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #ccc transparent transparent transparent;
}
.select select {
  width: 100%;
  padding: 0.84em 2em 0.7em 0.6em;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: white;
}
.select select:focus {
  outline: none;
  border-color: #E2552A;
  box-shadow: 0 0 1px 1px rgba(226, 85, 42, 0.7);
}

/* select2 */
/*====================================== */
.select2_wrapper {
  position: relative;
}
.select2_wrapper select {
  visibility: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.select2_wrapper .selection, .select2_wrapper .select2-selection {
  display: block;
}
.select2_wrapper .select2-selection {
  display: block;
  padding: 0.84em 2em 0.7em 0.6em;
  border: 1px solid #dbdbdb;
  border-radius: 3px;
  cursor: pointer;
}
.select2_wrapper .select2-selection:after {
  content: "";
  position: absolute;
  top: 20px;
  right: 1em;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #dbdbdb transparent transparent transparent;
  transition: 0.3s;
}
.select2_wrapper[data-error-message] .select2-selection {
  border-color: #FB6750;
}
.select2_wrapper .select2-selection__clear {
  display: none;
}
.select2_wrapper .select2-container--open .select2-selection {
  border-width: 1px 1px 0 1px;
  border-color: #E2552A;
  box-shadow: 0 0 1px 1px rgba(226, 85, 42, 0.7);
  border-radius: 3px 3px 0 0;
}
.select2_wrapper .select2-container--open .select2-selection:after {
  transform: rotate(180deg);
}

.select2-dropdown {
  display: block;
  padding: 0 1em 0.1em;
  background: white;
  border: solid #E2552A;
  border-width: 0 1px 1px 1px;
  border-radius: 0 0 3px 3px;
  box-shadow: 0 0 1px 1px rgba(226, 85, 42, 0.7);
  margin-top: -1px;
  max-height: 250px;
  overflow-y: auto;
}
.select2-dropdown .select2-search {
  position: sticky;
  top: 0;
  padding-top: 0.6em;
  margin-bottom: 0.5em;
  background: white;
  z-index: 2;
  display: block;
}
.select2-dropdown .select2-results__options {
  list-style: none;
}
.select2-dropdown .select2-results__options li {
  padding: 0.7em 0.5em;
  cursor: pointer;
}
.select2-dropdown .select2-results__options li:hover {
  background: #fee6de;
}
.select2-dropdown .select2-results__options .select2-results__option--disabled {
  pointer-events: none;
  opacity: 0.4;
}

/* display */
/*==================================*/
.fx {
  display: flex;
  align-items: center;
}

.fx_b {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fx_col {
  display: flex;
  flex-direction: column;
}

.fx_grow {
  flex-grow: 1;
}

.fx_wrp {
  flex-wrap: wrap;
}

.a_stretch {
  align-items: stretch;
}

.a_start {
  align-items: flex-start;
}

.a_end {
  align-items: flex-end;
}

.j_start {
  justify-content: flex-start !important;
}

.j_end {
  justify-content: flex-end;
}

.j_center {
  justify-content: center;
}

.a_center {
  align-items: center;
}

.over_hidden {
  overflow: hidden;
}

.dis_none {
  display: none;
}

.is_block {
  display: block !important;
}

.isnt_active {
  pointer-events: none;
  opacity: 0.7;
}

.is_priority {
  position: relative;
  z-index: 30;
}

@media all and (max-width: 820px) {
  table.sc820 {
    display: block;
  }
  table.sc820 tbody, table.sc820 tr, table.sc820 th, table.sc820 td {
    display: block;
  }
  table.sc820 th {
    width: 100% !important;
    font-size: 0.9em;
    font-weight: 500;
  }
}
@media all and (max-width: 458px) {
  .sp_none {
    display: none;
  }
  #res_msg h2 {
    font-size: 1rem;
  }
  #res_msg i {
    font-size: 2.2em;
    display: block;
    margin: 0 auto 0.2em;
  }
}