body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 800;
    margin: 0;
    padding: 0;
}

::placeholder {
    color: #e2e2e2;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
    height: 10vh;
    position: fixed;
    top: 0;
    right: unset;
    bottom: unset;
    left: unset;
    z-index: 1000;
    width: 100%;
}
.header .logo {
    margin-bottom: 0;
}
.logo {
    width: 15rem;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.logo img {
    height: 45px;
    margin-left: 25px;
}

.logo span {
    font-size: 24px;
    font-weight: bold;
    color: #0074C0;
}

.nav {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 2rem;
}

.nav a {
    margin: 0 15px;
    font-size: 16px;
    max-width: 130px;
    text-decoration: none;
    color: #003366;
    text-align: center;
}
.nav a:hover {
    text-decoration: underline;
}

.header .button {
    background-color: #FF7F2A;
    color: #ffffff;
    padding: 0 2.5rem;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    opacity: 1;
    transition: all 0.05s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header .button span {
    display: block;
    font-size: 12px;
    padding: 2px 0;
    background-color: white;
    color: #FF6600;
    margin: 4px auto;
    width: 113px;
    border-radius: 15px;
    position: relative;
    letter-spacing: 3px;
}

.header .button span::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 6px 3px 0 3px;
    border-color: #ffffff transparent transparent;
    translate: -50% 100%;
}

.header .button span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 4px 2px 0 2px;
    border-color: #ffffff transparent transparent;
    translate: -50% 100%;
}

.header .button:hover {
    background-color: #dc6a23;
    transition: all 0.25s ease-in-out;
}

.info {
    background-image: url(/app/assets/images/pc/lp/medical-supervision/info-back.png);
    background-size: cover;
    width: 100%;
    padding-top: 80px;
}

.info img {
    height: 100vh;
}

.info .sub {
    color: #004a8f;
    font-weight: bold;
    font-size: 27px;
}

.info .sub strong {
    font-size: 44px;
}

.info h1 {
    font-size: 3vw;
    color: #004a8f;
    margin-bottom: 20px;
    margin-top: 0;
}

.info p {
    margin: 0;
}

.info ul {
    list-style-type: none;
    padding: 0;
}

.info ul li {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
    position: relative;
    font-weight: bold;
}

.info .check-mark {
    margin-right: 8px;
    width: 1.4vw;
}

.info .points {
    display: flex;
    margin-top: 2.5rem;
    text-align: center;
    gap: 1vw;
}

