a {
    text-decoration: none;
    transition: all .3s ease;
}
a:hover {
    color: var(--relief-blue)
}
.title--en {
    align-items: center;
    background-color: transparent;
    display: inline-flex;
    flex: 0 0 auto;
    gap: 4px;
    position: relative;
}
.title--en .polygon-4 {
    background-color: transparent;
    height: 12px;
    position: relative;
    width: 10.392578125px;
}
.title--en .title__text {
    background-color: transparent;
    letter-spacing: 0.00px;
    position: relative;
    text-align: left;
    white-space: nowrap;
    width: fit-content;
    color: var(--charcoal-gray);
    font-family: var(--font-family-questrial);
    font-size: var(--font-size-s);
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
}
.link {
    position: relative;
    display: flex;
}
.link::after {
    content: "";
    display: block;
    background-color: var(--relief-blue);
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 0;
    transform: scaleX(0);
    transform-origin: top left;
    transition: all .3s ease;
}
.link:hover::after {
    transform: scaleX(1);
}
.link a {
    align-items: center;
    background-color: transparent;
    display: inline-flex;
    flex-direction: row;
    flex: 0 0 auto;
    gap: 8px;
    position: relative;
}

.link a .title {
    position: relative;
    color: var(--relief-blue);
    font-family: var(--font-family-zen_kaku_gothic_new);
    font-size: var(--font-size-m);
    font-style: normal;
    font-weight: 500;
    line-height: 28.8px;
    text-align: left;
    white-space: nowrap;
    width: fit-content;
}
.link a .icon--arrow {
    position: relative;
    height: 16px;
    width: 16px;
}

.icon--arrow-circle svg {
    width: 100%;
    height: 100%;
}
.icon--arrow-circle svg circle.base {
    stroke: var(--baby-blue);
}
.icon--arrow-circle svg circle.over {
    fill:none;

    stroke-width:1px;
    stroke-dasharray: 287;
    stroke-dashoffset: 0;
}

@keyframes circle {
    to {
      stroke:var(--relief-blue);
      stroke-dashoffset: 0;
    }
    from {
      stroke:var(--relief-blue);
      stroke-dashoffset: 287;
    }
  }

/*--- button default ---*/
.button--default {
    width: fit-content;
    margin-top: 16px;
}
.button--default a {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: var(--relief-blue);
    color: var(--white);
    font-size: 19px;
    border-radius: 6px;
    gap: 4px;
    justify-content: center;
    overflow: hidden;
    padding: 21px 24px;
    position: relative;
    transition: all 0.3s ease;
    box-sizing: border-box;
    height: 64px;
    width: 100%;
}
.button--default a:after {
    content: "";
    display: block;
    background-color: var(--white);
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 0;
    transform: scaleX(0);
    transform-origin: top left;
    transition: all .3s ease;
}
.button--default a:hover {
    background-color: var(--navy);
}

.button--default a p {
	font-size: 19px;
	font-weight: bold;
    margin: 0 40px;
}

.button--default.--white a {
    background-color: var(--white);
    color: var(--navy);
}
.button--default.--white a svg path {
    fill: var(--navy)
}
.button--default.--white a:hover {
    background-color: var(--baby-blue);
}
.button--default a svg {
	position: absolute;
	right: 16px
}

.post-password-form {
	margin-top: 200px
}