@charset "UTF-8";
/*------------------------------------------------------------
	サイト幅でセンタリング
------------------------------------------------------------*/
/*------------------------------------------------------------
	breakpoint
------------------------------------------------------------*/
/*------------------------------------------------------------
	フォント
------------------------------------------------------------*/
/*------------------------------------------------------------
	clearfix
------------------------------------------------------------*/
/*------------------------------------------------------------
	flex
------------------------------------------------------------*/
/*------------------------------------------------------------
	Other
------------------------------------------------------------*/
html {
  font-size: 62.5%;
}
@media (min-width: 1280px) and (max-width: 1919px) {
  html {
    font-size: 0.520833vw;
  }
}
@media (min-width: 601px) and (max-width: 1279px) {
  html {
    font-size: 6.666px;
  }
}
@media screen and (max-width: 600px) {
  html {
    font-size: 1.8vw;
  }
}

.display_none {
  display: none;
}

.message_container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  width: 50rem;
  max-width: 70%;
  z-index: 101;
}
.message_container .close_button {
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 4rem;
  height: 4rem;
  cursor: pointer;
}

.gray_area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.error_message {
  color: red;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin-block: 2rem;
}

.success_message {
  color: green;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin-block: 2rem;
}

.loading_gray_area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.loading_container {
  display: flex;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50rem;
  max-width: 70%;
  z-index: 101;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  padding-block: 5rem 1rem;
  border-radius: 1rem;
}
.loading_container .loading_text {
  font-size: 2.2rem;
  text-align: center;
}

.loading_icon_content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.loading_icon_content img {
  width: 10rem;
  height: 10rem;
}
.loading_icon_content img:nth-child(1) {
  animation: loading1 2s infinite;
}
.loading_icon_content img:nth-child(2) {
  animation: loading2 2s infinite;
}
.loading_icon_content img:nth-child(3) {
  animation: loading3 2s infinite;
}

@keyframes loading1 {
  20% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-5rem);
  }
  50% {
    transform: translateY(-5rem);
  }
  60% {
    transform: translateY(0);
  }
}
@keyframes loading2 {
  10% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-5rem);
  }
  60% {
    transform: translateY(-5rem);
  }
  70% {
    transform: translateY(0);
  }
}
@keyframes loading3 {
  0% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(-5rem);
  }
  70% {
    transform: translateY(-5rem);
  }
  80% {
    transform: translateY(0);
  }
}
.roboto {
  font-family: "Roboto", sans-serif;
}

.header {
  display: flex;
  background-color: white;
  align-items: center;
  margin-left: 15px;
  height: 8rem;
}
.header.header_none {
  display: none;
}
.header .solopra {
  position: relative;
  line-height: 5rem;
  color: rgb(21, 23, 116);
  font-size: 3rem;
  font-weight: bolder;
  display: flex;
  align-items: center;
}
.header .solopra .solopra_header_logo {
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 0.5rem;
  background-color: #85D6FF;
}
@media screen and (max-width: 600px) {
  .header .solopra .solopra_header_logo {
    width: 3.2rem;
    height: 3.2rem;
  }
}
.header .solopra .solopra_header_text {
  font-size: 4.3rem;
  font-weight: bold;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  margin-left: 1.2rem;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 600px) {
  .header .solopra .solopra_header_text {
    font-size: 2.4rem;
  }
}
.header .solopra .solopra_header_logo_text {
  width: 18rem;
  margin-left: 1rem;
}
@media screen and (max-width: 600px) {
  .header .solopra .solopra_header_logo_text {
    width: 14rem;
  }
}
.header .link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.header .header_button_container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
}
@media screen and (max-width: 1100px) {
  .header .header_button_container {
    display: none;
  }
}
.header .header_button_content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 5rem;
  padding-inline: 2.6rem;
  border-radius: 2.5rem;
}
.header .header_button_content .solopra_header_icon {
  width: 3rem;
  height: 3rem;
}
.header .header_button_content .white {
  display: none;
}
.header .header_button_content:hover {
  background-color: #151774;
  color: white;
}
.header .header_button_content:hover .black {
  display: none;
}
.header .header_button_content:hover .white {
  display: block;
}
.header .header_button_text {
  font-size: 1.6rem;
  font-weight: 500;
  margin-left: 1.2rem;
}
.header .login_btn,
.header .mypage_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
  background: #151774;
  color: white;
  padding: 0px 1rem;
  border-radius: 1rem;
  height: 5.1rem;
  font-size: 1.6rem;
  width: 11.2rem;
}
.header .login_btn:hover,
.header .mypage_btn:hover {
  background: #2325b9;
}
@media screen and (max-width: 1100px) {
  .header .login_btn,
  .header .mypage_btn {
    width: 10rem;
    height: 4rem;
    font-size: 1.2rem;
    margin-left: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .header .login_btn,
  .header .mypage_btn {
    width: 7rem;
    height: 4rem;
    font-size: 1.2rem;
    margin-left: 1rem;
  }
}
.header .create_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 30px;
  background: #DA5817;
  color: white;
  padding: 0px 1rem;
  border-radius: 1rem;
  height: 5.1rem;
  font-size: 1.6rem;
  width: 11.2rem;
}
.header .create_btn:hover {
  background: #8d390f;
}
@media screen and (max-width: 1100px) {
  .header .create_btn {
    width: 10rem;
    height: 4rem;
    font-size: 1.2rem;
    margin-left: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .header .create_btn {
    width: 7rem;
    height: 4rem;
    font-size: 1.2rem;
    margin-left: 1rem;
  }
}
.header .contact_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 30px;
  background: white;
  border: 2px solid #2325b9;
  color: #2325b9;
  padding: 0px 1rem;
  border-radius: 1rem;
  height: 5.1rem;
  font-size: 1.6rem;
  width: 16rem;
}
.header .contact_btn .white {
  display: none;
}
.header .contact_btn:hover {
  background: #2325b9;
  color: white;
}
.header .contact_btn:hover .black {
  display: none;
}
.header .contact_btn:hover .white {
  display: block;
}
.header .contact_btn .contact_btn_text {
  margin-left: 6px;
}
@media screen and (max-width: 1100px) {
  .header .contact_btn {
    display: none;
  }
}
.header input[type=checkbox] {
  display: none;
}
@media screen and (min-width: 1100px) {
  .header .menuebtn {
    display: none;
  }
  .header .hamberger {
    display: none;
  }
}
@media screen and (max-width: 1100px) {
  .header .menuebtn {
    position: fixed;
    display: flex;
    justify-content: center;
    top: 3rem;
    right: 4rem;
    width: 5rem;
    height: 5rem;
    background: transparent;
    z-index: 100;
    cursor: pointer;
  }
  .header .menuebtn span {
    content: "";
    position: absolute;
    display: block;
    top: 20%;
    width: 100%;
    height: 0;
    border: solid 1px black;
    transition: 0.3s ease;
  }
  .header .menuebtn span:nth-child(2) {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    width: 100%;
    height: 0;
    border: solid 1px black;
  }
  .header .menuebtn span:nth-child(3) {
    content: "";
    position: absolute;
    display: block;
    top: 80%;
    width: 100%;
    height: 0;
    border: solid 1px black;
  }
  .header input:checked ~ .menuebtn span:nth-child(2) {
    display: none;
  }
  .header input:checked ~ .menuebtn span {
    transform: rotate(-45deg);
    top: 1.5rem;
    transition: 0.3s ease;
    border: solid 1px white;
  }
  .header input:checked ~ .menuebtn span:nth-child(3) {
    transform: rotate(45deg);
    top: 1.5rem;
    border: solid 1px white;
  }
  .header .hamberger {
    position: fixed;
    padding-top: 5rem;
    width: 0;
    background-color: transparent;
    height: 20rem;
    right: 0.5rem;
    z-index: 5;
    transition: 0.5s;
    top: 2rem;
  }
  .header input:checked ~ .hamberger {
    position: fixed;
    width: 50%;
    height: fit-content;
    background-color: #0e0e25;
    right: 0px;
    margin-left: 1rem;
    z-index: 20;
    transition: 0.5s;
  }
  .header .hambergermenue {
    display: none;
  }
  .header input:checked ~ .hamberger .hambergermenue {
    display: flex;
    color: white;
    text-align: left;
    padding: 1rem 0 1rem 2rem;
    border-bottom: solid 2px white;
    font-size: 2rem;
    height: 5rem;
    align-items: center;
  }
  .header input:checked ~ .hamberger .hambergermenue:last-child {
    border: solid 0;
  }
}