.info .points > div {
    background: linear-gradient(90deg, #185590 0%, #185590 50%, #1C4783 50%, #1C4783 100%);
    font-weight: normal;
    font-size: 1.5vw;
    color: white;
    position: relative;
    height: 13vw;
    max-height: 230px;
    width: 13vw;
    max-width: 220px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.info .points .accent {
    font-size: 4.5vw;
    color: #FFE200;
    font-weight: bold;
    line-height: 1.5rem;
    margin-top: 1rem;
}

.info .points .accent .vertical {
    font-size: 1.2vw;
    writing-mode: vertical-lr;
}

.info .points > div:nth-child(2) .accent {
    font-size: 3.2vw;
    margin-top: 0;
    line-height: 3.5vw;
}
.info .points > div:nth-child(3) .accent {
    font-size: 4.5vw;
}
.info .points > div:nth-child(3) .accent span {
    font-size: 1.5vw;
}
@media screen and (max-width: 1600px) {
    .info .points .accent {
        margin-top: 0.5rem;
    }
}

.container-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 3rem 5rem;
}
.info .left-container {
    width: 60%;
    background-color: rgba(255, 255, 255, 0.8);
    margin-left: 5rem;
}
@media screen and (max-width: 1600px) {
    .info .left-container {
        margin-left: 0;
    }
}
.left-container > .content-inner {
    padding: 4rem 6vw;
}
.info .form-container {
    width: 40%;
    margin-right: 5rem;
    display: flex;
    justify-content: end;
}
@media screen and (max-width: 1600px) {
    .info .form-container {
        margin-right: 0;
        width: 35%;
    }
}
.form-container > .content-inner {
    min-width: 55%;
    height: 100%;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.form-container > .content-inner form {
    padding: 1.5rem;
}

.info .form-wrapper {
    height: 100%;
}
.info .form-group {
    margin-bottom: 1vw;
}
.info .form-group label {
    margin-bottom: 5px;
    color: #333333;
    font-size: 14px;
    font-weight: bold;
}
.info .form-group label .required {
    background-color: #F0A10C;
}

.info .form-group input,
.info .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    font-size: 14px;
    color: #333333;
    box-sizing: border-box;
}

.info .form-group textarea {
    resize: none;
}
.info .form-group .file-wrapper {
    width: 100%;
    display: flex;
    gap: 0.25rem;
}
.info .form-group .file-dummy {
    font-weight: 500;
    border: 1px solid #cccccc;
    padding: 0.25rem 1rem;
    width: 70%;
    cursor: pointer;
    opacity: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.info .form-group .file-select-button {
    border: 1px solid #cccccc;
    background-color: #E2E2E2;
    font-size: 1rem;
    padding: 0.25rem 1rem;
    font-family: 'Noto Sans JP', sans-serif;
    width: 30%;
    cursor: pointer;
    opacity: 1;
}
.info .form-group .file-dummy:hover,
.info .form-group .file-select-button:hover {
    opacity: 0.8;
    transition: all 0.5ms ease-in-out;
}

.info .form-group.checkbox-container {
    display: flex;
    align-items: center;
}

.info .form-group.checkbox-container input[type="checkbox"] {
    width: inherit;
    margin: 0 5px 0 0;
}

.info .form-group.checkbox-container label {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0;
}
.info .submit-group {
    display: flex;
    justify-content: center;
}

.info .submit-btn {
    width: 70%;
    color: #ffffff;
    padding: 8px 0;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    border-radius: 30px;
    margin-top: 0;
}

.info .container {
    position: relative;
    text-align: center;
}


.info .background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -1;
    object-fit: cover;
}

.info .section-title {
    font-size: 47px;
    font-weight: bold;
    color: #1e428a;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    margin-top: 0;
    top: 97px;
}

.container .logo-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5vw;
    width: 1310px;
    position: absolute;
    z-index: 1;
    margin-top: 13vw;
}

.info .logo-gallery-img {
    width: 232px;
    height: 68px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .info .logo-gallery {
        gap: 20px;
    }
}

.info .background-img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 800;
    margin: 0;
    padding: 0;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 53px;
    margin-right: 10px;
}

.logo span {
    font-size: 24px;
    font-weight: bold;
    color: #0074C0;
}

.nav {
    display: flex;
    align-items: center;
}



.nav a:hover {
    text-decoration: underline;
}


.button span {
    display: block;
    font-size: 12px;
}

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

.info img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
}

.form-header {
    background-color: #004a93;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    padding-bottom: 1rem;
    font-size: 1.3rem;
}

.form-header span {
    color: #ffd700;
    font-size: 2.3rem;
    font-weight: bolder;
}

.form-header p {
    font-size: 14px;
}
.form-group [type=file] {
    display: none;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #004a93;
    font-size: 14px;
    font-weight: bold;
}

.form-group label .required {
    background-color: #ffd700;
    color: #ffffff;
    font-weight: bold;
    margin-left: 0.5rem;
    padding: 0 0.8rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    font-size: 14px;
    color: #333333;
    box-sizing: border-box;
}

.form-group textarea {
    resize: none;
}

