@charset "UTF-8";

/* ------------------------------------------------------------
WORKSHOP
-------------------------------------------------------------- */
.workshop_img {
  text-align: center;
  margin-bottom: 4rem;
}

/* ------------------------------------------------------------
COMMON
-------------------------------------------------------------- */
.mt_2rem {
  margin-top: 2rem;
}
.btn_margin {
  margin-top: 4rem;
}
@media screen and (width <= 768px) {
  .margin_bottom_sp {
    margin-bottom: 1rem;
    font-size: inherit;
  }
  .btn_mt {
    margin: 2rem 0;
  }
  .sp_none {
    display: none;
  }
}
/* ------------------------------------------------------------
HEADER
-------------------------------------------------------------- */
header div.wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
}
header .logo {
  max-width: 25rem;
}
header .logo img {
  width: 100%;
  height: auto;
}
header .text {
  color: #9fa0a0;
  font-size: 1.2rem;
}
@media screen and (width <= 800px) {
  header .text {
    display: none;
  }
}
@media screen and (width <= 768px) {
  header div.wrap {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
  }
}
/* ------------------------------------------------------------
FV
-------------------------------------------------------------- */
#fv {
  position: relative;
  margin-bottom: 12.15%;
}
#fv .btn {
  max-width: 27rem;
  position: absolute;
  width: 22%;
  right: 6%;
  bottom: 0;
  transform: translateY(45%);
}
#fv .btn a {
  display: block;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}
#fv .btn a:hover {
  transform: scale(1.05);
  filter: brightness(1.1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}
#fv .btn img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (width <= 768px) {
  #fv {
    margin-bottom: 0;
  }
  #fv .btn {
    width: calc(188 / 498 * 100%);
    top: calc(30 / 498 * 100%);
    left: calc(20 / 498 * 100%);
    right: auto;
    bottom: auto;
    transform: none;
  }
}


/* ------------------------------------------------------------
NEWS
-------------------------------------------------------------- */
#news {
  display: flex;
  flex-direction: row;
  gap: 8rem;
  align-items: center;
  min-height: 20rem;
  padding-bottom: 10rem;
}
#news h2 {
  flex: 0 0 auto;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
#news .sec_header .eng_title {
  margin-bottom: 2.5rem;
  line-height: 1;
  font-weight: 700;
}
#news .sec_header .title {
  background: linear-gradient(90deg, #3bb094, #1182ab);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
#news ul {
  flex: 1 1 0%;
  margin-left: 0;
  margin-right: 0;
  width: auto;
  min-width: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
#news ul li {
  background-color: white;
  padding: 2.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.2rem;
}
#news ul li .date {
  color: var(--pickupColor);
  font-size: 1.6rem;
  flex: 0 0 auto;
  min-width: 7.2rem;
  text-align: left;
  white-space: nowrap;
}
#news ul li .tag {
  border: 1px solid #c9caca;
  padding: 0.5rem 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  flex: 0 0 auto;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#news ul li .title {
  font-size: 1.6rem;
  flex: 1 1 0%;
  word-break: break-all;
}
@media screen and (width <= 768px) {
  #news {
    flex-direction: column;
    gap: 4rem;
    padding: 4rem 0;
  }
  #news h2 {
    align-items: center;
  }
  #news .sec_header .eng_title {
    margin-bottom: 1rem;
  }
}
@media screen and (width <= 600px) {
  #news ul li {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    gap: 1rem;
    padding: 1.5rem;
  }
  #news ul li .date {
    min-width: auto;
    grid-column: 1;
    grid-row: 1;
  }
  #news ul li .tag {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: start;
  }
  #news ul li .title {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 0.5rem;
  }
}

