@charset "utf-8";

  body{
    position: relative;
    font-size: 1.6rem;
    line-height: 1.25;
    font-weight: normal;
    font-family: "Noto Sans JP", sans-serif;
    z-index: 1;
    background: #F2F2F2;
  }
  
  .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;}
  }

  .gf{
    font-family: "Roboto", sans-serif;
  }

  .flex_c{
    display: flex;
    justify-content: center;
    width: 100%;
  }

  h1,h2,h3,h4{
    font-weight: 600;
  }

  button,
  a{
    cursor: pointer;
    transition: opacity 0.2s ease;
  }
  a:hover{
    opacity: 0.5;
  }
  @media screen and (max-width: 1024px) {
    a:hover{
      opacity: 1 !important;
    }
  }
  img{
    width: 100%;
  }
  .wrap{
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
  }
  @media screen and (max-width: 1024px) {
    .wrap{
      padding: 0 30px;
    }
  }
  @media screen and (max-width: 768px) {

    .wrap{
      padding: 0 15px;
    }
  }

  .button1{
    font-size: 1.5rem;
    border-radius: 4px;
    line-height: 56px;
    background: #02339A;
    color: #fff;
    text-align: center;
    max-width: 368px;
    width: 100%;
  }

  .button_login{
    width: 200px;
    font-size: 1.6rem;
    font-weight: bold;
    border-radius: 4px;
    line-height: 40px;
    background: #FFDA60;
    text-align: center;
    color: #000;
    border:1px solid #fff;
  }

  header{
    position: fixed;
    left:0;
    top:0;
    width: 100%;
    display: flex;
    background: #fff;
    flex-direction: column;
    z-index: 2;
  }
  
  header .block1{
    position: relative;
    display: flex;
    align-items: center;
    min-height: 70px;
    border-top:8px solid #2C67B1;
    border-bottom:8px solid #2C67B1;
    padding: 0 30px;
  }

  header .block1 .logo{
    display: block;
    width: 145px;
  }

  header .block1 .ttl{
    position: absolute;
    font-size: 4.2rem;
    font-weight: 300;
    color: #68C7ED;
    right:30px;
    top:0;
  }

  header .block2{
    position: relative;
    height: 54px;
    display: flex;
    align-items: center;
    background: #2C67B1;
  }

  header .block2 .info{
    color:#fff;
    font-size: 1.6rem;
    font-weight: bold;
    display: flex;
    padding-left: 100px;
    margin-top: -10px;
  }
  
  header .block2 .info .name{
    padding-left: 20px;
  }

  header .block2 .button_login{
    position: absolute;
    right:20px;
    top:2px;
  }
  
  /*メニューボタン*/
  header #menu_button {
    position: absolute;
    display: block;
    left: 20px;
    top: 0px;
    padding-bottom: 2px;
    cursor: pointer;
    height: 45px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
  }

  header #menu_button>.inr{
    position: relative;
    width: 36px;
    height: 22px;
    cursor: pointer;
    margin-top: 0px;
    transition: all 0.2s ease;
    transform: rotate(0deg);
    z-index: 2;
  }

  header #menu_button>.inr>div {
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    transition: all 0.2s;
    z-index: 11;
  }

  header #menu_button>.inr>div:nth-child(1) {
    top: 0%;
    left: 0px;
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }

  header #menu_button>.inr>div:nth-child(2) {
    top: 50%;
    left: 0px;
  }

  header #menu_button>.inr>div:nth-child(3) {
    top: 100%;
    left: 0px;
    transform: translate(0%, 0%);
  }

  header.active #menu_button>.inr>div {
    position: absolute;
    transition: all 0.3s;
  }

  header.active #menu_button>.inr>div:nth-child(1) {
    top: 50%;
    margin-left: 0px;
    transform: translate(0, -50%) rotate(45deg);
  }

  header.active #menu_button>.inr>div:nth-child(2) {
    opacity: 0;
  }

  header.active #menu_button>.inr>div:nth-child(3) {
    top: 50%;
    margin-left: 0px;
    transform: translate(0, -50%) rotate(-45deg);
  }

  header nav {
    position: fixed;
    top: 124px;
    width: 300px;
    left: 0;
    text-align: left;
    -webkit-overflow-scrolling: touch;
    text-align: center;
    padding: 0px;
    overflow: auto;
    visibility: hidden;
    background: #fff;
    transition: all 0s ease-in-out;
    opacity: 0;
    display: none;
    z-index: 1000;
    padding: 20px 30px;
    height: calc(100vh - 124px);
    height: calc(100dvh - 124px);
  }

  header.block nav{
    display: block;
    left: -300px;
  }

  header.block.active nav{ 
    opacity: 1;
    visibility: visible;
  }

  header.block nav.slide{
    display: block;
    opacity: 1;
  }

  header.block.active nav.slide{ 
    opacity: 1;
    left: 0px;
    visibility: visible;
  }

  header.block nav.fade-in{
    display: block;
    right: 0px;
    width: 100%;
  }

  header.block.active nav.fade-in{ 
    opacity: 1;
    right: 0px;
    visibility: visible;
  }

  header.block nav .ttl{
    font-size: 2rem;
    text-align: left;
    margin-bottom: 24px;
  }

  header.block nav .menu{
    text-align: left;
  }
  header.block nav .menu>li{
    margin-bottom: 1.5em;
  }

  #container{
    background: #F2F2F2;
    padding-top: 124px;
  }
  #container,
  #login_container{
    position: relative;
  }

  #login_container{
    margin-top: 70px;
    min-height: calc(100vh - 70px);
  }

  #container.active{
    padding-left: 300px;
  }

  #contents{
    padding: 60px 40px;
  }

  @media screen and (max-width: 1024px) {
    #contents{
      padding: 40px 20px;
    }

    #container.active{
      padding-left: 0px;
    }
  
  }
  /*
  共通パーツ
  */
  .headline_l{
    font-size: 2.4rem;
    text-align: center;
    font-weight: bold;
    margin-bottom: 25px;
  }
  @media screen and (max-width: 1024px) {
    .headline_l{
      font-size: 2.2rem;
      margin-bottom: 20px;
    }
  }

  .main_msg{
    font-weight: bold;
    text-align: center;
  }


  .section{
    max-width: 1360px;
    width: 100%;
    margin: 0 auto ;
    margin-top: 40px;
  }

  /*テーブル*/
  .table1_wrap{
    width: 100%;
  }

  .table1{
    width: 100%;
    font-size: 1.6rem;
  }

  .table1 thead th{
    background: #2C67B1;
    color: #fff;
    text-align: center;
    font-weight: bold;
    height: 62px;
    vertical-align: middle;
    border:1px solid #CCCCCC;
    padding:14px;
  }

  .table1 tbody td{
    padding:14px;
    border:1px solid #CCCCCC;
  }

  .table1 tbody td>a{
    color: #03339A;
    font-weight: bold;
    text-decoration: underline;
  }
  
  .table1 tbody td:nth-child(1){
    width: 74px;
    white-space: nowrap;
  }

  .table1 tbody td:nth-child(2){
    width: 283px;
  }

  .table1 tbody td:nth-child(3){
    width: 166px;
  }

  .table1 tbody td:nth-child(4){
    width: 166px;
  }

  .table1 tbody td:nth-child(5){
    width: 130px;
  }

  .table1 tbody td:nth-child(6){
    width: 330px;
  }

  @media screen and (max-width: 1024px) {

    .table1_wrap{
      overflow-x: scroll;
    }

    .table1{
      width: 1024px;
      font-size: 1.4rem;
    }

    .table1 thead th,
    .table1 tbody td{
      padding:10px;
    }
  
  }

  /*テーブル2*/
  .table2{
    width: 100%;
    font-size: 1.6rem;
  }

  .table2 thead th{
    background: #2C67B1;
    color: #fff;
    text-align: center;
    font-weight: bold;
    height: 62px;
    vertical-align: middle;
    padding:14px;
    text-align: left;
  }

  .table2 tbody td{
    padding:14px 14px 8px;
    background: #fff;
  }

  .table2 tbody td p{
    margin: 10px 0 20px;
  }

  .table2 tbody td a{
    color: #03339A;
    font-weight: bold;
    text-decoration: underline;
  }
  
  .table2 tbody td:nth-child(1){
    width: 116px;
    font-weight: bold;
  }

  .table2 tbody td:nth-child(2){
    width: calc(100% - 116px);
  }

  /*テーブル3*/
  .table3{
    width: 100%;
    display: block;
    font-size: 1.6rem;
    background: #fff;
  }

  .table3 thead,
  .table3 thead tr,
  .table3 thead tr th,
  .table3 tbody,
  .table3 tbody tr,
  .table3 tbody tr td{
    width: 100%;
    display: block;
  }

  .table3 thead th{
    background: #2C67B1;
    color: #fff;
    text-align: center;
    font-weight: bold;
    height: 62px;
    vertical-align: middle;
    padding:22px 14px;
    text-align: left;
    display: flex;
    font-size: 2rem;
  }

  .table3 tbody {
    padding-bottom: 30px;
  }

  .table3 tbody td{
    padding:25px 25px 0;
    width: 100%;
    background: #fff;
  }
  
  .table3 tbody td a{
    color: #03339A;
    font-weight: bold;
    text-decoration: underline;
  }

  @media screen and (max-width: 1024px) {
    .table3{
      font-size: 1.4rem;
    }
  }

  
  /*テーブル3*/
  .table4{
    width: 100%;
    display: block;
    font-size: 1.6rem;
    background: #fff;
  }

  .table4 thead,
  .table4 thead tr,
  .table4 thead tr th,
  .table4 tbody,
  .table4 tbody tr,
  .table4 tbody tr th,
  .table4 tbody tr td{
    width: 100%;
    display: block;
    text-align: left;
  }

  .table4 thead th{
    background: #F7CC3F;
    color: #151515;
    text-align: center;
    font-weight: bold;
    height: 62px;
    vertical-align: middle;
    padding:18px 14px;
    text-align: left;
    display: flex;
    font-size: 2rem;
  }

  .table4 tbody {
    padding: 28px;
  }

  .table4 tbody th{
    background: #EFEFEF;
    color: #000;
    padding: 15px 12px;
    font-weight: bold;
    font-size: 1.6rem;
    width: 100%;
  }

  .table4 tbody td{
    width: 100%;
    padding: 30px 23px 40px;
  }

  .table4 tbody td .ttl{
    margin-bottom: 22px;
    font-size: 1.6rem;
  }

  .table4 tbody td .ttl em{
    color: #FF7F00;
    font-size: 1.4rem;
  }

  .table4 tbody td ol>li:not(:last-child) {
    margin-bottom: 40px;
  }
  
  .table4 tbody td a{
    color: #03339A;
    font-weight: bold;
    text-decoration: underline;
  }

  .table4 .row1{
    display: flex;
    gap:1em;
    align-items: center;
  }


  @media screen and (max-width: 1024px) {
    .table4{
      font-size: 1.4rem;
    }

    .table4 tbody {
      padding: 15px;
    }

    .table4 tbody td {
      width: 100%;
      padding: 20px 10px 30px;
    }

  }

  