.form-group .checkbox-container {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.form-group .checkbox-container input[type="checkbox"] {
    margin-right: 10px;

}

.form-group .checkbox-container label {
    font-size: 12px;
    color: #333333;
    float: left;
}

.submit-btn {
    display: block;
    width: 100%;
    background-color: #FF7F2A;
    color: #ffffff;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    margin-top: 20px;
    border-radius: 30px;
    transition: all 0.05s ease-in-out;
}

.submit-btn:hover {
    background-color: #dc6a23;
    transition: all 0.05s ease-in-out;
}

.container {
    position: relative;
    text-align: center;
}
#achievements {
    background-image: url(/app/assets/images/pc/lp/medical-supervision/Companies.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.achievements-inner {
    position: relative;
    height: 30vw;
    display: flex;
    justify-content: center;
}

.background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -1;
    object-fit: cover;
}

.section-title {
    font-size: 2.5vw;
    font-weight: bold;
    color: #1e428a;
    position: absolute;
    z-index: 1;
    margin-top: 0;
    top: 102px;
    left: 50%;
    transform: translate(-50%, -50%);
}


.logo-gallery-img {
    width: 180px;
    height: 88px;
    object-fit: cover;
}

.content-section .banner {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 60px 0;
    position: relative;
    overflow: visible;
    min-height: 58px;
}

.content-section .banner::after {
    content: '';
    position: absolute;
    z-index: 2;
    bottom: -89px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 20px;
    border-style: solid;
    border-width: 45px 103px 45px 103px;
    border-color: #003366 transparent transparent transparent;
}

.content-section .banner h1 {
    margin: 0;
    font-size: 2.5vw;
}

.content-section .banner h1 b {
    margin: 0;
    font-size: 51px;
    color: yellow;
}

.content-section .appeal-container {
    position: relative;
    height: 25vw;
    width: 100%;
}
.content-section .appeal-container img {
    width: 100%;
    height: inherit;
    object-fit: cover;
}

.image-container-bottom {
    position: relative;
    height: 29vw;
}

.content-section .image-container-bottom img {
    width: 100%;
    height: inherit;
    object-fit: cover;
}


.content-wrapper {
    width: 1115px;
    margin: 0 auto;
    padding: 1rem 2rem;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.image-container-bottom .content-wrapper {
    background-color: inherit;
}

.content-section .title {
    position: absolute;
    top: 3rem;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 2.5vw;
    font-weight: bold;
    color: #4A4A4A;
}
@media screen and (max-width: 1600px) {
    .content-section .title {
        top: 3rem;
        margin: 0;
    }
}

.content-section .list-container {
    display: flex;
    justify-content: space-between;
}

.content-section .list-container ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 50%;
}

.content-section .list-container ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: #153B60;
    font-size: 19px;
}

.content-section .list-container ul li::before {
    content: '✔';
    color: red;
    font-size: 20px;
    margin-right: 10px;
}

.content-section .highlight {
    font-weight: bold;
    position: relative;
    background: linear-gradient(transparent 74%, #FFE200 26%);
    display: inline-block;
}


.content-section .bottom-title {
    font-size: 2.5vw;
    color: #0B4C89;
    position: absolute;
    top: 5vw;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    text-align: center;
}
.content-section .bottom-title::before {
    content: "Our Services";
    font-size: 4.5vw;
    color: #e6f2ff;
    position: absolute;
    top: 1.5vw;
    left: 50%;
    font-weight: 900;
    transform: translateX(-50%);
    z-index: -1;
    opacity: 0.5;
}

.content-section .back-title {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 91px;
    z-index: 1;
}

.content-section .text {
    position: absolute;
    top: 17vw;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.3vw;
    text-align: center;
    width: 100%;
    z-index: 2;
}

.large-text {
    position: relative;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 0;
}



.features {
    background-color: #e6f2ff;
    padding: 0;
}
.features .box {
    background-color: #ffffff;
    padding: 0 2rem 2rem;
    margin-bottom: 40px;
}
.relative {
    position: relative;
}
.features .container {
    width: 65%;
    margin: 0 auto;
    padding: 20px;
    text-align: start;
}

.features h1 {
    text-align: center;
    color: #0B4C89;
    margin-bottom: 92px;
    position: relative;
    font-size: 2.5vw;
    z-index: 1;
}
.features h1::before {
    content: "FEATURE";
    font-size: 4.5vw;
    color: #1e5fa1;
    position: absolute;
    top: 1.5vw;
    left: 50%;
    font-weight: 900;
    transform: translateX(-50%);
    z-index: -1;
    opacity: 0.1;
}

.features .back-title {
    position: absolute;
    top: 3%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 91px;
    z-index: 1;
    color: #1e5fa1;
    /* z-index: -1; */
    opacity: 0.1;
}

.features .section {
    background-color: #ffffff;
    display: flex;
    align-items: start;
    justify-content: space-between;
}
.features .section img {
    object-fit: contain;
}

.features .section-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    justify-content: flex-start;
}

