@charset "UTF-8";

/* ==================================================
	WEB FONT bootstrap
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");

/* ==================================================
	RESET
*/

:root {
	--color-glay: #222222;
	--color-pglay: #EDF1F2;
	--color-blue: #14399A;
	--color-orange: #FCB721;
	--color-red : #FF0051;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: transparent;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	font-style: normal;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: inherit;
	line-height: 140%;
	color: var(--color-glay);
}

html {

}

body {

}

body.bggl {
  background-color: var(--color-pglay);
}

span.small {
  font-size: 36px ;
  color:inherit ;
  font-weight: 900 ;
}

span.red {
  color: var(--color-red) ;
  font-weight: 900 ;
}

span.big {
  font-size: 48px ;
  color:inherit ;
  font-weight: 900 ;
}

.form-wrapper {
    margin: 1rem 0;
    padding: 0 0.5rem;
    width: 100%;
}
.form-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 40px 20px;
    width: 100%;
    max-width: 700px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 10px;
    color: #333;
}

.form-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    margin-bottom: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--color-red);
    width: 0%;
    transition: width 0.3s ease;
}

.slide-container {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    /*display: flex;*/
    /*flex-direction: column;*/
    /*justify-content: center;*/
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.slide.active {
    transform: translateX(0);
    opacity: 1;
}

.slide.prev {
    transform: translateX(-100%);
    opacity: 0;
}

.form-group {
    width: 100%;
    max-width: 450px;
    text-align: center;
    margin: 1rem auto 0;
}

.form-group > label {
    display: block;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--color-blue);
    padding: 0.5rem 0;
    text-align: left;
    /*margin-bottom: 15px;*/
}
@media only screen and (max-width: 767px) {
    .form-group> label {
        text-align: left;
    }
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #4285f4;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

.radio-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 10px;
}

/* .radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    overflow: hidden;
}

.radio-option:hover {
    border-color: #4285f4;
    background: #f8f9ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.15);
} */

.radio-option {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 10px 24px;
  border: 1px solid #84a6df;
  border-radius: 14px;
  transition: all 0.3s ease;
  background-color: white;
  position: relative;
  overflow: hidden;
  font-size: 16px;
  min-height: 56px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}

.radio-option:hover {
  background-color: var(--color-orange);
  border-color: #84a6df;
}

.radio-option:hover label {
  color: #fff;
}

.radio-option i {
    color: var(--color-blue);
    margin-right: 8px;
}

.radio-option.selected i {
    color: #fff;
    margin-right: 8px;
}

.radio-option:hover i {
  color: #fff;
}

.radio-option:focus-within {
  outline: 2px solid #4d90fe;
  outline-offset: 2px;
}

.radio-option input[type="radio"] {
  accent-color: #4d90fe;
  transform: scale(1.2); /* 少し大きく見せる */
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-option .radio-custom {
    width: 24px;
    height: 24px;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    background: white;
    flex-shrink: 0;
    display: none;
}

.radio-option .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4285f4;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease;
}

.radio-option.selected {
    border: none;
    background: var(--color-blue);
    /*box-shadow: 0 4px 15px rgba(66, 133, 244, 0.2);*/
}

.radio-option.selected .radio-custom {
    border-color: #4285f4;
    background: white;
}

.radio-option.selected .radio-custom::after {
    transform: translate(-50%, -50%) scale(1);
}

.radio-option label {
    font-weight: 600;
    color: var(--color-glay);
    transition: color 0.3s ease;
    cursor: pointer;
    padding: 0.5rem 0;
}

.radio-option.selected label {
    color: #ffffff;
    font-weight: 600;
}

.radio-group.vertical {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
}

/* .radio-group.vertical .radio-option {
    justify-content: flex-start;
    text-align: left;
    padding: 10px 20px;
    border-radius: 10px;
    max-width: 100%;
    gap: 0;
}

.radio-group.vertical .radio-option label {
    font-size: 1rem;
    line-height: 1.4;
} */

.button-group {
    display: flex;
    justify-content: space-between;
    /*margin-top: 30px;*/
    gap: 15px;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.btn-primary {
    background: var(--color-blue);
    color: white;
}

.btn-primary:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
}

.btn-secondary {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #e0e0e0;
}