.table5 {
  width: 100%;
  margin-bottom: 20px;
}

.table5 th {
  background-color: #2C67B1;
  padding: 12px 24px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  vertical-align: middle;
  color: #fff;
  width: 280px;
  white-space: nowrap;
}

.table5 th em {
  color: #FF7F00;
}

.table5 td {
  padding: 18px 25px;
  vertical-align: middle;
  background: #fff;
  border-bottom: 1px solid #ddd;
}
  
.table5 tr:last-child td{
  border-bottom: 0;
}

.table5 td .name{
  display: flex;
  gap:24px;
  align-items: center;
}

.table5 td .name>li {
  display: flex;
  align-items: center;
  width: 36%;
}

.table5 td .name>li>span{
  padding-right: 1em;
  white-space: nowrap;
}

.table_form_buttons {
    margin-top: 40px;
    display: flex;
    gap:50px;
    justify-content: center;
}

.table_form_buttons .button1.back{
  background: #7D7F84;
}

.table5 td .tel{
  display: flex;
}

.table5 td .tel>li{
  display: flex;
  align-items: center;
}

.table5 td .tel>li.hype{
  padding: 0 0.5em;
  color: #151515;
  font-weight: normal;
}

.table5 .address .box1{
  margin-bottom: 14px;
}

.table5 .address .box1,
.table5 .address .box2,
.table5 .address .box3{
  display: flex;
  align-items: center;
}

