@charset "UTF-8";
@import url(../css/font.css);
html {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overscroll-behavior-y: none;
  font-size: 62.5%;
}

body {
    width: 100%;
    font-weight: 400;
    font-size: 1.5rem;
    font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Helvetica Neue", Arial, "メイリオ", meiryo, sans-serif;
}

/*@media all and (-ms-high-contrast: none) {
  body {
    font-family: "メイリオ", Meiryo, sans-serif;
  }
}
*/
img {
  -webkit-backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

main {
    position: relative;
    padding-bottom: 4em;
    line-height: 1.8;
}
@media screen and (min-width: 768px) {
    main {
        padding-bottom: 8em;
    }
}

/* passwordIcon*/
::-ms-reveal {
  display: none;
}

input::-webkit-contacts-auto-fill-button {
  display: none !important;
  visibility: hidden;
  position: absolute;
  right: 0;
  background-color: transparent !important;
  pointer-events: none;
}

/* header */
.header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #fff;
}

@media screen and (min-width: 768px) {
    .header {
        height: 70px;
        padding-right: 100px;
    }
}

.header__logo {
    display: flex;
    align-items: center;
    flex: 1 0 10%;
    flex-wrap: wrap;
    height: 60px;
    margin-left: 2%;
}

@media screen and (min-width: 768px) {
    .header__logo {
        height: auto;
    }
}

.header__name {
    width: 100%;
    padding: .3em;
    background-color: #f1f3f4;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .header__name {
        width: auto;
        padding: 0;
        padding-left: 1em;
        background-color: transparent;
        text-align: left;
    }
}

.header__ttl {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    height: 100px;
    padding: 0 .5em;
    background: rgb(92, 165, 222);
    background: linear-gradient(56deg, rgb(92, 165, 222) 63%, rgb(132, 192, 236) 100%);
    color: #fff;
    text-align: center;
    letter-spacing: .1em;
    font-weight: 500;
    font-size: 2rem;
}

@media screen and (min-width: 768px), print {
    .header__ttl {
        height: 110px;
        font-size: 3.2rem;
    }
}
.header__ttl::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/common/ttl-bg.svg);
    background-position: right -30px top;
    background-size: 340px auto;
    background-repeat: no-repeat;
    content: "";
}

/* nav */
.nav__toggle {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    display: inline-block;
    width: 60px;
    height: 60px;
    outline: none;
    border: none;
    background-color: #4f95d1;
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    .nav__toggle {
        width: 70px;
        height: 70px;
    }
}

.nav__toggle span {
    position: absolute;
    left: 25%;
    display: inline-block;
    width: 50%;
    height: 3px;
    border-radius: 5px;
    background-color: #fff;
    transition: all .5s;
}

    .nav__toggle span:nth-of-type(1) {
        top: 22%;
    }

    .nav__toggle span:nth-of-type(2) {
        top: 37%;
    }

    .nav__toggle span:nth-of-type(3) {
        top: 52%;
    }

.is-open .nav__toggle span:nth-of-type(1),
.is-open .nav__toggle span:nth-of-type(3) {
    width: 10px;
}

.is-open .nav__toggle span:nth-of-type(1) {
    transform: translate(0, 7px) rotate(-45deg);
}

.is-open .nav__toggle span:nth-of-type(3) {
    transform: translate(0, -7px) rotate(45deg);
}

.nav__toggle::before,
.nav__toggle::after {
    position: absolute;
    bottom: 30%;
    left: 50%;
    z-index: 10;
    display: block;
    width: 100%;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    font-size: 1.1rem;
    transition: all .4s;
    transform: translateY(0) translateX(-50%);
}

.nav__toggle::before {
    content: "MENU";
    opacity: 1;
    transform: translateY(10px) translateX(-50%);
}

.nav__toggle::after {
    content: "CLOSE";
    opacity: 0;
    transform: translateY(15px) translateX(-50%);
}

.is-open .nav__toggle::before {
    opacity: 0;
    transform: translateY(0px) translateX(-50%);
}

.is-open .nav__toggle::after {
    opacity: 1;
    transform: translateY(10px) translateX(-50%);
}

.nav {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 5;
    display: flex;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    opacity: 1;
    transition: all .3s;
    transform: rotate(.03deg);
}

@media screen and (min-width: 768px) {
    .nav {
        min-width: 350px;
        width: 50%;
        height: 100%;
    }
}

@media screen and (min-width: 1200px), print {
    .nav {
        width: 40%;
    }
}

.is-open .nav {
    right: 0;
    opacity: 1;
    transition: all .3s;
}

.nav__bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 4;
    visibility: hidden;
    width: 100%;
    height: 100%;
    background-color: rgba(79, 149, 209, .9);
    opacity: 0;
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    .is-open .nav__bg {
        visibility: visible;
        opacity: 1;
        transition: all .5s ease;
    }
}

.nav__list {
    width: 100%;
    margin: 80px 1em 0 1em;
    border-top: 1px solid #dce0e7;
    list-style: none;
}

@media screen and (min-width: 768px) {
    .nav__list {
        margin: 120px 3em 0 3em;
    }
}

.nav__item {
    position: relative;
    overflow: hidden;
    padding: 0;
    border-bottom: 1px solid #dce0e7;
}

    .nav__item::after {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: #4f95d1;
        content: "";
        transition: transform .3s;
        transform: scale(0, 1);
        transform-origin: right top;
    }

    .nav__item:hover::after {
        transform: scale(1, 1);
        transform-origin: left top;
    }

    .nav__item a {
        position: relative;
        display: flex;
        align-items: center;
        padding: 1em 1.5em 1em 0;
        color: #000;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.8rem;
        opacity: 0;
        transition: transform .5s ease .2s, opacity .5s ease .2s, color .3s;
        transform: translateY(100%);
    }

@media screen and (min-width: 768px) {
    .nav__item a {
        padding: 1.5em 1.5em 1.5em 0;
        font-size: 2.2rem;
    }
}

.is-open .nav__item a {
    opacity: 1;
    transform: translateY(0);
}

.nav__item a:hover {
    color: #4f95d1;
}

.nav__item a:before {
    position: absolute;
    right: 0;
    color: #4f95d1;
    content: "\e900";
    font-family: "icomoon" !important;
}

/* page common */
/* page common */
.page__container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page__ttl {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    height: 100px;
    padding: 0 .5em;
    background: rgb(92, 165, 222);
    background: linear-gradient(56deg, rgb(92, 165, 222) 63%, rgb(132, 192, 236) 100%);
    color: #fff;
    text-align: center;
    letter-spacing: .1em;
    font-weight: 500;
    font-size: 2rem;
}

@media screen and (min-width: 768px) {
    .page__ttl {
        height: 110px;
        font-size: 3.2rem;
    }
}

.page__ttl::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/common/ttl-bg.svg);
    background-position: right -30px top;
    background-size: 340px auto;
    background-repeat: no-repeat;
    content: "";
}

@media screen and (min-width: 768px) {
    .page__ttl::before {
        right: 5%;
        background-position: right top;
        background-size: 500px auto;
    }
}

.info__ttl {
    width: 100%;
    margin-top: .6em;
    margin-bottom: 1em;
    font-weight: 500;
    font-size: 1.9rem;
    line-height: 1;
}

@media screen and (min-width: 768px) {
    .info__ttl {
        width: 22%;
        font-size: 2.6rem;
    }
}

.info__ttlEng {
    margin-right: .5em;
    color: #4f95d1;
    font-style: normal;
    font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
    .info__ttlEng {
        display: block;
        margin-right: 0;
        margin-bottom: 1.5em;
        font-size: 1.4rem;
    }
}

.info__list {
    flex: 1 0 10%;
    list-style: none;
    letter-spacing: normal;
}

.info__item {
    position: relative;
    padding: 1em 0 1em 1.5em;
    border-top: 1px solid #dce0e7;
}

    .info__item:first-child {
        border-top: none;
    }

    .info__item::before {
        position: absolute;
        top: .6em;
        left: 0;
        color: #4f95d1;
        content: "\e901";
        font-size: 2rem;
        font-family: "icomoon";
    }

.history__box {
    position: relative;
    margin-top: 5em;
    padding: 1em;
    background-color: #fff;
}

@media screen and (min-width: 768px) {
    .history__box {
        margin-top: 6em;
        padding: 2em;
    }
}

.history__ttl {
    position: absolute;
    top: -40px;
    left: 0;
    display: inline-block;
    clip-path: polygon(0 0, 88% 0, 100% 100%, 0% 100%);
    height: 40px;
    padding: .2em 2.5em .2em 1em;
    background-color: #4f95d1;
    color: #fff;
    font-weight: 500;
    font-size: 1.8rem;
}

@media screen and (min-width: 768px) {
    .history__ttl {
        top: -50px;
        min-width: 380px;
        height: 50px;
        padding: .2em 3em .2em 2em;
        letter-spacing: .1em;
        font-size: 2.2rem;
    }
}

.history__list {
    overflow-y: scroll;
    height: 350px;
    list-style: none;
    letter-spacing: normal;
}

@media screen and (min-width: 768px) {
    .history__list {
        height: 250px;
    }
}

.history__item {
    position: relative;
    padding: 1em 0 1em 1.5em;
    border-top: 1px solid #dce0e7;
}

@media screen and (min-width: 768px) {
    .history__item {
        display: flex;
        flex-wrap: wrap;
    }
}

.history__item:first-child {
    border-top: none;
}

.history__item::before {
    position: absolute;
    top: .6em;
    left: 0;
    color: #4f95d1;
    content: "\e901";
    font-size: 2rem;
    font-family: "icomoon";
}

.history__item > p {
    margin-right: 1em;
}

.history__cate {
    position: relative;
    margin-right: 1em;
    padding-right: 2em;
}

@media screen and (min-width: 768px) {
    .history__cate::after {
        position: absolute;
        top: 50%;
        right: 0;
        content: "│";
        transform: translateY(-50%);
    }
}

.history__tag {
    display: inline-block;
    margin-right: .5em;
    padding: 0 .5em;
    background-color: #fc0210;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.4;
}

p.note {
    /* 「※ 」分だけ右にずらす */
    margin-left: 1.5em;
    /* １行目（※）を戻す */
    text-indent: -1.5em;
}

/* mainMenu */
.mainMenu {
    padding: 3em 0;
    border-top: 2px solid #fff;
    background-color: #8dbbe3;
}

@media screen and (min-width: 768px) {
    .mainMenu {
        padding: 4em 0;
    }
}

.mainMenu__list {
    list-style: none;
}

.mainMenu__btn {
    position: relative;
    display: block;
    overflow: hidden;
    width: calc((100% - 2em) / 2);
    height: 165px;
    margin: 0 .5em 1.5em .5em;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 10px 0 #2f6089;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    transition: all .2s;
}

@media screen and (min-width: 768px) {
    .mainMenu__btn {
        width: calc((100% - 4.8em) / 3);
        margin: 0 .8em 2.6em .8em;
    }
}

@media screen and (min-width: 1200px), print {
    .mainMenu__btn {
        width: calc((100% - 8em) / 5);
    }
}

.mainMenu__btn::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    width: 50px;
    height: 40px;
    background-color: #0fa1dd;
    content: "";
}

.mainMenu__btn > a {
    position: relative;
    z-index: 1;
    display: block;
    height: 100%;
    color: #000;
    text-decoration: none;
    transition: all .2s;
}

    .mainMenu__btn > a:hover {
        color: #0fa1dd;
    }

.mainMenu__btn:hover {
    background-color: #d8e6f5;
    box-shadow: none;
    transform: translateY(10px);
}

.mainMenu__btnImg {
    width: auto;
    height: 66px;
    margin-top: 1em;
}

.mainMenu__btnText {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    margin: .3em .3em 0 .3em;
    font-style: normal;
    font-size: 1.6rem;
    line-height: 1.4;
}

@media screen and (min-width: 768px) {
    .mainMenu__btnText {
        height: 60px;
        margin: .3em .5em 0 .5em;
        font-size: 1.8rem;
    }
}

.mainMenu__btn i {
    position: absolute;
    right: .2em;
    bottom: .2em;
    z-index: 1;
    display: inline-block;
    color: #fff;
    font-size: 1.8rem;
}

.mainMenu__subBtn {
    display: block;
    overflow: hidden;
    min-width: 270px;
    height: 70px;
    margin: 1.5em .5em 0 .5em;
    border-radius: 10px;
    background-color: #0fa1dd;
    box-shadow: 0 10px 0 #2f6089;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    transition: all .2s;
}

@media screen and (min-width: 768px) {
    .mainMenu__subBtn {
        min-width: 295px;
        margin: 1em .8em 0 .8em;
    }
}

.mainMenu__subBtn > a {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    height: 100%;
    padding: 0 1.5em;
    color: #fff;
    text-decoration: none;
    transition: all .2s;
}

.mainMenu__subBtn:hover {
    background-color: #484d52;
    box-shadow: none;
    transform: translateY(10px);
}

.mainMenu__subBtnText {
    display: inline-block;
    margin-left: 1em;
    font-style: normal;
    font-size: 1.6rem;
    line-height: 1.4;
}

@media screen and (min-width: 768px) {
    .mainMenu__subBtnText {
        font-size: 1.8rem;
    }
}

.mainMenu__subBtn i {
    position: absolute;
    top: 50%;
    right: .5em;
    display: inline-block;
    color: #fff;
    font-size: 1.8rem;
    transform: translateY(-50%);
}

.mainMenu__subBtn img {
    filter: invert(92%) sepia(57%) saturate(1%) hue-rotate(254deg) brightness(107%) contrast(100%);
}

/* information */
.info {
  margin-top: 3em;
  margin-bottom: 4em;
}

@media screen and (min-width: 768px), print {
  .info {
/*    margin-top: 8em;
    margin-bottom: 8em;*/
/* 2023.04.13 upd*/
    margin-top: 4em;
    margin-bottom: 2em;
  }
}

.info__ttl {
    width: 100%;
    margin-top: .6em;
    margin-bottom: 1em;
    font-weight: 500;
    font-size: 1.9rem;
    line-height: 1;
}

@media screen and (min-width: 768px) {
    .info__ttl {
        width: 22%;
        font-size: 2.6rem;
    }
}

.info__ttlEng {
    margin-right: .5em;
    color: #4f95d1;
    font-style: normal;
    font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
    .info__ttlEng {
        display: block;
        margin-right: 0;
        margin-bottom: 1.5em;
        font-size: 1.4rem;
    }
}

.info__list {
    flex: 1 0 10%;
    list-style: none;
    letter-spacing: normal;
}

.info__item {
  position: relative;
  margin-bottom: 1em;
  padding: 0 0 1.5em 1.8em;
  border-bottom: 1px solid #ebe8e8;
}

    .info__item:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "\e901";
        color: #4f95d1;
        font-family: "icomoon" !important;
    }

/* rule */
.rule__ttl {
  position: relative;
}

.rule__item {
  margin-bottom: 2.5em;
  padding: 0 .5em;
}

.text_position{
    text-align:left;
}
@media screen and (min-width: 768px), print {
    .text_position {
        text-align:center;
    }
}

.rule__item:last-child {
  margin-bottom: 0;
}

/* account */
.account__wrap {
  padding: 2em 0 6em 0;
  text-align: center;
}

@media screen and (min-width: 1200px), print {
  .account__wrap {
    padding: 4em 0 6em 0;
  }
}

/* login */
.login__wrap {
    max-width: 800px;
    margin-right: 1em;
    margin-left: 1em;
    padding: 2em 1em 3em 1em;
    border: 5px solid #fff;
    border-radius: 40px;
    background-color: #ebf2fa;
}

@media screen and (min-width: 768px) {
    .login__wrap {
        margin-inline: auto;
        padding: 4em;
        border: 10px solid #fff;
    }
}

.login__wrap .btn__basic {
    width: 100%;
}

.login__ttl {
    position: relative;
    margin-bottom: 1em;
    color: #2e76b8;
    text-align: center;
    font-weight: 500;
    font-size: 2.2rem;
}

@media screen and (min-width: 768px) {
    .login__ttl {
        margin-bottom: 2em;
        font-size: 2.8rem;
    }
}

.login__item {
    margin-top: 1.8em;
    font-size: 1.6rem;
}

@media screen and (min-width: 768px) {
    .login__item {
        font-size: 1.8rem;
    }
}

.login__item:first-child {
    margin-top: 0;
}

.login__item input[type=email],
.login__item input[type=password],
.login__item input[type=text] {
    margin: 0 .3em;
    padding: .2em .5em;
    transition: background .5s;
}

.login__item input[type=email] {
    width: 100%;
}

.login__item input[type=password],
.login__item input[type=text] {
    width: 88%;
}

@media screen and (min-width: 768px) {
    .login__item input[type=password],
    .login__item input[type=text] {
        width: 90%;
    }
}

.login__item:hover input {
    background-color: #f1f3f4;
}

.login__item ::placeholder {
    color: #a7a7a7;
    font-size: 1.5rem;
}

@media screen and (min-width: 768px) {
    .login__item ::placeholder {
        font-size: 1.8rem;
    }
}

.login__itemRe {
    padding: 1.5em 0 2em 0;
    border-bottom: 1px dotted #c4c4c4;
    font-size: 1.6rem;
}

@media screen and (min-width: 768px) {
    .login__itemRe {
        font-size: 1.8rem;
    }
}

.login__itemRe:first-child {
    padding-top: 0;
}

.login__itemRe input[type=email] {
    width: 100%;
}

.login__itemRe input,
.login__itemRe select {
    position: relative;
    padding: .6em;
    border: 2px solid #4f95d1;
    border-radius: 5px;
    background-color: #fff;
    color: #000;
    transition: all .5s;
}

@media screen and (min-width: 768px) {
    .login__itemRe input,
    .login__itemRe select {
        width: auto;
    }
}

.login__itemRe input:focus,
.login__itemRe select:focus {
    background-color: #e3eef9;
}

.login__itemRe input:hover,
.login__itemRe select:hover {
    background-color: #e3eef9;
}

.login__itemRe input:read-only {
    background-color: #ebf2fa;
}

.login__itemRe ::placeholder {
    color: #a7a7a7;
    font-size: 1.5rem;
}

@media screen and (min-width: 768px) {
    .login__itemRe ::placeholder {
        font-size: 1.8rem;
    }
}

.login__subject {
    margin-bottom: .5em;
    font-weight: 500;
    font-size: 1.7rem;
}

@media screen and (min-width: 768px) {
    .login__subject {
        display: flex;
        align-items: center;
        font-size: 1.9rem;
    }
}

.login__input {
    display: flex;
    align-items: center;
    padding: .8em 1em;
    border: 2px solid #4f95d1;
    border-radius: 50px;
    background-color: #fff;
}

@media screen and (min-width: 768px) {
    .login__input {
        padding: .8em 1.5em;
    }
}

.login__input > i {
    color: #4f95d1;
    font-size: 1.6rem;
}

@media screen and (min-width: 768px) {
    .login__input > i {
        font-size: 2.4rem;
    }
}

.login__2col {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

    .login__2col input {
        width: 100%;
        border-left: none;
        border-radius: 0 5px 5px 0;
    }

.login__2col--half {
    position: relative;
    width: 100%;
    margin-bottom: .5em;
}

@media screen and (min-width: 768px) {
    .login__2col--half {
        width: calc(50% - .5em);
        margin-right: 1em;
        margin-bottom: 0;
    }
}

.login__2col--half:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 768px) {
    .login__2col--half:last-child {
        margin-right: 0;
    }
}

.login__2col--halfItem {
    display: flex;
}

    .login__2col--halfItem > label {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 50px;
        border-radius: 5px 0 0 5px;
        background: rgb(79, 149, 209);
        background: linear-gradient(180deg, rgb(79, 149, 209) 27%, rgb(35, 128, 208) 100%);
        color: #fff;
        font-size: 1.5rem;
    }

@media screen and (min-width: 768px) {
    .login__2col--halfItem > label {
        width: 5em;
    }
}

.login__select {
    position: relative;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .login__select {
        width: auto;
    }
}

.login__select::after {
    position: absolute;
    top: 50%;
    right: 1em;
    z-index: 1;
    width: 10px;
    height: 10px;
    border-top: 3px solid #4f95d1;
    border-left: 3px solid #4f95d1;
    content: "";
    transform: translateY(-50%) rotate(-135deg);
    pointer-events: none;
}

/* 通常時（モバイル含む） */
.login__select--ymd {
    display: flex;
    flex-wrap: wrap; /* ここを追加 */
    align-items: center;
    width: 100%;
    margin-top: .5em;
}

/* 画面幅768px以上 */
@media screen and (min-width: 768px) {
    .login__select--ymd {
        /* flex-wrap: wrap; は上の定義で効くので省略可 */
        width: auto;
        margin-top: 0;
    }
}

.login__select--ymd:first-child {
    margin-top: 0;
}