.btn-secondary:hover {
    background: #e8e8e8;
    border-color: #ccc;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.slide-number {
    position: absolute;
    top: 10px;
    right: 15px;
    background: var(--color-pglay);
    color: var(--color-blue);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.result {
    display: none;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-top: 20px;
}

.result h3 {
    color: #333;
    margin-bottom: 15px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    font-weight: 600;
font-size: 1rem;
    color: #666;
}

.result-value {
font-size: 1rem;
    color: #333;
}

/* TOPページ */

.it-assessment {
  width: 100%;
  background-color: #fff;
}

.it-assessment header {
  max-width: 1100px;
  margin: 10px auto;
}

.it-assessment header img {
  width:10rem;
}

.it-assessment .top-main-wrapper-bg {
  width: 100%;
  background-image: url("/commons/images/it-assessment/BG_YB.png");
  padding: 30px 0 50px;
  background-size: auto;
  background-repeat: repeat-x;
  background-position: center;
  overflow: hidden;
  position: relative;
}

.it-assessment .top-main-wrapper {
  max-width: 1100px;
  display: flex;
  margin: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.it-assessment .top-main-wrapper > p {
  font-size: 36px;
  font-weight: 900;
  color: var(--color-blue);
  text-shadow: var(--outline) 3px 0 0, var(--outline) 2.83487px 0.981584px 0, var(--outline) 2.35766px 1.85511px 0, var(--outline) 1.62091px 2.52441px 0, var(--outline) 0.705713px 2.91581px 0, var(--outline) -0.287171px 2.98622px 0, var(--outline) -1.24844px 2.72789px 0, var(--outline) -2.07227px 2.16926px 0, var(--outline) -2.66798px 1.37182px 0, var(--outline) -2.96998px 0.42336px 0, var(--outline) -2.94502px -0.571704px 0, var(--outline) -2.59586px -1.50383px 0, var(--outline) -1.96093px -2.27041px 0, var(--outline) -1.11013px -2.78704px 0, var(--outline) -0.137119px -2.99686px 0, var(--outline) 0.850987px -2.87677px 0, var(--outline) 1.74541px -2.43999px 0, var(--outline) 2.44769px -1.73459px 0, var(--outline) 2.88051px -0.838247px 0;
}

:root {
  --outline : #fff;
}

.it-assessment .top-main-wrapper h2 {
  font-size: 64px;
  font-weight: 900;
  color: var(--color-blue);
  text-shadow: var(--outline) 3px 0 0, var(--outline) 2.83487px 0.981584px 0, var(--outline) 2.35766px 1.85511px 0, var(--outline) 1.62091px 2.52441px 0, var(--outline) 0.705713px 2.91581px 0, var(--outline) -0.287171px 2.98622px 0, var(--outline) -1.24844px 2.72789px 0, var(--outline) -2.07227px 2.16926px 0, var(--outline) -2.66798px 1.37182px 0, var(--outline) -2.96998px 0.42336px 0, var(--outline) -2.94502px -0.571704px 0, var(--outline) -2.59586px -1.50383px 0, var(--outline) -1.96093px -2.27041px 0, var(--outline) -1.11013px -2.78704px 0, var(--outline) -0.137119px -2.99686px 0, var(--outline) 0.850987px -2.87677px 0, var(--outline) 1.74541px -2.43999px 0, var(--outline) 2.44769px -1.73459px 0, var(--outline) 2.88051px -0.838247px 0;
}

.it-assessment .top-main-white-wrapper {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px ;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  max-width: 820px;
  margin: 17px auto;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.it-assessment .top-main-white-wrapper p {
  text-align: center;
  font-weight: 200;
  font-size: 24px;
  margin-bottom: 8px;
}

.it-assessment .top-main-white-wrapper p.t01 {
  font-weight: 900;
  font-size: 32px;
  color: var(--color-blue);
  margin-bottom: 20px;
}

.diagnosis-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-red);
  color: white;
  font-weight: bold;
  font-size: 32px;
  padding: 15px 50px 15px 105px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  width: 90%;
  max-width: 510px;
  transition: 0.3s;
}

.diagnosis-button .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: var(--color-red);
  border-radius: 10px;
  width: 70px;
  height: 42px;
  font-size: 16px;
  transition: 0.3s;
}

.diagnosis-button .arrow i {
  color: var(--color-red);
}

.diagnosis-button:hover {
  transform: scale(1.02);
  background-color:tomato;
}

.diagnosis-button:hover .arrow {
  transform: translateX(30px); /* 矢印が右にスライド */
  opacity: 0.5;
  color: tomato;
}

.diagnosis-button:hover .arrow i {
  color: tomato;
}

.FV-img-0001,
.FV-img-0002,
.FV-img-0003 {

}

.FV-img-0001 img {
  max-width: 320px;
  width: 27vw;
  height: auto;
  left: -40px;
  bottom: 0;
  position: absolute;
  z-index: 2;
}