.table5 .address .box1 .col1{
  display: flex;
  align-items: center;
}

.table5 .address .box1 .col1 button{
  width: 114px;
  line-height: 27px;
  border-radius: 6px;
  box-shadow: 0 2px 3px rgba(0,0,0,0.16);
  background: #fff;
  border: 1px solid #E2E2E2;
}

.table5 .address .box1 .col1 >span{
  padding-right: 0.5em;
}

.table5 .address .box1 .col1 button{
  margin-left: 10px;
  margin-right: 0px;
}

.table5 .address .box1 .col1 {
  display: flex;
  align-items: center;
}

.table5 .address .box1 .col2 {
  display: flex;
  align-items: center;
  padding-left: 20px;
}

.table5 .address .box1 .col2 {
  display: flex;
  align-items: center;
  padding-left: 20px;
}

.table5 .address .box1 .col2>span{
  padding-right: 10px;
}

.table5 .address .box2{
  margin-bottom: 18px;
}

.table5 .address .box2 .head ,
.table5 .address .box3 .head {
  padding-right: 1em;
  white-space: nowrap;
}

.table5 .birth {
  display: flex;
  gap: 20px;
}
.table5 .birth>li{
  display: flex;
  align-items: center;
}
.table5 .birth>li>span{
  padding-left: 0.5em;
}