.login__select select option {
    padding: 2em 1em;
    background-color: #fff;
}

.login__select select {
    position: relative;
    width: 100%;
    padding: .6em 2em .6em 1em;
    border: 2px solid #4f95d1;
    border-radius: 5px;
    background-color: #fff;
    color: #000;
    transition: all .5s;
}

    .login__select select:focus {
        background-color: #e3eef9;
    }

    .login__select select:hover {
        background-color: #e3eef9;
    }

.login__selectText {
    margin: 0 .5em;
    white-space: nowrap;
}

.login__pass {
    margin-top: 2em;
    text-align: center;
    font-size: 1.5rem;
}

@media screen and (min-width: 768px) {
    .login__pass {
        margin-top: 3em;
        text-align: right;
        font-size: 1.6rem;
    }
}

.login__text--small {
    margin-top: 1em;
    text-align: center;
    font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
    .login__text--small {
        margin-top: 3em;
    }
}

.login__lead {
    padding: 1em 0;
    border-top: 1px dotted #c4c4c4;
    border-bottom: 1px dotted #c4c4c4;
}


/* result */
.result__select {
  position: relative;
  margin: 0 1em;
  font-size: 1.6rem;
}

@media screen and (min-width: 768px), print {
  .result__select {
    width: 600px;
    margin: 0 auto;
    font-size: 2rem;
  }
}

.result__select select {
  position: relative;
  padding: .6em;
  border: 2px solid #d2d0d0;
  border-radius: 5px;
  background-color: #fff;
  transition: all .5s;
}

@media screen and (min-width: 768px), print {
  .result__select select {
    width: auto;
  }
}

.result__select select:focus {
    border: 2px solid #4f95d1;
}

.result__select select:hover {
    border: 2px solid #4f95d1;
}

.result__select::after {
  -webkit-transform: translateY(-50%) rotate(-135deg);
  z-index: 1;
  position: absolute;
  top: 50%;
  right: 1.3em;
  width: 10px;
  height: 10px;
  transform: translateY(-50%) rotate(-135deg);
  border-top: 3px solid #58483e;
  border-left: 3px solid #58483e;
  content: "";
  pointer-events: none;
}

.result__select select {
  width: 100%;
  padding: .6em 2.5em .6em 1em;
  border-radius: 5px;
}

.result__select select option {
  padding: 2em 1em;
}

.result__selectText {
  margin: 0 .5em;
}

@media screen and (min-width: 768px), print {
  .result__selectText {
    margin: 0 .5em 0 0;
  }
}

.result__tag {
  display: block;
  margin-bottom: 1em;
  padding: .2em 1em;
  border-radius: 5px;
  color: #fff;
  font-weight: 400;
  font-size: 1.8rem;
  text-align: center;
}

.result__tag2 {
    display: block;
    margin-bottom: 1em;
    padding: .2em 1em;
    border-radius: 5px;
    color: #fff;
    font-weight: 500;
    font-size: 2rem;
    text-align: center;
}

.result__tag3 {
    display: block;
    margin-bottom: 1em;
    border-radius: 5px;
    color: #fff;
    font-weight: 500;
    font-size: 2rem;
    text-align: center;
}

.result__tag4 {
    padding-bottom:0.1em;
    padding-left: 0.5em;
    padding-right: 0.5em;
    margin-bottom: 1em;
    border-radius: 5px;
    color: #fff;
    font-weight: 500;
    font-size: 2rem;
    text-align: center;
}

@media screen and (min-width: 768px), print {
  .result__tag {
    display: inline-block;
    position: absolute;
    top: 1em;
    right: 1.5em;
    min-width: 200px;
    margin-bottom: 0;
    font-size: 2.2rem;
  }
    .result__tag2 {
        display: inline-block;
       /* position: absolute;*/
        top: 1em;
        right: 385px;
        min-width: 300px;
        margin-bottom: 0;
        font-size: 2.5rem;
    }
    .result__tag3 {
        display: inline-block;
        position: relative;
        left: 100px;
        min-width: 100px;
        margin-bottom: 0;
        font-size: 2rem;
    }
}

.result__tag.-blue {
  background-color: #144ea4;
}
.result__tag.-red {
    background-color: #f30334;
}
.result__tag.-orange {
    background-color: orange;
}
.result__tag2.-blue {
    background-color: #144ea4;
}
.result__tag2.-red {
    background-color: #f30334;
}
.result__tag3.-red {
    background-color: #f30334;
}
.result__tag4.-red {
    background-color: #f30334;
}
.result__tag2.-orange {
    background-color: orange;
}
.result__tag2.-gray {
    background-color: gray;
}

.result__table {
  width: 100%;
  margin-top: 1em;
  border-collapse: separate;
  border-spacing: 0;
}

.result__table tr {
  text-align: center;
}

.result__table th,
.result__table td {
  padding: .5em 1em;
  border: 1px solid #c8c8c8;
  border-top: none;
  border-right: 1px solid #c8c8c8;
  border-left: none;
  font-size: 1.6rem;
  white-space: nowrap;
}

@media screen and (min-width: 768px), print {
  .result__table th,
  .result__table td {
    font-size: 1.6rem;
    white-space: normal;
  }
}

.result__table th:first-child,
.result__table td:first-child {
  border-left: 1px solid #c8c8c8;
}

.result__table th:last-child,
.result__table td:last-child {
  border-right: 1px solid #c8c8c8;
}

.result__table th {
  background-color: #58483e;
  color: #fff;
  font-weight: 400;
  white-space: nowrap;
}

.result__table th:first-child {
  position: sticky;
  left: 0;
  text-align: left;
}

.result__table td:first-child {
  background-color: #f2efef;
  text-align: left;
}

@media screen and (max-width: 767px), print {
  .result__table td:first-child {
    position: sticky;
    left: 0;
  }
}

.result__table td:last-child {
  font-weight: 700;
  font-size: 1.7rem;
}

.result__tableArea {
  -webkit-overflow-scrolling: touch;
  overflow-x: scroll;
}

@media screen and (min-width: 768px), print {
  .result__tableArea {
    -webkit-overflow-scrolling: auto;
    overflow-x: hidden;
  }
}

.result__text--red {
  color: #f30334;
}

.result__text--blue {
  color: #144ea4;
}

/* examContents */
.exam__table {
  position: relative;
  width: 100%;
  margin-top: 1em;
  border-collapse: separate;
  border-spacing: 0;
}

.exam__table tr {
  text-align: center;
}

@media screen and (min-width: 768px), print {
  .exam__table tr:hover {
    background-color: #edf6d8;
  }
}

.exam__table th,
.exam__table td {
  padding: .5em;
  border: 1px solid #c8c8c8;
  border-top: none;
  border-right: 1px solid #c8c8c8;
  border-left: none;
  white-space: nowrap;
}

@media screen and (min-width: 768px), print {
  .exam__table th,
  .exam__table td {
    padding: .5em 1em;
    font-size: 1.6rem;
    white-space: normal;
  }
}

.exam__table th:first-child,
.exam__table td:first-child {
  border-right: 1px solid #c8c8c8;
}

.exam__table th:last-child,
.exam__table td:last-child {
  border-right: 1px solid #c8c8c8;
}

.exam__table th {
  background-color: #58483e;
  color: #fff;
  font-weight: 400;
  font-size: 1.6rem;
  white-space: nowrap;
}

@media screen and (min-width: 768px), print {
  .exam__table th {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px), print {
  .exam__table th:first-child {
    position: sticky;
    left: 0;
  }
}

.exam__table td:first-child {
  background-color: rgba(242, 239, 239, 0.6);
  text-align: left;
}

@media screen and (max-width: 767px), print {
  .exam__table td:first-child {
    position: sticky;
    left: 0;
    background-color: #f2efef;
  }
}

.exam__table td:last-child {
  font-weight: 700;
  font-size: 1.7rem;
}

.exam__tableArea {
  -webkit-overflow-scrolling: touch;
  overflow-x: scroll;
}

@media screen and (min-width: 768px), print {
  .exam__tableArea {
    -webkit-overflow-scrolling: auto;
    overflow-x: hidden;
  }
}

.exam__info {
  margin: 2em 0 0 0;
}

.exam__infoTtl {
  display: block;
  margin-bottom: .5em;
  padding-bottom: .5em;
  border-bottom: 1px solid #000;
  font-weight: 700;
  font-size: 1.7rem;
  text-align: center;
}

.exam__infoItem {
  margin-bottom: .3em;
  padding-bottom: .3em;
  border-bottom: 1px dotted #ccc;
}

.exam__text--red {
  color: #f30334;
  font-weight: 700;
}

.exam__text--blue {
  color: #144ea4;
  font-weight: 700;
}

.exam__text--green {
    color: #4f95d1;
    font-weight: 700;
}

    /* 印刷時にのみ適用されるスタイル */
@media print {
    /* 全体のレイアウト調整 */
    /*body {
        font-size: 12pt;
        margin: 0;
        padding: 0;
    }*/

    /* ボタンや不要な要素を非表示 */
    .print__none, .btn__return {
        display: none;
    }

    ul.list__typeA_red {
        display: none !important;
    }

    .none--print {
        display: none !important;
    }

    /* 印刷の余白を最小限に設定 */
    @page {
        size: A4;
    }

}

.print__none{

}


/* apply */
.apply__flow {
    padding: 2em 1em 1em 1em;
    list-style: none;
}

@media screen and (min-width: 768px), print {
  .apply__flow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2em 1em;
  }
}

.apply__flowItem {
  position: relative;
  margin-bottom: 1em;
  padding: .5em .5em .5em 60px;
  background-color: #fefcf6;
  font-weight: 700;
}

@media screen and (min-width: 768px), print {
  .apply__flowItem {
    width: calc((100% - 6em) / 7);
    max-width: 180px;
    margin-right: 1em;
    margin-bottom: 0;
    padding: .5em;
    text-align: center;
  }
}

.apply__flowItem:last-child {
  margin-right: 0;
}

.apply__flowItem.-current {
  background-color: #e6f9b8;
}

.apply__flowItem::before {
    -webkit-transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 0;
    width: 50px;
    transform: translateY(-50%);
    border-right: 1px solid #58483e;
    content: attr(data-no);
    color: #4f95d1;
    font-weight: 400;
    font-size: 2.8rem;
    line-height: 1.3;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

@media screen and (min-width: 768px), print {
  .apply__flowItem::before {
    -webkit-transform: none;
    display: block;
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    margin-bottom: .3em;
    transform: none;
    border-right: none;
    border-bottom: 1px solid #58483e;
  }
}

.apply__flowItem::after {
  -webkit-transform: translateX(50%) rotate(90deg);
  position: absolute;
  right: 50%;
  bottom: -15px;
  width: 0;
  height: 0;
  transform: translateX(50%) rotate(90deg);
  border-width: 10px 0 10px 10px;
  border-style: solid;
  border-color: transparent transparent transparent #d2d0d0;
  content: "";
}

@media screen and (min-width: 768px), print {
  .apply__flowItem::after {
    -webkit-transform: translateY(-50%);
    top: 50%;
    right: -10px;
    bottom: auto;
    transform: translateY(-50%);
  }
}

.apply__flowItem.-current::after {
  border-color: transparent transparent transparent #58483e;
}

.apply__flowItem:last-child::after {
  border-width: 0 0 0 0;
}

.apply__comment {
  margin: 2em 1em;
}

@media screen and (min-width: 768px), print {
  .apply__comment {
    margin: 4em 1em;
  }
}

@media screen and (min-width: 1200px), print {
  .apply__comment {
    width: 1080px;
    margin-right: auto;
    margin-left: auto;
  }
}

.apply__questionItem {
  margin: 1em 0 0 0;
  font-size: 1.6rem;
  text-align: center;
}

@media screen and (min-width: 768px), print {
  .apply__questionItem {
    margin: 1.5em 0 0 0;
    font-size: 2rem;
  }
}

@media screen and (min-width: 768px), print {
  .apply__questionItem.form__checkbox > label {
    width: calc((100% - 3em) / 3);
    min-width: auto !important;
    max-width: 250px;
    margin-right: 1em;
  }
  .apply__questionItem.form__checkbox > label:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 1200px), print {
  .apply__questionItem.form__checkbox > label {
    width: 250px;
  }
}

.apply__questionItem--11 {
  width: 100%;
}

@media screen and (min-width: 768px), print {
  .apply__questionItem--11 {
    width: calc((100% - 3em) / 3);
    margin-right: 1em;
  }
  .apply__questionItem--11:last-child {
    margin-right: 0;
  }
}

.apply__questionItem--11 > label {
  width: 100% !important;
  min-width: auto !important;
  max-width: none !important;
}

.apply__questionShisetsu {
  margin: .5em 0 0 0;
  font-size: 1.6rem;
  text-align: center;
}

@media screen and (min-width: 768px), print {
  .apply__questionShisetsu {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
  }
}

.apply__questionShisetsu input[type="text"] {
  position: relative;
  width: 100%;
  margin-top: .5em;
  padding: .6em;
  border: 2px solid #d2d0d0;
  border-radius: 5px;
  background-color: #fff;
  transition: all .5s;
}

@media screen and (min-width: 768px), print {
  .apply__questionShisetsu input[type="text"] {
    width: calc(100% - 230px);
    margin-top: 0;
    margin-right: .5em;
  }
}

.apply__questionShisetsu input[type="text"]:focus {
    border: 2px solid #4f95d1;
}

.apply__questionShisetsu input[type="text"]:hover {
    border: 2px solid #4f95d1;
}

.apply__questionStore {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  margin: .5em 0 0 0;
  padding: 1em;
  background-color: rgba(242, 239, 239, 0.7);
  font-size: 1.6rem;
  text-align: center;
}

@media screen and (min-width: 768px), print {
  .apply__questionStore {
    font-size: 2rem;
  }
}

.apply__questionStore label {
  width: 100%;
}

@media screen and (min-width: 768px), print {
  .apply__questionStore label {
    flex: 1 0 10%;
  }
}

.apply__questionStore button {
    display: block;
    position: relative;
    margin-top: .5em;
    padding: .4em 3em .4em 1em;
    overflow: hidden;
    border-radius: 5px;
    outline: none;
    background-color: #737272;
    color: #fff;
    font-weight: 400;
    font-size: 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: all .5s;
}

@media screen and (min-width: 768px), print {
  .apply__questionStore button {
    display: inline-block;
    margin: 0 .5em;
    padding: .8em 3em .8em 2em;
  }
}

.apply__questionStore button:hover {
  background-color: #58483e;
  box-shadow: 0 0 20px rgba(161, 159, 159, 0.8);
}

/*.apply__questionStore button::before {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 52%;
  right: 1em;
  transform: translateY(-50%);
  content: "\f054";
  font-weight: normal;
  font-size: 1.4rem;
  font-family: "icomoon" !important;
}
*/
.apply__questionTextbox {
  display: none;
  margin-top: .5em;
}

.apply__questionTable {
  width: 100%;
  margin-top: 1em;
  border-collapse: separate;
  border-spacing: 0;
}

.apply__questionTable tr {
  text-align: center;
}

@media screen and (min-width: 768px), print {
  .apply__questionTable tr:hover {
    background-color: #edf6d8;
  }
}

.apply__questionTable th,
.apply__questionTable td {
    padding: .3em .5em;
    border: 1px solid #c8c8c8;
    border-top: none;
    border-right: 1px solid #c8c8c8;
    border-left: none;
    font-size: 1.4rem;
    white-space: nowrap;
}

@media screen and (min-width: 768px), print {
  .apply__questionTable th,
  .apply__questionTable td {
    padding: .3em 1em;
    font-size: 1.6rem;
    white-space: normal;
  }
}

.apply__questionTable th:last-child,
.apply__questionTable td:last-child {
  border-right: 1px solid #c8c8c8;
}

.apply__questionTable th {
  background-color: #404040;
  color: #fff;
  font-weight: 400;
  white-space: nowrap;
}

.apply__questionTable td:first-child {
  position: sticky;
  left: 0;
  background-color: #404040;
  background-color: #404040;
  color: #fff;
  font-weight: 400;
  white-space: nowrap;
}

.apply__questionTableArea {
  -webkit-overflow-scrolling: touch;
  overflow-x: scroll;
}

@media screen and (min-width: 1200px), print {
  .apply__questionTableArea {
    -webkit-overflow-scrolling: auto;
    overflow-x: hidden;
  }
}

.apply__note {
  margin-bottom: 1.5em;
  padding: 0 .5em;
}

@media screen and (min-width: 768px), print {
  .apply__note {
    margin-bottom: 2.5em;
  }
}

@media screen and (min-width: 768px), print {
  .apply__note:last-child {
    margin-bottom: 0;
  }
}

.apply__uplordNg {
  width: 100%;
  margin-top: 1em;
}

@media screen and (min-width: 1200px), print {
  .apply__uplordNg {
    flex: 1 0 10%;
    width: auto;
    margin-top: 0;
    text-align: right;
  }
}
@media screen and (min-width: 1200px), print {
    .upload-center {
        text-align: center;
    }
}

.apply__uplordNg > img {
  height: auto;
}


@media screen and (min-width: 768px), print {
  .apply__uplordNg > img {
    max-width: 500px;
  }
}

@media screen and (min-width: 1200px), print {
  .apply__uplordNg > img {
    max-width: 460px;
  }
}

.apply__uplordImg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 162px;
  height: 216px;
  margin: 0 1em;
  background-color: #ebe8e8;
}

.apply__uplordImg > img {
  max-width: 162px;
  height: auto;
  max-height: 216px;
}

.apply__uplordImg02 {
  flex: 1 0 10%;
  margin: 0 1em;
  text-align: center;
}

.apply__uplordImg02 > img {
  height: auto;
}

.apply__uplordBtn {
  width: 100%;
  margin-top: 1em;
}

@media screen and (min-width: 768px), print {
  .apply__uplordBtn {
    width: auto;
    margin: 0 1em;
  }
}

.apply__uplordBtn > button {
  display: block;
  width: 186px;
  margin: .8em auto;
}

@media screen and (min-width: 768px), print {
  .apply__uplordBtn > button {
    margin: .8em 0;
  }
}

.apply__pager {
  text-align: center;
}

.apply__pager select {
  position: relative;
  margin-bottom: 1em;
  padding: .6em 1em;
  border: 2px solid #d2d0d0;
  border-radius: 5px;
  background-color: #fff;
  font-size: 1.8rem;
  transition: all .5s;
}

    .apply__pager select:focus {
        border: 2px solid #4f95d1;
    }

    .apply__pager select:hover {
        border: 2px solid #4f95d1;
    }

.apply__pagerBtn {
  display: inline-block;
  position: relative;
  width: 50px;
  overflow: hidden;
  border-radius: 60px;
  background-color: #404040;
  color: #fff;
  font-weight: 400;
  line-height: 50px;
  text-decoration: none;
  transition: all .5s;
}

@media screen and (min-width: 768px), print {
  .apply__pagerBtn {
    margin: 0 .3em;
  }
}

.apply__pagerBtn:hover {
  background-color: #58483e;
}

.apply__price {
  margin-bottom: .3em;
  padding: .3em .5em;
  border-radius: 5px;
  background-color: #aee987;
  font-weight: 700;
  font-size: 2rem;
}

@media screen and (min-width: 1200px), print {
  .apply__price {
    display: inline-block;
  }
}

/* 決済完了画面 支払期限 */
.apply__limitday {    
    font-weight: 700;
    font-size: 2rem;
    color: #f30334;
}

/* 赤字 */
.apply__text--red
{
    color: #f30334;
}

/* 下線*/
.apply__under {
    text-decoration: underline;
}

/* 太字*/
.apply__bold {
    font-weight: bold;
}

.apply__linkTtl {
  margin-bottom: 1em;
  padding: .5em 1em;
  color: #fff;
  font-weight: 700;
  font-size: 1.7rem;
}

@media screen and (min-width: 768px), print {
  .apply__linkTtl {
    margin-bottom: 1.5em;
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 1200px), print {
  .apply__linkTtl {
    font-size: 2rem;
  }
}

.apply__linkTtl > i {
  margin-right: .5em;
}

.apply__co01 .apply__linkTtl {
  background-color: #b84533;
}

.apply__co02 .apply__linkTtl {
  background-color: #fcae38;
}

.apply__co03 .apply__linkTtl {
    background-color: #4f95d1;
}

.apply__co04 .apply__linkTtl {
  background-color: #159cb8;
}

.apply__co05 .apply__linkTtl {
  background-color: #144ea4;
}

.apply__co06 .apply__linkTtl {
  background-color: #8d5dcb;
}

.apply__co07 .apply__linkTtl {
  background-color: #982259;
}

.apply__co08 .apply__linkTtl {
  background-color: #ec637f;
}

.apply__link {
  display: block;
  margin: 0 auto;
  margin-top: 1em;
  padding: .5em;
  border: 3px solid;
  border-radius: 20px;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s;
}

@media screen and (min-width: 768px), print {
  .apply__link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 80px;
    padding: 0 2em;
    border-radius: 50px;
  }
}

