@charset "utf-8";
:root{}
html {
  scroll-behavior: auto;
}

body{
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: normal;
  font-weight: 400;
  font-family: "Noto Sans JP", "Hiragino Sans","Hiragino Kaku Gothic ProN", sans-serif;
  color: #000;
  --sub: "Jost", sans-serif;
}

.sp{ display: none !important;}
.pc{ display: block !important;}

@media only screen and (max-width: 1024px) {
  .sp{ display: block !important;}
  .pc{ display: none !important;}
}

.sp2{ display: none !important;}
.pc2{ display: block !important;}

@media only screen and (max-width: 768px) {
  .sp2{ display: block !important;}
  .pc2{ display: none !important;}
}

a{
  text-decoration: underline;
  color: #003E92;
}

.wrap{
  max-width: 1160px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .wrap{
    padding: 0 20px;
  }
}

/*
見出し
*/
.headline_m{
  margin-bottom: 50px;
}

.header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 36px;
}

.header .logo{
  width: 73px;
}

.header .ttl{
  font-weight: 500;
  line-height: 1;
  font-size: 4.2rem;
  font-family: var(--sub);
  padding-top: 0.1em;
}
@media screen and (max-width: 1024px) {
  .header{
    padding: 0px 10px;
    border-top:4px solid #000; 
    height: 56px;
    border-bottom:4px solid #000; 
  }

  .header .logo{
    width: 62px;
  }

  .header .ttl{
    font-size: 2.4rem;
  }
}

.footer {
  display: flex;
  justify-content: space-between;
  background: #000;
  color: #fff;
  height: 60px;
  align-items: center;
  padding: 10px 36px;
}

.footer .links{display: flex;}
.footer .links>li>a{
  position: relative; 
  padding-left: 1em;
  text-decoration: none; 
  color: #fff;
  font-size: 1.5rem;
}
.footer .copy{
  padding-top: 2px;
  font-size: 1.4rem;
}

.footer .links>li>a::before{
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
  .footer {
    display: block;
    padding: 15px 20px;
    height: auto;
  }
  .footer .links{
    margin-bottom: 10px;
  }
}

.page_login .contents {
  padding-top: 0px;
  padding-bottom: 60px;
}

.page_login .main_img {
  margin-bottom: 40px;
  padding-top: 10px;
}

.page_login .section_row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.page_login .section_row .section_box {
  width: calc((100% - 20px) / 2);
}

.page_login .section_row .section_box .ttl {
  font-size: 2.4rem;
  padding: 5px 10px;
  color: #fff;
  font-weight: 500;
  background: #000;
  font-family: var(--sub);
  margin-bottom: 30px;
}

.page_login .section_row .section_box .msg1 {
  font-size: 1.4rem;
  line-height: 1.42;
}

.page_login .section_row .section_box .r_list {
  margin-bottom: 15px;
}

.page_login .section_row .section_box .r_list > li::before {
  content: "●";
}

.page_login .section_row .section_box .input_list > li {
  margin-bottom: 12px;
  background: #F2F2F2;
  border-radius: 4px;
  padding-bottom: 10px;
  height: 56px;
}

.page_login .section_row .section_box .input_list > li > .input_box p {
  font-size: 1.3rem;
  font-weight: 500;
  padding: 4px;
}

.page_login .section_row .section_box .input_list > li > .input_box input[type=password],
.page_login .section_row .section_box .input_list > li > .input_box input[type=text]{
  background: transparent;
  border:0;
  height: 20px;
}

.page_login .section_row .section_box .button1 {
  border-radius: 4px;
  background: #F7CC3F;
  font-size: 1.5rem;
  line-height: 5.6rem;
  text-align: center;
  color: #000;
  font-weight: 500;
}

.page_login .section_row .section_box .tr_list > li {
  padding-left: 10px;
  position: relative;
  margin-top: 10px;
}

.page_login .section_row .section_box .tr_list > li::before {
  content: '';
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 0;
  height: 0;
  border-right: 4px solid transparent;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 4px solid #F7CC3F;
}
@media screen and (max-width: 1024px) {

  .page_login .contents {
    padding-top: 0px;
  }

  .page_login .main_img {
    margin-bottom: 40px;
    padding-top: 0px;
  }

  .page_login .main_img .wrap{
    padding: 0;
  }
  
  .page_login .section_row {
    display: block;
  }

  .page_login .section_row .section_box {
    width: 100%;
  }

  .page_login .section_row .section_box .ttl {
    margin-bottom: 20px;
  }

  
  .page_login .section_row .section_box .msg1{
    margin-bottom: 30px;
  }

  .page_login .section_row .section_box .r_list {
    margin-bottom: 10px;
  }

  .page_login .section_row .section_box .r_list > li::before {
    content: "●";
  }

  .page_login .section_row .section_box .input_list > li {
    margin-bottom: 12px;
    background: #F2F2F2;
    border-radius: 4px;
    padding-bottom: 10px;
    height: 56px;
  }

  .page_login .section_row .section_box .input_list > li > .input_box p {
    font-size: 1.3rem;
    font-weight: 500;
    padding: 4px;
  }

  .page_login .section_row .section_box .input_list > li > .input_box input[type=password],
  .page_login .section_row .section_box .input_list > li > .input_box input[type=text]{
    background: transparent;
    border:0;
    height: 20px;
  }

  .page_login .section_row .section_box .button1 {
    border-radius: 4px;
    background: #F7CC3F;
    font-size: 1.5rem;
    line-height: 5.6rem;
    text-align: center;
    color: #000;
    font-weight: bold;
  }

  .page_login .section_row .section_box .tr_list > li {
    padding-left: 10px;
    position: relative;
    margin-top: 10px;
  }


}
