@charset "UTF-8";

/**
 * CSSリセット
 * 参照元：http: //meyerweb.com/eric/tools/css/reset/
**/
:root{
  --font-c: #251e1c;
  --blue: #20398e;
  --yellow: #ffc341;
  --yellow-hue: #ffba26;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
}

input.btn,
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 1.6rem;
  font-family: inherit;
}

/* iOS */
[type="submit"],
[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  font-family: inherit;
  box-sizing: border-box;
  cursor: pointer;
}

[type="submit"]::-webkit-search-decoration,
[type="button"]::-webkit-search-decoration {
  display: none;
}

[type="submit"]::focus,
[type="button"]::focus {
  outline-offset: -2px;
}

.select {
  display: inline-block;
  position: relative;
}
.select select {
  min-width: 14rem;
  height: 4.5rem;
  line-height: 4.3rem;
  padding: 0 2.5rem 0 1.5rem;
  background: #fff;
  border: 1px solid #213464;
  border-radius: 1rem;
  font-size: 1.6rem;
}
.select select::-ms-expand {
  display: none;
}
.select::after {
  content: '';
  top: 50%;
  transform: translateY(-50%);
  right: 1.6rem;
  display: block;
  position: absolute;
  background-image: url(../images/icon_select.png);
  background-size: contain;
  width: 16px;
  height: 14px;
  pointer-events: none;
}
@media screen and (max-width: 959.98px) {
  .select select {
    padding-left: 0.5rem;
    font-size: 1.4rem;
  }
}


.search_input {
  width: 100%;
}

.search_input input {
  height: 4.5rem;
  line-height: 4.3rem;
  padding: 0 2.5rem 0 1.5rem;
  background: #fff;
  border: 1px solid #213464;
  border-radius: 1rem;
  font-size: 1.6rem;
  width: 100%;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
  transition: 0.6s;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

/**
 * 再定義
**/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Avenir", "Helvetica Neue", "Helvetica", "Arial", "Yu Gothic Medium", YuGothic, "Yu Gothic", "Hiragino Sans", "ヒラギノ角ゴシック", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.5rem;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
  color: #251e1c;
}

body > .wrap {
  overflow: hidden;
}

table {
  letter-spacing: 0;
  empty-cells: show;
}

tbody {
  position: unset;
}

table tr,
table th,
table td {
  empty-cells: show;
  transition: 0.6s;
  position: unset;
}

input,
select,
textarea {
  font-size: 90%;
  background: none;
  transition: 0.6s;
}

[type="checkbox"],
[type="radio"] {
  width: 1.8rem;
  height: 1.8rem;
  margin: 0.1rem 0.5rem 0 0;
}

p {
  color: #251e1c;
  line-height: 1.65;
}

a {
  color: #251e1c;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
}

a:hover {
  color: #658cc2;
  cursor: pointer;
  opacity: 0.7;
}

a.active {
  color: #144ca1 !important;
}

img {
  border: none;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  display: block;
  vertical-align: bottom;
  transition: 0.6s;
}

*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  position: relative;
}

@media (min-width: 768px) {
  /** PCでは非表示を強制 **/
  .sp_disp {
    display: none !important
  }
}
@media only screen and (max-width: 767.98px) {
  /** SPでは非表示を強制 **/
  .pc_disp {
    display: none !important
  }
}

/**
 * font color
**/
.fc__color {
  color: #144ca1;
}

.fc__pink {
  color: #ff3a31;
}

.fc__blue {
  color: #aee5d8;
}

/**
 * background color
**/
.bg__color {
  background: #658cc2;
}
.bg__color .c-head__ttl,
.bg__color .c-head__ttl::before {
  color: #fff;
}

.bg__yellow {
  background-color: var(--yellow);
  background: linear-gradient(0deg,var(--yellow) 50%, var(--yellow-hue) 100%);
}

.bg__gray {
  background-color: #f8f8f8;
}

/**
 * display
**/
@media only screen and (min-width: 361px) {
  .ssp--disp {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .sp--disp {
    display: none !important;
  }
}
@media only screen and (min-width: 959px) {
  .tl--disp {
    display: none !important;
  }
}
@media only screen and (max-width: 767.98px) {
  .pc--disp {
    display: none !important;
  }
}

/**
 * section
**/
section {
  padding: 4rem 0;
}

@media only screen and (max-width: 959.98px) {
  section {
    padding: 3rem 0;
  }
}
/**
 * container
**/
.l-container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 8rem;
  position: relative;
}