.apply__link:first-child {
  margin-top: 0;
}

.apply__link:hover {
  box-shadow: 0 0 20px rgba(161, 159, 159, 0.8);
}

.apply__linkText {
  position: relative;
  font-size: 1.7rem;
}

@media screen and (min-width: 768px), print {
  .apply__linkText {
    flex: 1 0 10%;
    padding-right: 2em;
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 1200px), print {
  .apply__linkText {
    font-size: 2rem;
  }
}

.apply__linkText > i {
  margin-right: .5em;
  color: #58483e;
}

.apply__linkArrow {
  margin-top: .5em;
  padding: .5em;
  border-radius: 30px;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
}

@media screen and (min-width: 768px), print {
  .apply__linkArrow {
    margin-top: 0;
    padding: 0;
    border-top: none;
    border-radius: 0;
    color: #000;
    font-size: 1.6rem;
    text-align: left;
  }
}

@media screen and (min-width: 1200px), print {
  .apply__linkArrow {
    font-size: 1.8rem;
  }
}

.apply__linkArrow > i {
  margin-left: .5em;
}

.apply__linkArrow--cp {
  padding: .3em .1em .3em .5em;
  border: 1px solid #f30334;
  border-radius: 5px;
  background-color: #fff;
  color: #f30334;
  font-size: 1.3rem;
}

@media screen and (min-width: 768px), print {
  .apply__linkArrow--cp {
    padding: .3em .3em .3em 1em;
    border: none;
    background-color: #f30334;
    color: #fff;
  }
}

.apply__linkArrow > em {
  display: inline-block;
  width: 25px;
  margin-left: .5em;
  border-radius: 40px;
  background-color: #f30334;
  color: #fff;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 25px;
  text-align: center;
}

.apply__linkCheck {
  margin-top: 2em;
  padding: .5em;
  border-radius: 5px;
  background-color: #fff;
  font-size: 1.6rem;
  text-align: center;
}

@media screen and (min-width: 768px), print {
  .apply__linkCheck {
    font-size: 1.8rem;
  }
}

.apply__linkCheck--gray {
  background-color: #f6f5f5 !important;
}

.apply__co01 .apply__link {
  border-color: #b84533;
  background-color: rgba(184, 69, 51, 0.1);
}

.apply__co01 .apply__link:hover {
  background-color: rgba(184, 69, 51, 0.3);
}

.apply__co01 .apply__linkArrow {
  background-color: #b84533;
}

@media screen and (min-width: 768px), print {
  .apply__co01 .apply__linkArrow {
    background-color: transparent;
  }
}

@media screen and (min-width: 768px), print {
  .apply__co01 .apply__linkArrow > i {
    color: #b84533;
  }
}

.apply__co02 .apply__link {
  border-color: #fcae38;
  background-color: rgba(252, 174, 56, 0.1);
}

.apply__co02 .apply__link:hover {
  background-color: rgba(252, 174, 56, 0.3);
}

.apply__co02 .apply__linkArrow {
  background-color: #fcae38;
}

@media screen and (min-width: 768px), print {
  .apply__co02 .apply__linkArrow {
    background-color: transparent;
  }
}

@media screen and (min-width: 768px), print {
  .apply__co02 .apply__linkArrow > i {
    color: #fcae38;
  }
}

.apply__co03 .apply__link {
    border-color: #4f95d1;
    background-color: rgba(24, 183, 29, 0.1);
}

.apply__co03 .apply__link:hover {
  background-color: rgba(24, 183, 29, 0.3);
}

.apply__co03 .apply__linkArrow {
    background-color: #4f95d1;
}

@media screen and (min-width: 768px), print {
  .apply__co03 .apply__linkArrow {
    background-color: transparent;
  }
}

@media screen and (min-width: 768px), print {
    .apply__co03 .apply__linkArrow > i {
        color: #4f95d1;
    }
}

.apply__co04 .apply__link {
  border-color: #159cb8;
  background-color: rgba(21, 156, 184, 0.1);
}

.apply__co04 .apply__link:hover {
  background-color: rgba(21, 156, 184, 0.3);
}

.apply__co04 .apply__linkArrow {
  background-color: #159cb8;
}

@media screen and (min-width: 768px), print {
  .apply__co04 .apply__linkArrow {
    background-color: transparent;
  }
}

@media screen and (min-width: 768px), print {
  .apply__co04 .apply__linkArrow > i {
    color: #159cb8;
  }
}

.apply__co05 .apply__link {
  border-color: #144ea4;
  background-color: rgba(20, 78, 164, 0.1);
}

.apply__co05 .apply__link:hover {
  background-color: rgba(20, 78, 164, 0.3);
}

.apply__co05 .apply__linkArrow {
  background-color: #144ea4;
}

@media screen and (min-width: 768px), print {
  .apply__co05 .apply__linkArrow {
    background-color: transparent;
  }
}

@media screen and (min-width: 768px), print {
  .apply__co05 .apply__linkArrow > i {
    color: #144ea4;
  }
}

.apply__co06 .apply__link {
  border-color: #8d5dcb;
  background-color: rgba(141, 93, 203, 0.1);
}

.apply__co06 .apply__link:hover {
  background-color: rgba(141, 93, 203, 0.3);
}

.apply__co06 .apply__linkArrow {
  background-color: #8d5dcb;
}

@media screen and (min-width: 768px), print {
  .apply__co06 .apply__linkArrow {
    background-color: transparent;
  }
}

@media screen and (min-width: 768px), print {
  .apply__co06 .apply__linkArrow > i {
    color: #8d5dcb;
  }
}

.apply__co07 .apply__link {
  border-color: #982259;
  background-color: rgba(152, 34, 89, 0.1);
}

.apply__co07 .apply__link:hover {
  background-color: rgba(152, 34, 89, 0.3);
}

.apply__co07 .apply__linkArrow {
  background-color: #982259;
}

@media screen and (min-width: 768px), print {
  .apply__co07 .apply__linkArrow {
    background-color: transparent;
  }
}

@media screen and (min-width: 768px), print {
  .apply__co07 .apply__linkArrow > i {
    color: #982259;
  }
}

.apply__co08 .apply__link {
  border-color: #ec637f;
  background-color: rgba(236, 99, 127, 0.1);
}

.apply__co08 .apply__link:hover {
  background-color: rgba(236, 99, 127, 0.3);
}

.apply__co08 .apply__linkArrow {
  background-color: #ec637f;
}

@media screen and (min-width: 768px), print {
  .apply__co08 .apply__linkArrow {
    background-color: transparent;
  }
}

@media screen and (min-width: 768px), print {
  .apply__co08 .apply__linkArrow > i {
    color: #ec637f;
  }
}


.apply__co09 .apply__link {
    border-color: #ec637f;
    background-color: rgba(236, 99, 127, 0.1);
}

    .apply__co09 .apply__link:hover {
        background-color: rgba(236, 99, 127, 0.3);
    }

.apply__co09 .apply__linkArrow {
    background-color: #ec637f;
}

@media screen and (min-width: 768px), print {
    .apply__co09 .apply__linkArrow {
        background-color: transparent;
    }
}

@media screen and (min-width: 768px), print {
    .apply__co09 .apply__linkArrow > i {
        color: #ec637f;
    }
}

.group_99 div{
    margin-bottom:1em;
}

/* subjectList */
.acc {
  padding: 2em 0;
  overflow: hidden;
}

@media screen and (min-width: 768px), print {
  .acc {
    padding: 3em 0;
  }
}

.acc_main {
    padding-bottom: 1em;
    overflow: hidden;
}

@media screen and (min-width: 768px), print {
    .acc_main {
        padding-bottom: 2em;
    }
}

.acc__item {
  margin-top: 1em;
}

@media screen and (min-width: 768px), print {
  .acc__item {
    margin-top: 1.5em;
  }
}

.acc__item:first-child {
  margin-top: 0;
}

.acc__ttl {
  display: flex;
  z-index: 2;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
  padding: .8em 2em .8em .5em;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.15);
  font-weight: 700;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

@media screen and (min-width: 768px), print {
  .acc__ttl {
    padding: .8em 1em;
    font-size: 2.2rem;
  }
}

.acc__ttl > i {
    margin-right: .2em;
    color: #4f95d1;
    font-size: 1.8rem;
}

@media screen and (min-width: 768px), print {
  .acc__ttl > i {
    margin-right: .5em;
    font-size: 2.8rem;
  }
}

.acc__ttl::before {
    -webkit-transform: translateY(-50%);
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 25px;
    height: 100%;
    transform: translateY(-50%);
    border-radius: 0 15px 15px 0;
    background-color: #4f95d1;
    content: "";
}

@media screen and (min-width: 768px), print {
  .acc__ttl::before {
    width: 60px;
  }
}

.acc__ttl::after {
  -webkit-transform: translateY(-50%) rotate(50deg);
  display: block;
  position: absolute;
  top: 50%;
  right: .6em;
  width: 8px;
  height: 8px;
  transform: translateY(-50%) rotate(50deg);
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  content: "";
  transition: all .3s ease-in-out;
}

@media screen and (min-width: 768px), print {
  .acc__ttl::after {
    right: 25px;
    width: 12px;
    height: 12px;
    border-top: solid 4px #fff;
    border-right: solid 4px #fff;
  }
}

.acc__content {
  margin-top: -2em;
  padding-top: 2em;
  overflow: hidden;
  border-radius: 0 0 10px 10px;
  background-color: #e8eae8;
  opacity: 0;
  transition: all .3s ease-in-out;
}

.acc__item.is-open .acc__content {
  opacity: 1;
}

.acc__item.is-open .acc__ttl::after {
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}

.acc__item.is-open .acc__ttl {
  background-color: #aee987;
}

.subjectList__block {
  width: 100%;
  padding: 1em;
}

@media screen and (min-width: 768px), print {
  .subjectList__block {
    width: calc((100% - 6em) / 2);
    margin-right: 2em;
    padding: 2em 0;
  }
}

.subjectList__block:first-child {
  margin-bottom: 0em;
}

@media screen and (min-width: 768px), print {
  .subjectList__block:first-child {
    margin-bottom: auto;
    margin-left: 2em;
  }
}

.subjectList__block--1col {
  margin: 1em;
  padding-bottom: 4em;
}

@media screen and (min-width: 768px), print {
  .subjectList__block--1col {
    margin: 2em;
    padding-bottom: 6em;
  }
}

.subjectList__ttl {
  padding: .8em;
  border-radius: 15px 15px 0 0;
  background-color: #58483e;
  color: #fff;
  font-weight: 400;
  font-size: 1.5rem;
  text-align: center;
}

@media screen and (min-width: 768px), print {
  .subjectList__ttl {
    font-size: 1.8rem;
  }
}

.subjectList__item {
  margin-bottom: 2em;
  padding: 1em;
  background-color: #fff;
}

.subjectList__item--1col {
  padding: 1em;
  background-color: #fff;
}

.subjectList__item2 {
    padding: 1em;
    background-color: #fff;
}

.subjectList__item2--1col {
    padding: 1em;
    background-color: #fff;
}

.subjectList__list {
  font-size: 1.5rem;
  list-style: none;
}

@media screen and (min-width: 768px), print {
  .subjectList__list {
    font-size: 1.6rem;
  }
}

.subjectList__list > li {
  padding: .5em;
}

@media screen and (min-width: 768px), print {
  .subjectList__list > li {
    padding: .5em 1em;
  }
}

.subjectList__list > li:nth-child(odd) {
  background-color: rgba(174, 233, 135, 0.4);
}

/* form */
.form__comment {
  margin-right: 1em;
  margin-bottom: 2em;
  margin-left: 1em;
}

@media screen and (min-width: 768px), print {
  .form__comment {
    margin-bottom: 4em;
  }
}

@media screen and (min-width: 1200px), print {
  .form__comment {
    width: 1080px;
    margin-right: auto;
    margin-left: auto;
  }
}

/* 5文字用のテキストボックスの幅を設定 */
.form input.width-5words {
    width: 10rem; /* 横幅を固定 */
    box-sizing: border-box; /* パディング・ボーダー込みの幅計算 */
}

@media screen and (max-width: 768px) {
    .form input.width-5words {
        width: 10rem;
        box-sizing: border-box;
    }
}

/* 6文字用のテキストボックスの幅を設定 */
.form input.width-6words {
    width: 10.8rem; /* 横幅を固定 */
    box-sizing: border-box; /* パディング・ボーダー込みの幅計算 */
}

@media screen and (max-width: 768px) {
    .form input.width-6words {
        width: 10.8rem;
        box-sizing: border-box;
    }
}

/* 15文字用のテキストボックスの幅を設定 */
.form input.width-15words {
    width: 18rem; /* 横幅を固定 */
    box-sizing: border-box; /* パディング・ボーダー込みの幅計算 */
}

@media screen and (max-width: 768px) {
    .form input.width-15words {
        width: 18rem;
        box-sizing: border-box;
    }
}

.form input,
.form select {
    position: relative;
    padding: .6em;
    border: 2px solid #4f95d1;
    border-radius: 5px;
    background-color: #fff;
    color: #000;
    transition: all .5s;
}

@media screen and (min-width: 768px) {
    .form input,
    .form select {
        width: auto;
    }
}

.form input:focus,
.form select:focus {
    background-color: #e3eef9;
}

.form input:hover,
.form select:hover {
    background-color: #e3eef9;
}

.form ::-webkit-input-placeholder {
  color: #a7a7a7;
}

.form ::-moz-placeholder {
  color: #a7a7a7;
}

.form :-ms-input-placeholder {
  color: #a7a7a7;
}

.form ::-ms-input-placeholder {
  color: #a7a7a7;
}

.form ::placeholder {
  color: #a7a7a7;
}

.form__required {
    margin-top: .3em;
    margin-right: 1em;
    padding: .1em 1em;
    border-radius: 20px;
    background-color: #f30334;
    color: #fff;
    white-space: nowrap;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1;
}

@media screen and (min-width: 768px) {
    .form__required {
        padding: .3em 1em;
        font-size: 1.3rem;
    }
}

.form__required2 {
    margin-left: .8em;
    padding: .1em .5em;
    border-radius: 3px;
    background-color: #6495ed;
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    white-space: nowrap;
}

.form__small {
    font-size: 1.3rem;
    font-weight: normal;
    display: block;
}

@media screen and (min-width: 768px), print {
    .form__small {
        font-size: 1.5rem;
    }
}
.form__visible {
    display: none;
}

span.indent {
    margin-left: 1em;
    text-indent: -1.3em;
}

@media screen and (min-width: 768px), print {
    .form__visible {
        font-size: 1.7rem;
        font-weight: normal;
        display: block;
    }
}


.form__hosoku {
  /* 20221118削除 */
  /*display: flex;*/
  flex-wrap: wrap;
  padding: 1em 1em 0 1em;
  font-size: 1.3rem;
}

@media screen and (min-width: 768px), print {
  .form__hosoku {
    padding: 1em 0 0 1.5em;
    font-size: 1.5rem;
  }
}
.form input:read-only {
    background-color: #e3eef9;
}

.form ::placeholder {
    color: #a7a7a7;
    font-size: 1.5rem;
}

@media screen and (min-width: 768px) {
    .form ::placeholder {
        font-size: 1.8rem;
    }
}

.form__required {
    margin-top: .3em;
    margin-right: 1em;
    padding: .1em 1em;
    border-radius: 20px;
    background-color: #f30334;
    color: #fff;
    white-space: nowrap;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1;
}

@media screen and (min-width: 768px) {
    .form__required {
        padding: .3em 1em;
        font-size: 1.3rem;
    }
}

.form__cap {
    position: relative;
    margin-top: 1em;
    padding: .3em 1em .3em 2.2em;
    border: 1px solid #f3f0f0;
    border-radius: 5px;
    background-color: #fdfdfd;
    font-weight: 400;
    font-size: 1.3rem;
}

@media screen and (min-width: 768px) {
    .form__cap {
        flex: 1 0 10%;
        margin-top: 0;
        margin-left: 2em;
        font-size: 1.5rem;
    }
}


.form__cap {
    position: relative;
    margin-top: 1em;
    padding: .3em 1em .3em 2.2em;
    border: 1px solid #f3f0f0;
    border-radius: 5px;
    background-color: #fdfdfd;
    font-weight: 400;
    font-size: 1.3rem;
}

@media screen and (min-width: 768px) {
    .form__cap {
        flex: 1 0 10%;
        margin-top: 0;
        margin-left: 2em;
        font-size: 1.5rem;
    }
}

.form__cap::before {
    position: absolute;
    top: 0;
    left: .5em;
    color: #4f95d1;
    content: "\f058";
    font-weight: normal;
    font-size: 1.8rem;
    font-family: "icomoon" !important;
}

@media screen and (min-width: 768px) {
    .form__cap::before {
        font-size: 2rem;
    }
}

.form__hosoku {
    padding: .5em 0 0 .5em;
    font-weight: 400;
    font-size: 1.3rem;
}

@media screen and (min-width: 768px) {
    .form__hosoku {
        padding: .5em 1em 0 1em;
        font-size: 1.5rem;
    }
}

.form__item {
    margin-top: 1em;
    padding: 1em;
    border: 1px solid #dfe0e3;
    border-radius: 5px;
    background-color: #f5f7f8;
    font-size: 1.6rem;
}

@media screen and (min-width: 768px) {
    .form__item {
        margin-top: 1.5em;
        padding: 1.5em;
        font-size: 1.8rem;
    }
}


.form__subject {
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: 2px solid #4f95d1;
    font-weight: 500;
    font-size: 1.7rem;
    line-height: 1.5;
}

@media screen and (min-width: 768px) {
    .form__subject {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1.5em;
        font-size: 1.9rem;
    }
}

.form__input {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.form__input--half {
    position: relative;
    width: 100%;
    margin-bottom: .5em;
}

@media screen and (min-width: 768px) {
    .form__input--half {
        width: calc(50% - .5em);
        margin-right: 1em;
        margin-bottom: 0;
    }
}

.form__input--half:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 768px) {
    .form__input--half:last-child {
        margin-right: 0;
    }
}

.form__input--halfItem {
    display: flex;
}

    .form__input--halfItem > input {
        width: 100%;
        border-left: none;
        border-radius: 0 5px 5px 0;
    }

        .form__input--halfItem > input:focus {
            border: 2px solid #4f95d1;
            border-left: none;
        }

        .form__input--halfItem > input:hover {
            border: 2px solid #4f95d1;
            border-left: none;
        }

    .form__input--halfItem > label {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 50px;
        border-radius: 5px 0 0 5px;
        background: rgb(79, 149, 209);
        background: linear-gradient(180deg, rgb(79, 149, 209) 27%, rgb(35, 128, 208) 100%);
        color: #fff;
        font-size: 1.5rem;
    }

@media screen and (min-width: 768px) {
    .form__input--halfItem > label {
        width: 5em;
        font-size: 1.7rem;
    }
}

.form__radio input[type="radio"],
.form__radio input[type="checkbox"], .form__checkbox input[type="radio"],
.form__checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.form__radio label,
.form__checkbox label {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-top: .5em;
    padding: .8em 1em .8em 5em;
    border: 2px solid #4f95d1;
    border-radius: 50px;
    background-color: #fff;
    text-align: left;
    cursor: pointer;
    transition: all .5s;
}

@media screen and (min-width: 768px) {
    .form__radio label,
    .form__checkbox label {
        min-width: 280px;
        width: auto;
        margin-top: 0;
        margin-right: 1em;
        padding: .8em 2em .8em 4.5em;
    }
}

.form__radio label:hover, .form__checkbox label:hover {
    border: 2px solid #e3eef9;
}

.form__radio label:last-child, .form__checkbox label:last-child {
  margin-right: 0;
}
.form__radio input[type=radio]:checked + label::before,
.form__radio input[type=checkbox]:checked + label::before,
.form__checkbox input[type=radio]:checked + label::before,
.form__checkbox input[type=checkbox]:checked + label::before {
    background: #7f7f7f;
}

.form__radio input[type=radio]:checked + label::after,
.form__radio input[type=checkbox]:checked + label::after,
.form__checkbox input[type=radio]:checked + label::after,
.form__checkbox input[type=checkbox]:checked + label::after {
    left: 40px;
    background-color: #fff;
}
.form__radio input[type=radio]:checked + label,
.form__radio input[type=checkbox]:checked + label,
.form__checkbox input[type=radio]:checked + label,
.form__checkbox input[type=checkbox]:checked + label {
    border: 2px solid #4f95d1;
    background: rgb(79, 149, 209);
    background: linear-gradient(180deg, rgb(79, 149, 209) 27%, rgb(35, 128, 208) 100%);
    color: #fff;
    font-weight: 500;
}
    .form__radio input[type=radio]:checked + label > i,
    .form__radio input[type=checkbox]:checked + label > i,
    .form__checkbox input[type=radio]:checked + label > i,
    .form__checkbox input[type=checkbox]:checked + label > i {
        color: #fff;
    }

.form__radio input[type=radio]:focus + label,
.form__radio input[type=checkbox]:focus + label,
.form__checkbox input[type=radio]:focus + label,
.form__checkbox input[type=checkbox]:focus + label {
    border: 2px solid #4f95d1;
}
.form__radio input[type=radio] + label::before,
.form__radio input[type=radio] + label::after,
.form__radio input[type=checkbox] + label::before,
.form__radio input[type=checkbox] + label::after,
.form__radio input[type="radio"] + label::before,
.form__radio input[type="radio"] + label::after,
.form__radio input[type="checkbox"] + label::before,
.form__radio input[type="checkbox"] + label::after, .form__checkbox input[type="radio"] + label::before,
.form__checkbox input[type="radio"] + label::after,
.form__checkbox input[type="checkbox"] + label::before,
.form__checkbox input[type="checkbox"] + label::after {
    -webkit-transform: translateY(-50%);
    display: block;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    content: "";
}

.form__radio input[type="radio"] + label::before,
.form__radio input[type="checkbox"] + label::before, .form__checkbox input[type="radio"] + label::before,
.form__checkbox input[type="checkbox"] + label::before {
  display: block;
  width: 40px;
  height: 20px;
  border-radius: 30px;
  background: #c0c0c0;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3) inset;
}

.form__radio input[type="radio"] + label::after,
.form__radio input[type="checkbox"] + label::after, .form__checkbox input[type="radio"] + label::after,
.form__checkbox input[type="checkbox"] + label::after {
  width: 20px;
  height: 20px;
  border-radius: 15px;
  background: #444;
  box-shadow: 1px 0 0 rgba(0, 0, 0, 0.2);
  transition: .1s;
}

/*.form__radio input[type="radio"]:checked + label::after,
.form__radio input[type="checkbox"]:checked + label::after, .form__checkbox input[type="radio"]:checked + label::after,
.form__checkbox input[type="checkbox"]:checked + label::after {
    left: 40px;
    background: #4f95d1;
    box-shadow: -1px 0 0 rgba(0, 0, 0, 0.2);
}

.form__radio input[type="radio"]:checked + label,
.form__radio input[type="checkbox"]:checked + label, .form__checkbox input[type="radio"]:checked + label,
.form__checkbox input[type="checkbox"]:checked + label {
    border: 2px solid #4f95d1;
    background: #edf6d8;
}
*/
.form__radio input[type="radio"]:focus + label,
.form__radio input[type="checkbox"]:focus + label, .form__checkbox input[type="radio"]:focus + label,
.form__checkbox input[type="checkbox"]:focus + label {
    border: 2px solid #4f95d1;
}

@media screen and (min-width: 768px), print {
  .form__radio--long label, .form__checkbox--long label {
    width: auto;
  }
}

@media screen and (min-width: 768px), print {
  .form__radio--wide label, .form__checkbox--wide label {
    width: 100%;
    margin-bottom: .8em;
  }
}
/* TFS-1241受験手数料縦並び化 START */
@media screen and (min-width: 768px), print {
    .apply__questionItem.-examfee label:last-child {
        margin-right: 1em;
    }
}
@media screen and (min-width: 768px), print {
    .apply__questionItem.-examfee p {
        margin-bottom: .5em;
        margin-top: .5em;
    }
}
/* TFS-1241受験手数料縦並び化 END */

.form__radio--wide label:last-child, .form__checkbox--wide label:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 768px), print {
  .form__radio--2col label, .form__checkbox--2col label {
    width: calc((100% / 2) - 1em);
    min-width: auto;
  }
}