.text_red_focus {
  color: #DA5817;
}

.footer {
  width: 100%;
  background: #151774;
  color: white;
  display: flex;
  justify-content: center;
  padding-block: 5.5rem;
}
.footer .footer_container {
  display: flex;
  width: fit-content;
  margin-inline: auto;
  gap: 5.8rem;
}
@media screen and (max-width: 1100px) {
  .footer .footer_container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .footer .footer_container {
    display: flex;
    flex-direction: column;
  }
}
.footer .footer_container .footer_content:nth-child(1) {
  width: 48rem;
}
@media screen and (max-width: 600px) {
  .footer .footer_container .footer_content:nth-child(1) {
    display: flex;
    gap: 4rem;
  }
}
@media screen and (max-width: 1100px) {
  .footer .footer_container .footer_content:nth-child(1) {
    grid-column: 1/4;
    grid-row: 1/2;
    display: flex;
    gap: 4rem;
  }
}
.footer .footer_container .footer_content .footer_logo_element {
  display: flex;
  align-items: center;
}
.footer .footer_container .footer_content .footer_logo_element .solopra_footer_logo {
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 0.5rem;
  background-color: #85D6FF;
}
.footer .footer_container .footer_content .footer_logo_element .solopra_footer_text {
  font-size: 4.3rem;
  font-weight: bold;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  margin-left: 1.2rem;
  letter-spacing: 0.1rem;
}
.footer .footer_container .footer_content .footer_logo_element .x_footer_logo {
  margin-top: 3.4rem;
  width: 5.3rem;
  height: 5.3rem;
}
@media screen and (max-width: 1100px) {
  .footer .footer_container .footer_content .footer_logo_element .x_footer_logo {
    margin: 0;
  }
}
.footer .footer_container .footer_content .footer_content_sub_title {
  width: 26.9rem;
  font-size: 2rem;
  font-weight: bold;
  border-bottom: solid 0.2rem white;
  height: 3.5rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .footer .footer_container .footer_content .footer_content_sub_title {
    width: 100%;
  }
}
.footer .footer_container .footer_content .footer_content_element {
  font-size: 1.6rem;
  margin-top: 1.8rem;
  margin-left: 3rem;
}
.footer .footer_container .footer_content .footer_content_element .footer_icon {
  width: 1.3rem;
  margin-right: 1.3rem;
}

.footerenshu {
  width: 150px;
}

.footertoiawase {
  width: 150px;
}

.footertitle {
  height: 80px;
  line-height: 100px;
}

.footerelement {
  height: 150px;
}