@charset "UTF-8";
.myBlockRequirements {
  padding-bottom: 100px;
}

.myBlockSearch .box {
  display: flex;
  margin: 0;
  padding: 12px 30px;
  border-radius: 10px;
  background: #D9E9F7;
  color: #535353;
}
.myBlockSearch .box:nth-child(even) {
  background: #ECF4FB;
}
.myBlockSearch .box + .box {
  margin-top: 6px;
}
.myBlockSearch .box > dt {
  flex: 0 0 auto;
  align-self: flex-start;
  width: 114px;
  padding: 9px 30px 7px 0;
  border-right: 2px solid #fff;
  font-weight: bold;
}
.myBlockSearch .box > dd {
  margin: 0 0 0 -2px;
  padding: 9px 0 7px 30px;
  border-left: 2px solid #fff;
}
.myBlockSearch .box .list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
  list-style: none;
}
.myBlockSearch .searchbutton {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  display: block;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: 280px;
  margin: 60px auto 0;
  padding: 16px 40px 14px;
  background: #0166B3;
  border: none;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}
.myBlockSearch .searchbutton::after {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 0px;
  height: 0;
  margin: auto;
  border: 12px solid transparent;
  border-right: 12px solid rgba(255, 255, 255, 0.5);
  border-bottom: 12px solid rgba(255, 255, 255, 0.5);
  content: "";
}
.myBlockSearch .searchbutton .inner {
  display: inline-block;
  position: relative;
  padding-left: 36px;
}
.myBlockSearch .searchbutton .inner::after {
  display: block;
  position: absolute;
  top: calc(50% - 14px);
  left: 0;
  width: 26px;
  height: 26px;
  background: url(../img/requirements/icon_search.svg) no-repeat center/contain;
  content: "";
}
@media only screen and (max-width: 992px) {
  .myBlockSearch .box > dt {
    width: 80px;
    line-height: 1.25;
  }
}
@media only screen and (max-width: 600px) {
  .myBlockSearch .box {
    padding: 12px 15px;
  }
  .myBlockSearch .box > dt {
    align-self: center;
    width: 58px;
    padding: 4px 14px 2px 0;
    font-size: 14px;
  }
  .myBlockSearch .box > dd {
    align-self: center;
    padding: 4px 0 2px 14px;
  }
  .myBlockSearch .box .list {
    gap: 10px 30px;
  }
}

.myCheckbox {
  display: inline-block;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.6;
  font-weight: bold;
}
.myCheckbox > input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.myCheckbox .intext {
  display: block;
  position: relative;
  padding: 0 0 0 30px;
}
.myCheckbox .intext::after {
  display: block;
  box-sizing: border-box;
  position: absolute;
  top: calc(0.7em - 11px);
  left: 0;
  width: 22px;
  height: 22px;
  border: 1px solid var(--form-border-color);
  border-radius: 50%;
  background: #fff url(../img/requirements/icon_checkbox.svg) no-repeat center/22px 22px;
  content: "";
}
.myCheckbox input[type=checkbox]:checked ~ .intext::after {
  background-color: #0166B3;
  background-image: url(../img/requirements/icon_checkbox_checked.svg);
}