@media screen and (min-width: 1200px), print {
  .form__radio--2col label, .form__checkbox--2col label {
    width: 380px;
  }
}

.form__radio--nomal input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.form__radio--nomal input[type="radio"] + span {
  display: inline-block;
  position: relative;
  padding: .6em .5em .6em 2em;
  vertical-align: middle;
  cursor: pointer;
}

@media screen and (min-width: 768px), print {
  .form__radio--nomal input[type="radio"] + span {
    padding: .6em 1em .6em 2.5em;
  }
}

.form__radio--nomal input[type="radio"] + span::before,
.form__radio--nomal input[type="radio"] + span::after {
  box-sizing: border-box;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 1em auto 0;
  border-radius: 50%;
  content: "";
}

.form__radio--nomal input[type="radio"] + span::before {
    display: inline-block;
    left: 5px;
    width: 20px;
    height: 20px;
    border: 2px solid #4f95d1;
    background: #fff;
}

@media screen and (min-width: 768px), print {
  .form__radio--nomal input[type="radio"] + span::before {
    width: 25px;
    height: 25px;
  }
}

.form__radio--nomal input[type="radio"] + span::after {
  left: 10px;
  width: 10px;
  height: 10px;
  background: #999;
  opacity: 0;
  transition: opacity .2s;
}

@media screen and (min-width: 768px), print {
  .form__radio--nomal input[type="radio"] + span::after {
    width: 15px;
    height: 15px;
  }
}

.form__radio--nomal input[type="radio"]:checked + span::before {
    border: 2px solid #4f95d1;
}

.form__radio--nomal input[type="radio"]:checked + span::after {
    background: #4f95d1;
    opacity: 1;
}

.form__radio--nomal input[type="radio"]:focus + span::before {
    border: 2px solid #4f95d1;
}
.form__radio input[type=radio] + label {
    display: flex;
    align-items: center;
}

    .form__radio input[type=radio] + label > i {
        margin-left: .5em;
        color: #808891;
        font-size: 3.4rem;
    }

.form__checkbox--nomal input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.form__checkbox--nomal input[type="checkbox"] + span {
  display: inline-block;
  position: relative;
  padding-left: 2em;
  font-size: 1.6rem;
  cursor: pointer;
}

@media screen and (min-width: 768px), print {
  .form__checkbox--nomal input[type="checkbox"] + span {
    font-size: 1.8rem;
  }
}

.form__checkbox--nomal input[type="checkbox"] + span > i {
    -webkit-transform: rotate(180deg);
    display: inline-block;
    margin-right: .5em;
    margin-left: .2em;
    transform: rotate(180deg);
    color: #4f95d1;
}

.form__checkbox--nomal input[type="checkbox"] + span::before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  margin-right: 1em;
  border: 2px solid #cfcfcf;
  border-radius: .2em;
  background-color: #fff;
  content: "";
}

.form__checkbox--nomal input[type="checkbox"] + span::after {
  -webkit-transform: rotate(45deg);
  z-index: 1;
  position: absolute;
  top: .2em;
  left: .6em;
  width: 12px;
  height: 18px;
  transform: rotate(45deg);
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  content: "";
  opacity: 0;
  transition: all .3s;
}

.form__checkbox--nomal input[type="checkbox"]:focus + span::before {
  border: 2px solid #cfcfcf;
}

.form__checkbox--nomal input[type="checkbox"]:checked + span::before {
    border: none;
    background: #4f95d1;
}

.form__checkbox--nomal input[type="checkbox"]:checked + span::after {
  opacity: 1;
}

.form__select {
  position: relative;
  width: 100%;
}

@media screen and (min-width: 768px), print {
  .form__select {
    width: auto;
  }
}

.form__select::after {
    position: absolute;
    top: 50%;
    right: 1em;
    z-index: 1;
    width: 10px;
    height: 10px;
    border-top: 3px solid #4f95d1;
    border-left: 3px solid #4f95d1;
    content: "";
    transform: translateY(-50%) rotate(-135deg);
    pointer-events: none;
}

.form__select--ymd {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: .5em;
}

@media screen and (min-width: 768px), print {
  .form__select--ymd {
    width: auto;
    margin-top: 0;
  }
}

.form__select--ymd:first-child {
  margin-top: 0;
}

.form__select select option {
    padding: 2em 1em;
    background-color: #fff;
}

.form__select select {
    position: relative;
    width: 100%;
    padding: .6em 2em .6em 1em;
    border: 2px solid #4f95d1;
    border-radius: 5px;
    background-color: #fff;
    color: #000;
    transition: all .5s;
}

    .form__select select:focus {
        background-color: #e3eef9;
    }

    .form__select select:hover {
        background-color: #e3eef9;
    }
.form__selectText {
  margin: 0 .5em;
  white-space: nowrap;
}

@media screen and (min-width: 768px), print {
  .form__selectText {
    margin: 0 .5em;
  }
}

.form__textarea {
    position: relative;
    width: 100%;
    height: 300px;
    padding: .6em;
    border: 2px solid #4f95d1;
    border-radius: 5px;
    background-color: #fff;
    transition: all .5s;
}

    .form__textarea:focus {
        background-color: #e3eef9;
    }

    .form__textarea:hover {
        background-color: #e3eef9;
    }
.form__parts--wide input {
  width: 100%;
}

@media screen and (max-width: 767px), print {
  .form__parts--spWide input {
    width: 100%;
  }
}

.form__parts--mt {
  width: 100%;
  margin-top: .5em;
  margin-left: .3em;
}

@media screen and (min-width: 768px), print {
  .form__parts--mt {
    flex: 1 0 10%;
    margin-top: 0;
  }
}

.form__parts--mt input {
  width: 100%;
}

.form__parts--post {
  width: 100%;
}

@media screen and (min-width: 768px), print {
  .form__parts--post {
    width: auto;
  }
}

.form__parts--post02 {
  margin-right: .4em;
}

.form__parts--none {
  display: none;
}


@media screen and (min-width: 768px), print {
  .form__eye {
    right: 1em;
  }
}

/* form check */
.form__check {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background-color: #fff;
}

@media screen and (min-width: 768px), print {
  .form__check tr {
    border: 1px solid #d2d0d0;
  }
}

.form__check tr:first-child {
  border-top: 1px solid #d2d0d0;
}

@media screen and (min-width: 768px), print {
  .form__check tr:hover {
    background-color: #edf6d8;
  }
}

@media screen and (min-width: 768px), print {
  .form__check.-complete tr:hover {
    background-color: #e8eae8;
  }
}

.form__check th,
.form__check td {
  display: block;
  padding: .5em;
}

@media screen and (min-width: 768px), print {
  .form__check th,
  .form__check td {
    display: table-cell;
    padding: .5em 1em;
  }
}

.form__check th {
  background-color: rgba(242, 239, 239, 0.6);
  text-align: left;
}

@media screen and (min-width: 768px), print {
  .form__check th {
    width: 300px;
  }
}

/*確認画面 4月全免用の見出し*/
@media screen and (min-width: 768px), print {
    th.confirm-skil {
        width: 500px;
    }
}

.form__check.-complete th {
  background-color: rgba(237, 246, 216, 0.6);
}

.form__check td {
  min-height: 45px;
  border-bottom: 1px solid #d2d0d0;
}

@media screen and (min-width: 768px), print {
  .form__check td {
    border-bottom: none;
  }
}

.form__checkSubttl {
  margin-bottom: .5em;
  padding: .2em .5em;
  border: 1px solid #d2d0d0;
  border-radius: 5px;
  background-color: rgba(242, 239, 239, 0.6);
  font-weight: 700;
}

.form__checkSchedule {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px), print {
  .form__checkSchedule {
    width: 400px;
    margin: 0 1em;
  }
}

.form__checkSchedule > dt {
  width: 60%;
  border-bottom: 1px solid #d2d0d0;
}

@media screen and (min-width: 768px), print {
  .form__checkSchedule > dt {
    padding: 0 1em;
  }
}

.form__checkSchedule > dd {
  width: 40%;
  border-bottom: 1px solid #d2d0d0;
  text-align: right;
}

@media screen and (min-width: 768px), print {
  .form__checkSchedule > dd {
    padding: 0 1em;
  }
}

.form__checkUplord {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.form__checkUplord tr {
  border-bottom: 15px solid #fff;
}

@media screen and (min-width: 768px), print {
  .form__checkUplord tr {
    border-bottom: 1px solid #c8c8c8;
  }
}

@media screen and (min-width: 768px), print {
  .form__checkUplord tr:hover {
    background-color: #edf6d8;
  }
}

.form__checkUplord td {
  display: block;
  width: 100%;
  padding: .5em;
}

@media screen and (min-width: 768px), print {
  .form__checkUplord td {
    display: table-cell;
    width: auto;
    padding: .5em 1em;
  }
}

.form__checkUplord td:first-child {
    background-color: rgba(242, 239, 239, 0.7);
    font-weight: 700;
}
.form__checkUplord td:nth-child(2) {
    background-color: rgba(242, 239, 239, 0.7);
    font-weight: 700;
}

.form__checkUplord td:last-child {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.form__checkUplord td:last-child > button {
  min-width: 160px;
  margin: 0 !important;
}

@media screen and (min-width: 768px), print {
  .form__checkUplord td:last-child > button {
    min-width: 180px;
  }
}

.form__checkUplord td .number {
  display: inline-block;
  position: relative;
  margin-right: 2em;
  padding-left: 3em;
  font-size: 1.4rem;
}

.form__checkUplord td .number::after {
  -webkit-transform: translateY(-50%);
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: attr(data-sub);
}

.form__checkUplord td .submit {
  min-width: 200px;
  padding: .5em 1em;
  border: 1px solid #cfcfcf;
  border-radius: 15px;
  background-color: rgba(174, 233, 135, 0.4);
  font-size: 1.7rem;
  text-align: center;
}

.form__checkUplordArea {
  -webkit-overflow-scrolling: touch;
  overflow-x: scroll;
}

@media screen and (min-width: 768px), print {
  .form__checkUplordArea {
    -webkit-overflow-scrolling: auto;
    overflow-x: hidden;
  }
}

/* footer */
.footer {
    margin-top: auto;
    padding: 2.5em 0;
    background-color: #484d52;
    color: #fff;
    text-align: center;
}
.footer__copy {
    font-size: 1.2rem;
}
.footer__pagetop {
    position: fixed;
    right: -5em;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    width: 30px;
    height: 30px;
    background-color: #333;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    caret-color: transparent;
    transition: all .5s;
}

@media screen and (min-width: 768px) {
    .footer__pagetop {
        bottom: 1em;
        width: 35px;
        height: 35px;
    }
}

.footer__pagetop::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: "";
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

@media screen and (min-width: 768px) {
    .footer__pagetop::after {
        width: 10px;
        height: 10px;
    }
}

.footer__pagetop::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: #484d52;
    content: "";
    transition: transform .3s;
    transform: scale(1, 1);
    transform-origin: left top;
}

.footer__pagetop:hover::before {
    transform: scale(1, 0);
    transform-origin: left top;
}

.footer__pagetop.is__pagetop {
    right: 0;
}

@media screen and (min-width: 768px) {
    .footer__pagetop.is__pagetop {
        right: 1em;
    }
}

.footer__menu {
  margin: 0 .2em 0 1em;
  padding-bottom: 1em;
  list-style: none;
}

@media screen and (min-width: 768px), print {
  .footer__menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0 1em;
    padding-bottom: 2em;
  }
}

.footer__menu > li {
  margin-right: 1em;
  font-size: 1.4rem;
}

.footer__menu > li > a {
  position: relative;
  padding-left: 1.5em;
  color: #000;
  text-decoration: none;
}

    .footer__menu > li > a::before {
        position: absolute;
        top: 0;
        left: 0;
        content: "\e900";
        color: #4f95d1;
        font-weight: normal;
        font-family: "icomoon" !important;
    }

    .footer__menu > li > a::after {
        -webkit-transform: scale(0, 1);
        -webkit-transform-origin: right top;
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 100%;
        height: 1px;
        transform: scale(0, 1);
        transform-origin: right top;
        background: #4f95d1;
        content: "";
        transition: -webkit-transform .3s;
        transition: transform .3s;
        transition: transform .3s, -webkit-transform .3s;
    }

.footer__menu > li > a:hover::after {
  -webkit-transform: scale(1, 1);
  -webkit-transform-origin: left top;
  transform: scale(1, 1);
  transform-origin: left top;
}



@media screen and (min-width: 768px), print {
  .footerFixed {
    box-sizing: border-box;
    position: relative;
    min-height: 100vh;
    padding-bottom: 185px;
  }
}

@media screen and (min-width: 768px), print {
  .footerFixed__item {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
  }
}

/***** allpage parts *****/
/* wrap */
.wrap__wide {
  margin-right: 1em;
  margin-left: 1em;
}
.wrap__padding {
    padding: .5em;
}
@media screen and (min-width: 768px) {
    .wrap__padding {
        padding: 2em;
    }
}

@media screen and (min-width: 1200px), print {
  .wrap__wide {
    width: 1200px;
    margin-right: auto;
    margin-left: auto;
  }
}

.wrap {
  margin-right: 1em;
  margin-left: 1em;
}

@media screen and (min-width: 1200px), print {
    .wrap {
        max-width: calc(1200px + 1em);
        margin-inline: auto;
        padding: 0 .5em;
    }
}

.wrap_hako {
    margin-right: 1em;
    margin-left: 1em;
    padding-Top: 3em;
    padding-left: 5em;
}

@media screen and (min-width: 1200px), print {
    .wrap_hako {
        max-width: calc(1200px + 1em);
        margin-inline: auto;
        padding-Top: 3em;
        padding-left: 20em;
    }
}

/* flex */
.flex {
    display: flex;
    flex-wrap: wrap;
}

.flex-ct {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.flex-cc {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

/* block */
.scroll__block {
    padding: 1em;
    background-color: #fff;
}

@media screen and (min-width: 768px) {
    .scroll__block {
        overflow-y: scroll;
        height: 400px;
        padding: 2em;
    }
}
@media screen and (max-width: 768px) {
    .scroll__block {
        overflow-y: scroll;
        height: 400px;
        padding: 2em;
    }
}
.scroll__block_short {
    height: 250px;
    margin: 0em 0;
    padding: 1em;
    overflow-y: scroll;
    background-color: rgba(242, 239, 239, 0.4);
}

@media screen and (min-width: 768px), print {
    .scroll__block_short {
        padding: 2em;
    }
}

.bg__block {
  padding: 1em;
  border-radius: 10px;
}

@media screen and (min-width: 768px), print {
  .bg__block {
    padding: 2.2em;
  }
}

.bg__block2 {
    padding: 1em;
    border-radius: 10px;
}

@media screen and (min-width: 768px), print {
    .bg__block2 {
        padding: 1em;
    }
}

.bg__block.-pink {
  background-color: rgba(236, 99, 127, 0.1);
}

.bg__block.-green {
  background-color: #edf6d8;
}

.bg__block.-gray {
  background-color: rgba(242, 239, 239, 0.7);
}

.bg__block.-orange {
    background-color: #FCEABB;
}

.bg__block:first-child {
  margin-top: 0;
}

.nomal__block {
  z-index: 1;
  position: relative;
  margin-top: 2em;
  padding: 1em;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.15);
}

@media screen and (min-width: 768px), print {
  .nomal__block {
    margin-top: 4em;
    padding: 2em;
  }
}

.nomal__block:first-child {
  margin-top: 0;
}

.nomal__blockBack {
  padding: 2em 0;
  background-color: rgba(237, 246, 216, 0.5);
}

@media screen and (min-width: 768px), print {
  .nomal__blockBack {
    padding: 4em 0;
  }
}

/*申請内容確認画面の上部ドロップダウンリスト用*/
.nomal__blockBack2 {
    padding: 2em 0;
    background-color: rgba(237, 246, 216, 0.5);
}

@media screen and (min-width: 768px), print {
    .nomal__blockBack2 {        
        padding:4em 0 0 0;
    }
}

.gra__block {
  z-index: 1;
  position: relative;
  padding: 1em;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.15);
}
.gra__block2 {
    z-index: 1;
    position: relative;
    padding: 1em;
    border-radius: 10px;
    background-color: #fff;
}

@media screen and (min-width: 768px), print {
  .gra__block {
    padding: 2em 2em 3em 2em;
  }
    .gra__block2 {
        padding: 1em 1em 1em 1em;        
    }
}

.gra__blockBack {
  position: relative;
  margin-top: 2em;
  padding: 2em 0;
  background-color: rgba(237, 246, 216, 0.5);
}

@media screen and (min-width: 768px), print {
  .gra__blockBack {
    margin-top: 4em;
    padding: 4em 0;
  }
}

.gra__blockBack::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: #51bf37;
  background: linear-gradient(45deg, #51bf37 55%, #c4f959 100%);
  content: "";
}

.gra__blockBack:first-child {
  margin-top: 0;
}

.line__block {
  padding: 1em 0;
  border-top: 1px solid #e8e7e7;
  border-bottom: 1px solid #e8e7e7;
  text-align: center;
}

