@charset "UTF-8";

/**
 * コンテンツ表示用
 **/
body {
    font-family: Noto Sans JP;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    letter-spacing: 0px;
    color: var(--color-dark-gray);
}
/* md以下 */
@media (max-width: 768px) {
    body {
        font-size: calc(16px * 0.9);
    }
}
/* sm以下 */
@media (max-width: 576px) {
    body {
        font-size: calc(16px * 0.8);
    }
}
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 10px;
}
footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
}
footer .copyright {
    color: var(--color-darker-gray);
}
#main_content_wrapper {
    position: relative;
    padding-left: unset;
    padding-right: unset;
    min-height: 100vh;
    width: 100%;
}
#main_content {
    text-align: center;
    padding-top: 200px;
    padding-bottom: 50px;
}
/* md以下 */
@media (max-width: 768px) {
    #main_content {
        padding-top: 100px;
    }
}
/* 背景動画 */
#background_video {
    position: fixed;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    opacity: 0.85;

    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
/* ローディング */
#loading-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    z-index: 100;
    background-color: rgba(0, 91, 148, 0.6);
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
#loading-wrapper .loading-text {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    margin: -10px 0 0 -30px;
}
#loading-wrapper .loading-content {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 160px;
    margin: -85px 0 0 -85px;
    border: 3px solid #F00;
}
#loading-wrapper .loading-content:after {
    content: "";
    position: absolute;
    border: 3px solid #0F0;
    left: 15px;
    right: 15px;
    top: 15px;
    bottom: 15px;
}
#loading-wrapper .loading-content:before {
    content: "";
    position: absolute;
    border: 3px solid #00F;
    left: 5px;
    right: 5px;
    top: 5px;
    bottom: 5px;
}
#loading-wrapper .loading-content {
    border: 3px solid transparent;
    border-top-color: #ffffff;
    border-bottom-color: #ffffff;
    border-radius: 50%;
    -webkit-animation: loader 2s linear infinite;
    -moz-animation: loader 2s linear infinite;
    -o-animation: loader 2s linear infinite;
    animation: loader 2s linear infinite;
}
#loading-wrapper .loading-content:before {
    border: 3px solid transparent;
    border-top-color: #ffffff;
    border-bottom-color: #b5e7ff;
    border-radius: 50%;
    -webkit-animation: loader 3s linear infinite;
    -moz-animation: loader 2s linear infinite;
    -o-animation: loader 2s linear infinite;
    animation: loader 3s linear infinite;
}
#loading-wrapper .loading-content:after {
    border: 3px solid transparent;
    border-top-color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    -webkit-animation: loader 1.5s linear infinite;
    animation: loader 1.5s linear infinite;
    -moz-animation: loader 2s linear infinite;
    -o-animation: loader 2s linear infinite;
}
@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/**
 * HTMLタグカスタマイズ
 **/
/* hrカスタマイズ */
hr {
    border: none;
    height: 0.5px;
    background-color: #FDFFFF;
    opacity: 1;
    margin: 50px 0 30px 0;
}

/**
 * input
 **/
/* text */
.custom-text {
    box-shadow: 0px 3px 6px var(--color-shadow);
}

/**
 * button
 **/