.features .section-header .number {
    font-size: 4vw;
    color: #0B4C89;
    font-weight: bold;
    margin-right: 20px;
}

.features .section-header .title {
    font-size: 1.7vw;
    color: #0B4C89;
    font-weight: bold;
    text-align: left;
    margin: 0 0;
}

.features .section-content {
    width: 58%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.features .section-content span {
    margin-bottom: 1rem;
}

.features .section img {
    width: 39%;
}

.features .blue-badge {
    font-size: 20px;
    color: white;
    background-color: #0B4C89;
    padding: 4px 18px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 10px;
    width: 7rem;
    text-align: center;
}

.features .blue-title {
    color: #5B9FEA;
    font-size: 18px;
    font-weight: bold;
}

.features .text-content p {
    margin: 10px 0;
    line-height: 1.6;
}

.features .text-content {
    background-color: #f0f8ff;
    padding: 20px;
    margin-bottom: 20px;
}

.features .blue-box {
    background-color: #f0f8ff;
    padding: 15px;
}
.features .blue-box p,
.features .blue-box ul {
    /*font-weight: 600;*/
}

.suggest-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #014A9C;
}

.suggest-section .content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.suggest-section h1 {
    font-size: 52px;
    margin: 0;
    color: white;
}

.suggest-section .subtext {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #FFE200;
}
.suggest-section .cta-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 2rem;
    background-color: #FF7F2A;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-size: 28px;
    font-weight: 900;
    width: 380px;
    transition: all 0.15s ease-in-out;
}
.suggest-section .cta-button:hover {
    background-color: #e65a00;
    transition: all 0.15s ease-in-out;
}

.suggest-section .image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.suggest-section .doctor-img {
    height: 380px;
    margin-right: 20px;
    object-position: 0 60px;
}


/* use-cases セクションに限定したスタイル */
.use-cases .container {
    text-align: center;
    padding: 20px;
    position: relative;
}
.use-cases .main-title {
    position: relative;
}
.use-cases .main-title::before {
    content: "CASE";
    font-size: 4.5vw;
    color: #5B9EE2;
    position: absolute;
    top: 2.5vw;
    left: 50%;
    font-weight: 900;
    transform: translateX(-50%);
    z-index: -1;
    opacity: 0.1;
}

#top-design {
    position: absolute;
    width: 560px;
    top: 0%;
    left: 0%;
    z-index: 1;

}

#bottom-design {
    position: absolute;
    width: 560px;
    top: 100%;
    left: 100%;
    transform: translate(-100%, -100%);
}
.use-cases .main-title {
    font-size: 2.5vw;
    color: #175899;
    padding: 20px 0;
}

.use-cases .cases {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1448px;
    margin: 0 auto;
    padding: 2vw;
    text-align: left;
}

.use-cases .case-box {
    margin: 1.5rem;
    padding: 20px;
    background-color: #e9f3fd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.use-cases .case-box h3 {
    font-size: 37px;
    color: #175899;
    margin-bottom: 10px;
    margin-top: 10px;
}

.use-cases .case-box p {
    color: #333;
}