@media only screen and (max-width: 959.98px) {
  .l-container {
    max-width: unset;
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 767.98px) {
  .l-container {
    padding: 0 1.5rem;
  }
}
/**
 * display flex
**/
.c-flex {
  display: flex;
}

.c-flex--wrap {
  flex-wrap: wrap;
}

.c-flex--between {
  justify-content: space-between;
}

/**
 * subpage-head
**/
.subpage-head {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: stretch;
  background: #213464;
  color: #fff;
  min-height: 176px;
  margin: 0;
  padding: 0;
}
.subpage-head.is--juchu {
  background: #ffc32e;
  color: #213464;
}
@media only screen and (max-width: 767.98px) {
  .subpage-head {
    min-height: 144px;
  }
}
.subpage-head .c-head {
  align-items: center;
  color: inherit;
  margin: 0;
}
.subpage-head .c-head__ttl,
.subpage-head .c-head__ttl::before,
.subpage-head .c-head__txt {
  color: inherit !important;
  font-feature-settings: 'palt';
}
.subpage-head .c-head__ttl {
  margin: 0;
}
.subpage-head .c-head__txt {
  margin: 0;
}

.subpage-head .btn {
  margin-top: 0;
}
.subpage-head *+.btn {
  margin-top: 1rem;
}
.subpage-head .btn>* {
  background: #658cc2;
}
.subpage-head.is--juchu .btn>* {
  background: #213464;
  color: #fff;
}

.subpage-head .box-btn,
.subpage-head .btnBox {
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
}
.subpage-head *+.box-btn,
.subpage-head *+.btnBox {
  margin-top: 1rem;
}

.subpage-head .box-btn .btn,
.subpage-head .btnBox .btn {
  max-width: none;
  width: calc( (100% - var(--box-btn-gap)*2) / 3 );
  margin: 0;
}
.subpage-head .box-btn .btn--small,
.subpage-head .btnBox .btn--small {
  width: calc( (100% - var(--box-btn-gap)*3) / 4 );
}
@media only screen and (max-width: 767.98px) {
  .subpage-head .box-btn,
  .subpage-head .btnBox {
    padding: 0 0 var(--box-btn-gap);
    gap: var(--box-btn-gap);
  }
  .subpage-head .box-btn .btn,
  .subpage-head .btnBox .btn {
    max-width: none;
    width: 100%;
    margin: 0;
  }
  .subpage-head .box-btn .btn--small,
  .subpage-head .btnBox .btn--small {
    width: calc( (100% - var(--box-btn-gap)*3) / 4 );
  }
}

.subpage-head__tab {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  width: 100%;
  padding: 0;
  gap: 8px;
  overflow: hidden;
}
*+.subpage-head__tab {
  margin-top: 1em;
}
@media only screen and (max-width: 767.98px) {
  .subpage-head__tab {}
}

.subpage-head__tab .btn {
  margin: 0;
  transform: translate(0,4px);
  transition: transform 0.2s ease;
}
.subpage-head__tab .btn.on {
  transform: translate(0,0);
}
.subpage-head__tab .btn:hover {
  transform: translate(0,0);
}

.subpage-head__tab .btn>* {
  border-radius: 5px 5px 0 0;
}
.subpage-head .subpage-head__tab .btn>* {
  border: solid 1px #658cc2;
  background: #658cc2;
  color: #fff;
  opacity: 1;
}
.subpage-head .subpage-head__tab .btn>*:focus,
.subpage-head .subpage-head__tab .btn>*:hover {
  opacity: 0.9;
}
.subpage-head .subpage-head__tab .btn.on>* {
  border: solid 2px #658cc2;
  border-bottom: none;
  background: #fff;
  color: #658cc2;
  font-weight: 700;
}
.subpage-head.is--juchu .subpage-head__tab .btn.on>* {
  border: solid 1px #213464;
  background: #213464;
  color: #fff;
}

.subpage-head .subpage-head__tab .btn>*::after {
  display: none;
}
.subpage-head.is--juchu .subpage-head__tab .btn>*::after {
  display: none;
}


/**
 * TITLE
**/
.c-head {
  margin-bottom: 4rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.c-head--second {
  margin-top: 8rem;
}

.c-head--center {
  align-items: center;
}

.c-head__logo {
  width: 26rem;
  margin-bottom: 4rem;
  padding: 3rem;
}

.c-head__ttl {
  font-size: 2.4rem;
  font-weight: 700;
}

.c-head__ttl-link {
  display: inline-block;
  letter-spacing: -1rem;
  transform: scale(0.6, 1);
}

.c-head__txt {
  margin-top: 3rem;
}

@media only screen and (max-width: 959.98px) {
  .c-head {
    margin-bottom: 3rem;
  }
  .c-head--second {
    margin-top: 5rem;
  }
}
@media only screen and (max-width: 767.98px) {
  .c-head__ttl {
  }
}
.c-head__ttl {
  font-size: 2.2rem;
  font-weight: 600;
  color: #251e1c;
}
@media only screen and (max-width: 959.98px) {
  .c-head__ttl {
    font-size: 2rem;
  }
}
.c-head__ttl::before {
  content: attr(data-en);
  font-family: "Gill Sans", sans-serif;
  font-weight: 400;
  font-size: 6.2rem;
  color: #658cc2;
  display: block;
  margin-bottom: 1.8rem;
  line-height: 1;
}
.no-english__ttl::before {
  display: none;
}
.no-english__ttl .c-head__ttl::before {
  display: none;
}
@media only screen and (max-width: 959.98px) {
  .c-head__ttl::before {
    font-size: 5rem;
  }
}
@media only screen and (max-width: 767.98px) {
  .c-head__ttl::before {
    font-size: 4rem;
  }
}
.c-head--center .c-head__ttl,
.c-head--center .c-head__ttl::before {
  text-align: center;
}


/**
 * button
**/
.btn {
  width: 100%;
  margin-top: 4rem;
  max-width: 25rem;
  position: relative;
}

.btn a,
.btn input,
.btn button,
.btn > span {
  width: 100%;
  height: 4.5rem;
  background: #144ca1;
  color: #fff;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn.formset__btn button[type="button"].new-register{
  margin-top: 1rem;
}
.btn button {
  cursor: pointer;
}
.btn a::after {
  content: "";
  width: 11px;
  height: 12px;
  margin-left: 1rem;
  display: inline-block;
  background-image: url(../images/icon_arrow_more_white.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.btn a:hover,
.btn input:hover,
.btn button:hover,
.btn > span:hover {
  background: #658cc2;
}

@media only screen and (max-width: 959.98px) {
  .btn {
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 767.98px) {
  .btn a::after {
    margin-left: 0.5rem;
  }
}
.btn--small {
  width: 100%;
  max-width: 25rem;
  position: relative;
}

.btn--small a,
.btn--small button,
.btn--small input,
.btn--small > span {
  width: 100%;
  height: 3.5rem;
  padding: 0 1rem;
  background: #fff;
  color: #144ca1;
  font-size: 1.2rem;
  font-weight: 700;
  border: 1px solid #144ca1;
  border-radius: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 767.98px) {
  .btn--small a,
.btn--small button,
.btn--small input,
.btn--small > span {
    height: 3rem;
    padding: 0 0.5rem;
    font-size: 1rem;
  }
}
.btn--like a,
.btn--like a:hover {
  color: #e73656;
  background: #fff;
  border: 1px solid #e73656;
}

.btn--like a::before {
  content: "";
  width: 15px;
  height: 15px;
  background: url("../images/icon__btn--likeoff.png") center center/100% no-repeat;
  display: inline-block;
  position: relative;
  top: 0;
  right: 5px;
  transition: 0.2s;
}

.btn--like a:hover::before,
.btn--likeoff a::before {
  background-image: url("../images/icon__btn--like.png");
}

.btn--message a {
  color: #144ca1;
  background: #fff;
  border: 1px solid #144ca1;
}

.btn--message a::before {
  content: "";
  width: 15px;
  height: 15px;
  background: url("../images/icon__btn--message.png") center center/100% no-repeat;
  display: inline-block;
  position: relative;
  top: 0;
  right: 5px;
  transition: 0.2s;
}

.btn--message a:hover {
  background: #edf9ff;
}

.btn--dl {
  margin-top: 0;
  max-width: 32rem;
}
.btn--dl a {
  background-image: linear-gradient(to right, #144ca1, #3e6aca);
  height: 5.5rem;
  font-size: 1.6rem;
}
.btn--dl a:hover {
  background-image: linear-gradient(to left, #144ca1, #3e6aca);
}

.btn--more {
  max-width: 30rem;
  margin: 5rem auto 0;
}
.btn--more a {
  background-color: #fff;
  font-family: "Futura", sans-serif;
  height: 6rem;
  font-size: 2.2rem;
  color: #251e1c;
  font-weight: 400;
}
.btn--more a::after {
  background-image: url(../images/icon_arrow_more_black.png);
}
.btn--more a:hover {
  background-color: #fff;
}

.btn--search {
  width: 114px;
  height: 47px;
  margin-top: 0;
  flex-shrink: 0;
}
@media only screen and (max-width: 959.98px) {
  .btn--search {
    max-width: 30rem;
    width: 100%;
    margin: 2rem auto 0;
  }
}
.btn--search button {
  background-color: #213464;
  font-size: 1.7rem;
}
.btn--search button img {
  width: 24px;
  height: 23px;
  margin-left: 1rem;
}

.btn-under-txt {
  margin-top: 2rem;
  text-align: center;
}

.btn-under-txt a {
  color: #144ca1;
}

/** 横並びボタン **/
.box-btn,
.btnBox {
  --box-btn-gap: 8px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: stretch;
  align-items: stretch;
  width: 100%;
  gap: var(--box-btn-gap);
}
.box-btn .btn,
.btnBox .btn {
  max-width: none;
  width: calc( (100% - var(--box-btn-gap)) / 2 );
  margin: 0;
}
.box-btn .btn--small,
.btnBox .btn--small {
  width: calc( (100% - var(--box-btn-gap)*3) / 4 );
}
@media only screen and (max-width: 767.98px) {
  .box-btn,
  .btnBox {
    --box-btn-gap: 4px;
    gap: var(--box-btn-gap);
  }
  .box-btn .btn,
  .btnBox .btn {
    max-width: none;
    width: 100%;
    margin: 0;
  }
  .box-btn .btn--small,
  .btnBox .btn--small {
    width: calc( (100% - var(--box-btn-gap)*3) / 4 );
  }
}


/**
 * swipe
**/
@media only screen and (max-width: 767.98px) {
  .swipe {
    width: auto;
    padding: 1rem;
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    overflow: auto;
  }
}
@media screen and (min-width: 768px) {
  .formset {
    margin-bottom: 3rem;
    padding: 4rem;
    background: #fff;
    border: 1px solid #e9eced;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
}

.formset__lead {
  font-weight: 700;
  width: 100%;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e9eced;
}

.formset__item {
  width: 100%;
  display: table;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e9eced;
}

.formset__item:last-child {
  margin-bottom: 0;
  border: none;
}

.formset__item:last-child .formset__input {
  padding-bottom: 0;
}

.formset__ttl {
  width: 28rem;
  display: table-cell;
  vertical-align: middle;
  padding: 0 0 2rem 1rem;
  font-weight: 700;
}

.formset__must {
  height: 2rem;
  padding: 0 0.8rem;
  color: #fff;
  font-size: 1rem;
  background: #ec5937;
  border-radius: 0.5rem;
  float: right;
  display: flex;
  align-items: center;
  justify-content: center;
}

.formset__input {
  display: table-cell;
  padding: 0 0 2rem 4rem;
}

.formset__input img {
  width: 18rem;
  height: 18rem;
  margin-bottom: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  border-radius: 0.5rem;
}

.formset__input ul li {
  display: inline-flex;
  margin: 0 1rem 1rem 0;
}

.input_select,
.formset__input [type="text"],
.formset__input [type="email"],
.formset__input [type="password"],
.formset__input [type="number"],
.formset__input [type="tel"],
textarea {
  width: 100%;
  max-width: 50rem;
  padding: 1.5rem;
  font-size: 1.6rem;
  background: #fff;
  border: 1px solid #d3d3d3;
  border-radius: 0.5rem;
}

.input_select {
  width: auto;
}

textarea {
  max-width: none;
}

.formset__btn {
  margin-left: auto;
  margin-right: auto;
}

.formset__btn--back {
  margin-top: 1rem;
}

.formset__btn--back button {
  color: #144ca1;
  background: #fff;
  border: 1px solid #144ca1;
}

.formset__btn--back button:hover {
  background: #edf9ff;
}

.txt-delete {
  top: -3px;
}

@media only screen and (max-width: 959.98px) {
  .formset__ttl {
    width: 21rem;
  }
}
@media screen and (max-width: 767.98px) {
  .formset {
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9eced;
  }
  .formset__ttl,
.formset__input {
    width: 100%;
    display: block;
    padding: 0 0 2rem;
  }
  .formset__input img {
    width: 12rem;
    height: 12rem;
  }
}


.tableset {
  width: 100%;
  background: #fff;
}

@media screen and (min-width: 768px) {
  .tableset {
    margin-bottom: 3rem;
    padding: 4rem;
    border: 1px solid #e9eced;
    border-radius: 0.5rem;
  }
}
.tableset__list {
  width: 100%;
  display: table;
  text-align: left;
}

.tableset__list:first-child {
  margin-top: 4rem;
}

.tableset__list:last-child {
  margin-bottom: 4rem;
}

.tableset__ttl {
  width: 32rem;
  display: table-cell;
  vertical-align: middle;
  padding: 2rem 4rem;
  font-weight: 700;
}

.tableset__must {
  height: 2rem;
  padding: 0 0.8rem;
  color: #fff;
  font-size: 1rem;
  background: #ec5937;
  border-radius: 0.5rem;
  float: right;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tableset__txt {
  display: table-cell;
  padding: 2rem;
}

.tableset__txt img {
  width: 18rem;
  height: 18rem;
  margin-bottom: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  border-radius: 0.5rem;
}

.tableset__txt ul li {
  display: inline-flex;
  margin: 0 1rem 1rem 0;
}

.input_select,
.tableset__txt [type="text"],
.tableset__txt [type="email"],
.tableset__txt [type="password"],
textarea {
  width: 100%;
  max-width: 50rem;
  padding: 1.5rem;
  font-size: 1.6rem;
  background: #fff;
  border: 1px solid #d3d3d3;
  border-radius: 0.5rem;
}

.input_select {
  width: auto;
}

textarea {
  max-width: none;
}

.tableset__btn {
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 959.98px) {
  .tableset__ttl {
    width: 21rem;
  }
}
@media screen and (max-width: 767.98px) {
  .tableset__ttl,
.tableset__txt {
    width: 100%;
    display: block;
    padding: 0 0 2rem;
  }
  .tableset__txt img {
    width: 12rem;
    height: 12rem;
  }
}


/**
 * モーダル式のselect
 * NOTE: 都道府県選択など（汎用性があります）
**/
.select-modal {
  max-width: 600px;
  width: 100%;
}

.select-modal__text {
  /* NOTE: 必ず[type="text"]に.select-modal__textを指定し、[type="text"]にすでに見栄えのスタイルが付与されているhtml内部で使ってください。 */
  width: 100%;
  /* NOTE: ！！！ここに見栄えを書かない。（共通パーツです） */
}

.select-modal__body {
  position: relative;
}

.select-modal__content {
  /* NOTE: jsが必要です */
  display: none;
  box-shadow: 0 8px 8px 0 rgba(0,0,0,0.1);
  background: #fff;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow-x: hidden;
  overflow-y: auto;
  transition: none;
}
.select-modal__acc-ttl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1em;
  background: #e2eaf4;
  padding: 8px;
}
.select-modal__acc-ttl>[type="radio"],
.select-modal__acc-ttl>[type="checkbox"] {}

.select-modal__acc-ttl>span {
  display: block;
}

.select-modal__acc-ttl.is--active,
.select-modal__acc-ttl:hover,
.select-modal__acc-ttl:active {
  opacity: 0.8;
}

.select-modal__acc-txt {
  background: #FAFBFD;
  padding: 8px;
}

.select-modal__list {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1ex;
}
.select-modal__list>li {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1em;
}
.select-modal__list>li>[type="radio"],
.select-modal__list>li>[type="checkbox"] {}
.select-modal__list>li>label {}
.select-modal__list>li>label>span {}
.select-modal__list>li>label>i {
  font-size: 12px;
  opacity: 0.56;
  margin: 0 0 0 1ex;
}




/**
 * 市区町村選択モーダル
 * NOTE: 汎用せず市区町村選択のみに使用してください
**/
.select-city-list {}
.select-city-list__text {
  /* NOTE: 必ず[type="text"]に.select-city-list__textを指定し、[type="text"]にすでに見栄えのスタイルが付与されているhtml内部で使ってください。 */
  width: 100%;
  /* NOTE: ！！！ここに見栄えを書かない。（共通パーツです） */
}
.select-city-list__body {
  position: relative;
}
.select-city-list__content {
  /* NOTE: jsが必要です */
  display: none;
  box-shadow: 0 8px 8px 0 rgba(0,0,0,0.1);
  background: #fff;
  width: 100%;
  max-height: 50svh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow-x: hidden;
  overflow-y: auto;
  transition: none;
}
.select-city-list__content ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  margin: 0;
  padding: 8px;
  gap: 10px;
}
.select-city-list__content ul>li {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1em;
  margin: 0;
  padding: 0;
}
.select-city-list__content ul>li>[type="radio"],
.select-city-list__content ul>li>[type="checkbox"] {}
.select-city-list__content ul>li>label {}
.select-city-list__content ul>li>label>span {}
.select-city-list__content ul>li>label>i {
  font-size: 12px;
  opacity: 0.56;
  margin: 0 0 0 1ex;
}





/**
 * エフェクト
**/
.effect-fade {
  opacity: 0;
  transform: translate(0, 45px);
  transition: all 1000ms;
}

.effect-fade-2 {
  transform: translate(0, 90px);
}

.effect-fade-3 {
  transform: translate(0, 135px);
}

.effect-fade-4 {
  transform: translate(0, 180px);
}

.effect-fade-5 {
  transform: translate(0, 225px);
}

.effect-fade-6 {
  transform: translate(0, 270px);
}

.fade-t {
  transform: translate(0, -45px);
}

.fade-r {
  transform: translate(45px, 0);
}

.fade-l {
  transform: translate(-45px, 0);
}

.effect-fade.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}
.datepicker {
  padding: 1rem 1.2rem;
  border: solid 1px #d3d3d3;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  font-family: "Avenir", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.error_01 img {
  width: auto !important;
  margin-bottom: 1rem;
}

.kiyaku_link {
  color: #144ca1;
  text-decoration: underline;
}

.submit__area label[for*="file"] {
  position: relative;
  top: -3px;
}
.register_btn {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.register_btn li {
  width: calc((100% - 50px) / 2);
}
.register_btn li button a {
  width: 100%;
  height: 4.5rem;
  background: #144ca1;
  color: #fff;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(to right, #144ca1, #3e6aca);
  height: 5.5rem;
  font-size: 1.6rem;
}
.register_btn li button {
  width: 100%;
  margin: 0.5rem 0;
}
.register_btn li .c-head__txt {
    font-weight: bold;
    margin: 3rem auto 1rem;
    font-size: 1.8rem;
    color: #251e1c;
}
@media screen and (max-width: 767.98px) {
  .register_btn li {
    width: calc((100% - 20px) / 2);
  }
  .register_btn li button a {
    font-size: 1.4rem !important;
    letter-spacing: .1rem;
  }
}

.pass_end{
  text-align: center;
  width: 100%;
}

.pass_end a{
   width: 100%;
    height: 4.5rem;
    background: #144ca1;
    color: #fff;
    border-radius: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 4rem auto;
    max-width: 25rem;
    position: relative;
}
.rec--closed {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.562);
  color: #fff;
  font-size: 2.2rem;
  letter-spacing: .1rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.rec--closed span{
 
  padding: .5rem;
}

.rec--closed span.recruitmentClosed{
  border: 1px solid #fff;
  padding: .5rem;
  width: 35%;
  margin:1.5rem auto;
  text-align: center;
}
.rec--closed span.currentlyRecruiting{
  border: 1px solid #fff;
  padding: .5rem;
  width: 35%;
  margin:0 auto 0;  
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(to right, rgb(20, 76, 161), #3e6aca);
  font-weight: bold;
}
.rec--closed span.currentlyRecruiting a{
  color: #fff;
}
.rec--closed span.recruitMessage{
  border: none;
  width: 100%;
  margin: 0;
  font-size: 1.2rem;
  text-align: center;
}