/* ------------------------------------------------------------
SEMINAR
-------------------------------------------------------------- */
#seminar{
  background-image: url(../img/seminar_bg.jpg);
  background-size: 100% auto;
  background-position: top left;
  background-repeat: no-repeat;
  padding: 2rem 0;
}
#seminar h2.header{
  color: white;
  text-align: center;
}
#seminar .inner{
  background-color: white;
  border-radius: 1rem;
  padding: 7.4rem 0;
}
@media screen and (width <= 1000px) {
  #seminar{
    background-size: auto 400px;
  }
}
/* nav */
#seminar nav {
  margin: 0 9.6rem 1.5rem;
}
#seminar ul#nav-pc {
  display: flex;
  flex-direction: row;
  gap: 0;
  list-style: none;
  position: relative;
}
#seminar ul#nav-pc li {
  flex: 0 0 50%;
  position: relative;
}
#seminar ul#nav-pc li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  position: relative;
  background-color: #fff;
  color: var(--mainColor);
  text-decoration: none;
  border: 1px solid var(--mainColor);
  font-size: 3.7rem;
  font-weight: bold;
}
#seminar ul#nav-pc li a::before {
  content: "";
  display: inline-block;
  width: 5rem;
  height: 5rem;
  margin-right: 1.5rem;
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#seminar ul#nav-pc li:first-child a::before {
  background-image: url(../img/candidate_icon_off.png);
}
#seminar ul#nav-pc li:last-child a::before {
  background-image: url(../img/employer_icon_off.png);
}
#seminar ul#nav-pc li.active:first-child a::before {
  background-image: url(../img/candidate_icon_on.png);
}
#seminar ul#nav-pc li.active:last-child a::before {
  background-image: url(../img/employer_icon_on.png);
}
#seminar ul#nav-pc li.active a {
  background-color: var(--mainColor);
  color: white;
}
#seminar ul#nav-pc li a::after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 1.5rem solid transparent;
  border-right: 1.5rem solid transparent;
  z-index: 2;
}
#seminar ul#nav-pc li.active a::after {
  border-top: 1.5rem solid var(--mainColor);
}
#seminar ul#nav-pc li.not_active a::after {
  border-top: 1.5rem solid white;
}
#seminar ul#nav-pc li.not_active::after {
  /* 疑似border */
  content: '';
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 1.5rem solid transparent;
  border-right: 1.5rem solid transparent;
  border-top: 1.5rem solid var(--mainColor);
  z-index: 1;
}
.sp_toggle {
  display: none;
}
@media screen and (width <= 900px) {
  #seminar nav {
    margin: 0 5rem 1.5rem;
  }
}
@media screen and (width <= 768px) {
  #seminar {
    background-image: none;
    padding: 0;
  }
  #seminar h2.header {
    background-image: url(../img/seminar_bg.jpg);
    background-size: 100% auto;
    background-position: top left;
    background-repeat: no-repeat;
    background-size: auto 400px;
  }
  #seminar nav {
    margin: 0;
  }
  #seminar ul#nav-pc  {
    display: none;
  }
  #seminar .inner {
    padding: 0 2rem;
  }
  #seminar .inner.wrap {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .sp_toggle {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1.5rem 2rem;
    background-color: var(--mainColor);
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
    margin-top: 0.6rem;
  }
  #seminar .inner > .sp_toggle:first-of-type {
    border-top: none;
  }
  .sp_toggle::before {
    content: "";
    display: inline-block;
    width: 3rem;
    height: 3rem;
    margin-right: 1.5rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
  }
  .sp_toggle.candidate::before {
    background-image: url(../img/candidate_icon_on.png);
  }
  .sp_toggle.employer::before {
    background-image: url(../img/employer_icon_on.png);
  }
  .sp_toggle::after {
    content: "";
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='12' fill='white'/%3E%3Cpath d='M8 10L12 14L16 10' stroke='%23337290' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    transition: transform 0.3s ease;
  }
  .sp_toggle.active::after {
    transform: translateY(-50%) rotate(180deg);
  }
}

/* tab_content */
.tab_content{
  display: none;
  padding: 0 7rem;
}
.tab_content.active{
  display: block;
}
.tab_content h3.header {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin: 5rem auto 0;
}
.tab_content h3.header span {
  border-bottom: 4px solid var(--mainColor);
  padding: 0 1rem 0.5rem;
}
.tab_content h4 {
  text-align: center;
  margin: 8.5rem auto 6rem;
}
.tab_content h4.top_dot {
  border-top: 1px dashed #c9caca;
  margin-top: 4rem;
  padding-top: 3.5rem;
}
.tab_content h3.top_dot {
  border-top: 1px dashed #c9caca;
  margin-top: 4rem;
  padding-top: 3.5rem;
}
.tab_content .theme_list {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: space-evenly;
  align-items: flex-start;
}
.tab_content .theme_list .theme_item {
  flex: 0 0 calc((100% - 8rem) / 3);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
}
.tab_content .theme_list .theme_item .title {
  text-align: justify;
  font-size: 2.4rem;
  line-height: 2.8rem;
  color: var(--mainColor);
  font-weight: 700;
}
.tab_content .theme_list .theme_item:nth-child(-n+3) .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 5.6rem;
}
.tab_content .theme_list .theme_item .text {
  text-align: justify;
}
@media screen and (max-width: 965px) {
  .tab_content .theme_list .theme_item {
    flex: 0 0 calc((100% - 8rem) / 2);
  }
  .tab_content .theme_list .theme_item:nth-child(4) .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 5.6rem;
  }
}
@media screen and (width <= 768px) {
  .tab_content{
    padding: 0 2rem 4rem;
  }
  .tab_content h3.header {
    margin-top: 2rem;
  }
  .tab_content h4 {
    margin-top: 4rem;
    margin-bottom: 2rem;
  }
  .tab_content #themes{
    margin-bottom: 4rem;
  }
  .tab_content .theme_list .theme_item {
    flex: 0 0 100%;
    align-items: center;
  }
  .tab_content .theme_list .theme_item:nth-child(-n+3) .title,
  .tab_content .theme_list .theme_item:nth-child(4) .title {
    height: auto;
  }
  .tab_content .theme_list .theme_item .text {
    max-width: 60rem;
  }
}