.use-cases .case-box .button-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}
.use-cases .case-box .button {
    background-color: #f8b200;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 50px;
    text-align: center;
    transition: all 0.15s ease-in-out;
}
.use-cases .case-box .button:hover {
    background-color: #e09a00;
    transition: all 0.15s ease-in-out;
}
.use-cases .case-box .button i {
    font-size: 1.2rem;
}
.use-cases .card-group {
    width: 50%;
}
.use-cases .detail {
    position: relative;
    background-color: #005299;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    height: 0;
    margin: 0 1.5rem;
    padding: 0 2rem;
    transition: .4s;
}
.use-cases .detail.show {
    opacity: 1;
    height: auto;
    margin: 1.5rem;
    padding: 20px 2rem;
}
.use-cases .case-box .fa-caret-up {
    display: none;
}
.use-cases .case-box.show .fa-caret-up {
    display: inline-block;
}
.use-cases .case-box .fa-caret-down {
    display: inline-block;
}
.use-cases .case-box.show .fa-caret-down {
    display: none;
}
.use-cases .detail::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 5rem;
    border-width: 0 15px 10px 15px;
    border-style: solid;
    border-color: transparent transparent #005299 transparent;
}

.use-cases .detail-text {
    width: 100%;
}

.use-cases .detail h1 {
    font-size: 24px;
    color: #FFE200;
    margin: 0;
}
.use-cases .detail .client {
    font-size: 1.1rem;
}
.use-cases .detail p {
    color: white;
    font-weight: 500;
    margin: 0 0 1rem;
}
.detail .cta-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 1rem;
    background-color: #FF7F2A;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-weight: bold;
    width: 15rem;
    transition: .4s;
}
.detail .cta-button:hover {
    background-color: #e65a00;
    transition: .4s;
}
.use-cases .detail .detail-label {
    display: inline-block;
    background-color: white;
    color: #005299;
    padding: 5px 10px;
    margin: 5px 0;
    font-weight: bold;
    border-radius: 50px;
    width: 5rem;
    text-align: center;
}

.use-cases .detail .detail-button {
    display: inline-block;
    background-color: #ff5722;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 20px;
    font-size: 16px;
}
.use-cases .detail .detail-wrapper {
    display: flex;
    gap: 1rem;
    width: 100%;
}
.use-cases .detail .detail-button:hover {
    background-color: #e64a19;
}

.use-cases .detail .detail-image {
    width: 40%;
}

.use-cases .detail .detail-image img {
    width: 100%;
}

/* Show detail when active */
.use-cases .case-box.active .detail {
    display: flex;
}

/* Responsive design for small screens (1 column) */
@media (max-width: 768px) {
    .use-cases .case-box {
        width: 90%;
    }

    .use-cases .detail {
        position: static;
        width: 100%;
        top: 0;
        flex-direction: column;
    }

    .use-cases .detail .detail-image {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }

    .use-cases .detail::before {
        left: 10px;
    }
}


:is(.medical-writer-example, .doctor-example) * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.medical-writer-example, .doctor-example {
    background-color: #f0f8ff;
    padding: 20px;
}

:is(.medical-writer-example, .doctor-example) .container {
    text-align: center;
    margin: 0 20rem;
}

:is(.medical-writer-example, .doctor-example) h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

:is(.medical-writer-example, .doctor-example) h1 {
    font-size: 56px;
    color: #175899;
    padding: 50px 0;
}

.medical-writer-example h1::before {
    content: "WRITER";
    font-size: 4.5vw;
    color: #5B9EE2;
    position: absolute;
    top: 3vw;
    left: 50%;
    font-weight: 900;
    transform: translateX(-50%);
    z-index: 5;
    opacity: 0.1;
}

.doctor-example h1::before {
    content: "DOCTOR";
    font-size: 4.5vw;
    color: #5B9EE2;
    position: absolute;
    top: 3vw;
    left: 50%;
    font-weight: 900;
    transform: translateX(-50%);
    z-index: 5;
    opacity: 0.1;
}