/* text-align */
.text__align {
  text-align: left;
}

@media screen and (min-width: 768px), print {
  .text__align {
    text-align: center;
  }
}

/* backgroung */
.bg__gra--green {
  background: #51bf37;
  background: linear-gradient(45deg, #51bf37 55%, #c4f959 100%);
}

.bg__c--gray {
  background-color: rgba(242, 239, 239, 0.7);
}

.bg__c--green {
  background-color: #edf6d8;
}

/* ttl */
/* title */
.ttl__primary {
    padding: .5em .8em;
    border-radius: 25px 25px 0 0;
    background-color: #4f95d1;
    color: #fff;
    text-align: center;
    letter-spacing: .1em;
    font-weight: 500;
    font-size: 2.2rem;
}

@media screen and (min-width: 768px) {
    .ttl__primary {
        font-size: 2.8rem;
    }
}

.ttl__secondary {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-height: 110px;
    margin-bottom: 1em;
    padding: 1em;
    border-bottom: 1px dotted #c4c4c4;
    color: #000;
    text-align: center;
    letter-spacing: .1em;
    font-weight: 500;
    font-size: 2rem;
    line-height: 1.5;
}

@media screen and (min-width: 768px) {
    .ttl__secondary {
        min-height: 150px;
        margin-bottom: 2em;
        font-size: 3rem;
    }
}

.ttl__tertiary {
    margin-bottom: 1.5em;
    padding-bottom: .8em;
    border-bottom: 1px dotted #c4c4c4;
    color: #4f95d1;
    text-align: center;
    font-weight: 500;
    font-size: 1.8rem;
}

@media screen and (min-width: 768px) {
    .ttl__tertiary {
        margin-bottom: 2em;
        font-size: 2.1rem;
    }
}

.ttl__tertiary > i {
    display: block;
    margin: 0 auto .2em auto;
}

@media screen and (min-width: 768px) {
    .ttl__tertiary > i {
        display: inline-block;
        margin: 0 .5em;
    }
}

.ttl__tertiary.-pink {
    color: #ec637f;
}

.ttl__tertiary.-red {
    color: #f30334;
}

.ttl__tag {
    display: inline-block;
    margin-bottom: .5em;
    padding: .1em 1em;
    border-radius: 5px;
    background-color: #4f95d1;
    color: #fff;
    letter-spacing: 0;
    font-size: 1.7rem;
}

@media screen and (min-width: 768px) {
    .ttl__tag {
        font-size: 2.5rem;
    }
}

.ttl__kadomaru {
    margin-bottom: 1em;
    padding: .5em 1em;
    border-bottom: 3px solid #4f95d1;
    border-radius: 10px 10px 0 0;
    background-color: #ebf2fa;
    color: #2e76b8;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1.5;
}

@media screen and (min-width: 768px) {
    .ttl__kadomaru {
        margin-bottom: .5em;
        padding: .8em 1.5em;
        border-radius: 15px 15px 0 0;
        font-size: 2.6rem;
    }
}

.ttl__uplord {
    padding: .5em;
    border-radius: 10px 10px 0 0;
    background-color: #484d52;
    color: #fff;
    text-align: center;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1.5;
}

@media screen and (min-width: 768px) {
    .ttl__uplord {
        padding: .6em 1em;
        border-radius: 15px 15px 0 0;
        font-size: 2.8rem;
    }
}

.ttl__uplord > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin-bottom: .2em;
    margin-inline: auto;
    border-radius: 100px;
    background-color: #fff;
    color: #484d52;
    font-size: 2.4rem;
}

@media screen and (min-width: 768px) {
    .ttl__uplord > i {
        width: 50px;
        height: 50px;
        border: 2px solid #fff;
        font-size: 2.8rem;
    }
}

.ttl__bg {
    padding: .2em 1em;
    border: 1px dotted #d1d1d1;
    background-color: rgba(141, 187, 227, .2);
    font-weight: 500;
    font-style: normal;
    font-size: 1.7rem;
}

@media screen and (min-width: 768px) {
    .ttl__bg {
        font-size: 1.8rem;
    }
}/* notice */
.notice {
  position: relative;
  margin-top: 1.5em;
  padding: 1em 0 1em 0;
  border-top: 1px dotted #d2d0d0;
  border-bottom: 1px dotted #d2d0d0;
  color: #f30334;
  font-weight: 700;
  font-size: 1.7rem;
}

@media screen and (min-width: 768px), print {
  .notice {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em 0 1em 2em;
    font-size: 2rem;
  }
}

/* notice */
.noticeCustom {
    position: relative;
    margin-top: 1.5em;
    padding: 1em 0 1em 0;
    border-top: 1px dotted #d2d0d0;
    border-bottom: 1px dotted #d2d0d0;
    color: #f30334;
    font-weight: 700;
    font-size: 1.7rem;
}

@media screen and (min-width: 768px), print {
    .noticeCustom {
        align-items: center;
        justify-content: center;
        padding: 1em 0 1em 2em;
        font-size: 2rem;
        text-align:center !important;
    }
}

.notice i {
  display: block;
  margin-bottom: .2em;
  font-size: 2.2rem;
  text-align: center;
}

@media screen and (min-width: 768px), print {
  .notice i {
    display: inline-block;
    margin-right: .5em;
    margin-bottom: 0;
    font-size: 2.6rem;
  }
}

.notice__unit {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5em;
  padding: 1em 0 1em 0;
  border-top: 1px dotted #d2d0d0;
  border-bottom: 1px dotted #d2d0d0;
  color: #f30334;
  font-weight: 700;
}

@media screen and (min-width: 768px), print {
  .notice__unit {
    padding: 1em 0 1em 2em;
  }
}

.notice__unit > dt {
  display: flex;
  align-items: center;
  margin-bottom: .5em;
  font-size: 2rem;
}

@media screen and (min-width: 768px), print {
  .notice__unit > dt {
    margin-right: 3em;
    margin-bottom: 0;
  }
}

.same_notice__unit {
    align-items: center;
    margin-bottom: .5em;
    font-size: 2rem;
}

@media screen and (min-width: 768px), print {
    .same_notice__unit {        
        margin-bottom: 0;
    }
}

.notice__unit i {
  display: inline-block;
  margin-right: .5em;
  font-size: 2.2rem;
  text-align: center;
}

.apply__notice__form {
  display: block;
  position: relative;
  top: .2em;
  width: 100%;
  padding: 0 0 0 1.4em;
  color: #f30334;
  font-weight: 700;
}


.apply__notice__form > i {
    position: absolute;
    top: .4em;
    left: 0;
}


.text__large {
  font-weight: 700;
  font-size: 1.5rem;
}

@media screen and (min-width: 1200px), print {
  .text__large {
    font-size: 1.7rem;
  }
}

/* 20230110メインメニュー赤太字用に追加 */
.text__large2 {
    font-weight: 700;
    font-size: 1.8rem;
}

@media screen and (min-width: 1200px), print {
    .text__large2 {
        font-size: 2.0rem;
    }
}

/* 20230110メインメニュー赤太字用に追加 */
.text__large3 {
    font-weight: 700;
    font-size: 2.1rem;
}

@media screen and (min-width: 1200px), print {
    .text__large3 {
        font-size: 2.3rem;
    }
}

/* list */
.list__typeA {
  display: inline-block;
  list-style: none;
  text-align: left;
}

.list__typeA li {
  display: block;
  position: relative;
  margin-top: .5em;
  padding-left: 1em;
}

.list__typeA li:first-child {
  margin-top: 0;
}

.list__typeA li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
}

.list__typeA__no-mark li::before {
    content: none !important;
}



.list__typeB {
  display: inline-block;
  list-style: none;
  text-align: left;
}

.list__typeB li {
  display: block;
  position: relative;
  margin-top: .5em;
  margin-left: 0;
  padding-left: 1em;
}

@media screen and (min-width: 768px), print {
  .list__typeB li {
    margin-left: .3em;
  }
}

.list__typeB li:first-child {
  margin-top: 0;
}

.list__typeB li::before {
  position: absolute;
  top: .3em;
  left: 0;
  content: "●";
  color: #58483e;
  font-size: 1rem;
}

.list__typeC {
    display: inline-block;
    list-style: none;
    text-align: left;
}

.list__typeC li {
    display: block;
    position: relative;
    margin-top: .5em;
    margin-left: 0;
    padding-left: 1em;
}

@media screen and (min-width: 768px), print {
    .list__typeC li {
        margin-left: .3em;
    }
}

.list__typeC li:first-child {
    margin-top: 0;
}

.list__typeC li::before {
    position: absolute;
    top: .3em;
    left: 0;
    content: "※";
    color: #58483e;
    font-size: 1rem;
}
/* link */
/* link */
.link__line {
    position: relative;
    display: inline-block;
    margin-right: .2em;
    margin-bottom: .2em;
    margin-left: .2em;
    color: #4f95d1;
    text-decoration: none;
}

    .link__line > i {
        margin: 0 .1em;
        color: #4f95d1;
        font-size: 1.8rem;
    }

@media screen and (min-width: 768px) {
    .link__line::before {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: #4f95d1;
        content: "";
        transition: transform .3s;
        transform: scale(0, 1);
        transform-origin: right top;
    }
}

@media screen and (min-width: 768px) {
    .link__line:hover::before {
        transform: scale(1, 1);
        transform-origin: left top;
    }
}
.link__line::before {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #d2d0d0;
  content: "";
}

.link__line::after {
    -webkit-transform: scale(0, 1);
    -webkit-transform-origin: right top;
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    transform: scale(0, 1);
    transform-origin: right top;
    background: #4f95d1;
    content: "";
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
}

.link__line:hover::after {
  -webkit-transform: scale(1, 1);
  -webkit-transform-origin: left top;
  transform: scale(1, 1);
  transform-origin: left top;
}

/* button */
.btn__basic {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    width: 90%;
    margin: 1em auto;
    padding: 1.2em 2em 1.2em 1em;
    outline: none;
    border-radius: 90px;
    background-color: #4f95d1;
    box-shadow: 0 10px 0 #2f6089;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.7rem;
    line-height: 1.5;
    transition: all .2s;
}

@media screen and (min-width: 768px), print {
  .btn__basic {
    display: inline-block;
    width: auto;
    min-width: 340px;
    max-width: none;
    margin: 1.5em .5em 0 .5em;
    padding: 1em 3em 1em 2em;
    font-size: 2.2rem;
  }
}
/* 20221117追加*/
/* 戻るのサイズで緑色のボタン*/
@media screen and (min-width: 1200px), print {
    .btn__basic.-mini {
        max-width: 240px;
        min-width:250px;
        font-size:1.8rem;
    }
}
.btn__basic.-mini {
    max-width: 280px;
    width:75%;
}
.btn__basic::before {
    position: absolute;
    top: 50%;
    right: .6em;
    color: #fff;
    content: "\e900";
    font-size: 2rem;
    font-family: "icomoon";
    transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
    .btn__basic::before {
        right: 1em;
    }
}

@media screen and (min-width: 1200px), print {
  .btn__basic {
    min-width: 420px;
  }
}

.btn__basic > i {
  margin-right: .5em;
  font-weight: normal;
  font-size: 2.4rem;
}

@media screen and (min-width: 768px), print {
  .btn__basic > i {
    margin-right: 1em;
  }
}

.btn__basic:first-child {
  margin-top: 0;
}

.btn__basic:hover {
  -webkit-transform: translateY(7px);
  transform: translateY(7px);
  background: #58483e;
  box-shadow: none;
}


@media screen and (min-width: 768px), print {
  .btn__basic::after {
    right: 1.5em;
  }
}

.btn__basic.-big {
    font-size: clamp(15px, 4.2vw, 21px);
}

@media screen and (min-width: 768px), print {
    .btn__basic.-big {
        min-width: 460px;
        font-size: 2.1rem;
    }
}
.btn__basic.-big > i {
    font-size: 2.2rem;
}
@media screen and (min-width: 768px) {
    .btn__basic.-big > i {
        font-size: 2.6rem;
    }
}
@media screen and (min-width: 768px), print {
    .btn__basic.-big {
        font-size: 2.2rem;
    }
    .btn__basic.-big.-mainMenu {
        max-width: 460px;
        font-size: 1.9rem;
    }
}

.btn__basic.-big02 {
    padding: 1.4em 2em 1.4em 1em;
    font-size: clamp(15px, 4.8vw, 24px);
}

@media screen and (min-width: 768px), print {
        .btn__basic.-big02 {
            min-width: 620px;
            padding: 1.2em 3em 1.2em 2em;
            font-size: 2.6rem;
        }
    }
.btn__basic.-biggest {
    padding: 1.4em 2em 1.4em 1em;
    font-size: clamp(15px, 4.8vw, 24px);
}

@media screen and (min-width: 768px) {
    .btn__basic.-biggest {
        min-width: 620px;
        padding: 1.2em 3em 1.2em 2em;
        font-size: 2.6rem;
    }
}

.btn__basic.-biggest > i {
    font-size: 2.2rem;
}

@media screen and (min-width: 768px) {
    .btn__basic.-biggest > i {
        font-size: 3rem;
    }
}

/*20221117追加*/
/*.btn__return.-green {
    background-color: #4f95d1;
}
*/
.btn__basic.-pink {
  background-color: #ec637f;
}

.btn__basic.-pink:hover {
  background: #58483e;
}

.btn__basic.-whiteblue {
    background-color: #6495ed;
}

.btn__basic.-whiteblue:hover {
    background: #58483e;
}
.btn__return {
    position: relative;
    display: block;
    overflow: hidden;
    max-width: 280px;
    width: 85%;
    margin: 1em auto;
    padding: .8em 2.5em;
    outline: none;
    border-radius: 80px;
    background-color: #737272;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.5rem;
    transition: all .2s;
}

@media screen and (min-width: 768px) {
    .btn__return {
        display: inline-block;
        min-width: 240px;
        max-width: none;
        width: auto;
        margin: 0 .3em;
        font-size: 1.7rem;
    }
}

.btn__return:hover {
    background-color: #424242;
}

.btn__return::after {
    position: absolute;
    top: 50%;
    left: 1em;
    content: "\e90f";
    font-weight: normal;
    font-family: "icomoon" !important;
    transform: translateY(-50%);
}
.btn__square {
    position: relative;
    display: block;
    overflow: hidden;
    min-width: 160px;
    margin: 1em auto;
    padding: .5em 2.5em .5em 1.5em;
    outline: none;
    border: 1px solid #737272;
    border-radius: 5px;
    background-color: rgba(141, 187, 227, .2);
    background-color: #fff;
    color: #000;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.4rem;
    transition: all .2s;
}

@media screen and (min-width: 768px) {
    .btn__square {
/*        display: inline-block;
*/        max-width: none;
        margin: 0 .3em;
        font-size: 1.5rem;
    }
}

.btn__square:hover {
    background-color: rgba(141, 187, 227, .2);
}

.btn__square::after {
    position: absolute;
    top: 50%;
    right: 1em;
    content: "\e900";
    font-weight: normal;
    font-family: "icomoon" !important;
    transform: translateY(-50%);
}

/*.btn__return {
    position: relative;
    display: block;
    overflow: hidden;
    max-width: 280px;
    width: 85%;
    margin: 1em auto;
    padding: .8em 2.5em;
    outline: none;
    border-radius: 80px;
    background-color: #737272;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.5rem;
    transition: all .2s;
}

@media screen and (min-width: 768px) {
    .btn__return {
        display: inline-block;
        min-width: 240px;
        max-width: none;
        width: auto;
        margin: 0 .3em;
        font-size: 1.7rem;
    }
}

.btn__return:hover {
    background-color: #424242;
}*/

/* 20221117削除 */
/*.btn__return::after {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 1.5em;
  transform: translateY(-50%);
  content: "\f054";
  font-weight: normal;
  font-size: 1.6rem;
  font-family: "icomoon" !important;*/
/*}*/
/* 20221117追加 */
/*.btn__return::before {
    -webkit-transform: translateY(-50%);
    position: absolute;*/
    /*top: 50%;*/
    /*right: 17em;*/
    /*left: 1em;
    transform: translateY(-50%);
    transform: rotate(180deg);
    content: "\e90f";
    font-weight: normal;*/
    /*font-size: 1.6rem;*/
    /*font-family: "icomoon" !important;
}*/
/*.btn__return::after {
    position: absolute;
    top: 50%;
    left: 1em;
    content: "\e90f";
    font-weight: normal;
    font-family: "icomoon" !important;
    transform: translateY(-50%);
}*/

.btn__pdf {
  display: inline-block;
  position: relative;
  margin: 0 .5em;
  padding: .6em 2.5em .6em 1em;
  overflow: hidden;
  border: 2px solid #58483e;
  border-radius: 40px;
  outline: none;
  background-color: #f6f5f5;
  color: #58483e;
  font-weight: 400;
  font-size: 1.5rem;
  text-align: left;
  text-decoration: none;
  transition: all .5s;
}

@media screen and (min-width: 768px), print {
  .btn__pdf {
    padding: .6em 3em .6em 2em;
    font-size: 1.6rem;
  }
}
.form__item:first-child {
    margin-top: 0;
}

.btn__pdf:hover {
  background-color: #f8f2c9;
  box-shadow: 0 0 20px rgba(161, 159, 159, 0.8);
}

.btn__pdf::before {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 52%;
  right: 1em;
  transform: translateY(-50%);
  content: "\f054";
  font-weight: normal;
  font-size: 1.6rem;
  font-family: "icomoon" !important;
}

@media screen and (min-width: 768px), print {
  .btn__pdf::before {
    right: 1.5em;
  }
}

.btn__pdf i {
  position: relative;
  top: .1em;
  margin-right: .5em;
  border-color: #737272;
  font-size: 2.2rem;
}

.btn__other {
  display: block;
  position: relative;
  margin: 1em auto 0 auto;
  padding: .8em 3em .8em 1em;
  overflow: hidden;
  border-radius: 5px;
  outline: none;
  background-color: #404040;
  color: #fff;
  font-weight: 400;
  font-size: 1.5rem;
  text-align: center;
  text-decoration: none;
  transition: all .5s;
}

.btn__other_up {
    display: block;
    position: relative;
    margin: 1em auto 0 auto;
    padding: .8em 3em .8em 1em;
    overflow: hidden;
    border-radius: 5px;
    outline: none;
    background-color: #4f95d1;
    color: #fff;
    font-weight: 400;
    font-size: 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: all .5s;
}

@media screen and (min-width: 768px), print {
  .btn__other {
    display: inline-block;
    margin: 0 .5em;
    padding: .8em 3em .8em 2em;
  }
.btn__other_up {
    display: inline-block;
    margin: 0 .5em;
    padding: .8em 3em .8em 2em;
}
}

.btn__other:hover {
  background-color: #58483e;
  box-shadow: 0 0 20px rgba(161, 159, 159, 0.8);
}
.btn__other_up:hover {
    background-color: #58483e;
    box-shadow: 0 0 20px rgba(161, 159, 159, 0.8);
}

.btn__other::before {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 52%;
  right: 1em;
  transform: translateY(-50%);
  content: "\f054";
  font-weight: normal;
  font-size: 1.4rem;
  font-family: "icomoon" !important;
}
.btn__other_up::before {
    -webkit-transform: translateY(-50%);
    position: absolute;
    top: 52%;
    right: 1em;
    transform: translateY(-50%);
    content: "\f054";
    font-weight: normal;
    font-size: 1.4rem;
    font-family: "icomoon" !important;
}
.btn__basic.-upload {
    background-color: #10b68c;
    box-shadow: 0 10px 0 #0a7056;
}

    .btn__basic.-upload:hover {
        background: #484d52;
        box-shadow: none;
        transform: translateY(10px);
    }

.btn__basic.-upload2 {
    background-color: #0c4eba;
    box-shadow: 0 10px 0 #062c6a;
}

    .btn__basic.-upload2:hover {
        background: #484d52;
        box-shadow: none;
        transform: translateY(10px);
    }

.btn__small {
    position: relative;
    display: block;
    overflow: hidden;
    min-width: 150px;
    max-width: 280px;
    width: 90%;
    margin: 1em auto;
    padding: 1em 1.5em 1em 1em;
    outline: none;
    border-radius: 80px;
    background-color: #4f95d1;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.5;
    transition: all .2s;
}

@media screen and (min-width: 768px) {
    .btn__small {
        display: inline-block;
        max-width: none;
        width: auto;
        margin: 0 .3em;
        padding: .8em 2.5em .8em 2em;
        font-size: 1.6rem;
    }
}

.btn__small:hover {
    background-color: #424242;
}

.btn__small::after {
    position: absolute;
    top: 50%;
    right: .8em;
    content: "\e900";
    font-weight: normal;
    font-family: "icomoon" !important;
    transform: translateY(-50%);
}

.btn__small > i {
    margin-right: .5em;
}