.myBlockList {
  margin-top: 120px;
}
.myBlockList > .list {
  list-style: none;
}
.myBlockList > .list > li {
  display: block;
  border-bottom: 1px solid #CBCBCB;
}
.myBlockList > .list > li:first-child {
  border-top: 1px solid #CBCBCB;
}
.myRequirementsCard {
  display: block;
  box-sizing: border-box;
  position: relative;
  padding: 40px 80px 40px 20px;
  color: inherit;
  text-decoration: none;
}
.myRequirementsCard::after {
  display: block;
  position: absolute;
  top: calc(50% - 11px);
  right: 20px;
  width: 22px;
  height: 22px;
  background: url(../img/common/arrow02.svg) no-repeat center/contain;
  content: "";
}
.myRequirementsCard .title {
  color: #535353;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
}
.myRequirementsCard .type {
  display: flex;
  gap: 4px;
  margin: 10px 0 0;
}
.myRequirementsCard .type .tag {
  display: inline-block;
  box-sizing: border-box;
  padding: 0.3em 1em 0.2em;
  border-radius: 3em;
  background-color: #000;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
.myRequirementsCard .type .tag[data-type="1"] {
  background-color: #FF569D;
}
.myRequirementsCard .type .tag[data-type="2"] {
  background-color: #36a3ff;
}
.myRequirementsCard .attribute {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 40px;
  margin: 16px 0 0;
}
.myRequirementsCard .attribute dl {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
}
.myRequirementsCard .attribute dl.role {
  width: 100%;
}
.myRequirementsCard .attribute dt {
  flex: 0 0 auto;
  align-self: self-start;
  box-sizing: border-box;
  width: 7em;
  padding: 0.1em 1em 0;
  background: #D9E9F7;
  color: #535353;
  font-size: 13px;
  font-weight: bold;
}
.myRequirementsCard .attribute dd {
  margin: 0;
  font-size: 14px;
}
.myRequirementsCard .attribute .tag {
  display: inline-block;
}
.myRequirementsCard .attribute .tag + .tag::before {
  content: "、";
}
@media only screen and (max-width: 600px) {
  .myRequirementsCard {
    padding: 40px 30px 40px 0;
  }
  .myRequirementsCard::after {
    right: 0;
  }
  .myRequirementsCard .type {
    margin-top: 8px;
  }
  .myRequirementsCard .attribute dl {
    width: 100%;
  }
}

.myDetailsHead .title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
}
.myDetailsHead .type {
  display: flex;
  gap: 4px;
  margin: 24px 0 0;
}
.myDetailsHead .type .tag {
  display: inline-block;
  box-sizing: border-box;
  padding: 0.3em 1em 0.2em;
  border-radius: 3em;
  background-color: #000;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
.myDetailsHead .type .tag[data-type="1"] {
  background-color: #FF569D;
}
.myDetailsHead .type .tag[data-type="2"] {
  background-color: #36a3ff;
}
.myDetailsHead .attribute {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 40px;
  margin: 15px 0 0;
}
.myDetailsHead .attribute dl {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
}
.myDetailsHead .attribute dl.role {
  width: 100%;
}
.myDetailsHead .attribute dt {
  flex: 0 0 auto;
  align-self: self-start;
  box-sizing: border-box;
  width: 7em;
  padding: 0.1em 1em 0;
  background: #D9E9F7;
  color: #535353;
  font-size: 13px;
  font-weight: bold;
}
.myDetailsHead .attribute dd {
  margin: 0;
  font-size: 14px;
}
.myDetailsHead .attribute .tag {
  display: inline-block;
}
.myDetailsHead .attribute .tag + .tag::before {
  content: "、";
}
@media only screen and (max-width: 600px) {
  .myDetailsHead .title {
    font-size: 26px;
  }
  .myDetailsHead .type {
    margin-top: 16px;
  }
  .myDetailsHead .attribute dl {
    width: 100%;
  }
}

.myDetailsSummary {
  display: flex;
  gap: 40px;
  margin: 80px 0 0;
}
.myDetailsSummary .image {
  order: 1;
  flex: 0 0 auto;
  width: 320px;
}
.myDetailsSummary .textarea {
  order: 0;
  flex: 1 1 auto;
}
.myDetailsSummary .text {
  font-size: 16px;
  line-height: 2;
}
@media only screen and (max-width: 600px) {
  .myDetailsSummary {
    flex-direction: column;
    margin-top: 40px;
  }
  .myDetailsSummary .image {
    order: 0;
    width: auto;
    margin: 0 auto;
  }
  .myDetailsSummary .image img {
    width: 100%;
  }
  .myDetailsSummary .textarea {
    order: 1;
  }
}

.myDetailsOutline {
  margin: 60px 0 0;
}
.myDetailsOutline .row {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 150px 1fr;
  padding: 40px 0;
  border-bottom: 2px solid #CBCBCB;
}
.myDetailsOutline .row:first-child {
  border-top: 2px solid #CBCBCB;
}
.myDetailsOutline .head {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
}
.myDetailsOutline .outline {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 138px 1fr;
}
.myDetailsOutline .outline dt, .myDetailsOutline .outline dd {
  box-sizing: border-box;
}
.myDetailsOutline .outline dt {
  box-sizing: border-box;
  padding-left: 10px;
  color: #0166B3;
  font-weight: bold;
  line-height: 1.5;
}
.myDetailsOutline .outline dd {
  align-self: center;
  padding-left: 24px;
  line-height: 1.75;
}
.myDetailsOutline .outline + .outline {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #CBCBCB;
}
@media only screen and (min-width: 601px) {
  .myDetailsOutline .head {
    grid-row: 1/-1;
  }
  .myDetailsOutline .outline {
    grid-column: 2/3;
  }
}
@media only screen and (max-width: 600px) {
  .myDetailsOutline .row {
    grid-template-columns: 1fr;
  }
  .myDetailsOutline .outline {
    grid-template-columns: 70px 1fr;
    margin-top: 20px;
  }
  .myDetailsOutline .outline dt {
    padding-left: 0;
    font-size: 14px;
  }
  .myDetailsOutline .outline dd {
    padding-left: 8px;
    font-size: 16px;
  }
  .myDetailsOutline .outline + .outline {
    margin-top: 16px;
    padding-top: 16px;
  }
}

.myEntry {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 100px auto 0;
}
.myEntry > li {
  display: block;
  width: 320px;
}
@media only screen and (max-width: 600px) {
  .myEntry {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
}

.myEntryBtn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  position: relative;
  padding: 12px 20px 10px;
  min-height: 90px;
  background-color: #fff;
  color: #0166B3;
  font-size: 20px;
  line-height: 1.25;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}
.myEntryBtn::after {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 0;
  height: 0;
  margin: auto;
  border: 12px solid transparent;
  border-right-color: var(--btn-color, currentColor);
  border-bottom-color: var(--btn-color, currentColor);
  opacity: 0.5;
  content: "";
}
.myEntryBtn .h {
  display: block;
  font-size: 22px;
}
.myEntryBtn .t {
  display: block;
  margin-top: 4px;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
}
.myEntryBtn.graduate {
  background-color: #FF569D;
  color: #fff;
}
.myEntryBtn.career {
  background-color: #36a3ff;
  color: #fff;
}
.myEntryBtn.visit {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
}
.myEntryBtn.visit::after {
  opacity: 0.2;
}