/* シャイニー加工(submitボタンのみ) */
.custom-btn[type="submit"] {
    position: relative;
    font-weight: bold;
    overflow: hidden;
    transition: 300ms;
}
.custom-btn[type="submit"]::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #b5e7ff;
    transition: 300ms;
    animation: shinyshiny 2.5s ease-in-out infinite;
}
.custom-btn[type="submit"]:hover {
    box-shadow: none;
    -webkit-transform: translateY(3px);
}
@-webkit-keyframes shinyshiny {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

/**
 * 専用コンポーネント
 **/
/* タイトル */
.content-title-wrapper {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 30px;
}
.content-title {
    color: #FDFFFF;
    text-shadow: 0px 3px 6px var(--color-shadow);
    /* タイプライタ */
    max-width: fit-content;
    animation: content-title-typing 1s steps(10), content-title-effect .4s step-end infinite alternate;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid;
    font-family: monospace;
    font-size: 2em;
    margin: auto;
}
@keyframes content-title-typing {
  from {
    width: 0
  }
}
@keyframes content-title-effect {
  50% {
    border-color: transparent
  }
}

/* コンテンツラッパー */
.content-wrapper {
    word-break: break-all;
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.5);
    /* ボックスライン表示用 */
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.content-wrapper .title {
    color: var(--color-dark-gray);
    padding: 20px 0px;
}
.content-wrapper .row:not(:last-of-type) {
    padding-bottom: 30px;
}
/* sm以下 */
@media (max-width: 576px) {
    .content-wrapper .row:not(:last-of-type) {
        padding-bottom: 10px;
    }
}
/* コンテンツラッパー ボックスラインアニメーション */
.content-wrapper .box__line {
    position: absolute;
}
.content-wrapper .box__line:nth-child(1),
.content-wrapper .box__line:nth-child(3) {
    width: 100%;
    height: 2px;
}
.content-wrapper .box__line:nth-child(2),
.content-wrapper .box__line:nth-child(4) {
    width: 2px;
    height: 100%;
}
.content-wrapper .box__line:nth-child(1) {
    top: 0;
    left: 0;
    background: linear-gradient(to right, transparent, #ffffff);
    animation: box-line-animate1 2s linear infinite;
}
.content-wrapper .box__line:nth-child(2) {
    top: 0;
    right: 0;
    animation: box-line-animate2 2s linear infinite;
    animation-delay: 1s;
    background: linear-gradient(to bottom, transparent, #ffffff);
}
.content-wrapper .box__line:nth-child(3) {
    bottom: 0;
    left: 0;
    background: linear-gradient(to left, transparent, #ffffff);
    animation: box-line-animate3 2s linear infinite;
}
.content-wrapper .box__line:nth-child(4) {
    top: 0;
    left: 0;
    background: linear-gradient(to top, transparent, #ffffff);
    animation: box-line-animate4 2s linear infinite;
    animation-delay: 1s;
}
@keyframes box-line-animate1 {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
@keyframes box-line-animate2 {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}
@keyframes box-line-animate3 {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
@keyframes box-line-animate4 {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}

/* 組織形態選択(表示のみも対応) */
.toggle-user-category {
    cursor: pointer;
    color: #FDFFFF;
    transition: .5s;
    font-size: 24px;
    width: 200px;
    height: 80px;
    align-items: center;
    display: flex;
    justify-content: center;
    border: 1px solid white;
    box-shadow: 0px 3px 6px var(--color-shadow);
}
.toggle-user-category:first-of-type {
    border-bottom-left-radius: var(--bs-border-radius) !important;
    border-top-left-radius: var(--bs-border-radius) !important;
}
.toggle-user-category:last-of-type {
    border-top-right-radius: var(--bs-border-radius) !important;
    border-bottom-right-radius: var(--bs-border-radius) !important;
}
input[type=radio]:checked + .toggle-user-category {
    opacity: 1 !important;
}

/* プラン選択 */
.selectable-plan label {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    padding: 15px 15px 10px 15px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 3px 6px var(--color-shadow);
    border: 2px solid #fff;
    opacity: 0.7;
}
.selectable-plan input[type="radio"]:checked+label {
    opacity: 1 !important;
}
.selectable-plan label .plan-name {
    font-size: 18px;
    padding-bottom: 10px;
}
.selectable-plan label .separate-border {
    margin: unset;
    height: 1px;
}
.selectable-plan label .information {
    display: flex;
    justify-content: space-around;
    font-size: 16px;
    padding: 15px 20px;
}
.selectable-plan label .sendable-services {
    display: flex;
    justify-content: center;
    gap: 5px;
}