.btn__small.-uplord {
    background-color: #10b68c;
}

    .btn__small.-uplord:hover {
        background-color: #424242;
    }
.btn__gray {
    position: relative;
    display: block;
    overflow: hidden;
    max-width: 280px;
    width: 90%;
    margin: 1em auto;
    padding: .8em 2.5em;
    outline: none;
    border-radius: 80px;
    background-color: #737272;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.5rem;
    transition: all .2s;
}

@media screen and (min-width: 768px) {
    .btn__gray {
        display: inline-block;
        min-width: 240px;
        max-width: none;
        width: auto;
        margin: 0 .3em;
        font-size: 1.7rem;
    }
}

.btn__gray:hover {
    background-color: #424242;
}

.btn__gray::after {
    position: absolute;
    top: 50%;
    right: 1em;
    content: "\e900";
    font-weight: normal;
    font-family: "icomoon" !important;
    transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
    .btn__gray.-small {
        min-width: auto;
        padding: .5em 3em;
        font-size: 1.6rem;
    }
}

.btn__unit {
  margin: 2em 1.5em 0 1.5em;
  text-align: center;
}

@media screen and (min-width: 768px), print {
  .btn__unit {
    margin: 4em 1em 0 1em;
  }
}

/*.btn__unit.-return > .btn__return {
  display: block;
  margin-top: 2em;
}

@media screen and (min-width: 768px), print {
  .btn__unit.-return > .btn__return {
    max-width: 240px;
  }
}
*/
/* Modal */
.modal {
  visibility: hidden;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal.is-show {
  visibility: visible;
}

.modalWrap {
  -webkit-transform: translate(-50%, -50%);
  visibility: hidden;
  z-index: 2;
  position: absolute;
  top: 53%;
  left: 50%;
  width: 95%;
  height: 95%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .3s ease;
}

@media screen and (min-width: 768px), print {
  .modalWrap {
    width: 90%;
    height: 90%;
  }
}

.is-show .modalWrap {
  visibility: visible;
  top: 50%;
  opacity: 1;
}

.modalBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.7);
}

.modalContent {
  -webkit-filter: drop-shadow(0px 2px 6px rgba(30, 30, 30, 0.9));
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: calc(95vh - 50px);
  border-radius: 20px;
  background: #fff;
  filter: drop-shadow(0px 2px 6px rgba(30, 30, 30, 0.9));
}

@media screen and (min-width: 768px), print {
  .modalContent {
    padding-bottom: calc(90vh - 50px);
  }
}

.modalContent iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.modalHeader {
  display: flex;
  position: relative;
  align-items: center;
  height: 50px;
  padding: 0 3em 0 1.5em;
  border-radius: 20px 20px 0 0;
  background-color: #58483e;
  color: #fff;
  font-size: 1.4rem;
}

@media screen and (min-width: 768px), print {
  .modalHeader {
    font-size: 1.5rem;
  }
}

.modalClose {
  position: absolute;
  right: .5em;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  text-decoration: none;
}

@media screen and (min-width: 768px), print {
  .modalClose {
    right: 1em;
  }
}

.modalClose:hover, .modalClose:focus {
  text-decoration: none;
  cursor: pointer;
}

@-webkit-keyframes show {
  from {
    top: 55%;
    opacity: 0;
  }
  to {
    top: 50%;
    opacity: 1;
  }
}

@keyframes show {
  from {
    top: 55%;
    opacity: 0;
  }
  to {
    top: 50%;
    opacity: 1;
  }
}

.modalBtn {
  display: block;
  position: relative;
  min-width: 180px;
  margin: .5em auto 0 auto;
  padding: .3em 2.5em .3em 2em;
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 5px;
  color: #fff;
  font-weight: 400;
  font-size: 1.6rem;
  text-align: center;
  text-decoration: none;
  transition: all .5s;
  vertical-align:middle;
}

@media screen and (min-width: 768px), print {
  .modalBtn {
    display: inline-block;
    min-width: auto;
    margin: 0 0 0 2em;
    padding: .3em 2.5em .3em 1em;
    text-align: left;
  }
}

.modalBtn:hover {
    border: 2px solid #4f95d1;
}

.modalBtn::before {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 52%;
  right: 1em;
  transform: translateY(-50%);
  content: "\f054";
  font-weight: normal;
  font-size: 1.2rem;
  font-family: "icomoon" !important;
  transition: all .5s;
}

.modalBtn:hover::before {
    color: #4f95d1;
}

/***** allpage utility *****/
/* align */
.align--left {
  text-align: left;
}

.align--left--margin {
    text-align: left;
    margin-left: 15px;
    margin-bottom: 10px;
}

.align--center {
  text-align: center;
}

.align--right {
  text-align: right;
}

/* margin */
.mt1 {
  margin-top: 1em;
}

.mt2 {
  margin-top: 1em;
}

@media screen and (min-width: 768px), print {
  .mt2 {
    margin-top: 2em;
  }
}

.mt3 {
  margin-top: 1.5em;
}

@media screen and (min-width: 768px), print {
  .mt3 {
    margin-top: 3em;
  }
}

.mt4 {
  margin-top: 2em;
}

@media screen and (min-width: 768px), print {
  .mt4 {
    margin-top: 4em;
  }
}

.mt5 {
  margin-top: 2.5em;
}

@media screen and (min-width: 768px), print {
  .mt5 {
    margin-top: 5em;
  }
}

/* margin-bottom */
.mb1 {
    margin-bottom: 1em;
}

/* display */
@media screen and (min-width: 768px) {
  .display--sp {
    display: none !important;
  }
}

@media screen and (min-width: 1200px) {
  .display--tab {
    display: none !important;
  }
}

.display--tabOnly {
  display: none;
}

@media screen and (min-width: 769px) and (max-width: 1199px) {
  .display--tabOnly {
    display: block !important;
  }
}

@media screen and (max-width: 1199px) {
  .display--pc {
    display: none !important;
  }
}



@media screen and (max-width: 767px) {
  .none--sp {
    display: none !important;
  }
}


/*大串追加*/

/* jQuertUIの閉じるボタン消す */
button.ui-dialog-titlebar-close {
    display: none;
}

/*上部のエラーメッセージ(共通文言の下に表示されるエラー)*/
.validation-summary-errors li {
    display: normal;
    list-style: none;
    margin: 0.5em 0;
    /*font-size: 1.6rem;*/
    /*20221117 */
    margin-bottom: .3em;
    padding: .3em .5em;
    border-radius: 5px;
    background-color: #FFD9D9;
    font-weight: 700;
   
}
/*20221117追加 */
.validation-summary-errors.notice__form {
    padding: .3em .5em;
    background-color: #FFD9D9;
    font-size: 2.5rem;
}

/*上部のエラーメッセージ(共通文言)*/
.validation-summary-errors {
    text-align: center;
    font-size: 2.5rem;
}

/* スマホ向けエラーメッセージサイズ */
@media screen and (max-width: 767px) {
    .validation-summary-errors.notice__form {
        font-size: 2rem;
    }
}


/*検証エラーの項目の色*/
.input-validation-error {
    background-color: #ffeeee !important;
}
/*readonlyを灰色にする*/
input:read-only, textarea:read-only {
    background-color: #e6e6e6;
}

/*パスワード変更画面*/
@media screen and (min-width: 768px), print {
    .psws__subject {
        width: 40%;
    }
}
/*証明書アップロード画面用 */
img.doc {
    width: 100%;
}
/* パスワード変更画面用 */
.pswd__wrap {
    margin-right: 1em;
    margin-left: 1em;
    padding: 1em 0 1em 0;
}

@media screen and (min-width: 1200px), print {
.pswd__wrap {
    width: 800px;
    margin: 0 auto;
    padding: 1em 0 1em 0;
}
}

/*各入力項目に付与されるエラーメッセージ*/
/*.notice__form {
    display: block;
    position: relative;*/
    /*top: .2em;*/
    /*width: 100%;
    padding: 0 0 0 1.4em;
    color: #f30334;
    font-weight: 700;*/
    /*画面によって2～1.7まちまちのため大きいのに統一する*/    
    /*font-size: 2rem;
}*/


/* 個人情報入力系アナウンス領域のエラーメッセージ */
.notice__form__personal {
    color: #f30334;
}

/* スマホ向けエラーメッセージサイズ */
/*@media screen and (max-width: 767px) {
    .notice__form {
        font-size: 1.7rem;
        
    }
}

.notice__form > i {
    position: absolute;
    top: .4em;
    left: 0;*/
   /* font-size: 1.4rem;*/
/*}

@media screen and (min-width: 1200px), print {
    .notice__form > i {
        top: .4em;*/
        /*font-size: 1.5rem;*/
    /*}
}*/

.apply__gakureki{
    font-size:1.7rem;
    font-weight:bold;
}
@media screen and (min-width: 1200px), print {
    .apply__gakureki {
        font-size: 2rem;
    }
}

/* margin */
.mgrl {
    margin-left: 1em;
    margin-right: 1em;
}

.youshiki {
    background-color: black;
    color: white;
    padding-left: 6px;
    padding-right: 6px;
}

.reupload {
    background-color: red !important;
    color: white !important;
}

.simpleFrame {
    border: solid 1px #000;
    padding: 5px;
    margin: 5px;
}

/* 2023.06 赤枠のスタイル作成 */
/* 親スタイルがある時と分ける */
.simpleFrame_Red_Parent {
    border: solid 1px #f30334;
    padding: 10px;
    margin: auto;
}

.simpleFrame_Red_NotParent {
    border: solid 1px #f30334;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top:3em;
}

.simpleFrame_Red_kessai {
    border: solid 1px #f30334;
    padding-top: 10px;
    padding-bottom: 10px;
}

.simpleFrame_Red {
    border: solid 1px #f30334;
    padding-top: 10px;
    padding-bottom: 10px;

}
@media screen and (min-width: 768px), print {
    .simpleFrame_Red {
        border: solid 1px #f30334;
        padding-top: 10px;
        padding-bottom: 10px;
        margin-top: 3em;
    }
}

.font_subjectAdd {
    font-size: 1.5rem;
}

@media screen and (min-width: 1200px), print {
    font_subjectAdd {
        font-size: 1.6rem;
    }
}

/* 試験結果確認 一部科目合格*/
@media screen and (min-width: 1100px) {
    .detail-a {
        margin-top: -3em;
    }
}
/* 試験結果確認 合格*/
@media screen and (min-width: 1000px) {
    .detail-b {
        margin-top: -3em;
    }
}
/*注意事項（全免用）*/
.attention {
    border: 3px solid #fcae38;
    border-radius: 10px;
}
/*注意事項（全免用）*/
.attention p{
    font-size: 1.9rem;
}
/*注意事項（全免用）スマホ */
@media screen and (max-width: 767px) {
    .attention p {
        font-size: 1.7rem;
    }
}

/*2023.05.09 証明書アップロード一覧上部固定説明文*/
.fix__notice {
    position: sticky;
    top: -1px;
    z-index: 3;
    font-weight: bold;
    font-size: 2.1rem;
    text-align: center;
    margin: 0;    
}
.fix__notice p {
    background-color: #FCEABB;
    padding: 0.5em;
}
/* スマホ向けサイズ */
@media screen and (max-width: 767px) {
    .fix__notice {
        font-size: 1.7rem;
        text-align:left;
    }
}

/*2023.05.24 メインメニュー上部説明文*/
.align--center_switch {
    text-align: center;
}
/* スマホ向けサイズ*/
@media screen and (max-width: 767px) {
    .align--center_switch {
        text-align: left;
    }
}

/* 2023.06.13 注意事項画面 申請受付期間の改行 */
@media screen and (min-width: 580px) {
    .display--sp2 {
        display: none !important;
    }
}

/* 2023.06.01 add 実技講習会の希望コースの仕様変更に伴い、新規スタイルを作成 sta */
.form__select2 select option {
    padding: 2em 1em;
}

.form__select2 select {
    position: relative;
    width: 100%;
    padding: .6em 2.5em .6em 1em;
    border: 2px solid #d2d0d0;
    border-radius: 5px;
    background-color: #fff;
    transition: all .5s;
}

    .form__select2 select:focus {
        border: 2px solid #4f95d1;
    }

    .form__select2 select:hover {
        border: 2px solid #4f95d1;
    }

.form__select2 {
    position: relative;
    width: 100%;
    align-items:flex-start;
}

@media screen and (min-width: 768px), print {
    .form__select2 {
        width: auto;
    }
}

.form__select2::after {
    -webkit-transform: translateY(-50%) rotate(-135deg);
    z-index: 1;
    position: absolute;
    top: 50%;
    right: 1.3em;
    width: 10px;
    height: 10px;
    transform: translateY(-50%) rotate(-135deg);
    border-top: 3px solid #58483e;
    border-left: 3px solid #58483e;
    content: "";
    pointer-events: none;
}

.form__selectText2 {
    margin: 0 .5em;
    white-space: nowrap;
}

@media screen and (min-width: 768px), print {
    .form__selectText2 {
        margin: 0 .5em;
    }
}

.flex--ct2 {

    flex-wrap: wrap;
    justify-content: center;
}

@media screen and (min-width: 768px), print {
    .flex--ct2 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}
/* 2023.06.01 add 実技講習会の希望コースの仕様変更に伴い、新規スタイルを作成 end */

/* 2023.06.13 余白が広すぎるため別クラスを作成 */
.apply__note_bottomCustom {
    margin-bottom: 0.5em;
    padding: 0.5em;
    padding-bottom: 0;
}

@media screen and (min-width: 768px), print {
    .apply__note_bottomCustom {
        margin-bottom: 0.5em;
        padding-bottom: 0;
    }
}

@media screen and (min-width: 768px), print {
    .apply__note_bottomCustom:last-child {
        margin-bottom: 0;
        padding-bottom:0;
    }
}

.apply__comment_bottomCustom {
    margin: 1em 1em;
}

@media screen and (min-width: 768px), print {
    .apply__comment_bottomCustom {
        margin: 1.5em 1em;
    }
}

@media screen and (min-width: 1200px), print {
    .apply__comment_bottomCustom {
        width: 1080px;
        margin-right: auto;
        margin-left: auto;
    }
}

/* 2023.06.13 ヘッダーの補足項目用 */
.ttl__primary_sub {
    position: relative;
    margin-bottom: 1.5em;
    padding: 0 0 1em 0;
    color: #58483e;
    font-weight: 700;
    font-size: 1.5rem;
}

@media screen and (min-width: 768px), print {
    .ttl__primary_sub {
        font-size: 2rem;
    }
}

/* インデント+通常の文言を表示させるときのバランス調整 */
.indentStyle {
    display: block;
    position: relative;
    margin-top: .5em;
    margin-left: 0;
}

@media screen and (min-width: 768px), print {
    .indentStyle {
    }
}

.indentStyle:first-child {
    margin-top: 0;
}

.indentStyle::before {
    position: absolute;
    top: .3em;
    left: 0;
    color: #58483e;
    font-size: 1rem;
}


/* メインメニューのリンク集 */
.mainMenu__list.-typeC {
    justify-content: center;
    margin-top: 1em;
}

@media screen and (min-width: 768px), print {
    .mainMenu__list.-typeC {
        margin-top: auto;
    }
}

.mainMenu__item.-typeC {
    width: 370px;
    font-size: 15px;
}

@media screen and (min-width: 768px), print {
    .mainMenu__item.-typeC {
        width: auto;
        min-width: 370px;
        font-size: 15px;
    }
}

@media screen and (max-width: 300px), print {
    .mainMenu__item.-typeC {
        font-size: 15px;
        letter-spacing: -1px;
    }
}

/*.mainMenu__btn.-typeC {
    text-align:left;
    padding: .8em;
    height:auto;
}

@media screen and (min-width: 768px), print {
    .mainMenu__btn.-typeC {
        padding: .8em 1.5em;
    }
}

.mainMenu__btnText.-typeC {
    flex: 1 0 10%;
    justify-content: flex-start;
    height: auto;
    margin: 0 .5em;
}

@media screen and (min-width: 768px), print {
    .mainMenu__btnText.-typeC {
        margin: 0 1em;
    }
}
*/
/* インデント赤 */
.list__typeA_red {
    display: inline-block;
    list-style: none;
    text-align: left;
}

.list__typeA_red li {
    display: block;
    position: relative;
    margin-top: .5em;
    padding-left: 1em;
}

.list__typeA_red li:first-child {
    margin-top: 0;
}

.list__typeA_red li::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "※";
    color: #f30334;
}



.list__typeD {
    display: inline-block;
    list-style: none;
    text-align: left;
}

.list__typeD li {
    display: block;
    position: relative;
    margin-top: .5em;
    margin-left: 0;
    padding-left: 1em;
}

@media screen and (min-width: 768px), print {
    .list__typeD li {
        margin-left: .3em;
    }
}

.list__typeD li:first-child {
    margin-top: 0;
}

.list__typeD li::before {
    position: absolute;
    top: .3em;
    left: 0;
    content: "・";
    color: #58483e;
    font-size: 1.3rem;
}


.list__typeResult {
    display: inline-block;
    list-style: none;
    text-align: left;
}

.list__typeResult li {
    display: block;
    position: relative;
    margin-top: .5em;
    padding-left: 4em;
}

.list__typeResult li:first-child {
    margin-top: 0;
}

.list__typeResult li::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "【重要】";
    color: #f30334;
    font-weight: bold;
}

.mainMenu__link {
    margin-bottom: 0em;
}

@media screen and (min-width: 768px), print {
    .mainMenu__link {
        margin-bottom: 1em;
    }
}


/* 新確認画面のアップロードボタン */
.btn__other_conmfirm {
    display: block;
    position: relative;
    margin: 1em auto 0 auto;
    padding: 0.1em 2em 0.1em 0.5em;
    overflow: hidden;
    border-radius: 5px;
    outline: none;
    background-color: #404040;
    color: #fff;
    font-weight: 400;
    font-size: 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: all .5s;
}

@media screen and (min-width: 768px), print {
    .btn__other_conmfirm {
        display: inline-block;
        margin: 0 .5em;
        padding: 0.1em 2em 0.1em 1em;
    }
}

.btn__other_conmfirm:hover {
    background-color: #58483e;
    box-shadow: 0 0 20px rgba(161, 159, 159, 0.8);
}

.btn__other_conmfirm::before {
    -webkit-transform: translateY(-50%);
    position: absolute;
    top: 52%;
    right: 1em;
    transform: translateY(-50%);
    content: "\f054";
    font-weight: normal;
    font-size: 1.4rem;
    font-family: "icomoon" !important;
}