/* programs */
.program_item {
  border-bottom: 1px dashed #c9caca;
  padding: 5rem 0;
  max-width: 90rem;
  margin: 0 auto;
}
.program_item:first-child {
  padding-top: 0;
}
.program_item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.program_item dl {
  border: 1px solid #c9caca;
  border-left: none;
  border-right: none;
  display: grid;
  grid-template-columns: 18rem 1fr;
}
.program_item dt,
.program_item dd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #c9caca;
  display: flex;
  align-items: center;
}
.program_item dt {
  color: var(--mainColor);
  font-weight: 700;
  font-size: 1.8rem;
  padding-left: 3rem;
}
.program_item dl > *:nth-child(4n + 1),
.program_item dl > *:nth-child(4n + 2) {
  background-color: #edf0f3;
}
.program_item dd {
  background-color: #fff;
  font-size: 1.8rem;
}
.program_item .program_name {
  font-size: 2.2rem;
  color: var(--mainColor);
}
.program_item dl > dt:last-of-type,
.program_item dl > dd:last-of-type {
  border-bottom: none;
}
.program_item .notes {
  text-align: center;
  font-size: 1.8rem;
  margin: 2rem auto;
}
.program_item .btn {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.program_item .btn a {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(90deg, #3bb094, #1182ab);
  color: white;
  padding: 2rem 5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.8rem;
}
.program_item .btn a img {
  width: 2rem;
  height: auto;
  position: relative;
  top: 0.1rem;
}
@media screen and (width <= 768px) {
  .program_item {
    padding: 4rem 0;
  }
  .program_item dl {
    grid-template-columns: 1fr;
    border-left: 1px solid #c9caca;
    border-right: 1px solid #c9caca;
  }
  .program_item dt {
    padding-left: 1.5rem;
    border-bottom: none;
    background-color: #edf0f3;
  }
  .program_item dd {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    background-color: #fff;
  }
  .program_item dl > dd:last-of-type {
    border-bottom: none;
  }
  .program_item dl > dt {
    background-color: #edf0f3 !important;
  }
  .program_item dl > dd {
    background-color: #fff !important;
  }
}

/* ------------------------------------------------------------
SUPPORT
-------------------------------------------------------------- */
#support{
  padding: 8.5rem 0;
}
#support .support_wrap {
  display: flex;
  flex-direction: row;
  gap: 6rem;
  align-items: flex-start;
}
#support .support_wrap img{
  width: 60%;
  height: auto;
}
#support .support_content{
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#support h2.header .eng_title {
  text-align: justify;
  margin-bottom: 2.5rem;
  line-height: 1;
  font-weight: 700;
}
#support h2.header .title {
  text-align: justify;
  background: linear-gradient(90deg, #3bb094, #1182ab);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
#support .support_content .text_body_s{
  line-height: 1.8;
}
#support .support_link{
  display: block;
  margin-top: 7rem;
  font-weight: 500;
}

@media screen and (width <= 768px) {
  #support{
    padding: 4rem 0;
  }
  #support .support_wrap {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  #support .support_wrap img{
    width: 100%;
    order: -1;
  }
  #support .support_link{
    margin-top: 2rem;
  }
}


/* ------------------------------------------------------------
FOOTER
-------------------------------------------------------------- */
footer #footer-info {
  background-color: white;
}
footer .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
footer .info .logo {
  max-width: 25rem;
}
footer .info .logo img {
  width: 100%;
  height: auto;
}
footer #copyright {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  background-color: black;
  color: white;
  padding: 1rem 0;
}
@media screen and (width <= 768px) {
  footer .info {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sectionPadding_sp);
  }
}
