@charset "UTF-8";
/* CSS Document */

:root {
  --company-record-height-pc: 120px;
  --company-record-height-sp: 90px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (min-width: 1200px) {
  body {
    min-width: 1200px;
  }
}

::placeholder {
  color: #aaa;
}

.sp_disp {
  display: none;
}

.pc_disp {
  display: block;
}

/*///CONTENTS///*/

section.contents {
  padding-inline: 80px;
  padding-top: 40px;
  background: #fff;
}

.column_area {
  display: flex;
  justify-content: space-between;
}

.side_column {
  width: 25%;
  min-width: 300px;
  margin-right: 4%;
}

.main_contents {
  width: 72%;
  position: relative;
  padding-bottom: 40px;
}

ul.pankuzu_list {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
}

.pankuzu {
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.pankuzu_list li {
  margin-right: 20px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}

.pankuzu_list li a {
  font-size: 1.2rem;
}

.pankuzu_list li img {
  width: 6px;
  margin-right: 20px;
}

.company_head_link span {
  width: 17px;
  margin-right: 8px;
}

section.company_head {
  background: linear-gradient(180deg, #f1f7fd, #e7edf3);
  padding: 30px;
}

.company_head_inner {
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.company_head_inner_contents {
  display: flex;
}

.company_logo {
  width: 150px;
  height: 150px;
  border: 1px solid #ddd;
  margin-right: 30px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 5px;
}

a.company_head_link {
  display: block;
  padding: 7px 14px;
  background: #fff;
  display: flex;
  border: 1px solid #000;
  font-size: 1.3rem;
  align-items: center;
  border-radius: 5px;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}

a.company_head_link:hover {
  color: #fff;
  background: #000;
}

.company_name_num {
  font-size: 2rem;
  font-weight: bold;
}

.company_num {
  font-weight: normal;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

span.company_furigana {
  display: block;
  font-weight: normal;
  font-size: 1.3rem;
  margin-top: 8px;
}

.registration_date {
  font-weight: normal;
}

.company_num span {
  font-size: 1.1rem;
  background: #fff;
  padding: 3px 10px;
  border: 1px solid #ddd;
  margin-right: 8px;
}

/*//////////// LOADING ////////////*/

.loading {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 100%;
  padding-top: 120px;
  z-index: 999;
}

.bubblingG {
  text-align: center;
  width: 78px;
  height: 49px;
  margin: auto;
}

.bubblingG span {
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 10px;
  margin: 24px auto;
  background: rgb(0, 0, 0);
  border-radius: 49px;
  -o-border-radius: 49px;
  -ms-border-radius: 49px;
  -webkit-border-radius: 49px;
  -moz-border-radius: 49px;
  animation: bubblingG 0.715s infinite alternate;
  -o-animation: bubblingG 0.715s infinite alternate;
  -ms-animation: bubblingG 0.715s infinite alternate;
  -webkit-animation: bubblingG 0.715s infinite alternate;
  -moz-animation: bubblingG 0.715s infinite alternate;
}

#bubblingG_1 {
  animation-delay: 0s;
  -o-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
}

#bubblingG_2 {
  animation-delay: 0.2095s;
  -o-animation-delay: 0.2095s;
  -ms-animation-delay: 0.2095s;
  -webkit-animation-delay: 0.2095s;
  -moz-animation-delay: 0.2095s;
}

#bubblingG_3 {
  animation-delay: 0.429s;
  -o-animation-delay: 0.429s;
  -ms-animation-delay: 0.429s;
  -webkit-animation-delay: 0.429s;
  -moz-animation-delay: 0.429s;
}

@keyframes bubblingG {
  0% {
    width: 10px;
    height: 10px;
    background-color: rgb(0, 0, 0);
    transform: translateY(0);
  }

  100% {
    width: 23px;
    height: 23px;
    background-color: rgb(255, 255, 255);
    transform: translateY(-20px);
  }
}

@-o-keyframes bubblingG {
  0% {
    width: 10px;
    height: 10px;
    background-color: rgb(0, 0, 0);
    -o-transform: translateY(0);
  }

  100% {
    width: 23px;
    height: 23px;
    background-color: rgb(255, 255, 255);
    -o-transform: translateY(-20px);
  }
}

@-ms-keyframes bubblingG {
  0% {
    width: 10px;
    height: 10px;
    background-color: rgb(0, 0, 0);
    -ms-transform: translateY(0);
  }

  100% {
    width: 23px;
    height: 23px;
    background-color: rgb(255, 255, 255);
    -ms-transform: translateY(-20px);
  }
}

@-webkit-keyframes bubblingG {
  0% {
    width: 10px;
    height: 10px;
    background-color: rgb(0, 0, 0);
    -webkit-transform: translateY(0);
  }

  100% {
    width: 23px;
    height: 23px;
    background-color: rgb(255, 255, 255);
    -webkit-transform: translateY(-20px);
  }
}

@-moz-keyframes bubblingG {
  0% {
    width: 10px;
    height: 10px;
    background-color: rgb(0, 0, 0);
    -moz-transform: translateY(0);
  }

  100% {
    width: 23px;
    height: 23px;
    background-color: rgb(255, 255, 255);
    -moz-transform: translateY(-20px);
  }
}

@media screen and (max-width: 480px) {
  body {
    min-width: 100%;
  }

  .no_scroll {
    overflow: hidden;
  }

  .sp_disp {
    display: block !important;
  }

  .pc_disp {
    display: none !important;
  }

  main {
    padding-top: 55px;
  }

  /*SPアコーディオン*/
  .acd-check {
    display: none;
  }
  .acd-label_nav {
    box-sizing: border-box;
    font-size: 1.5rem;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: center;
    margin: 0 auto 5px;
    width: 90%;
    padding-bottom: 20px;
  }
  .acd-label_nav::after {
    display: flex;
    align-items: center;
    content: "▼";
    margin-left: 18px;
    font-weight: 900;
    transition: all 0.3s;
  }

  .acd-content {
    height: 0;
    opacity: 0;
    transition: 0.3s;
    visibility: hidden;
    width: 60%;
    padding: 0;
    margin: 0 auto;
  }
  .acd-content p {
    margin: 0;
    padding: 0 20px;
    word-break: break-all;
  }
  .acd-check:checked + .acd-label_nav + .acd-content {
    height: auto;
    width: 90%;
    opacity: 1;
    margin: 15px auto;
    padding: 0;
    visibility: visible;
    display: flex;
    align-items: center;
    word-break: break-all;
  }

  .acd-content a.seminar_sp_links {
    font-size: 1.2rem;
    text-align: center;
    border: #ddd 1px solid;
    border-radius: 7px;
    letter-spacing: 0;
    margin: 0 1%;
    padding: 13px 10px;
  }

  section.contents {
    padding: 40px 5%;
    background: #fff;
  }

  .main_contents {
    width: 100%;
    position: relative;
  }

  .column_area {
    display: block;
  }

  .pankuzu {
    padding: 12px 5%;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
  }

  .pankuzu_list li {
    margin-right: 10px;
    font-size: 1rem;
    display: flex;
    align-items: center;
  }

  .pankuzu_list li a {
    font-size: 1rem;
  }

  .pankuzu_list li img {
    width: 6px;
    margin-right: 10px;
  }

  section.company_head {
    background: linear-gradient(180deg, #f1f7fd, #e7edf3);
    padding: 15px 5%;
  }

  .company_head_inner {
    max-width: 100%;
    margin: 0 auto;
    align-items: flex-start;
    display: block;
    justify-content: space-between;
  }

  .company_head_inner_contents {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
  }

  .company_logo {
    width: 74px;
    height: 74px;
    border: 1px solid #ddd;
    margin-right: 5%;
    border-radius: 8px;
    overflow: hidden;
    padding: 2px;
  }

  .company_name_num {
    font-size: 1.4rem;
    font-weight: bold;
  }

  .company_num {
    font-weight: normal;
    font-size: 1rem;
    margin-bottom: 7px;
  }

  .company_num span {
    font-size: 1rem;
    background: #fff;
    padding: 2px 7px;
    border: 1px solid #ddd;
    margin-right: 5px;
  }

  span.company_furigana {
    display: block;
    font-weight: normal;
    font-size: 1rem;
    margin-top: 2px;
  }

  a.company_head_link {
    display: block;
    padding: 7px 14px;
    background: #fff;
    width: 100%;
    justify-content: center;
    display: flex;
    border: 1px solid #000;
    font-size: 1.2rem;
    align-items: center;
    margin: 0 auto;
    border-radius: 5px;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
  }

  .side_column {
    width: 100%;
    min-width: inherit;
    margin-right: 0;
    margin-bottom: 5%;
  }
}