@media screen and (max-width: 767px), print {
    .form__input > button.btn__other_conmfirm {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
}
.space_big {
    width: 120px;
    height: auto;
    display: inline-block;
}

td.flex-center{
    display: grid;
    place-items: center; /* 水平方向・垂直方向の中央配置 */
    height: 100px; /* セルの高さ（例） */
    padding: 10px;
}
@media print {
    body {
        -webkit-print-color-adjust: exact;
    }
}
/* デザイナーからの受領分 */

/* align */
.mt--xl {
    margin-top: 4rem;
}

@media screen and (min-width: 768px) {
    .mt--xl {
        margin-top: 6rem;
    }
}

.mt--lg {
    margin-top: 3rem;
}

@media screen and (min-width: 768px) {
    .mt--lg {
        margin-top: 4rem;
    }
}

.mt--md {
    margin-top: 2rem;
}

@media screen and (min-width: 768px) {
    .mt--md {
        margin-top: 3rem;
    }
}

.mt--sm {
    margin-top: 1rem;
}

@media screen and (min-width: 768px) {
    .mt--sm {
        margin-top: 2rem;
    }
}

.mt--xs {
    margin-top: 1rem;
}

@media screen and (min-width: 768px) {
    .mt--xs {
        margin-top: 1rem;
    }
}

.mb--xl {
    margin-bottom: 8rem;
}

@media screen and (min-width: 768px) {
    .mb--xl {
        margin-bottom: 8rem;
    }
}

.mb--lg {
    margin-bottom: 5rem;
}

@media screen and (min-width: 768px) {
    .mb--lg {
        margin-bottom: 5rem;
    }
}

.mb--md {
    margin-bottom: 3rem;
}

@media screen and (min-width: 768px) {
    .mb--md {
        margin-bottom: 3rem;
    }
}

.mb--sm {
    margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
    .mb--sm {
        margin-bottom: 2rem;
    }
}

.mb--xs {
    margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
    .mb--xs {
        margin-bottom: 1rem;
    }
}
.font--red {
    color: #f30334;
}
/* box */
.box__line {
    padding: 1em;
    border-top: 5px solid #4f95d1;
}

@media screen and (min-width: 768px) {
    .box__line {
        padding: 2em;
    }
}

.box__line.-white {
    background-color: #fff;
}

.box__bg {
    padding: 1em;
    background-color: #fff;
}

@media screen and (min-width: 768px) {
    .box__bg {
        padding: 2em;
    }
}

.box__kadomaru {
    border: 5px solid #fff;
    border-radius: 10px;
    background-color: #fff;
}

@media screen and (min-width: 768px) {
    .box__kadomaru {
        border: 10px solid #fff;
        border-radius: 20px;
    }
}

.box__complete {
    padding: 2em 1em;
}

@media screen and (min-width: 768px) {
    .box__complete {
        padding: 4em 3em;
    }
}

.box__padding {
    padding: 1em;
}

.center--spLeft {
    text-align: left;
}

@media screen and (min-width: 768px) {
    .center--spLeft {
        text-align: center;
    }
}
/* list */
.list__margin {
    margin-right: .5em;
    margin-left: .5em;
}

@media screen and (min-width: 768px) {
    .list__margin {
        margin-right: 1em;
        margin-left: 1em;
    }
}

.list__dotto {
    list-style: none;
}

    .list__dotto > li {
        position: relative;
        margin-bottom: .4em;
        padding-left: 1.3em;
    }

        .list__dotto > li:last-child {
            margin-bottom: 0;
        }

        .list__dotto > li::before {
            position: absolute;
            top: .3em;
            left: 0;
            display: inline-block;
            color: #4f95d1;
            content: "●";
            font-size: 1.1rem;
        }

@media screen and (min-width: 768px) {
    .list__dotto > li::before {
        top: .5em;
    }
}

.list__kome {
    list-style: none;
}

    .list__kome > li {
        position: relative;
        margin-bottom: .4em;
        padding-left: 1.3em;
    }

        .list__kome > li:last-child {
            margin-bottom: 0;
        }

        .list__kome > li::before {
            position: absolute;
            top: 0;
            left: 0;
            display: inline-block;
            content: "※";
        }

.list__maru {
    list-style: none;
    padding-left: 2em;
}
@media screen and (min-width: 768px) {
    .list__maru {
        padding-left: 7.3em;
    }
}

    .list__maru > li {
        position: relative;
        margin-bottom: .4em;
        padding-left: 1.3em;
    }

        .list__maru > li:last-child {
            margin-bottom: 0;
        }

        .list__maru > li::before {
            position: absolute;
            top: 0;
            left: 0;
            display: inline-block;
            content: "◎";
        }

.list__no > li {
    margin-bottom: .4em;
    margin-left: 1.3em;
}
@font-face {
    font-weight: normal;
    font-style: normal;
    font-family: "icomoon";
    src: url("../fonts/icomoon.eot?eztfg2");
    src: url("../fonts/icomoon.eot?eztfg2#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?eztfg2") format("truetype"), url("../fonts/icomoon.woff?eztfg2") format("woff"), url("../fonts/icomoon.svg?eztfg2#icomoon") format("svg");
    font-display: block;
}

[class^=icon-],
[class*=" icon-"] {
    text-transform: none;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: "icomoon" !important;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    speak: never;
    -moz-osx-font-smoothing: grayscale;
}

.icon-woman:before {
    content: "\e911";
}

.icon-man:before {
    content: "\e912";
}

.icon-pdf:before {
    content: "\e910";
}

.icon-mail_line:before {
    content: "\e904";
}

.icon-arrow_right:before {
    content: "\e905";
}

.icon-camera:before {
    content: "\e91e";
}

.icon-circle-with-minus:before {
    content: "\e91f";
}

.icon-circle-with-plus:before {
    content: "\e920";
}

.icon-images:before {
    content: "\e91a";
}

.icon-leaf:before {
    content: "\e915";
}

.icon-light-bulb:before {
    content: "\e913";
}

.icon-location-pin:before {
    content: "\e916";
}

.icon-share-alternitive:before {
    content: "\e91b";
}

.icon-cheveron-left:before {
    content: "\e90f";
}

.icon-cheveron-up:before {
    content: "\e902";
}

.icon-credit-card:before {
    content: "\e921";
}

.icon-download:before {
    content: "\e91c";
}

.icon-information-outline:before {
    content: "\e909";
}

.icon-information-solid:before {
    content: "\e90a";
}

.icon-lock-closed:before {
    content: "\e908";
}

.icon-upload:before {
    content: "\e91d";
}

.icon-user-solid-square:before {
    content: "\e925";
}

.icon-view-hide:before {
    content: "\e90c";
}

.icon-view-show:before {
    content: "\e90d";
}

.icon-chevron-down:before {
    content: "\e90b";
}

.icon-chevron-right:before {
    content: "\e900";
}

.icon-triangle-right:before {
    content: "\e901";
}

.icon-library_add:before {
    content: "\e922";
}

.icon-library_books:before {
    content: "\e917";
}

.icon-link:before {
    content: "\e90e";
}

.icon-local_convenience_store:before {
    content: "\e924";
}

.icon-assignment:before {
    content: "\e92a";
}

.icon-assignment_ind:before {
    content: "\e929";
}

.icon-assignment_late:before {
    content: "\e918";
}

.icon-assignment_turned_in:before {
    content: "\e919";
}

.icon-delete:before {
    content: "\e923";
}

.icon-offline_pin:before {
    content: "\e927";
}

.icon-logout:before {
    content: "\e903";
}

.icon-switch_account:before {
    content: "\e926";
}

.icon-people_alt:before {
    content: "\e906";
}

.icon-emoji_objects:before {
    content: "\e914";
}

.icon-fact_check:before {
    content: "\e928";
}

.icon-login:before {
    content: "\e907";
}

.icon-check-circle:before {
    content: "\f058";
}

.icon-credit-card1:before {
    content: "\e93f";
}

.icon-file-pdf:before {
    content: "\eadf";
}

/* bg */
.bg__gray {
    background-color: #f1f3f4;
}

.bg__white {
    background-color: #fff;
}
/* component */
.attention__unit {
    position: relative;
    min-height: 45px;
    margin-bottom: 1em;
    padding-top: 55px;
    color: #fc0210;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.5;
}

@media screen and (min-width: 768px), print {
    .attention__unit {
        min-height: 65px;
        margin-bottom: 1.5em;
        padding-top: .5em;
        padding-left: 90px;
        font-size: 1.7rem;
    }
}

.attention__unit > i {
    position: absolute;
    top: 0;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 40px;
    margin-bottom: .5em;
    margin-inline: auto;
    padding: .5em;
    border-radius: 5px;
    background-color: #fc0210;
    color: #fff;
    font-size: 2.6rem;
    transform: translateX(-50%);
}

@media screen and (min-width: 768px), print {
    .attention__unit > i {
        left: 0;
        width: 65px;
        height: 65px;
        margin-right: 1em;
        margin-left: 0;
        font-size: 3.2rem;
        transform: none;
    }
}

.attention__unit > i::after {
    position: absolute;
    bottom: -10px;
    left: 50%;
    border-style: solid;
    border-top: 10px solid #fc0210;
    border-right: 8px solid transparent;
    border-bottom: 0;
    border-left: 8px solid transparent;
    content: "";
    transform: translateX(-50%);
}

.attention__unitTtl {
    margin-bottom: .5em;
    padding-bottom: .5em;
    border-bottom: 1px dotted #c4c4c4;
    font-size: 1.6rem;
}

@media screen and (min-width: 768px) {
    .attention__unitTtl {
        font-size: 2rem;
    }
}

.attention__unit > ul {
    margin-left: .5em;
    list-style: none;
}

@media screen and (min-width: 768px) {
    .attention__unit > ul {
        font-size: 1.6rem;
    }
}

.attention__unit > ul > li {
    position: relative;
    margin-bottom: .2em;
    padding-left: 1.2em;
}

    .attention__unit > ul > li:last-child {
        margin-bottom: 0;
    }

    .attention__unit > ul > li::before {
        position: absolute;
        top: .3em;
        left: 0;
        display: inline-block;
        content: "▶";
        font-size: 1.1rem;
    }

@media screen and (min-width: 768px) {
    .attention__unit > ul > li::before {
        top: .5em;
    }
}

.attention__center {
    margin: 1em 0;
    padding: 1em;
    background-color: rgba(243, 3, 52, .1);
    color: #f30334;
    text-align: left;
    font-weight: 500;
    font-size: 1.5rem;
}

@media screen and (min-width: 768px) {
    .attention__center {
        margin: 2em 0;
        text-align: center;
        font-size: 1.7rem;
    }
}

.attention__center > i {
    margin-right: .5em;
}

.attention__text {
    color: #f30334;
    font-weight: 500;
    font-size: 1.6rem;
}

@media screen and (min-width: 768px) {
    .attention__text {
        font-size: 1.9rem;
    }
}

.notice__form {
    position: relative;
    display: inline-block;
    margin-top: .4em;
    padding: 0 0 0 1.4em;
    color: #f30334;
    font-weight: 500;
    line-height: 1.5;
}

    .notice__form > i {
        position: absolute;
        top: .3em;
        left: 0;
        font-size: 1.5rem;
    }

@media screen and (min-width: 768px) {
    .notice__form > i {
        font-size: 1.6rem;
    }
}

.notice__form.-bigger {
    padding: 0;
    font-size: 1.5rem;
}

@media screen and (min-width: 768px) {
    .notice__form.-bigger {
        font-size: 1.8rem;
    }
}

.notice__form.-bigger > i {
    top: .2em;
    font-size: 1.6rem;
}

@media screen and (min-width: 768px) {
    .notice__form.-bigger > i {
        font-size: 2rem;
    }
}
.list__dotto {
    list-style: none;
}

    .list__dotto > li {
        position: relative;
        margin-bottom: .4em;
        padding-left: 1.3em;
    }

        .list__dotto > li:last-child {
            margin-bottom: 0;
        }

        .list__dotto > li::before {
            position: absolute;
            top: .3em;
            left: 0;
            display: inline-block;
            color: #4f95d1;
            content: "●";
            font-size: 1.1rem;
        }
/* table */
.table__nomal {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    background-color: #fff;
}

    .table__nomal tr {
        border-bottom: 8px solid #fff;
    }

@media screen and (min-width: 768px) {
    .table__nomal tr {
        border: 1px solid #d2d0d0;
    }
}

@media screen and (min-width: 768px) {
    .table__nomal tr:hover {
        background-color: #dbe9f7;
    }
}

.table__nomal th,
.table__nomal td {
    display: block;
}

@media screen and (min-width: 768px) {
    .table__nomal th,
    .table__nomal td {
        display: table-cell;
        padding: .5em 1em;
    }
}

.table__nomal th {
    padding: .5em;
    border-bottom: 3px solid #fff;
    background-color: #deebf8;
    color: #000;
    vertical-align: top;
    text-align: left;
    font-weight: 500;
}

@media screen and (min-width: 768px) {
    .table__nomal th {
        width: 40%;
        border-bottom: none;
        background-color: rgba(211, 228, 245, .7);
        white-space: nowrap;
    }
}

.table__nomal td {
    min-height: 30px;
    padding: .2em 1em;
    font-weight: 400;
}

@media screen and (min-width: 768px) {
    .table__nomal td {
        padding: .5em;
    }
}

.table__nomal .td__co01 {
    border-bottom: 1px dotted #d1d1d1;
    background-color: rgba(211, 228, 245, .3);
}

@media screen and (min-width: 768px) {
    .table__nomal .td__co01 {
        border-bottom: none;
    }
}

.table__nomal .certificate__tag {
    max-width: 180px;
    margin-top: .5em;
    margin-right: auto;
    margin-left: auto;
}

@media screen and (min-width: 768px) {
    .table__nomal .certificate__tag {
        margin-top: 0;
    }
}
.certificate__tag {
    min-width: 200px;
    padding: .5em 1em;
    border: 1px solid #cbc9c9;
    border-radius: 5px;
    background-color: #fff;
    text-align: center;
    font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
    .certificate__tag {
        font-size: 1.6rem;
    }
}
/* certificate */
.certificate__item {
    margin-top: 1em;
    border: 1px solid #dfe0e3;
    border-radius: 5px;
    background-color: #f5f7f8;
}

@media screen and (min-width: 768px) {
    .certificate__item {
        display: flex;
        flex-wrap: wrap;
    }
}

.certificate__item:first-child {
    margin-top: 0;
}

.certificate__itemSub {
    padding: .5em 1em 1em 1em;
    background-color: #aef9e7;
    font-weight: 500;
    font-size: 1.6rem;
}

@media screen and (min-width: 768px) {
    .certificate__itemSub {
        display: flex;
        flex: 1 0 10%;
        flex-wrap: wrap;
        font-size: 1.8rem;
    }

        .certificate__itemSub.-small {
            font-size: 1.6rem;
        }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
    .certificate__itemSub.-small {
        font-size: 1.7rem;
    }
}

@media screen and (min-width: 1200px), print {
    .certificate__itemSub {
        padding: 1.5em;
    }
}

.-typeA .certificate__itemSub {
    background-color: #b1dffa;
}

.-typeB .certificate__itemSub {
    background-color: #d2b4f5;
}

.-typeC .certificate__itemSub {
    background-color: #cef3ad;
}

.-typeD .certificate__itemSub {
    background-color: #f8e0a9;
}

.certificate__itemInput {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1em;
}

@media screen and (min-width: 768px) {
    .certificate__itemInput {
        min-width: 280px;
    }
}

@media screen and (min-width: 1200px), print {
    .certificate__itemInput {
        min-width: 285px;
        padding: 1.5em;
    }
}

.certificate__itemInput .form__hosoku {
    width: 100%;
}

.form .certificate__itemInput {
    justify-content: flex-start;
}

@media screen and (min-width: 768px) {
    .form .certificate__itemInput {
        min-width: 370px;
        width: 45%;
    }
}

.form .certificate__itemInput ::placeholder {
    font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
    .form .certificate__itemInput ::placeholder {
        font-size: 1.6rem;
    }
}

.certificate__tag {
    min-width: 200px;
    padding: .5em 1em;
    border: 1px solid #cbc9c9;
    border-radius: 5px;
    background-color: #fff;
    text-align: center;
    font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
    .certificate__tag {
        font-size: 1.6rem;
    }
}
.form__flex {
    display: flex;
    flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
    .form__flex {
        flex-wrap: nowrap;
    }
}
.form__flexCate {
    min-width: 50px;
    width: 100%;
    margin-bottom: .5em;
    padding-bottom: .5em;
    border-bottom: 1px dotted #000;
}

@media screen and (min-width: 768px) {
    .form__flexCate {
        width: auto;
        margin-right: .5em;
        border-bottom: none;
    }
}
.form__flexbox {
    padding: 1em;
    border: 1px solid #dfe0e3;
    border-radius: 5px;
    background-color: #f5f7f8;
    font-size: 1.5rem;
}

@media screen and (min-width: 1200px), print {
    .form__flexbox {
        margin-top: 0;
        padding: 1.5em;
        font-size: 1.8rem;
    }
}
.form__flexbox.-half {
    width: 100%;
    margin-bottom: .7em;
}

@media screen and (min-width: 768px) {
    .form__flexbox.-half {
        margin-bottom: 1.5em;
    }
}

@media screen and (min-width: 1200px), print {
    .form__flexbox.-half {
        width: calc(50% - .5em);
        margin-right: 1em;
        margin-bottom: 0;
    }
}

.form__flexbox.-half:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 768px) {
    .form__flexbox.-half:last-child {
        margin-right: 0;
    }
}
.form__flexbox.-half label {
    width: 100% !important;
}

/* examination */
.examination__wrap {
    margin-right: 1em;
    margin-left: 1em;
}

@media screen and (min-width: 1200px), print {
    .examination__wrap {
        max-width: 820px;
        margin-inline: auto;
    }
}

.examination__wrap .print {
    font-size: clamp(12px, 1.8vw, 14px);
}

@media screen and (min-width: 768px) {
    .examination__wrap .print {
        font-size: 1.6rem;
    }
}

.examination__form__flex {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column; /* 縦に並ぶ */
}

.examination__ttl {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1em;
    font-weight: 500;
    font-size: clamp(15px, 2.2vw, 24px);
}

@media screen and (min-width: 768px) {
    .examination__ttl {
        margin-top: 1.5em;
        margin-bottom: 1em;
        font-size: 2.4rem;
    }
}

.examination__ttl > span {
    display: inline-block;
    margin-right: .5em;
    padding: 0 .6em;
    border: 2px solid #000;
    background-color: #f1f3f4;
    color: #000;
    font-size: clamp(18px, 2.6vw, 20px);
    line-height: 1.4;
}

@media screen and (min-width: 768px) {
    .examination__ttl > span {
        padding: 0 1em;
        font-size: 2.8rem;
    }
}

.examination__table {
    width: 100%;
    margin-top: .5em;
    border: 2px solid #000;
    border-spacing: 0;
    border-collapse: collapse;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.4;
}

@media screen and (min-width: 768px), print {
    .examination__table {
        margin-top: 1em;
        font-size: 1.6rem;
        line-height: 1.8;
    }
}

@media screen and (min-width: 1200px), print {
    .examination__table {
        min-width: 760px;
    }
}

.print .examination__table {
    font-size: clamp(12px, 1.8vw, 14px);
}

@media screen and (min-width: 768px) {
    .print .examination__table {
        font-size: 1.6rem;
    }
}

.examination__table:first-child {
    margin-top: 0;
}

.examination__table tr {
    border-top: 1px solid #000;
}

.examination__table th {
    width: 75px;
    padding: 3px 7px;
    border-right: 1px solid #000;
    background-color: #f1f3f4;
    white-space: nowrap;
    font-weight: 500;
}

@media screen and (min-width: 768px), print {
    .examination__table th {
        width: 180px;
        padding: 3px 10px;
        white-space: nowrap;
    }
}

.examination__table td {
    padding: 3px 4px;
    text-align: left;
}

@media screen and (min-width: 768px), print {
    .examination__table td {
        padding: 4px 15px;
    }
}

.examination__table td > span.name {
    margin-right: .5em;
}

.result .examination__table td {
    padding: 6px 4px;
}

@media screen and (min-width: 768px) {
    .result .examination__table td {
        padding: 10px 15px;
    }
}

.examination__table.-basic th {
    background-color: rgba(211, 228, 245, .8);
}

.examination__table.-basic td {
    background-color: rgba(211, 228, 245, .2);
}

.examination__table.-place th {
    background-color: #bce891;
    white-space: normal;
}

.examination__table.-place td {
    background-color: #e9f8da;
    word-break: break-word;
}

.examination__table.-subject th {
    background-color: #ecbd6f;
    white-space: normal;
    word-break: break-word;
}

.examination__table.-subject td {
    background-color: #fbefdb;
}

.examination__table .font--big {
    font-size: clamp(15px, 2.3vw, 20px);
}

@media screen and (min-width: 768px) {
    .examination__table .font--big {
        font-size: 2.4rem;
    }
}

.examination__table .col--2 {
    position: relative;
    padding-top: 1.8em;
}

@media screen and (min-width: 768px) {
    .examination__table .col--2 {
        padding-top: 0;
        padding-left: 5em;
    }
}

.examination__table .col--2::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: block;
    border-bottom: 1px dotted #000;
    content: attr(data-sub);
}

@media screen and (min-width: 768px) {
    .examination__table .col--2::before {
        border-bottom: none;
    }
}

.examination__table .map__btn {
    width: 100%;
}

@media screen and (min-width: 768px) {
    .examination__table .map__btn {
        display: flex;
        align-items: center;
        flex: 1 0 10%;
        justify-content: flex-end;
        width: auto;
    }
}

.examination__table .map__btn .btn__gray {
    max-width: 180px;
    margin-top: .5em;
    margin-bottom: .5em;
}

.examination__number {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: .5em;
    font-size: 1.8rem;
}

@media screen and (min-width: 768px) {
    .examination__number {
        margin-top: 2em;
        font-size: 2.5rem;
    }
}

.examination__number > dt {
    margin-right: 1em;
}

.examination__stamp {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-top: 1em;
    text-align: right;
    font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
    .examination__stamp {
        margin-top: 3em;
        font-size: 1.6rem;
    }
}

.examination__stamp > img {
    order: 2;
    width: 80px;
    margin-left: .5em;
}

@media screen and (min-width: 768px) {
    .examination__stamp > img {
        width: 140px;
        margin-left: 1em;
    }
}
/* uplord */
.uplord__wrap {
    padding: .8em;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .uplord__wrap {
        padding: 1.5em;
    }
}

@media screen and (min-width: 1200px), print {
    .uplord__wrap {
        padding: 3em;
    }
}

.uplord__unit {
    margin: .5em;
    background-color: #f5f7f8;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .uplord__unit {
        margin: 2em;
    }
}

.uplord__unitSub {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5em;
    background-color: #10b68c;
    color: #fff;
    font-weight: 500;
    font-size: 2rem;
}