.FV-img-0002 img {
  max-width: 279px;
  width: 22vw;
  height: auto;
  right: 0;
  bottom: -70px;
  position: absolute;
  z-index: 2;
}

.FV-img-0003 img {
  max-width: 200px;
  height: auto;
  bottom: 46px;
  top: 0;
  transform: translateX(380px);
  position: absolute;
  z-index: 2;
}

.it-assessment .top-under {
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 50px auto;
}

.it-assessment .top-under h3 {
  font-size: 36px;
  font-weight: 900;
  color: var(--color-blue);
  text-align: center;
}

.it-assessment .top-under h3 span {
  font-size: 48px;
  color: var(--color-red);
}

.it-assessment .top-under p {
  font-size: 20px;
  text-align: center;
  margin: 20px auto 40px;
}

.it-assessment .top-under img {
  width:100%;
}

.alert-box {
  display: flex;
  align-items: center;
 background-color: var(--color-pglay);
  border-radius: 12px;
  padding: 10px 35px;
  font-weight: bold;
  font-size: 25px;
  margin: 20px auto 10px;
  width: 100%;
  max-width: 750px;
}

.alert-icon {
  width: 100px;
  text-align: center;
  flex-shrink: 0;
}

.alert-icon i {
 color: var(--color-orange);
  font-size: 50px;
}

.alert-text {
  flex: 1;
  text-align: center;
  color: var(--color-blue);
}

.it-assessment footer.footer {
  background-color: var(--color-blue);
  padding: 30px 20px;
  color: white;
  text-align: center;
  font-size: 13px;
  width: 100%;
}

