@charset "UTF-8";
/* common */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
  background: #f1f1f1;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
h1, h2, p, ul, dl, dd {
  margin: 0;
  padding: 0;
}
p {
  line-height: 1.5;
}
li {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
a.under-line,
a span.under-line {
  text-decoration: underline;
}
input, select {
  font-family: inherit;
  outline: none;
}
input:-webkit-autofill {
  box-shadow: 0 0 0 1000px rgb(255, 255, 255) inset;
}
small {
  color: rgb(255, 255, 255);
  font-size: 15px;
}
.list-style {
  padding-left: 20px;
}
.login_checkbox {
  font-size: .75em;
}
.margin_none {
  margin: 0;
}
.tm-10 {
  margin-top: 10px;
}
.tm-20 {
  margin-top: 20px;
}
.tm-30 {
  margin-top: 30px;
}
.rm-10 {
  margin-right: 10px;
}
.rm-20 {
  margin-right: 20px;
}
.bm-20 {
  margin-bottom: 20px;
}
.lm-1 {
  margin-left: 1em;
}
.lm-5 {
  margin-left: 5px;
}
.radio-lm {
  margin-left: 18px;
}
.relative {
  position: relative;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.font-bold {
  font-weight: bold;
}
.color-red {
  color: rgba(238, 100, 100, 0.9);
}
.color-gray {
  color: rgba(148, 145, 145, 0.9);
}
.enroll-area {
  display: flex;
  align-items: center;
  justify-content: center;
}
.enroll-area a {
  width: 270px;
  padding: 15px 10px;
  display: block;
}
.enroll-area button {
  width: 270px;
  padding: 8px 10px;
  display: block;
}
.main-header {
  height: 50px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgb(255, 255, 255);
  background: rgb(16, 55, 114);
  box-shadow: 1px 0 1px 0 rgba(0, 0, 0, .4);
}
.main-header.today-reg-bg {
  background: rgba(70, 165, 45, 0.9);
}
.society-link {
  color: rgb(255, 255, 255);
  font-size: 18px;
}
.logout-link {
  color: rgb(255, 255, 255);
  /* font-size: 16px; */
  /* border-radius: 5px; */
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.logout-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* width: 15%; */
}
.main-header .logout-icon {
  background-image: url(../img/icon-logout-white.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 40px;
  height: 40px;
}
.main-header .logout-icon:hover {
  background-image: url(../img/icon-logout-gray.png);
}
/* .header-navi-flex img { */
  /* width: 30%; */
  /* width: 40px; */
/* } */
.header-flex {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-navi-flex {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header-navi-flex li:not(:first-child) {
  margin-left: 20px;
}
.header-navi-flex select {
  padding: 5px 0;
  border-radius: 5px;
  /* margin-left: 1em; */
}
.header-text {
  font-size: 18px;
  line-height: 1.2;
}
.society-name-regi {
  color: rgb(255, 255, 255);
  font-size: 18px;
}
.header-band {
  max-width: 1180px;
  height: 50px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
}
.header-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.header-title h1 {
  margin-right: 20px;
  font-size: 24px;
}

/* lang */
.lang-select select {
  visibility: hidden;
}
.sel {
  width: 120px;
  display: inline-block;
  position: relative;
  border-bottom: 4px solid rgba(200, 200, 200, .3);
  background-color: transparent;
  cursor: pointer;
}
.sel::before {
  position: absolute;
  top: 50%;
  right: 0;
  content: "\f063";
  color: rgb(150, 150, 150);
  font-family: "FontAwesome";
  font-size: 20px;
  transform: translateY(-50%);
}
.sel.active::before {
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotateX(-180deg);
}
.sel-placeholder {
  display: block;
  color: rgb(150, 150, 150);
  text-align: left;
  font-size: 18px;
  visibility: visible;
  pointer-events: none;
  user-select: none;
}
.sel.active .sel-placeholder {
  visibility: hidden;
}
.sel-placeholder::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: attr(data-placeholder);
  visibility: hidden;
}
.sel.active .sel-placeholder::before {
  visibility: visible;
}
.sel-area {
  width: 120px;
  box-sizing: border-box;
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  text-align: left;
  background-color: rgba(0, 0, 0, .8);
  list-style-type: none;
  z-index: 1;
}
.sel.active .sel-area {
  display: block;
  animation: fadeInUp .5s;
}
  /* option内 */
.sel-option {
  padding: 5px 10px;
  display: list-item;
  color: rgb(150, 150, 150);
  font-size: 16px;
  transition: .3s;
  user-select: none;
}
.sel-option::after {
  margin-left: 5px;
  display: none;
  content: "\f00c";
  font-family: "FontAwesome";
}
.sel-option.selected::after {
  display: inline;
}
.sel-option:hover {
  color: rgb(20, 20, 20);
  background: rgb(250, 250, 250);
}
@keyframes fadeInUp {
  0% {
    transform: translate3d(0, 20px, 0);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}

.main-footer {
  background: rgb(30, 40, 80);
}
.footer-band {
  max-width: 1180px;
  margin: 0 auto;
  padding: 15px;
}
.footer-title {
  display: flex;
  align-items: center;
  justify-content: center;
}
.container {
  max-width: 1180px;
  /* min-height: calc(100vh - 75px); */
  min-height: calc(100vh - 95px);
  margin: 0 auto;
  padding: 50px 20px;
  word-break: break-word;
  overflow-wrap: break-word;
}
.reg-container,
.reg-today-container {
  max-width: 850px;
  /* min-height: calc(100vh - 75px); */
  min-height: calc(100vh - 95px);
  margin: 0 auto;
  padding: 30px;
  word-break: break-word;
  overflow-wrap: break-word;
}
.reg-content-wrap,
.reg-today-content-wrap {
  width: 100%;
  padding: 0;
}
.enroll-button {
  color: rgb(255, 255, 255);
  text-align: center;
  border: 1px solid rgb(16, 55, 114);
  background: rgb(16, 55, 114);
  border-radius: 9999px;
  transition: .3s;
  cursor: pointer;
}
.enroll-button:hover {
  color: rgb(16, 55, 114);
  border: 1px solid rgb(16, 55, 114);
  background: #f1f1f1;
}
.back-button {
  color: rgb(16, 55, 114);
  text-align: center;
  border: 1px solid rgb(16, 55, 114);
  border-radius: 9999px;
  background: #f1f1f1;
  transition: .3s;
  cursor: pointer;
}
.back-button:hover {
  color: rgb(255, 255, 255);
  border: 1px solid rgb(16, 55, 114);
  background: rgb(16, 55, 114);
}
.common-button {
  color: rgb(255, 255, 255);
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, .25);
  transition: .3s;
  cursor: pointer;
}
.common-bg-red {
  border: 1px solid rgb(220, 15, 80);
  background: rgb(220, 15, 80);
}
.common-bg-red:hover {
  color: rgb(220, 15, 80);
  border: 1px solid rgb(220, 15, 80);
  background: rgb(255, 255, 255);
  box-shadow: 0 0 5px rgb(220, 15, 80);
}

/* top scroll */
.scroll-hidden-contents {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  transition: .3s;
  opacity: 0;
  visibility: hidden;
}
.page-top {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  border: 1px solid rgb(16, 55, 114);
  background: rgb(220, 230, 245);
  transition: .3s;
  border-radius: 50%;
}
.page-top:hover {
  background: rgb(16, 55, 114);
  color: #fff;
}
.active.scroll-hidden-contents {
  opacity: 1;
  visibility: visible;
}

/* stepbar */
.step-bar {
  margin: 25px 20px 40px 0;
  display: flex;
  font-size: 15px;
}
.step-bar .step-item {
  width: 25%;
  position: relative;
  padding: 0.5em;
  color: #5c7cdc;
  text-align: center;
  line-height: 1.5;
  background: #c5d1ff;
}
.step-bar .step-item::before,
.step-bar .step-item::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  content: "";
  z-index: 2;
  border: 18px solid transparent;
  border-left: 20px solid #c5d1ff;
}
.step-bar .step-item::before {
  margin-left: 1px;
  border-left-color: rgb(255, 255, 255);
}
.step-bar .right-border-none.step-item::before {
  border: none;
}
.bar-revision {
  margin-left: 10px;
}
/* stepbar active */
.step-bar .step-item.active {
  z-index: 1;
  color: rgb(255, 255, 255);
  background: #5c7cdc;
}
.step-bar .step-item.active::after {
  border-left-color: #5c7cdc;
}
.step-bar .step-item.active::before {
  border-left: none;
}
.reference-mark {
  margin-left: 1em;
  margin-bottom: 1em;
  text-indent: -1em;
}
.reference-mark:before {
  content: "\203B";
}
.marker {
  color: rgb(255, 255, 255);
  background: rgba(30, 35, 80, .75);
}
.dividing-line {
  width: 105%;
  position: relative;
  left: -2.5%;
  border-bottom: 1px dashed rgba(0, 140, 200, .5);
}

/* sidebar */
.container.side {
  max-width: 1180px;
  display: flex;
  position: relative;
}
.content-wrap {
  width: 100%;
  padding: 0 0 0 320px;
}
.side-bar {
  width: 300px;
  margin-right: -300px;
  order: -1;
  z-index: 1;
  font-size: 20px;
}
.side-area {
  padding: 1em 20px;
  background: rgb(255, 255, 255);
  border-radius: 5px;
}
.side-section + .side-section {
  margin-top: 20px;
}
.side-section .content {
  padding: 10px 0;
}
.side-section .content p {
  font-size: .7em;
}
.side-section .content .conservative-text {
  margin-top: 10px;
  font-size: .6em;
}
.sub-content {
  margin-top: 20px;
}
.side-flex {
  display: flex;
  align-items: center;
  background: #c5d1ff;
  border-radius: 5px;
  padding: 0.2em 0.4em;
  font-size: 0.7em;
}
.side-flex img {
  width: 40px;
}
.side-content {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  background: #f1f1f1;
  margin-bottom: 0.2em;
  /* padding: 0.5em 0; */
  padding: 0.5em 0.4em;
  border-radius: 5px;
}
.side-content:hover {
  background: rgb(16,55,114);
  color: #fff;
}
.side-content .home-icon {
  background-image: url(../img/icon-home-gray.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  /* width: 20%; */
  width: 40px;
  height: 40px;
}
.side-content .login-icon {
  background-image: url(../img/icon-login-gray.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  /* width: 20%; */
  width: 40px;
  height: 40px;
}
.side-content .resistration-icon {
  background-image: url(../img/icon-resistration-gray.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  /* width: 20%; */
  width: 40px;
  height: 40px;
}
.side-content .logout-icon {
  background-image: url(../img/icon-logout-gray.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  /* width: 20%; */
  width: 40px;
  height: 40px;
}
.side-content:hover .home-icon {
  background-image: url(../img/icon-home-white.png);
}
.side-content:hover .login-icon {
  background-image: url(../img/icon-login-white.png);
}
.side-content:hover .resistration-icon {
  background-image: url(../img/icon-resistration-white.png);
}
.side-content:hover .logout-icon {
  background-image: url(../img/icon-logout-white.png);
}

.side-content img {
  width: 13%;
}
.side-section h1 {
  width: 90%;
  padding: 2px 10px;
  font-size: .9em;
  font-weight: bold;
}
.side-section h2 {
  font-size: .7em;
  font-weight: bold;
  border-left: solid 3px #ff8866;
  padding-left: 10px;
}
.side-heading {
  padding: 2px;
  border-bottom: 1px solid #ebebeb;
}
.side-section h2 + h2 {
  margin-top: 20px;
}
.side-section a {
  display: block;
  font-size: .7em;
}
.light_blue {
  color: #6f8be7;
}
.dark_blue_btn {
  color: #6f8be7;
  font-size: 20px;
}
.bk-dark_blue {
  background: rgb(16, 55, 114);
}
.message-box {
  margin: 0 auto 20px auto;
  padding: 20px;
  font-size: .75em;
  background: rgb(255, 255, 255);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .15);
}
.message-box.green {
  color: rgb(80, 120, 40);
  border: 1px solid rgba(80, 120, 40, .35);
}
.message-box.red {
  color: rgb(220, 15, 80);
  border: 1px solid rgba(220, 15, 80, .25);
}

/* top */
.square {
  font-size: 0.5em;
  display: table-caption;
}
.main-area {
  font-size: 20px;
}
.mypage-box {
  background: #fff;
  padding: 1.2em;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .15);
}
.contents-section + .contents-section {
  margin-top: 30px;
}
.base-content-box {
  background: #f1f1f1;
  border-radius: 5px;
}
.main-contents {
  padding: 1.5em;
  background: #fff;
  border-radius: 5px;
}
.base-content-box h1 {
  padding: 18px;
  font-size: .9em;
  border-radius: 5px 5px 0 0;
  border-bottom: 1px solid rgb(200, 200, 200);
  background: #ff8866;
  color: #fff;
}
.group-header {
  padding: 2px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgb(200, 200, 200);
  background: rgb(245, 130, 94);
  color: #fff;
}
.base-content-box .h1 {
  font-size: .9em;
  font-weight: bold;
}
.base-content-box h1.comfirm {
  background: rgb(16, 55, 114);
}
.content-info {
  padding: 20px;
}
.content-info.scroll-wrap {
  padding: 20px 0 20px 20px;
}
.content-info .scroll {
  height: 150px;
  padding-right: 20px;
  overflow-y: scroll;
}
.content-info dl {
  display: flex;
}
.content-info dl + dl {
  margin-top: 10px;
}
.content-info dl dt {
  width: 120px;
  font-size: .75em;
  flex-shrink: 0;
}
.multiple-items p + p {
  margin-top: 10px;
}
.content-info a {
  font-size: .75em;
}
.content-info p {
  font-size: .75em;
}
.content-info p a {
  font-size: 1em;
}
.display-button2 {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.display-button2 button {
  width: 140px;
  padding: 10px;
  font-size: .75em;
}
.display-button {
  margin: 20px 0;
  padding: 20px 0;
  display: flex;
  justify-content: space-evenly;
}
.display-button button {
  width: 140px;
  padding: 10px;
  font-size: .75em;
}
.common-display-button {
  padding: 20px 0;
  display: flex;
  justify-content: space-evenly;
}
.common-display-button button {
  width: 140px;
  padding: 5px 10px;
  font-size: .75em;
}
.right-case {
  margin-top: 20px;
}
.right-case a {
  max-width: 20em;
  margin-left: auto;
  display: block;
}
.content-info .country-code-search {
  text-decoration: underline;
  font-size: 1em;
}
.browser-none {
  margin-top: 20px;
  padding-top: 0.5em;
}
.browser-none h2 {
  margin-bottom: 1em;
  font-size: .9em;
  border-left: solid 3px rgb(16, 55, 114);
  padding-left: 12px;
  line-height: 2em;
  margin-left: 0.1em;
}
.recommendation {
  font-size: .75em;
}
.recommendation + .recommendation {
  margin-top: 20px;
}
.recommendation-info {
  display: flex;
  justify-content: space-between;
  position: relative;
  font-weight: bold;
}
.recommendation-browser {
  padding: 10px 0 0 13px;
  display: flex;
  flex-wrap: wrap;
}

/* login */
.login-box {
  display: flex;
  position: relative;
}
.login-input-field {
  width: 100%;
  padding: 0 50px 0 0;
}
.login-input-field input {
  width: 100%;
  padding: 10px;
  display: block;
  font-size: 16px;
  border: 1px solid rgb(200, 200, 200);
}
.login-input-field input + input {
  margin-top: 5px;
}
.login-button-area {
  width: 100px;
  margin-left: -100px;
  z-index: 1;
}
.login-button-area button {
  width: 100%;
  height: 65px;
  font-size: .75em;
}
.login-input-field label {
  font-size: .75em;
}
.login-input-field input[type="checkbox"] {
  width: auto;
  margin: 0;
  display: initial;
}
.block {
  display: block;
}

/* qa */
.qustion-area section {
  margin-top: 20px;
}
.qustion-area section + section {
  margin-top: 50px;
}
.qa-content {
  margin: 40px 0;
}
.qa-title-flex {
  display: flex;
  align-items: center;
  gap: 1.0em;
  margin-top: 20px;
  margin-bottom: 10px;
}
.qa-title-flex i {
  color: rgb(0, 140, 200);
  font-size: 20px;
}
.qa-title-flex p {
  font-size: .9em;
}
.qa-title-flex img {
  width: 50px;
  height: 50px;
}
.fa-question-circle {
  margin-right: 10px;
  font-size: 20px;
}
.answer {
  font-size: .75em;
  padding: 1.3em 1.5em;
  background: #f1f1f1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.7em;
  border-radius: 5px;
}
.answer img {
  width: 35px;
  height: 35px;
}
.question-area {
  background: #fff;
  padding: 5% 2%;
}

/* registration_temporary */
.secret-content {
  position: absolute;
  left: -9999px;
  opacity: 0;
  z-index: -1;
}
.contents-title {
  margin-bottom: 20px;
  font-size: 1.2em;
  font-weight: normal;
  text-shadow: 0 0 2px rgba(100, 100, 100, .1),
  0 0 2px rgba(100, 100, 100, .1),
  0 0 2px rgba(100, 100, 100, .1),
  0 0 2px rgba(100, 100, 100, .1),
  0 0 2px rgba(100, 100, 100, .1),
  0 0 2px rgba(100, 100, 100, .1),
  0 0 2px rgba(100, 100, 100, .1),
  0 0 2px rgba(100, 100, 100, .1);
}
.info-text {
  font-size: .75em;
}
.input-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.radio-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.radio-item input {
  margin: 0;
}
.input-item + .input-item, .radio-item + .radio-item {
  margin-top: 10px;
}
.input-item label {
  width: 280px;
  font-size: .75em;
  line-height: 1.5;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 1em;
}
.input-box {
  width: calc(100% - 280px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.input-box input {
  width: 100%;
  padding: 10px;
  font-size: .75em;
  border: 1px solid rgb(200, 200, 200);
}
.input-box input[type="file"] {
  padding: 5px 0;
  border: none;
}
.input-box select {
  width: calc((100% - 10px) / 2);
  padding: 5px;
  font-size: .75em;
  border: 1px solid rgb(200, 200, 200);
}
.input-box select option {
  padding: 0;
}
.input-box input.disable {
  background: rgb(230, 230, 230);
}
.input-box.input2 input {
  width: calc((100% - 10px) / 2);
}
.radio-item label {
  width: 150px;
  font-size: .75em;
  line-height: 1.0;
}
.radio-item p {
  width: calc(100% - 290px);
}
.base-content-box h1 .required-style {
  padding: 3px 7px;
  border: 1px solid #fff;
  margin-left: 5px;
  display: inline;
  color: rgb(255, 255, 255);
  font-size: 11px;
  background: rgba(238, 100, 100, 0.9);
  font-weight: normal;
  vertical-align: middle;
}
.input-item .required-style {
  padding: 5px 10px;
  display: inline;
  color: rgb(255, 255, 255);
  font-size: 11px;
  background: #f87282;
}
.base-content-box h1 .optional-style {
  padding: 5px 10px;
  margin-left: 5px;
  display: inline;
  color: rgb(255, 255, 255);
  font-size: 11px;
  background: rgba(20, 80, 140, .9);
  font-weight: normal;
  vertical-align: middle;
}
.input-item .optional-style {
  padding: 5px 10px;
  display: inline;
  color: rgb(255, 255, 255);
  text-align: left;
  font-size: 11px;
  background: #7298f8;
}
.terms {
  padding: 5px 0 5px 5px;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(200, 200, 200);
}
.terms .scroll {
  width: 100%;
  height: 200px;
  padding: 5px;
  overflow-y: scroll;
  background: #fff;
}
.rule {
  display: block;
  text-align: center;
  font-size: .75em;
}
.rule input[type="checkbox"] {
  margin: 0;
  transform: scale(1.2);
}

/* account */
.password-check-field label {
  font-size: .75em;
}
.password-check-field input[type="checkbox"] {
  margin: 0;
}
.fix.content-info dl dt {
  width: 230px;
  font-size: .75em;
}
.auxiliary {
  margin-left: 20px;
}
.clear.input-item {
  margin: 0;
}
.input-item .pass-show-check {
  width: auto;
}
.input-item .pass-show-check input {
  width: auto;
  margin: 0;
}
.radio-select-item input {
  margin: 0;
}
.radio-select-item input[type="text"] {
  padding: 5px;
  border: 1px solid rgb(200, 200, 200);
}
.radio-select-item .specialist-num input {
  vertical-align: bottom;
}
.radio-select-item + .radio-select-item {
  margin-top: 10px;
}
.radio-select-item label {
  display: block;
  font-size: .75em;
}
.radio-item.layout label {
  margin-bottom: 1em;
}
.radio-select-item p {
  width: calc(100% - 290px);
}
.radio-select-item .specialist-num {
  padding-left: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.specialist-num input {
  padding: 5px;
  font-size: 1em;
  border: 1px solid rgb(200, 200, 200);
}
.input-box.input2 .inner-num {
  width: calc((100% - 10px) / 2);
  display: flex;
  align-items: center;
}
.input-box.input2 .inner-num label {
  width: 4em;
  margin-right: 10px;
  text-align: right;
}
.input-box.input2 div input {
  width: calc(100% - 4em - 10px);
}

/* group */
.group-item dl dt {
  width: 200px;
}
.participant-detail + .participant-detail {
  margin-top: 30px;
}
.participant-detail-header {
  margin-bottom: 10px;
  display: flex;
}

/* mypage */
.students-info {
  margin-bottom: 20px;
  font-size: 0.75em;
}
.contents-box {
  margin: 0 auto;
  display: grid;
  align-items: center;
  gap: 30px 20px;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
}
.icon0,
.icon1,
.icon2,
.icon3,
.icon4,
.icon5,
.icon6,
.icon7,
.icon8,
.icon9,
.icon10,
.icon11,
.icon12 {
  width: 110px;
  height: 110px;
  position: absolute;
  top: 70px;
  left: 50%;
  z-index: 5;
  transform: translateX(-50%);
}
.circle0,
.circle1,
.circle2,
.circle3,
.circle4,
.circle5,
.circle6,
.circle7,
.circle8,
.circle9,
.circle10,
.circle11,
.circle12 {
  width: 110px;
  height: 110px;
  position: absolute;
  top: 70px;
  left: 50%;
  z-index: 4;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 50%;
}
.play > p {
  width: 100%;
  margin: 0;
  position: absolute;
  top: 170px;
  left: 50%;
  z-index: 3;
  text-align: center;
  letter-spacing: .2rem;
  font-size: 16px;
  font-weight: bold;
  line-height: 20px;
  transform: translateX(-50%);
}
.guard {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
}
.mypage-btn0,
.mypage-btn1,
.mypage-btn2,
.mypage-btn3,
.mypage-btn4,
.mypage-btn5,
.mypage-btn6,
.mypage-btn7,
.mypage-btn8,
.mypage-btn9,
.mypage-btn10,
.mypage-btn11,
.mypage-btn12 {
  width: 100%;
  height: 40%;
  position: absolute;
  z-index: 3;
  background: #6f8be7;  
}
.mypage-btn0 p,
.mypage-btn1 p,
.mypage-btn2 p,
.mypage-btn3 p,
.mypage-btn4 p,
.mypage-btn5 p,
.mypage-btn6 p,
.mypage-btn7 p,
.mypage-btn8 p,
.mypage-btn9 p,
.mypage-btn10 p,
.mypage-btn11 p,
.mypage-btn12 p {
  text-align: center;
  font-weight: bold;
  color:#fff;
  z-index: 4;
  margin-top: 10px;
}
.play .non-active {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
  z-index: 6;
  background: rgba(200, 200, 200, .6);
}
.play .non-active-text {
  position: absolute;
  top: 80%;
  font-weight: bold;
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  z-index: 6;
}
.play {
  width: 235px;
  height: 220px;
  position: relative;
  color: rgb(45, 45, 45);
  background: rgba(238, 236, 236, 0.6);
  overflow: hidden;
  transition: .5s ease-in-out;
  border-radius: 5px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .15);
}
.play:hover {
  color: rgb(20, 20, 20);
}
.play span {
  display: block;
  font-size: 14px;
  line-height: 2;
}
.hover-area {
  width: 240px;
  height: 240px;
  width: 220px;
  height: 220px;
  position: absolute;
  top: 0;
  left: -101%;
  z-index: 2;
  background-size: 220% auto;
  transition: .7s;
}
.h-anime.hover-area {
  left: 0;
  z-index: 3;
  background-position: -90% 100%;
}

/* 参加登録 */
.base-content-box ul li {
  font-size: .75em;
}

/* download */
form .non-active {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 4;
  background: rgba(200, 200, 200, .6);
}
.out-side p {
  font-size: .75em;
}

/* qr */
.text-box + .text-box {
  margin-top: 20px;
}
.qr_box {
  background: #fff;
  padding: 1em;
  border-radius: 5px;
}
.qr-name::before {
  content: '■';
  font-size: 14px;
  color: rgb(137, 161, 241);
  display: inline-block;
  margin-right: 8px;
}
.print-open {
  display: none; /* 初期状態では非表示 */
}

/* video_introduction */
.video-introduction-container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.video-introduction-container + .video-introduction-container {
  margin-top: 50px;
}
.video-introduction-visual-wrap {
  width: 50%;
}
.video-introduction-visual {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
}
.video-introduction-visual iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-introduction-visual-contents {
  /* 100% - video-introduction-visual-wrap(50%) - 30px */
  /* 余白30px */
  width: calc(100% - 50% - 30px);
}
.video-introduction-visual-contents h1 {
  font-size: .9em;
}

/* クレジット決済 */
.credit-error-message {
  color: rgb(255, 0, 0);
  font-size: .75em;
}
.content-info .amount {
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
}
.input-detail-text {
  margin: 20px auto 10px auto;
}

/* コンビニ決済 */
.convenience ol {
  padding-left: 1em;
  margin: 5px 0 0 0;
}
.convenience ol li {
  padding-left: .5em;
  font-size: .75em;
  list-style: decimal;
}
.convenience ol li + li {
  margin-top: 5px;
}

/* pay.jp用スタイル */
.input-box .payjs-outer {
  width: 100%;
  padding: 5px;
  border: 1px solid rgb(200, 200, 200);
  background: #fff;
}

/* ブラウザバック用アラート */
.confirm {
  max-width: 450px;
  width: 95%;
  height: 130px;
  padding: 10px;
  position: fixed;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  border-radius: 5px;
  border: 1px solid rgb(200, 200, 200);
  background: rgb(250, 250, 250);
  transition: .3s;
  visibility: hidden;
  opacity: 0;
  z-index: 5;
}
.modal-in.confirm {
  top: 0;
  visibility: visible;
  opacity: 1;
}
.confirm-scroll {
  height: 70px;
  margin-bottom: 10px;
  font-size: .75em;
  overflow-y: scroll;
}
.confirm-flex {
  display: flex;
  justify-content: flex-end;
}
.confirm button {
  width: 80px;
  padding: 5px 4px;
  font-weight: bold;
  font-size: .6em;
  border: 1px solid rgb(200, 200, 200);
  border-radius: 5px;
  transition: .3s;
  cursor: pointer;
}
.confirm-consent {
  color: rgb(255, 255, 255);
  background: rgb(70, 120, 235);
}

@media print {
  .print-open {
    display: block; /* 印刷時に表示 */
  }
  .print-none {
    display: none;
  }
}

@media (max-width: 1199px) {
  /* mypage */
  .icon, .circle,
  .icon0, .circle0,
  .icon1, .circle1,
  .icon2, .circle2,
  .icon3, .circle3,
  .icon4, .circle4,
  .icon5, .circle5,
  .icon6, .circle6,
  .icon7, .circle7,
  .icon8, .circle8,
  .icon9, .circle9,
  .icon10, .circle10,
  .icon11, .circle11,
  .icon12, .circle12 {
    width: 80px;
    height: 80px;
  }
  .play > p {
    top: 120px;
  }
  .play {
    width: 180px;
    height: 180px;
  }
  .hover-area {
    width: 180px;
    height: 180px;
    background: none;
  }
  .play span {
    font-size: 11px;
  }
}
@media (max-width: 1023px) {
  /* common */
  .login-name {
    display: none;
  }
  .logout-item {
    /* width: 30%; */
  }

  /* sidebar */
  .container.side {
    display: block;
  }
  .content-wrap {
    padding: 0;
  }
  .side-bar {
    width: 100%;
    margin: 20px 0 0 0;
    font-size: 20px;
  }

  /* mypage */
  .icon, .circle,
  .icon0, .circle0,
  .icon1, .circle1,
  .icon2, .circle2,
  .icon3, .circle3,
  .icon4, .circle4,
  .icon5, .circle5,
  .icon6, .circle6,
  .icon7, .circle7,
  .icon8, .circle8,
  .icon9, .circle9,
  .icon10, .circle10,
  .icon11, .circle11,
  .icon12, .circle12 {
    width: 100px;
    height: 100px;
  }
  .play > p {
    top: 140px;
  }
  .play,
  .hover-area {
    width: 200px;
    height: 200px;
  }
  .hover-area {
    background: none;
  }
}
@media (max-width: 767px) {
  .logout-item {
    display: none;
  }
  .main-contents {
    padding: 1em;
  }
  .bar-revision {
    margin-left: 0;
  }
  /* .logout-item {
    width: 70%;
  } */
  .logout-link {
    font-size: 0.5em;
  }
  .login-box {
    display: block;
  }
  .login-button-area {
    margin: 0 auto;
    width: 150px;
  }
  .login-button-area button {
    height: auto;
    padding: 10px;
  }
  .login-input-field {
    padding: 0;
  }
  .step-bar .step-item:not(:last-child)::before,
  .step-bar .step-item:not(:last-child)::after {
    border: 10px solid transparent;
  }
  /* common */
  .main-header {
    padding: 0 15px;
  }
  .header-text {
    font-size: 14px;
  }

  /* lang */
  .sel,
  .sel-area {
    width: 100px;
  }
  .sel::before,
  .sel-placeholder,
  .sel-option {
    font-size: 14px;
  }

  /* stepbar */
  .step-bar {
    font-size: 14px;
  }

  /* top scroll */
  .scroll-hidden-contents {
    width: 40px;
    height: 40px;
    right: 15px;
    bottom: 15px;
  }
  .page-top {
    width: 40px;
    height: 40px;
  }

  /* sidebar */
  .side-bar {
    font-size: 18px;
  }

  /* top */
  .main-area {
    font-size: 18px;
  }
  .container {
    padding: 15px;
  }
  .reg-container,
  .reg-today-container {
    padding: 15px;
  }
  .content-info {
    padding: 15px;
  }
  .content-info.scroll-wrap {
    padding: 15px 0 15px 15px;
  }
  .content-info .scroll {
    padding-right: 15px;
  }
  .content-info dl {
    display: block;
  }
  .content-info dl + dl {
    margin-top: 10px;
  }
  .content-info dl dt {
    width: 100%;
    font-weight: bold;
  }
  .multiple-items p + p {
    margin-top: 0;
  }

  /* registration_temporary */
  .contents-title {
    font-size: .9em;
  }
  .input-item .sp-inline {
    margin-right: 5px;
    display: inline;
  }
  .input-item {
    display: block;
  }
  .input-item label {
    width: 100%;
    padding: 0.5em;
    /* margin: 0.5em; */
  }
  .input-box {
    width: 100%;
  }

  /* mypage */
  .contents-box {
    gap: 15px;
    grid-template-columns: 1fr 1fr;
  }
  .icon, .circle,
  .icon0, .circle0,
  .icon1, .circle1,
  .icon2, .circle2,
  .icon3, .circle3,
  .icon4, .circle4,
  .icon5, .circle5,
  .icon6, .circle6,
  .icon7, .circle7,
  .icon8, .circle8,
  .icon9, .circle9,
  .icon10, .circle10,
  .icon11, .circle11,
  .icon12, .circle12 {
    width: 80px;
    height: 80px;
    top: 40px;
  }
  .play > p {
    letter-spacing: .1rem;
    top: 105px;
  }
  .play,
  .hover-area {
    width: 140px;
    height: 140px;
  }
  .play .non-active-text {
    font-size: 12px;
  }
  .play span {
    line-height: 1.2;
  }

  /* video_introduction */
  .video-introduction-container {
    display: block;
  }
  .video-introduction-visual-wrap {
    width: 100%;
  }
  .video-introduction-visual-contents {
    width: 100%;
  }
  .video-introduction-visual-contents h1 {
    font-size: .75em;
  }

  /* クレジット決済 */
  .content-info .amount {
    font-size: 1.2em;
  }

  /* ブラウザバック用アラート */
  .confirm {
    font-size: 18px;
  }
}