:is(.medical-writer-example, .doctor-example) .profiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 1rem;
    margin: 6vw auto;
}

.medical-writer-example .profile {
    height: 490px;
    background-color: white;
    padding: 20px;
    text-align: left;
    position: relative;
}

.doctor-example .profile {
    height: 530px;
    background-color: white;
    padding: 20px;
    text-align: left;
    position: relative;
}

@media screen and (max-width: 1700px) {
    :is(.medical-writer-example, .doctor-example) .container {
        margin: 0 10rem;
    }
}
:is(.medical-writer-example, .doctor-example) .profile::before {
    content: '';
    display: block;
    width: 100%;
    height: 9px;
    background-color: #133E7B;
    /* 青い色 */
    position: absolute;
    top: 0;
    left: 0;
}

:is(.medical-writer-example, .doctor-example) .profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

:is(.medical-writer-example, .doctor-example) .profile img {
    width: 7vw;
    height: 7vw;
    margin-right: 20px;
    object-fit: cover;
    border-radius: 124px;
}

:is(.medical-writer-example, .doctor-example) .profile-header p {
    margin: 0;
    color: #5B9FEA;
    font-weight: 500;
}

:is(.medical-writer-example, .doctor-example) h2 {
    font-size: 1.5em;
    color: #175899;
}

:is(.medical-writer-example, .doctor-example) .title {
    font-weight: bold;
}

:is(.medical-writer-example, .doctor-example) ul {
    margin-top: 10px;
}

:is(.medical-writer-example, .doctor-example) ul li {
    list-style-type: none;
    margin-bottom: 5px;
}

:is(.medical-writer-example, .doctor-example) .label {
    background-color: #0B4C89;
    color: white;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    padding: 2px 1.5rem;
    display: inline-block;
    border-radius: 5px;
}

:is(.medical-writer-example, .doctor-example) h1 {
    font-size: 2.5vw;
    color: #175899;
    padding: 20px 0;
}


.support {
    position: relative;
    background-image: url(/app/assets/images/pc/lp/medical-supervision/support/support.png);
    background-size: cover;
    background-repeat: no-repeat;

}

.support h1 {
    width: 100%;
    text-align: center;
    position: absolute;
    font-size: 2.5vw;
    color: #175899;
    padding: 20px 0;
    top: 7%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.support h1::before {
    content: "SUPPORT";
    font-size: 4.5vw;
    color: #5B9EE2;
    position: absolute;
    top: 3vw;
    left: 50%;
    font-weight: 900;
    transform: translateX(-50%);
    z-index: 5;
    opacity: 0.1;
}

.support .support-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
    padding-top: 11%;
}