.it-assessment .footer-nav {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.it-assessment .footer-nav a {
  color: white;
  text-decoration: none;
}

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

.it-assessment .footer-copy {
  font-size: 12px;
  color: white;
}

/* サンクスページ */

.complete-txt {
  max-width: 1100px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.complete-txt h3 {
    color: var(--color-red);
    font-size: 36px;
    font-weight: 900;
    margin: 20px auto;
    text-align: center;
}

.complete-txt p{
  font-size: 18px;
  margin: 20px auto;
  text-align: center;
}

.complete-txt p.blue{
  color: var(--color-blue);
  font-size:24px ;
  font-weight: 900;
  margin: 20px auto;
  text-align: center;
}

.complete-txt p span{
  font-size: 14px ;
  margin: 20px auto;
  text-align: center;
}

.complete-txt h4{
  font-size:20px ;
  background-color: #3367d6;
  color: #fff;
  font-weight: 600;
  width: 70%;
  text-align: center;
}

.complete-txt ul {
 margin-bottom: 50px;
}

.complete-txt ul li {
  list-style: none;
  font-size: 18px;
  margin-bottom: 10px;
}

.complete-txt ul li a {
  color: var(--color-blue);
}

.complete-txt ul li a:hover {
  text-decoration: underline;
}

.pcnone{
  display: none;
}

.applicant-info .form-group p {
  margin: 20px auto;
  font-size: 12px;
}

.applicant-info .form-group p a {
  color: var(--color-blue);
}

.form-wrapper .form-header h2 {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 900;
}

input::placeholder {
  color: #cecece;
  opacity: 1;
}


@media screen and (min-width: 1300px) {

.FV-img-0001 img {

  max-width: 320px;
  width: 27vw;
  left: 7%;
  bottom: 0;
}

.FV-img-0002 img {
  max-width: 279px;
  width: 22vw;
  right: 5%;
  bottom: -60px;
}
}


@media screen and (max-width: 991.98px) {

  .pcnone{
  display: block;
}

.it-assessment .top-main-wrapper > p {
  font-size: 24px;
}

.it-assessment .top-main-wrapper h2 {
  font-size: 8vw;
  text-align: center;
}

span.small {
  font-size: 30px ;
  color:inherit ;
  font-weight: 900 ;
}

span.big {
  font-size: 36px ;
  color:inherit ;
  font-weight: 900 ;
}

.it-assessment .top-main-white-wrapper {
  width: 70%;
}

.it-assessment .top-main-white-wrapper p {
  font-size: 20px;
}

.it-assessment .top-main-white-wrapper p.t01 {
  font-size: 24px;
}

.diagnosis-button {
  font-size: 24px;
  padding: 15px 20px 15px 40px;
  width: 60%;
  max-width: 420px;
  justify-content: space-around;
}

.diagnosis-button:hover .arrow {
  transform: translateX(10px);
}

.FV-img-0001 img {
  max-width: 200px;
  left: 0;
  bottom: 0;
}

.FV-img-0002 img {
    max-width: 170px;
    right: 0;
    bottom: -40px;
}

.FV-img-0003 img {
  max-width: 150px;
  bottom: auto;
  top: 136px;
  right: 80px;
  transform: none;
}

.it-assessment .top-under p {
    font-size: 20px;
}

.it-assessment .top-under h3 {
    font-size: 26px;
}

.it-assessment .top-under h3 span {
    font-size: 36px;
}

}

@media screen and (max-width: 767.98px) {

.it-assessment header {
  width: 100%;
  padding: 5px 0 5px 5px;
  margin: 0;
}

.it-assessment header img {
  width:8rem;
}

.it-assessment .top-main-wrapper > p {
  font-size: 24px;
}

.it-assessment .top-main-wrapper h2 {
  font-size: 8vw;
}

span.small {
  font-size: 6vw ;
}

span.big {
  font-size: 7vw ;
}

.it-assessment .top-main-white-wrapper p {
  font-size: 16px;
}

.it-assessment .top-main-white-wrapper p.t01 {
  font-size: 20px;
  margin-bottom: 10px;
}

.diagnosis-button:hover .arrow {
  transform: translateX(10px);
}

.FV-img-0001 img {
  max-width: 150px;
  left: 0;
  bottom: 0;
}

.FV-img-0002 img {
    max-width: 130px;
    right: 0;
    bottom: -30px;
}

.FV-img-0003 img {
  max-width: 120px;
  bottom: auto;
  top: 136px;
  right: 46px;
  transform: none;
}

.it-assessment .top-under {
    margin: 30px 10px;
}

.it-assessment .top-under h3 {
    font-size: 5vw;
}

.it-assessment .top-under h3 span {
    font-size: 6vw;
}

.it-assessment .top-under p {
    font-size: 16px;
    margin: 10px auto 20px;
}

.alert-box {
  padding: 10px;
  font-size: 20px;
  margin: 10px auto 10px;
  width: 100%;
}

.alert-icon {
    width: 60px;
}
.it-assessment .footer-nav {
    justify-content: center;
    gap: 10px;
    flex-direction: column;
}

.complete-txt {
    padding: 0 20px;
}

.complete-txt h3 {
    font-size: 30px;
}

.complete-txt p{
  font-size: 18px;
}

.complete-txt p.blue{
  font-size:24px ;
}

.complete-txt p span{
  font-size: 14px ;
}

.complete-txt h4{
  font-size:20px ;
  width: 90%;
}

.complete-txt ul li {
  font-size: 18px;
}

}

@media screen and (max-width: 575.98px) {

.spnone{
  display: none;
}

.it-assessment .top-main-wrapper-bg {
  padding: 20px 0 30px;
}

.it-assessment .top-main-wrapper > p {
    font-size: 5vw;
}

.it-assessment .top-main-white-wrapper p.t01 {
  font-size: 20px;
  margin-bottom: 10px;
}

.it-assessment .top-main-white-wrapper {
  width: 80%;
  margin-right: 11%;
  /* margin-top: 16px; */
  padding: 30px 30px 20px;
}

.diagnosis-button {
    font-size: 18px;
    padding: 15px 10px 15px 10px;
    width: 60%;
    max-width: 373px;
    justify-content: space-around;
}
.diagnosis-button .arrow {
    width: 50px;
}
.diagnosis-button:hover .arrow {
  transform: translateX(5px)
}

.FV-img-0001 img {
  width: 25vw;
  left: -20px;
  bottom: 0;
}

.FV-img-0002 img {
    width: 22vw;
    right: -5px;
    bottom: -19px;
}

.FV-img-0003 img {
  max-width: 95px;
  bottom: auto;
  top: 83px;
  right: 15px;
  transform: none;
}

.complete-txt {
    padding: 0 20px;
    text-align: center;
}

.complete-txt h3 {
    font-size: 6vw;
    margin: 20px auto 0;
}

.complete-txt p{
  font-size: 4vw;
    margin: 20px auto 0;
}

.complete-txt p.blue{
  font-size:4vw ;
    margin: 20px auto 0;
}

.complete-txt p span{
  font-size: 2.5vw ;
    margin: 20px auto 0;
}

.complete-txt h4{
  font-size:4vw ;
  width: 100%;
    margin: 20px auto 0;
}

.complete-txt ul li {
  font-size: 4vw;
    margin: 10px auto 0;
}

.radio-option i {
    margin-right: 4px;
}

.radio-option.selected i {
    margin-right: 4px;
}

}