@media screen and (max-width: 1024px) {
  .table5,
  .table5 th,
  .table5 td,
  .table5 tbody,
  .table5 tr{
   display: block;
   width: 100%;
  }

  .table5 th,
  .table5 td {
    padding: 14px 14px;
    border-bottom: 1px solid #ddd;
  }
  
  .table5 tr td{
    border-bottom: 0;
  }

  .table_form_buttons {
      margin-top: 40px;
      display: flex;
      gap:50px;
      justify-content: center;
  }

  .table_form_buttons {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap:20px;
    align-items: center;
    justify-content: center;
  }

  .table5 td .name{
    display: block;
  }

  .table5 td .name>li {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 0px;
  }

  .table5 td .name>li:nth-child(1){
    margin-bottom: 15px;
  }

  .table5 td .name>li>span{
    padding-right: 1em;
    white-space: nowrap;
  }

  .table5 .address .box1 {
    display: block;
    margin-bottom: 20px;
  }

  .table5 .address .box1 .col2 {
    padding-left: 0px;
  }

  .table5 .address .box1 .col1{
    margin-bottom: 15px;
    padding-left: 0;
  }
}

  /*
  login
  */
  .login_block{
    display: flex;
    background: url(../img/main_img_01.webp);
    overflow: auto;
    width: 100%;
    background-size: cover;
    justify-content: center;
    align-items: center;
    padding: 20px 15px;
    min-height: calc(100vh - 70px);
  }
  
  .login_inner{
    width: 448px;
  }

  .login_box{
    border:2px solid #2C67B1;
    background: #FFFFFF;
    padding: 45px 40px 30px; 
    margin-bottom: 30px;
    border-radius: 12px;
  }

  .login_box .input_list>li{
    margin-bottom: 28px;
  }

  .login_box .input_list>li p{
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .login_box .link_list{
    text-align: center;
  }

  .login_box .link_list>li{
    margin-bottom: 8px;
  }

  .login_box .link_list>li>a{
    color: #03339A;
  }

  .login_box .button1{
    margin-bottom: 27px;
  }

  .login_box2{
    border-radius: 8px;
    background: #03339A;
    color: #fff;
  }

  .login_box2 .ttl{
    padding: 10px 20px 8px;
    font-size: 2.4rem;
    border-bottom: 1px solid #fff;
    text-align: left;
  }

  .login_box2 .box{
    padding: 20px;
  }

  .login_box2 .box .list{
    margin-bottom: 20px;
  }

  .login_box2 .box .msg{
    font-size: 1.4rem;
  }

  @media screen and (max-width: 1024px) {
    .login_box{
      padding: 30px 30px 30px; 
      margin-bottom: 20px;
      border-radius: 12px;
    }

  }

  .regist_done_block{
    height: 88px;
    padding: 34px;
    background:#fff;
    text-align: center;
  }

    