.support .support-container .support-category,.support-row {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.support .support-container .support-category {
    font-size: 24px;
}

.support .support-container .support-row .support-each-container {
    margin: 0px 2vw;
    text-align: center;
}

.support .support-container .support-row .support-each-container .support-title {
    color: #175899;
    font-size: 18px;
    margin-top: 10px;
    text-align: center;
}

.flow {
    position: relative;
    height: 45vw;
}

.flow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.flow h1 {
    position: absolute;
    font-size: 2.5vw;
    text-align: center;
    top: 4vw;
    left: 50%;
    color: white;
    transform: translate(-50%, -50%);
}

.flow h2 {
    font-size: 1.3vw;
    text-align: center;
    margin: 0;
}

.flow p {
    font-size: 1vw;
    text-align: center
}

.flow .flow-0 {
    font-size: 1.2vw;
    position: absolute;
    color: #ffffff;
    padding: 20px 0;
    top: 29%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.flow .text-wrapper {
    position: absolute;
    top: 38vw;
}
.flow .flow-1 {
    position: absolute;
    color: #ffffff;
    width: 15vw;
    padding: 20px 0;
    top: 0.8vw;
    left: 21vw;
    transform: translate(-50%, -50%);
    font-weight: 500;
}

.flow .flow-2 {
    position: absolute;
    color: #ffffff;
    width: 15vw;
    padding: 20px 0;
    left: 40vw;
    transform: translate(-50%, -50%);
    font-weight: 500;
}

.flow .flow-3 {
    position: absolute;
    color: #ffffff;
    width: 15vw;
    padding: 20px 0;
    left: 59vw;
    transform: translate(-50%, -50%);
    font-weight: 500;
}

.flow .flow-4 {
    position: absolute;
    color: #ffffff;
    width: 17vw;
    padding: 20px 0;
    left: 77.5vw;
    transform: translate(-50%, -50%);
    font-weight: 500;
}


.faq {
    width: 100%;
    background-color: #f0f8ff;
}
.faq-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
.faq-content ul {
    padding: 0;
    margin-bottom: 3rem;
}
.faq .faq-title {
    text-align: center;
    font-size: 2.5vw;
    color: #175899;
    margin-bottom: 6vw;
    position: relative;
}

.faq .faq-title::before {
    content: "FAQ";
    font-size: 4.5vw;
    color: #5B9EE2;
    position: absolute;
    top: 1.5vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    opacity: 0.1;
}

.faq .faq-item {
    padding: 10px 0;
}
.faq-list-item {
    margin-top: 20px;
    text-align: left;
    line-height: 1.6875;
    list-style: none;
}

.faq .faq-list-ttl {
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 18px;
    background-color: #175899;
    color: white;
    position: relative;
    padding: 20px;
}

.faq .faq-list-ttl::before {
    content: "Q";
    color: #FFE200;
    font-size: 38px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-weight: 700;
}
.arrow {
    position: absolute;
    display: block;
    top: 50%;
    right: 20px;
    bottom: unset;
    left: unset;
    width: 1.2em;
    height: 1.2em;
    transform: translateY(-50%);
}
.arrow::before,
.arrow::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 2.5px);
    width: 5px;
    height: 20px;
    border-radius: 9999px;
    background-color: #FFE200;
    transform-origin: 50% calc(100% - 2.5px);
}
.arrow::before {
    transform: rotate(45deg);
}
.arrow::after {
    transform: rotate(-45deg);
}
.show .arrow::before {
    left: -2.5px
}
.show .arrow::after {
    left: calc(100% - 2.5px);
}
.faq-list-cont {
    display: flex;
    height: 0;
    opacity: 0;
    transition: .4s;
    line-height: 1.6875;
    background-color: white;
    padding-left: 20px;
}
.faq-list-item.show .faq-list-cont {
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    opacity: 1;
}
.faq-list-cont p {
    font-weight: 500;
    margin: 0;
}
.faq .faq-list-cont::before {
    content: "A";
    color: #87CEEB;
    font-size: 38px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.faq .toggle-icon {
    margin-left: auto;
    font-size: 18px;
    transition: transform 0.3s;
}

.faq .faq-item.active .toggle-icon {
    transform: rotate(180deg);
}

.faq .faq-item.active .faq-answer {
    display: inline-block;
    width: 750px;
}

.faq .faq-item.active .faq-answer p {
    display: inline-block;
    width: 705px;
}

section.form label {
    width: 100px;
}

section.form {
    max-width: 700px;
    margin: 4rem auto;
}

section.form .title {
    text-align: center;
    font-size: 2.5vw;
    color: #175899;
    margin-bottom: 80px;
    position: relative;
}

section.form .title::before {
    content: "INQUIRY";
    font-size: 4.5vw;
    color: #5B9EE2;
    position: absolute;
    top: 1vw;
    left: 50%;
    font-weight: 900;
    transform: translateX(-50%);
    z-index: -1;
    opacity: 0.1;
}

section.form .sub-title {
    width: 302px;
    margin: 20px auto;
}

section.form .form-container {
    position: absolute;
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
    width: 500px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 10;
}

section.form .form-header {
    background-color: #004a93;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    font-size: 24px;
    line-height: 1.6;
    font-weight: bold;
    margin-left: -20px;
    margin-right: -20px;
    margin-top: -20px;
}

section.form .form-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0;
}
section.form .form-group label {
    width: 30%;
    margin-bottom: 0;
    color: #333333;
    font-size: 18px;
    font-weight: bold;
    margin-right: 15px;
    display: flex;
    justify-content: space-between;
    text-align: center;
}