@media screen and (min-width: 768px) {
    .uplord__unitSub {
        padding: .5em 1em;
        font-size: 2.8rem;
    }
}

.uplord__unitBox {
    padding: 1em;
    border: 3px solid #dfe0e3;
    border-top: none;
}

@media screen and (min-width: 768px) {
    .uplord__unitBox {
        padding: 4em 2em;
    }
}

.uplord__img {
    flex: 1 0 10%;
    padding: 1em;
    background-color: #fff;
    box-shadow: 0 0 5px 0 rgb(225, 229, 240);
    text-align: center;
}

@media screen and (min-width: 768px) {
    .uplord__img {
        padding: 2em;
    }
}

.uplord__img img {
    max-width: 100%;
    width: auto;
}

.uplord__nav {
    width: 100%;
    margin-top: 1em;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .uplord__nav {
        width: auto;
        margin-top: 0;
        margin-left: 2em;
    }
}

.uplord__nav .btn__square {
    margin: .6em auto;
}

@media screen and (min-width: 768px) {
    .uplord__nav .btn__square {
        margin: .3em auto;
    }
}

.uplord__pager {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 280px;
    margin-inline: auto;
    padding: .4em;
    border: 1px solid #737272;
    border-radius: 50px;
    background-color: #fff;
}

@media screen and (min-width: 768px) {
    .uplord__pager {
        padding: .8em .4em;
    }
}

.uplord__pager select {
    position: relative;
    padding: .2em 1em;
    border: 1px solid #d2d0d0;
    border-radius: 5px;
    background-color: #f1f3f4;
    color: #000;
    font-size: 2rem;
    line-height: 1.5em;
}

@media screen and (min-width: 768px) {
    .uplord__pager select {
        padding: .4em 1em;
    }
}

.uplord__pagerBtn {
    position: relative;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 .8em;
    border-radius: 60px;
    background-color: #737272;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    line-height: 50px;
    cursor: pointer;
    transition: all .5s;
}

    .uplord__pagerBtn > i {
        font-size: 2rem;
        line-height: 1;
    }

    .uplord__pagerBtn:hover {
        background-color: #424242;
    }

.upload__number {
    width: 100%;
    margin-bottom: 1em;
    padding-bottom: .5em;
    border-bottom: 1px dotted #a9acb4;
    text-align: center;
    font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
    .upload__number {
        font-size: 1.5rem;
    }
}

.upload__number > em {
    margin-right: .2em;
    font-style: normal;
    font-size: 2rem;
}

@media screen and (min-width: 768px) {
    .uplord__ng {
        display: flex;
        flex-wrap: wrap;
    }
}

.uplord__ngText {
    flex: 1 0 10%;
}

.uplord__ngImg {
    margin-top: 1em;
}

@media screen and (min-width: 768px) {
    .uplord__ngImg {
        max-width: 500px;
        width: 50%;
        margin-top: 0;
        margin-left: 1em;
    }
}
/* payment */
.payment__table {
    width: 100%;
    border: 1px solid #c8c8c8;
    border-spacing: 0;
    border-collapse: collapse;
    background-color: #fff;
}

    .payment__table tr {
        border-top: 1px solid #c8c8c8;
    }

    .payment__table th,
    .payment__table td {
        display: block;
    }

@media screen and (min-width: 768px) {
    .payment__table th,
    .payment__table td {
        display: table-cell;
        text-align: left;
    }
}

.payment__table th {
    padding: .5em 1em;
    background-color: #484d52;
    color: #fff;
    font-weight: 400;
}

@media screen and (min-width: 768px) {
    .payment__table th {
        min-width: 130px;
    }
}

.payment__table td {
    padding: .5em;
}

@media screen and (min-width: 768px) {
    .payment__table td {
        padding: .5em 1em;
    }
}

.payment__table .font--em {
    font-weight: 500;
    font-size: 1.7rem;
}

@media screen and (min-width: 768px) {
    .payment__table .font--em {
        font-size: 2rem;
    }
}

.payment__logo {
    width: 100%;
    font-weight: 500;
    font-size: 1.6rem;
}

@media screen and (min-width: 768px) {
    .payment__logo {
        display: flex;
        align-items: center;
        font-size: 1.8rem;
    }
}

.payment__logo > img {
    max-width: 100px;
    margin-right: .5em;
    vertical-align: middle;
}

@media screen and (min-width: 768px) {
    .payment__logo > img {
        max-width: none;
    }
}

.payment__logo > button {
    display: block;
    margin-top: .8em;
    margin-left: auto;
}

@media screen and (min-width: 768px) {
    .payment__logo > button {
        margin-top: 0;
    }
}

.payment__logoTtl {
    display: block;
}

@media screen and (min-width: 768px) {
    .payment__logoTtl {
        display: inline-block;
        margin-right: 1em;
    }
}

.payment__price {
    display: block;
    margin-bottom: .5em;
    padding: .1em .5em;
    border: 1px dotted #d1d1d1;
    border-radius: 5px;
    background-color: rgba(141, 187, 227, .3);
    text-align: center;
    font-weight: 500;
    font-size: 2.4rem;
    line-height: 1.5;
}

@media screen and (min-width: 768px) {
    .payment__price {
        display: inline-block;
        margin-bottom: 0;
        font-size: 2.8rem;
    }
}
.result__col {
    margin-top: 3em;
}

@media screen and (min-width: 768px) {
    .result__col {
        display: flex;
        margin-top: 2em;
    }
}

.result__col:first-child {
    margin-top: 0;
}

.result__unit {
    display: flex;
    flex-direction: column;
    border-right: 1px solid #c8c8c8;
    border-bottom: 1px solid #c8c8c8;
    border-left: 1px solid #c8c8c8;
}

@media screen and (min-width: 768px) {
    .result__unit {
        flex: 1 0 10%;
        border-top: 1px solid #c8c8c8;
        border-right: none;
        border-left: none;
    }
}

.result__unit {
    display: flex;
    flex-direction: column;
    border-right: 1px solid #c8c8c8;
    border-bottom: 1px solid #c8c8c8;
    border-left: 1px solid #c8c8c8;
}

@media screen and (min-width: 768px) {
    .result__unit {
        flex: 1 0 10%;
        border-top: 1px solid #c8c8c8;
        border-right: none;
        border-left: none;
    }
}

.result__unit > dt {
    padding: .5em 1em;
    background-color: #484d52;
    color: #fff;
    white-space: nowrap;
    font-weight: 400;
}

@media screen and (min-width: 768px) {
    .result__unit > dt {
        border-right: 1px solid #c8c8c8;
        text-align: center;
    }
}

.result__unit > dd {
    display: flex;
    flex-grow: 1;
    padding: .5em 1em;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .result__unit > dd {
        align-items: center;
        justify-content: center;
        border-right: 1px solid #c8c8c8;
    }
}

@media screen and (min-width: 768px) {
    .result__unit:first-child {
        min-width: 180px;
    }
}

@media screen and (min-width: 1200px), print {
    .result__unit:first-child {
        min-width: 240px;
    }
}

@media screen and (min-width: 1200px), print {
    .result__unit:last-child {
        min-width: 240px;
    }
}

@media screen and (min-width: 768px) {
    .result__unit:first-child {
        border-left: 1px solid #c8c8c8;
    }
}

.conveni__modalBtn {
    position: relative;
    display: inline-block;
    min-width: 90px;
    margin-left: auto;
    padding: .5em 1.5em .5em .5em;
    border-radius: 5px;
    background-color: #737272;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.5;
    transition: all .2s;
}

@media screen and (min-width: 768px) {
    .conveni__modalBtn {
        min-width: 100px;
        padding: .5em 2em .5em 1em;
        font-size: 1.3rem;
    }
}

.conveni__modalBtn::after {
    position: absolute;
    top: 50%;
    right: .5em;
    content: "\e900";
    font-weight: normal;
    font-family: "icomoon" !important;
    transform: translateY(-50%);
}

.conveni__modalBtn:hover {
    background-color: #424242;
}
/* print */
.print__notice {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1em;
    color: #000;
    font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
    .print__notice {
        margin-top: .5em;
        font-size: 1.5rem;
    }
}

@media screen and (min-width: 768px) {
    .print__notice > a {
        margin-left: 1em;
    }
}
/* pass */
.pass {
    padding: 2em .5em 3em .5em;
    border: 7px solid;
    background-color: #fff;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .pass {
        padding: 3em 1em;
        border: 10px solid;
    }
}

.pass.-passed {
    border-color: #f8cbe4;
}

.pass.-failed {
    border-color: #c8ecfb;
}

.pass.-absence {
    border-color: #caf9d5;
}

.pass__text {
    letter-spacing: .3em;
    font-weight: 600;
    font-size: 3rem;
    font-family: "Noto Serif JP", serif;
}

@media screen and (min-width: 768px) {
    .pass__text {
        font-size: 3.8rem;
    }
}

.pass__col {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding-left: 1.5em;
    border-top: 1px dotted #93999f;
}

    .pass__col > dt {
        min-width: 130px;
        margin-right: .5em;
    }

    .pass__col::before {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        content: attr(data-no);
    }

.example_color {
    color: #4A6EA9;
}

.shrink-content {
    transform: scale(0.8); /* 80%の大きさに縮小 */
    transform-origin: top left; /* 縮小の基準点を左上に設定 */
}
.sp_br {
    display: none;
}

@media screen and (min-width: 600px) {
    .sp_br {
        display: block;
    }
}

.form__Cretbox {
    padding: 1em;
    border: 1px solid #dfe0e3;
    border-radius: 5px;
    background-color: #f5f7f8;
    font-size: 1.5rem;
}

.form__Cretbox.-half {
    width: 100%;
    margin-bottom: .7em;
}

@media screen and (min-width: 768px) {
    .form__Cretbox.-half {
        margin-bottom: 1.5em;
    }
}

@media screen and (min-width: 1200px), print {
    .form__Cretbox.-half {
        margin-bottom: 1.5em;
    }
}

.form__Cretbox.-half:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 768px) {
    .fform__Cretbox.-half:last-child {
        margin-right: 0;
    }
}

.form__Cretbox.-half label {
    width: 100% !important;
}


/* フッター全体 */
.footer {
    background-color: #2a2a2a;
    color: #ddd;
    padding: 20px 0; /* 高さ維持 */
    text-align: center;
    font-size: 0.9rem; /* 全体の基本はそのまま */
}

.footer__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer__copy {
    margin: 0;
    font-size: 1.2rem; /* ← ここをさらに大きく */
    font-weight: 600;
    line-height: 1; /* 高さを抑える */
    white-space: nowrap; /* 改行防止 */
}

.footer__manual {
    margin: 0;
}

    .footer__manual a {
        display: inline-block;
        background: #007bc1;
        color: #fff;
        padding: 6px 12px; /* ← 高さを絶対変えない */
        border-radius: 4px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.2rem; /* ← ボタン文字も大きく */
        line-height: 1;
        white-space: nowrap;
    }

        .footer__manual a:hover {
            background: #005a8c;
        }

/* ─── JATA FAQページ：テーブル中央寄せ＆内側余白 ───── */
section.info table {
  width: 100% !important;       
  max-width: 750px;
  margin: 0 auto;               
  border-collapse: collapse;    
}

#GuideContent {
  padding: 0 1.5rem;            
  box-sizing: border-box;       
  text-align: left;             
}

#GuideContent h5,
#GuideContent h4.faq {
  padding-left: 1.5rem;         
  margin-bottom: 0.75rem;       
}

#GuideContent .answer {
  line-height: 1.6;             
  margin-bottom: 1.5rem;        
}

#GuideContent ul.info__list {
  padding-left: 2rem;           
  margin-bottom: 2rem;          
}

.info__lead-wrapper {
    text-align: center; 
    margin-bottom: 2em; 
}

.info__lead {
    display: inline-block; 
    text-align: left; 
    margin: 0; 
    padding: 0; 
    line-height: 1.8; 
}

#GuideContent h4.faq {
    background-color: #e6f7ff; 
    color: #0078a8; 
    padding: 0.75rem 1.5rem; 
    margin: 1rem 0 0.5rem 0; 
    border-bottom: 2px solid #00aeef; 
}

    #GuideContent h4.faq a {
        color: inherit; 
        text-decoration: none; 
    }

#GuideContent hr {
    border: none; 
    border-top: 1px solid #00aeef; 
    margin: 1rem 0; 
}
#GuideContent h4.faq {
    padding: 0.75rem 1.5rem 0.75rem 2em;
    text-indent: -2em;
}
.info__list li a {
    display: block; 
    padding-left: 2em;
    text-indent: -2em; 
    line-height: 1.6; 
}


/*──────────────────────────── */

/* ============================================================
   jukenAnnai.css
   ────────────────────────────────────────────────────────────
   ・ページ全体を幅700pxに固定し中央寄せ
   ・導入文～①～⑥は縦１列リスト
   ・“研修” / “試験” を青太字で強調
   ・テーブルは３列構成、罫線あり、左・中央寄せの指定
   ・注釈リストはハンギングインデント（折返しを整列）
   ・「※（ハ）について」は段落扱いで他注釈と統一
   ============================================================ */

/* ────────────────────────────────────────────────────────────
   1. ページ全体ラッパー（幅700px固定・中央寄せ）
   ──────────────────────────────────────────────────────────── */
.juken-wrapper {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 1.5em; /* ← ここを残す */
    padding: 0 1rem; /* モバイル端の左右余白 */
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.95em; /* 本文文字サイズ */
    line-height: 1.6; /* 行間 */
    color: #333; /* 本文文字色 */
}

/* ────────────────────────────────────────────────────────────
   2. 見出しスタイル
   ──────────────────────────────────────────────────────────── */
.juken-title {
    font-size: 1.2em; /* 見出し文字サイズ */
    font-weight: bold;
    margin-bottom: 0.8em; /* 下余白 */
    border-bottom: 2px solid #0066A1; /* 青い罫線 */
    padding-bottom: 0.4em; /* 罫線〜文字間 */
    color: #003366; /* 濃い青 */
}

/* ────────────────────────────────────────────────────────────
   3. 導入文段落
   ──────────────────────────────────────────────────────────── */
.juken-paragraph {
    margin-bottom: 1em; /* 下余白 */
    text-align: justify; /* 両端揃え */
}

/* ────────────────────────────────────────────────────────────
   4. 導入文～①～⑥を縦１列リスト化
   ──────────────────────────────────────────────────────────── */
/* ①～⑥を縦に並べるリスト（まるぽち無し） */
.juken-list-vertical {
    list-style: none; /* ブラウザ標準のマーカーを消す */
    margin: 0 0 1.2em 0;
    padding: 0;
}

    .juken-list-vertical li {
        /* マーカー自体を完全に消したいので ::before は使いません */
        position: relative;
        padding-left: 0; /* まるぽちでスペースを取っていた余白をゼロに */
        margin-bottom: 0.6em;
        line-height: 1.5;
    }

/* ────────────────────────────────────────────────────────────
   5. “研修” / “試験” 強調用クラス
   ──────────────────────────────────────────────────────────── */
.juken-highlight {
    color: #0066A1; /* 青色 */
    font-weight: bold; /* 太字 */
}

/* ────────────────────────────────────────────────────────────
   6. テーブル部分（３列構成・罫線あり）
   ──────────────────────────────────────────────────────────── */
.juken-table-wrapper {
    overflow-x: auto; /* 横幅オーバー時にスクロール可能 */
    margin-bottom: 1.2em; /* 下余白 */
    break-inside: avoid; /* カラム分割時に途中で切らない */
}

.juken-table {
    width: 100%; /* juken-wrapper(700px)に対して100% */
    border-collapse: collapse; /* 罫線を重ねず一体化 */
    table-layout: fixed; /* 均等割り当て */
    font-size: 0.9em; /* テーブル内文字サイズ */
}
    /* すべての th／td に1px罫線とパディングを指定 */
    .juken-table th,
    .juken-table td {
        border: 1px solid #999;
        padding: 0.6em;
        vertical-align: middle;
    }

    /* ヘッダー行の背景色と文字色 */
    .juken-table thead th {
        background-color: #f0f8ff; /* 薄いブルー */
        color: #003366; /* 濃いめの青 */
        font-weight: bold;
    }

    /* 偶数行の背景色 */
    .juken-table tbody tr.even-row {
        background-color: #f9f9f9; /* ごく淡いグレー */
    }

    /* 左端“該当ケース”列は左寄せ */
    .juken-table th.col-case,
    .juken-table td.col-case {
        text-align: left;
        padding-left: 0.8em; /* 左にインデント */
    }
    /* 真ん中“受験区分”列は中央寄せ */
    .juken-table th.col-category,
    .juken-table td.col-category {
        text-align: center;
    }
    /* 右端“必要な証書”列も中央寄せ */
    .juken-table th.col-document,
    .juken-table td.col-document {
        text-align: center;
    }

/* ────────────────────────────────────────────────────────────
   7. 注釈リスト：ハンギングインデント（一行目を折り返し内側に揃える）
   ──────────────────────────────────────────────────────────── */
/* ── 注釈：※科目免除の根拠となる証書 ── */
.juken-note {
    margin-bottom: 1em;
    font-size: 0.9em;
    break-inside: avoid;
}

    .juken-note .note-title {
        font-weight: bold;
        margin-bottom: 0.5em;
    }

    /* 「（イ）」「（ロ）」「（ハ）」「（ニ）」の幅を考慮したハンギングインデント */
    .juken-note ul.note-list {
        list-style: none;
        margin: 0;
        padding-left: 3em; /* 「（イ）」部分の全角3文字分を確保 */
        line-height: 1.5;
    }

        .juken-note ul.note-list li {
            margin-bottom: 0.6em;
            /* 1行目全体を3emぶん左に引き出して、折り返し以降は3emぶん内側に揃える */
            padding-left: 3em; /* 折り返し後の行頭を3em内側に */
            text-indent: -3em; /* 1行目の「（イ）〜」を左にはみ出させる */
            position: relative;
        }

            /* マーカー部分（「（イ」等）は HTML テキスト内部に含むため、 ::before は不要 */
            .juken-note ul.note-list li::before {
                content: "";
            }

/* ────────────────────────────────────────────────────────────
   8. 「※（ハ）について」部分（段落扱い）
   ──────────────────────────────────────────────────────────── */
.juken-note-h {
    margin-top: 0.8em; /* 上余白 */
    margin-bottom: 1.2em; /* 下余白 */
    font-size: 0.9em;
    line-height: 1.5;
    color: #333;
    break-inside: avoid;
}

    .juken-note-h .note-label {
        font-weight: bold; /* ラベル「※（ハ）について」を太字 */
    }

/* --- 600px 未満で表をカード表示に畳む ---------------- */
@media (max-width: 600px) {

    /* ヘッダー行は非表示に */
    .juken-table thead {
        display: none;
    }

    /* 行ごとブロック化 */
    .juken-table,
    .juken-table tbody,
    .juken-table tr {
        display: block;
        width: 100%;
    }

        .juken-table tr {
            margin: 0 0 1rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            padding: .5rem;
        }

        /* セルを縦並びにし、擬似ラベルを左側に挿入 */
        .juken-table td {
            display: block;
            width: 100%;
            padding: .4rem .4rem .4rem 45%;
            position: relative;
            text-align: left;
            word-break: break-word;
        }

            .juken-table td::before {
                content: attr(data-label); /* ヘッダー文字を表示 */
                position: absolute;
                left: .8rem;
                width: 40%;
                font-weight: 700;
                white-space: nowrap;
            }

            .juken-table td.col-case {
                padding-left: 45%; /* 他の列と合わせる */
            }
}

/*--------アップロード画面関連--------*/
.preview-img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.uplord__img {
    /* レイアウト */
    flex: 1 0 10%;
    width: 100%;
    max-width: 450px;
    box-sizing: border-box;
    /* ビジュアル */
    background-color: #f5f7f8;
    box-shadow: 0 0 5px 0 rgb(225, 229, 240);
    text-align: center;
    /* 余白 */
    padding: 0;
}

    
    .uplord__img img {
        width: 450px !important;
        height: 630px !important;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

.box__padding .annotation-text {
    display: block; 
    margin-bottom: 0.5em;
    font-size: 0.9em; 
    color: #666; 
}

/*--------再発行案内関連--------*/

/* 再発行依頼セクションだけ幅を抑えて中央寄せ */
.wrap.reissue-section {
    max-width: 1000px; /* 横幅の上限を 600px に */
    margin: 1.5em auto; /* 上下に余白、左右センター */
    padding: 0 1em; /* 左右にちょっとだけ内側余白 */
}

    /* リスト・段落は左揃えのまま可読性を確保 */
    .wrap.reissue-section p,
    .wrap.reissue-section ul,
    .wrap.reissue-section ol {
        text-align: left;
        line-height: 1.6;
    }

/* 必要なら、長い単語を折り返す */
.wrap.reissue-section {
    word-break: break-word;
}