@import url("https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #000;
  line-height: 1.2;
  -webkit-text-size-adjust: 100%;
  background-color: #fff;
}
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  transition: all 0.3s ease;
}
.sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 13px;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
/* ------------------------------------------------------
HEADER
------------------------------------------------------ */
#header {
  background: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
  height: 100px;
  position: relative;
  z-index: 3;
}
#header .headInner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 17px;
}
#header .header__logo {
  width: 118px;
}
#header .header__container {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 100%;
}
#header .header__btn {
  background: #e6001e;
  color: #fff;
  display: flex;
  font-weight: 600;
  justify-content: center;
  align-items: center;
  width: 95px;
  height: 100%;
  text-align: center;
}
#header .header__btn span {
  padding-top: 48px;
  position: relative;
}
#header .header__btn span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
#header .header__btn.btn__login span::before {
  width: 35px;
  height: 40px;
  background: url(../media/images/common/ico_login.png) no-repeat center center / 100% auto;
}
#header .header__btn.btn__logout span::before {
  width: 40px;
  height: 40px;
  background: url(../media/images/common/ico_logout.png) no-repeat center center / 100% auto;
}
#header .lang__btn {
  font-size: 14px;
  font-weight: 600;
  line-height: 2.2;
  border: 1px solid #8791a0;
  border-radius: 45px;
  color: #8791a0;
  display: flex;
  align-items: center;
  height: 45px;
  width: 150px;
  padding: 0 14px;
}
#header .lang__btn span {
  padding-left: 46px;
  position: relative;
}
#header .lang__btn span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 25px;
  height: 25px;
  transform: translateY(-50%);
  background: url(../media/images/common/ico_glove.png) no-repeat center center / 100% auto;
}
@media screen and (min-width: 768px) {
  #header .header__btn:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 768px) {
  #header {
    height: 60px;
  }
  #header .headInner {
    padding-left: 10px;
  }
  #header .header__logo {
    width: 70px;
  }
  #header .header__container {
    gap: 15px;
  }
  #header .lang__btn {
    width: 110px;
    height: 35px;
    font-size: 13px;
    padding: 0 7px;
  }
  #header .lang__btn span {
    padding-left: 30px;
  }
  #header .lang__btn span::before {
    width: 20px;
    height: 20px;
  }
  #header .header__btn {
    font-size: 10px;
    width: 60px;
  }
  #header .header__btn span {
    padding-top: 28px;
  }
  #header .header__btn.btn__login span::before {
    width: 18px;
    height: 22px;
  }
  #header .header__btn.btn__logout span::before {
    width: 20px;
    height: 20px;
  }
}
/* ------------------------------------------------------
FOOTER
------------------------------------------------------ */
#footer {
  background: #fff;
}
.f__contact {
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 29px 0 33px;
}
.f__contact p:not(:last-child) {
  margin-bottom: 7px;
}
.f__logo {
  text-align: center;
  padding: 20px 0 25px;
}
.f__logo img {
  width: 150px;
}
/* ------------------------------------------------------
GENERAL
------------------------------------------------------ */
.inner {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
#main {
  background: #dae4ee;
  min-height: 100vh;
}
.breadcrumb {
  background: #ecf0f4;
  border-bottom: 1px solid #d0d9e2;
  padding: 14px 16px 16px;
}
.breadcrumb ul {
  display: flex;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.breadcrumb ul a {
  position: relative;
}
.breadcrumb ul a::after {
  content: " >";
  margin: 0 2px;
}
.sec__block {
  padding: 54px 0 60px;
}
.sec__title {
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 51px;
}
.btn {
  border-radius: 25px;
  color: #fff;
  width: 240px;
  height: 50px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
}
.btn__grad {
  background-image: linear-gradient(90deg, #ff1400 0%, darkorange 100%);
}
@media screen and (min-width: 768px) {
  .btn:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    padding: 10px 20px;
  }
  .sec__title {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
/* seminar */
.filter {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
  max-width: 820px;
  width: 100%;
  margin: 0 auto 20px;
  overflow: hidden;
}
.filter__block {
  border-bottom: 1px solid #d2d7e1;
  display: flex;
  flex-wrap: wrap;
  padding: 15px 20px 15px 17px;
}
.filter__block .block__title {
  font-weight: 700;
  letter-spacing: 0.04em;
  width: 163px;
  padding: 12px 10px 0 0;
}
.filter__block .block__content {
  width: calc(100% - 163px);
}
.filter__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.filter__list li {
  width: calc((100% - 20px) / 3);
  min-width: 150px;
}
.filter__list .filter__link {
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  border: 1px solid #e6001e;
  border-radius: 23px;
  color: #e6001e;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 45px;
}
.filter__list .filter__link.active {
  background: #e6001e;
  color: #fff;
}
.filter__block .block__content input {
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #d2d7e1;
  border-radius: 23px;
  background: #f8fcfe;
  padding: 10px 17px;
  width: 100%;
  height: 45px;
}
.presen__note {
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.4;
  max-width: 820px;
  margin: 0 auto 20px;
}
.presen__note span {
  display: inline-block;
  padding-left: 15px;
  text-indent: -15px;
}
.eng .presen__note span {
  padding-left: 5px;
  text-indent: -5px;
}
.presen__block {
  background: #f8fcfe;
  border-radius: 12px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
.presen__block:not(:last-child) {
  margin-bottom: 20px;
}
.presen__block .col__left {
  background: #e6001e;
  color: #fff;
  width: 140px;
  text-align: center;
  padding: 15px;
}
.presen__block .col__right {
  width: calc(100% - 140px);
}
.presen__block .block__tag {
  color: #e6001e;
  background: #fff;
  border-radius: 6px;
  letter-spacing: 0.04em;
  overflow: hidden;
}
.presen__block .block__tag .text {
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid #e6001e;
  padding: 4px;
}
.presen__block .block__tag .num {
  font-family: "Roboto", sans-serif;
  font-size: 23px;
  font-weight: 700;
  padding: 2px 4px 4px;
}
.presen__block .block__date, .presen__block .block__time {
  font-weight: 700;
  letter-spacing: 0.04em;
}
.presen__block .block__date {
  font-size: 21px;
  margin: 7px 0 4px;
}
.presen__block .block__time {
  font-size: 15px;
}
.presen__block .block__head {
  background: #ffecec;
  padding: 20px 290px 24px 25px;
  position: relative;
}
.presen__block.block02 .block__head {
  padding: 20px 305px 24px 25px;
}
.presen__block .block__head .apply {
  width: 270px;
  height: 55px;
  display: flex;
  border: 1px solid #6e8291;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.presen__block.block02 .block__head .apply {
  width: 285px;
  height: 75px;
}
.presen__block .block__head .apply.active {
  border: 1px solid #e6001e;
}
.presen__block .block__head .apply .apply__text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  background: #6e8291;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 120px;
  height: 100%;
  transition: all 0.3s ease;
}
.presen__block .block__head .apply.active .apply__text {
  background: #e6001e;
}
.presen__block .block__head .apply .apply__check {
  font-size: 18px;
  font-weight: 700;
  color: #6e8291;
  display: flex;
  align-items: center;
  background: #fff;
  cursor: pointer;
  position: relative;
  padding-left: 58px;
  transition: all 0.3s ease;
  width: calc(100% - 120px);
}
.presen__block .block__head .apply.active .apply__check {
  color: #000;
}
.presen__block .block__head .apply .apply__check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.presen__block .block__head .apply .apply__check .checkmark {
  position: absolute;
  top: 50%;
  left: 7px;
  width: 40px;
  height: 40px;
  border: 1px solid #d2d7e1;
  box-shadow: 1.414px 1.414px 3px 0px rgba(0, 0, 0, 0.15), inset 0px 0px 3px 0px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  background: #f8fcfe;
  transition: all 0.3s ease;
  transform: translateY(-50%);
}
.presen__block .block__head .apply .apply__check input:checked ~ .checkmark {
  background: #00b400;
}
.presen__block .block__head .apply .apply__check .checkmark::after {
  content: "";
  position: absolute;
  width: 27px;
  height: 23px;
  top: 50%;
  left: 50%;
  opacity: 0;
  background: url(../media/images/common/ico_check.png) no-repeat center center / 100% auto;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.presen__block .block__head .apply .apply__check input:checked ~ .checkmark::after {
  opacity: 1;
}
.presen__block .block__head .category {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.presen__block.block02 .block__head .category {
  margin-bottom: 35px;
}
.presen__block .block__head .category p {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  border-radius: 15px;
  background: #00a0b4;
  display: flex;
  height: 30px;
  width: 190px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.presen__block .block__head .category ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}
.presen__block .block__head .category ul li {
  font-weight: 700;
  display: flex;
  align-items: center;
  background: #fff;
  text-align: center;
  height: 30px;
  border-radius: 15px;
  padding: 0 12px;
}
.presen__block .block__head .category ul .cat01 {
  border: 1px solid #e6001e;
  color: #e6001e;
}
.presen__block .block__head .category ul .cat03 {
  border: 1px solid #6e8291;
  color: #6e8291;
}
.presen__block .block__head .category ul .cat02 {
  background: #e6001e;
  color: #fff;
}
.presen__block .block__head .sub {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 7px;
}
.presen__block .block__head .title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-right: -265px;
}
.presen__block .block__infor {
  background: #fff;
  border-bottom: 1px solid #e4eaf0;
  padding: 15px 23px 16px;
}
.presen__block .block__infor .infor__list {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 38px;
}
.presen__block .block__infor .item {
  display: flex;
  max-width: 720px;
}
.presen__block .block__infor .item .title {
  font-weight: 700;
  letter-spacing: 0.04em;
  min-width: fit-content;
  padding-right: 11px;
  position: relative;
}
.presen__block .block__infor .item .title::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 20px;
  background: #e6001e;
}
.presen__block .block__infor .item .text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding-left: 10px;
}
.presen__block .block__infor .item.note .text {
  font-size: 13px;
  line-height: 1.5;
}
.presen__block .block__content {
  padding: 10px;
}
.presen__block .block__frame {
  background: #fff;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
  padding: 15px 10px 18px;
}
.presen__block .block__frame:not(:last-child) {
  margin-bottom: 10px;
}
.presen__block .block__frame .frame__time {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #e6001e;
}
.presen__block .block__frame .frame__title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 7px 0 19px;
}
.presen__block .block__frame .frame__note {
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.7;
  margin-top: 12px;
  padding: 0 10px;
}
.presen__block .block__frame .frame__group {
  border: 1px solid #e6e8ee;
  border-radius: 4px;
}
.presen__block .block__frame .frame__list.list01 .item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 11px;
}
.presen__block .block__frame .frame__list .item:not(:last-child) {
  border-bottom: 1px solid #e6e8ee;
}
.presen__block .block__frame .frame__list.list01 .item .item__img {
  width: 130px;
  height: 155px;
  border-radius: 4px;
  overflow: hidden;
}
.presen__block .block__frame .frame__list.list01 .item .item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.presen__block .block__frame .frame__list.list01 .item .item__content {
  width: calc(100% - 130px);
  padding: 0 19px;
}
.presen__block .block__frame .frame__list .item .desc {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 7px;
}
.presen__block .block__frame .frame__list.list02 .item .desc {
  margin-bottom: 1px;
}
.presen__block .block__frame .frame__list .item .name {
  font-size: 18px;
  font-weight: 700;
}
.presen__block .block__frame .frame__list.list02 .item {
  position: relative;
}
.presen__block .block__frame .frame__list.list02 .item::before {
  position: absolute;
  font-size: 18px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: #e6001e;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.presen__block .block__frame .frame__list .list__thumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  counter-reset: section01;
  border-bottom: 1px solid #e6e8ee;
}
.presen__block .block__frame .frame__list .list__thumb .item {
  width: 110px;
  height: 130px;
  border-radius: 4px;
  border: none;
  overflow: hidden;
}
.presen__block .block__frame .frame__list .list__thumb .item::before {
  counter-increment: section01;
  content: counter(section01);
  bottom: 0;
  right: 0;
}
.presen__block .block__frame .frame__list .list__thumb .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.presen__block .block__frame .frame__list .list__infor {
  counter-reset: section02;
}
.presen__block .block__frame .frame__list .list__infor .item::before {
  counter-increment: section02;
  content: counter(section02);
  top: 20px;
  left: 21px;
}
.presen__block .block__frame .frame__list .list__infor .item {
  padding: 16px 10px 19px 64px;
}
@media screen and (min-width: 768px) {
  .filter__list .filter__link:hover {
    background: #e6001e;
    color: #fff;
  }
  .presen__block .block__head .apply {
    top: 10px;
    right: 10px;
    position: absolute;
  }
}
@media screen and (max-width: 767px) {
  .filter {
    margin: 0 auto 30px;
  }
  .filter__block {
    padding: 10px;
  }
  .filter__block .block__title, .filter__block .block__content {
    width: 100%;
  }
  .filter__block .block__title {
    padding: 0 0 10px;
  }
  .filter__list {
    gap: 5px;
  }
  .filter__list li {
    width: calc((100% - 5px) / 2);
    min-width: auto;
  }
  .filter__list .filter__link {
    font-size: 13px;
    height: 30px;
  }
  .filter__block .block__content input {
    font-size: 13px;
    padding: 10px;
    height: 40px;
  }
  .presen__note {
    font-size: 12px;
  }
  .presen__note span {
    padding-left: 13px;
    text-indent: -13px;
  }
  .presen__block .col__left, .presen__block .col__right {
    width: 100%;
  }
  .presen__block .col__left {
    display: flex;
    align-items: center;
    padding: 10px;
    gap: 15px;
    text-align: left;
  }
  .presen__block .block__tag {
    width: 80px;
    text-align: center;
  }
  .presen__block .block__tag .text {
    font-size: 13px;
  }
  .presen__block .block__tag .num {
    font-size: 20px;
  }
  .presen__block .block__date {
    font-size: 20px;
    margin: 0 0 4px;
  }
  .presen__block .block__time {
    font-size: 13px;
  }
  .presen__block .block__head, .presen__block.block02 .block__head {
    padding: 15px 10px;
  }
  .presen__block .block__head .apply, .presen__block.block02 .block__head .apply {
    width: 260px;
    height: 45px;
    margin-bottom: 10px;
  }
  .presen__block .block__head .apply .apply__text {
    font-size: 12px;
    width: 100px;
  }
  .presen__block .block__head .apply .apply__check {
    font-size: 16px;
    width: calc(100% - 100px);
    padding-left: 45px;
  }
  .presen__block .block__head .apply .apply__check .checkmark {
    width: 30px;
    height: 30px;
  }
  .presen__block .block__head .apply .apply__check .checkmark::after {
    width: 17px;
    height: 13px;
  }
  .presen__block .block__head .category, .presen__block.block02 .block__head .category {
    gap: 5px;
    margin-bottom: 8px;
  }
  .presen__block .block__head .category p, .presen__block .block__head .category ul li {
    font-size: 12px;
    line-height: 1;
    height: 25px;
  }
  .presen__block .block__head .category p {
    width: 100px;
  }
  .presen__block .block__head .title {
    font-size: 18px;
    margin: 0;
  }
  .presen__block .block__infor {
    padding: 15px 10px;
  }
  .presen__block .block__infor .infor__list {
    gap: 10px;
  }
  .presen__block .block__frame .frame__list.list01 .item {
    padding: 10px;
    justify-content: center;
    gap: 15px;
  }
  .presen__block .block__frame .frame__list.list01 .item .item__img {
    width: 34.67vw;
    height: 41.33vw;
    min-width: 130px;
    min-height: 155px;
  }
  .presen__block .block__frame .frame__list.list01 .item .item__content {
    width: 100%;
    padding: 0;
  }
  .presen__block .block__frame .frame__list .item .name {
    font-size: 16px;
  }
  .presen__block .block__frame .frame__note {
    font-size: 10px;
    padding: 0 5px;
  }
  .presen__block .block__frame .frame__list .list__thumb {
    gap: 5px;
  }
  .presen__block .block__frame .frame__list .list__thumb .item {
    width: calc((100% - 5px) / 2);
    height: 42.67vw;
  }
  .presen__block .block__frame .frame__list .list__infor .item {
    padding: 15px 10px 15px 50px;
  }
  .presen__block .block__frame .frame__list .list__infor .item::before {
    left: 10px;
  }
}
/* login */
.login__block {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
}
.login__block:not(:last-child) {
  margin-bottom: 30px;
}
.login__block .block__row {
  padding: 35px 60px;
  display: flex;
  flex-wrap: wrap;
}
.login__block .block__row:not(:last-child) {
  border-bottom: 1px solid #d2d7e1;
}
.login__block .block__row .block__text {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  width: 100%;
  margin: -8px 0 -6px;
}
.login__block .block__row .block__lable {
  font-weight: 700;
  letter-spacing: 0.04em;
  padding-top: 12px;
  width: 140px;
}
.login__block .block__row .block__input {
  width: calc(100% - 140px);
  position: relative;
}
.login__block .block__row .block__input input {
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  height: 45px;
  border: 1px solid #d2d7e1;
  border-radius: 4px;
  background: #f8fcfe;
  padding: 10px 17px;
}
.login__block .block__row .block__input.error input {
  border: 1px solid #e6001e;
  background: #fef8f8;
}
.login__block .block__row .block__input .toggle__pass {
  font-size: 23px;
  position: absolute;
  right: 15px;
  top: 10px;
  color: #9aa2ab;
}
.login__block .block__row .block__input .error__text {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
  color: #e6001e;
  display: none;
  margin: 5px 0 -25px;
}
.login__block .block__row .block__input.error .error__text {
  display: block;
}
.login__block .block__func {
  text-align: center;
  padding: 0 20px 42px;
}
.login__block .btn {
  margin: 30px auto 15px;
}
.login__block .block__link {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: #0050dc;
  border-bottom: 1px solid #0050dc;
  padding-bottom: 3px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .login__block .block__link:hover {
    border-bottom: 1px solid transparent;
  }
}
@media screen and (max-width: 767px) {
  .login__block .block__row {
    padding: 20px;
  }
  .login__block .block__row .block__lable, .login__block .block__row .block__input {
    width: 100%;
  }
  .login__block .block__row .block__lable {
    padding: 0 0 10px;
  }
  .login__block .block__row .block__input input {
    font-size: 13px;
    padding: 10px;
    height: 40px;
  }
  .login__block .block__row .block__input .toggle__pass {
    font-size: 18px;
    top: 12px;
    right: 12px;
  }
  .login__block .block__row .block__input .error__text {
    font-size: 10px;
    margin: 5px 0 -15px;
  }
  .login__block .block__func {
    padding: 0 20px 32px;
  }
}
/* mypage */
.mypage__block {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
}
.mypage__block.block__flex {
  display: flex;
  flex-wrap: wrap;
}
.mypage__block:not(:last-child) {
  margin-bottom: 20px;
}
.mypage__block .block__head {
  background: #e6001e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 27px;
}
.mypage__block.block__flex .block__head {
  width: 190px;
}
.mypage__block .block__head h3 {
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.mypage__block.block__full .block__head h3 {
  font-size: 21px;
}
.mypage__block .block__head .edit__btn {
  font-size: 13px;
  font-weight: 500;
  width: 150px;
  height: 35px;
  border-radius: 17px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  padding: 0 14px;
}
.mypage__block .block__head .edit__btn span {
  position: relative;
  padding-left: 25px;
}
.mypage__block .block__head .edit__btn span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: url(../media/images/common/ico_pencil.png) no-repeat center center / 100% auto;
  transition: all 0.3s ease;
}
.mypage__block.block__flex .block__content {
  width: calc(100% - 190px);
  padding: 15px 15px 15px 23px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.mypage__block .block__content .infor__list dl {
  border-bottom: 1px solid #d2d7e1;
  display: flex;
  flex-wrap: wrap;
  padding: 25px 0;
}
.mypage__block .block__content .infor__list dt, .mypage__block .block__content .infor__list dd {
  padding: 3px 10px 3px 26px;
}
.mypage__block .block__content .infor__list dt {
  width: 162px;
  border-right: 1px solid #d2d7e1;
}
.mypage__block .block__content .infor__list dd {
  font-size: 14px;
  font-weight: 500;
  width: calc(100% - 162px);
}
.mypage__block .block__content .infor__list dd a {
  color: #0050dc;
  text-decoration: underline;
  margin-left: 20px;
}
.mypage__block .block__content p {
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .mypage__block .block__head .edit__btn:hover {
    background: #fff;
    color: #e6001e;
  }
  .mypage__block .block__head .edit__btn:hover span::before {
    background: url(../media/images/common/ico_pencil_ov.png) no-repeat center center / 100% auto;
  }
}
@media screen and (max-width: 767px) {
  .mypage__block .block__head {
    padding: 10px 15px;
  }
  .mypage__block.block__flex .block__head {
    width: 100%;
  }
  .mypage__block.block__full .block__head h3 {
    font-size: 16px;
  }
  .mypage__block.block__flex .block__content {
    width: 100%;
    justify-content: center;
    gap: 10px;
    padding: 15px;
  }
  .mypage__block .block__content .infor__list dl {
    padding: 10px 0;
  }
  .mypage__block .block__content .infor__list dt, .mypage__block .block__content .infor__list dd {
    padding: 3px 10px;
  }
  .mypage__block .block__content .infor__list dt {
    width: 115px;
  }
  .mypage__block .block__content .infor__list dd {
    font-size: 13px;
    width: calc(100% - 115px);
  }
  .mypage__block .block__content .infor__list dd a {
    margin-left: 10px;
  }
  .mypage__block .block__content p {
    width: 100%;
  }
}
/* regist */
.regist__remind {
  font-weight: 700;
  letter-spacing: 0.04em;
  background: #ffeeee;
  border-radius: 9px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 19px 20px 22px;
  margin-bottom: 20px;
}
.regist__remind span {
  padding-left: 44px;
  position: relative;
}
.regist__remind span::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 32px;
  height: 29px;
  background: url(../media/images/common/ico_warnning.png) no-repeat center center / 100% auto;
}
.regist__block {
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
  border-radius: 9px;
  background: #fff;
  overflow: hidden;
}
.regist__block .block__title {
  background: #e6001e;
  text-align: center;
  padding: 20px;
}
.regist__block .block__title h3 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}
.regist__form .form__row {
  border-bottom: 1px solid #d2d7e1;
  display: flex;
  flex-wrap: wrap;
}
.regist__form .form__row .col__left {
  width: 285px;
  padding: 30px 0 30px 27px;
  display: flex;
  justify-content: space-between;
}
.eng .regist__form .form__row .col__left {
  justify-content: flex-start;
}
.regist__form .form__row .col__right {
  font-weight: 500;
  width: calc(100% - 285px);
  padding: 20px 30px 20px 15px;
}
.regist__form .form__row .col__right .txt {
  display: flex;
  align-items: center;
  height: 100%;
}
.regist__form .form__row .lbl {
  font-weight: 700;
  letter-spacing: 0.04em;
  padding-top: 2px;
}
.regist__form .form__row .error {
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #e6001e;
  border-radius: 4px;
  color: #e6001e;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 40px;
  height: 25px;
}
.eng .regist__form .form__row .error {
  font-size: 14px;
  border: none;
}
.regist__form .form__row input:not([type="radio"]) {
  font-size: 14px;
  width: 100%;
  height: 45px;
  border: 1px solid #d2d7e1;
  border-radius: 4px;
  background: #f8fcfe;
  padding: 10px 17px;
  position: relative;
}
.regist__form .form__row .error__text {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
  color: #e6001e;
  display: none;
  margin: 5px 0 -15px;
}
.validated__error .regist__form .form__row .error__text {
  display: block;
}
.regist__form .form__row .form__input.has__error {
  border: 1px solid #e6001e;
}
.regist__form .form__row .form__code {
  max-width: 410px !important;
}
.regist__form .form__row .office__group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}
.regist__form .form__row .office__group input[type="text"] {
  width: 47%;
}
.regist__form .form__row .form__check {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
}
.regist__form .form__row .form__check .checkbox__item {
  width: calc(100% / 3);
  max-width: 290px;
  flex: auto;
}
.regist__form .form__row .checkbox__item {
  font-size: 14px;
  flex: 1 1;
  display: inline-flex;
  align-items: center;
  height: 25px;
  cursor: pointer;
  padding-left: 33px;
  position: relative;
}
.regist__form .form__row .checkbox__item input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.regist__form .form__row .checkbox__item .checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  border: 1px solid #d2d7e1;
  border-radius: 4px;
  background: #f8fcfe;
  transition: all 0.3s ease;
  transform: translateY(-50%);
}
.regist__form .form__row .checkbox__item input:checked ~ .checkmark {
  background: #00b400;
}
.regist__form .form__row .checkbox__item .checkmark::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 11px;
  top: 50%;
  left: 50%;
  opacity: 0;
  background: url(../media/images/common/ico_check.png) no-repeat center center / 100% auto;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.regist__form .form__row .checkbox__item input:checked ~ .checkmark::after {
  opacity: 1;
}
.regist__form .form__row .name__group {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.regist__form .form__row .name__group .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 41%;
}
.eng .regist__form .form__row .name__group .item {
  width: 45%;
}
.regist__form .form__row .name__group .item input {
  width: calc(100% - 67px);
}
.eng .regist__form .form__row .name__group .item input {
  width: calc(100% - 120px);
}
.regist__form .form__row .address__group .item__row {
  display: flex;
}
.regist__form .form__row .address__group .item__row:not(:last-child) {
  margin-bottom: 10px;
}
.regist__form .form__row .address__group .item__row .col__left {
  width: 110px;
  padding: 10px 5px 10px 0;
}
.eng .regist__form .form__row .address__group .item__row .col__left {
  width: 122px;
}
.regist__form .form__row .address__group .item__row .col__right {
  width: calc(100% - 110px);
  padding: 0;
}
.regist__form .form__row .address__group .item__row .lbl {
  font-weight: 500;
}
.regist__form .form__row .post__group {
  display: flex;
  gap: 25px;
}
.regist__form .form__row .post__group .post__item {
  max-width: 90px;
  position: relative;
}
.regist__form .form__row .post__group .post__item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -16px;
  width: 7px;
  height: 1px;
  background: #000;
  transform: translateY(-50%);
}
.regist__form .form__row .tel__group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
}
.regist__form .form__row .tel__group label {
  width: 100%;
}
.regist__form .form__row .tel__group .form__select {
  width: 50%;
  max-width: inherit;
}
.regist__form .form__row .form__select {
  border: 1px solid #d2d7e1;
  border-radius: 4px;
  height: 45px;
  padding: 10px 27px 10px 17px;
  background: #f8fcfe url(../media/images/common/ico_arrow_red.png) no-repeat center right 15px / 12px 8px;
  max-width: 205px;
  width: 100%;
  position: relative;
}
.regist__form .form__row .form__note {
  font-size: 14px;
  display: block;
  margin: 8px 0 -4px;
}
.regist__form .form__row .radio__item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.regist__form .form__row .radio__item:not(:last-child) {
  margin-bottom: 10px;
}
.regist__form .form__btn {
  padding: 30px;
}
.regist__form .form__btn .btn {
  margin: 0 auto;
}
.regist__form .form__btn .btn__back {
  margin-top: 30px;
}
@media screen and (max-width: 950px) {
  .regist__form .form__row .col__left {
    width: 240px;
  }
  .regist__form .form__row .col__right {
    width: calc(100% - 240px);
  }
  .regist__form .form__row .office__group input[type="text"], .regist__form .form__row .office__group label {
    width: 100%;
  }
  .regist__form .form__row .office__group label {
    flex: auto;
  }
  .regist__form .form__row .name__group .item {
    width: 100%;
  }
  .regist__form .form__row .tel__group input {
    flex: auto;
  }
}
@media screen and (max-width: 767px) {
  .regist__remind {
    padding: 12px;
  }
  .regist__remind span {
    padding-left: 25px;
  }
  .regist__remind span::before {
    width: 16px;
    height: 15px;
    top: 3px;
  }
  .regist__block .block__title {
    padding: 10px;
  }
  .regist__block .block__title h3 {
    font-size: 18px;
  }
  .regist__form .form__row .col__left, .regist__form .form__row .col__right {
    width: 100%;
    padding: 10px;
  }
  .regist__form .form__row .col__left {
    padding-bottom: 0;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;
  }
  .regist__form .form__row .error {
    font-size: 10px;
    width: 30px;
    height: 20px;
  }
  .regist__form .form__row input:not([type="radio"]) {
    font-size: 13px;
    height: 40px;
    padding: 10px;
  }
  .regist__form .form__row .form__check {
    gap: 10px;
  }
  .regist__form .form__row .form__check .checkbox__item {
    width: 100%;
  }
  .regist__form .form__row .checkbox__item {
    font-size: 13px;
    padding-left: 25px;
  }
  .regist__form .form__row .checkbox__item .checkmark {
    width: 20px;
    height: 20px;
  }
  .regist__form .form__row .name__group {
    padding-left: 10px;
    gap: 10px;
  }
  .regist__form .form__row .address__group {
    padding-left: 10px;
  }
  .regist__form .form__row .address__group .item__row .col__left {
    width: 95px;
  }
  .eng .regist__form .form__row .address__group .item__row .col__left {
    width: 125px;
  }
  .regist__form .form__row .address__group .item__row .col__right {
    width: calc(100% - 95px);
  }
  .regist__form .form__row .post__group .post__item {
    width: calc((100% - 25px) / 2);
    max-width: 100px;
  }
  .regist__form .form__row .form__select {
    padding: 10px 27px 10px 10px;
    max-width: 300px;
    height: 40px;
  }
  .regist__form .form__row .form__not {
    font-size: 13px;
    margin: 4px 0 0;
  }
}
/* terms*/
.terms .terms__block .block__content {
  background: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
  border-radius: 9px;
  padding: 30px;
}
.terms .terms__block .block__content:first-of-type {
  margin-bottom: 20px;
}
.terms .terms__block .block__content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.terms .terms__block .block__content p {
  line-height: 1.5;
  margin-bottom: 15px;
}
.terms .terms__block .block__content p .text__red {
  font-weight: 700;
  font-size: 18px;
  display: block;
  color: #e6001e;
}
.terms .terms__block .block__content a {
  color: #0050dc;
  border-bottom: 1px solid #0050dc;
  padding-bottom: 3px;
  position: relative;
}
.terms .form__row {
  text-align: center;
  padding: 30px 0;
}
.terms .form__row .checkbox__item {
  display: inline-flex;
  align-items: center;
  height: 25px;
  cursor: pointer;
  padding-left: 33px;
  position: relative;
}
.terms .form__row .checkbox__item input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.terms .form__row .checkbox__item .checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  border: 1px solid #d2d7e1;
  border-radius: 4px;
  background: #f8fcfe;
  transition: all 0.3s ease;
  transform: translateY(-50%);
}
.terms .form__row .checkbox__item input:checked ~ .checkmark {
  background: #00b400;
}
.terms .form__row .checkbox__item .checkmark::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 11px;
  top: 50%;
  left: 50%;
  opacity: 0;
  background: url(../media/images/common/ico_check.png) no-repeat center center / 100% auto;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.terms .form__row .checkbox__item input:checked ~ .checkmark::after {
  opacity: 1;
}
.terms .form__btn {
  display: flex;
  justify-content: center;
}
.terms .form__btn .btn {
  opacity: 0.5;
  pointer-events: none;
  transition: all 0.3s ease;
}
.terms .form__btn .btn.active {
  opacity: 1;
  pointer-events: visible;
}
@media screen and (min-width: 768px) {
  .terms .terms__block .block__content a:hover {
    border-bottom: 1px solid transparent;
  }
}
@media screen and (max-width: 767px) {
  .terms .terms__block .block__content p .text__red {
    font-size: 16px;
  }
}
/* confirm */
.confirm .regist__block {
  margin-bottom: 20px;
}
.confirm .form__group .form__row:not(:last-child) {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .confirm .form__group .form__row .col__left {
    padding: 20px 0 20px 27px;
  }
}
/* questionnaire */
.questionnaire .cmt__row {
  display: flex;
  margin-top: 10px;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.questionnaire .cmt__row .checkbox__item {
  max-width: fit-content !important;
}
.questionnaire .cmt__row input {
  flex: 1 1;
  max-width: 775px;
}
/* Thanks */
.thanks__block .block__content {
  background: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
  border-radius: 9px;
  padding: 30px;
}
.thanks__block p {
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
.thanks__block a {
  margin: 30px auto;
}
@media screen and (max-width: 767px) {
  .thanks__block p {
    font-size: 16px;
    line-height: 1.4;
  }
}
/*# sourceMappingURL=./style.css.map */