section.form .form-group label .required {
    background-color: #F0A10C;
    color: #ffffff;
    padding: 2px 10px;
    font-weight: bold;
    margin-left: 5px;
    font-size: 15px;
}
section.form .form-group [for=message] {
    align-self: start;
}
section.form .form-group input,
section.form .form-group textarea {
    width: 70%;
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #cccccc;
    font-size: 14px;
    color: #333333;
    box-sizing: border-box;
}
.form .form-group .file-wrapper {
    width: 70%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.form .form-group .file-dummy {
    width: 80%;
    border: 1px solid #cccccc;
    padding: 5px 10px;
    font-weight: 500;
}
.form .form-group .file-select-button {
    border: 1px solid #cccccc;
    background-color: #E2E2E2;
    font-size: 1rem;
    padding: 0.25rem 1rem;
    font-family: 'Noto Sans JP', sans-serif;
    width: 15%;
    height: 100%;
    opacity: 1;
}
.form .form-group .file-dummy:hover,
.form .form-group .file-select-button:hover {
    opacity: 0.8;
    transition: all 0.5ms ease-in-out;
    cursor: pointer;
}
section.form .form-group textarea {
    resize: none;
}

section.form .checkbox-container {
    margin: 0 auto;
    width: 547px;
    text-align: center;
}
section.form .checkbox-container .agree {
    font-size: 15px;
    font-weight: 500;
    color: #333333;
}

section.form .submit-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 300px;
    background-color: #FF7F2A;
    color: #ffffff;
    padding: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    border-radius: 300px;
    margin: 20px auto;
    transition: all 0.15s ease-in-out;
}

section.form .submit-btn:hover {
    background-color: #e65a00;
    transition: all 0.15s ease-in-out;
}

section.form .container {
    position: relative;
    text-align: center;
}


.craudia-info {
    background-color: #e0f0ff;

}
.craudia-info .title {
    font-size: 28px;
    margin-bottom: 15px;
    color: #003D78;
    display: flex;
    align-items: end;
}
.craudia-info .sub-title {
    color: #9FC8F3;
    margin-left: 1rem;
    font-size: 22px;
}

.craudia-info .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}
.craudia-info .services {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid transparent;
}
.craudia-info .services div {
    width: 25%;
    text-align: left;
    padding: 0 20px;
}
.craudia-info .services div {
    border-left: 1px solid #c3d7ea; /* Light blue border for the vertical lines */
}
.craudia-info a {
    display: block;
    margin-bottom: 10px;
    color: #2C404D;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
}
.craudia-info a:hover {
    text-decoration: underline;
}
.craudia-info .sub-titles {
    display: flex;
    color: #5B9FEA;
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.craudia-info .sub-titles span {
    width: 50%;
    text-align: left;
}

.company-info {
    background-color: #4A4A4A;
    padding: 20px;
    font-weight: 500;
}
.company-info .info-wrapper {
    width: 500px;
    margin: 0 auto;
    padding: 20px;
}
.company-info .info-wrapper h1 {
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
}
.company-info .info-item {
    margin-bottom: 10px;
}
.company-info .info-item .label {
    width: 35%;
    vertical-align: top;
}

.company-info .info-item span {
    display: inline-block;
    color: white;
}
.company-info hr {
    border: 1px solid #555;
    margin: 10px 0;
}
.company-info .footer {
    text-align: center;
    margin-top: 20px;
}
.company-info p {
    color: white;
}
