@charset "UTF-8";
*,
::after,
::before {
  box-sizing: border-box;
}

html {
  height: 100vh;
  font-size: 62.5%;
}

@media screen and (max-width: 1280px) and (min-width: 1024px) {
  html {
    font-size: 0.78125vw;
  }
}
@media screen and (max-width: 767px) and (min-width: 561px) {
  html {
    font-size: 1.30378vw;
  }
}
@media screen and (max-width: 430px) {
  html {
    font-size: 2.52558vw;
  }
}
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "YakuHanJP", Noto Sans JP, "Hiragino Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.1em;
  font-feature-settings: normal;
  color: #222;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.3rem;
  }
}
:root {
  --color-main: #64c037;
  --color-blue: #3589c4;
  --color-yellow: #fabe00;
  --color-orange: #fa9b01;
  --color-red: #d64636;
  --color-black: #222222;
  --color-white: #ffffff;
  --easeInOutCubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-level1: var(--easeInOutCubic);
  --transition-hover-slow: 300ms var(--ease-level1);
}

:root {
  --fz10: 10px;
  --fz11: 11px;
  --fz12: 12px;
  --fz13: max(1.3rem, 12px);
  --fz14: max(1.4rem, 12px);
  --fz15: max(1.5rem, 13px);
  --fz16: max(1.6rem, 13px);
  --fz17: max(1.7rem, 14px);
  --fz18: max(1.8rem, 15px);
  --fz19: max(1.9rem, 15px);
  --fz20: max(2rem, 16px);
  --fz21: max(2.1rem, 16px);
  --fz22: max(2.2rem, 18px);
  --fz23: max(2.3rem, 18px);
  --fz24: max(2.4rem, 20px);
  --fz25: max(2.5rem, 20px);
  --fz26: max(2.6rem, 21px);
  --fz27: max(2.7rem, 22px);
  --fz28: max(2.8rem, 24px);
  --fz29: max(2.9rem, 24px);
  --fz30: max(3rem, 25px);
  --fz32: max(3.2rem, 26px);
  --fz33: max(3.3rem, 28px);
  --fz34: max(3.4rem, 29px);
  --fz35: max(3.5rem, 30px);
  --fz36: max(3.6rem, 30px);
  --fz37: max(3.7rem, 31px);
  --fz38: max(3.8rem, 32px);
  --fz40: 4rem;
  --fz42: 4.2rem;
  --fz44: 4.4rem;
  --fz45: 4.5rem;
  --fz47: 4.7rem;
  --fz48: 4.8rem;
  --fz50: 5rem;
  --fz55: 5.5rem;
  --fz56: 5.6rem;
  --fz57: 5.7rem;
  --fz58: 5.8rem;
  --fz60: 6rem;
  --fz65: 6.5rem;
  --fz70: 7rem;
  --fz72: 7.2rem;
  --fz74: 7.4rem;
  --fz80: 8rem;
  --fz90: 9rem;
  --fz100: 10rem;
  --fz106: 10.6rem;
  --fz110: 11rem;
  --fz134: 13.4rem;
}

@media screen and (max-width: 560px) {
  :root {
    --fz12: 1.2rem;
    --fz13: 1.3rem;
    --fz14: 1.4rem;
    --fz15: 1.5rem;
    --fz16: 1.6rem;
    --fz17: 1.7rem;
    --fz18: 1.8rem;
    --fz19: 1.9rem;
    --fz20: 2rem;
    --fz21: 2.1rem;
    --fz22: 2.2rem;
    --fz23: 2.3rem;
    --fz24: 2.4rem;
    --fz25: 2.5rem;
    --fz26: 2.6rem;
    --fz27: 2.7rem;
    --fz28: 2.8rem;
    --fz29: 2.9rem;
    --fz30: 3rem;
    --fz32: 3.2rem;
    --fz33: 3.3rem;
    --fz34: 3.4rem;
    --fz35: 3.5rem;
    --fz36: 3.6rem;
    --fz37: 3.7rem;
    --fz38: 3.8rem;
  }
}
.wrap {
  width: inherit;
  max-width: 960px !important;
}

.hd {
  position: relative;
  width: 100%;
  padding-top: 20px;
  padding-right: 25px;
  padding-left: 25px;
  background-color: #fff;
}

.hd::before,
.hd::after {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 50%;
  height: 4px;
}

.hd::before {
  left: 0;
  background-color: var(--color-blue);
}

.hd::after {
  right: 0;
  background-color: var(--color-yellow);
}

.hd .hd-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .hd {
    position: fixed;
    top: 0;
    left: 0;
    padding: 12px 20px;
    z-index: 2;
  }
  .hd .lg {
    width: 172px;
    height: 42px;
  }
}
.hd .lg img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  padding: 0;
}

.hd .gn {
  position: relative;
  max-width: 960px;
  margin: 20px auto 0;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .hd .gn {
    display: none;
  }
}
.hd nav ul {
  display: flex;
  border-right: 1px solid #ccc;
}

.hd nav ul li {
  border-left: 1px solid #ccc;
}

.hd nav ul li a {
  position: relative;
  display: block;
  padding: 25px 5px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  text-align: center;
  transition: color var(--transition-hover-slow);
}

.hd nav ul li a::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: auto;
  z-index: -1;
  background-color: var(--color-main);
  transition: height var(--transition-hover-slow);
}

.hd nav ul li a:hover {
  color: var(--color-white);
}

.hd nav ul li a:hover::before {
  height: 100%;
  bottom: 0;
  top: auto;
}

@media screen and (min-width: 768px) {
  .hd nav ul li {
    width: 14.2857142857%;
  }
}
@media screen and (max-width: 1024px) {
  .hd nav ul li a {
    font-size: 1.4rem;
  }
}
/*@media screen and (min-width: 768px) and (max-width: 1024px) {
	 .hd nav ul li a {
  font-size:1.30378vw;
 }
}*/
.hd-sns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.sd-sns {
  display: flex;
  align-items: center;
}

.hd-sns li {
  margin-left: 25px;
}

.sd-sns li:nth-child(n+2) {
  margin-left: 15px;
}

.hd-sns li a,
.sd-sns li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  background-color: #fff;
  border-radius: 50%;
  background-repeat: no-repeat;
  border: 1px solid #ccc;
  text-decoration: none;
  text-align: center;
  transition: all 0.15s ease;
}

.hd-sns li a {
  width: 48px;
  height: 48px;
}

.sd-sns li a {
  width: 38px;
  height: 38px;
}

.hd-sns li a::before,
.sd-sns li a::before {
  content: "";
  display: inline-block;
  position: relative;
  background-image: url(../img/icon-sns.svg);
  background-repeat: no-repeat;
  background-position: contain;
  background-color: transparent;
  vertical-align: middle;
}

.hd-sns li a::before {
  background-size: 60px 40px;
  width: 20px;
  height: 20px;
}

.sd-sns li a::before {
  background-size: 45px 30px;
  width: 15px;
  height: 15px;
}

.hd-sns li:nth-child(1) a::before,
.sd-sns li:nth-child(1) a::before {
  background-position: 0 0;
}

.hd-sns li:nth-child(1) a:hover {
  background-color: #f00;
  border-color: #f00;
}

.hd-sns li:nth-child(1) a:hover::before {
  background-position: 0 -20px;
}

.hd-sns li:nth-child(2) a::before {
  background-position: -20px 0;
}

.sd-sns li:nth-child(2) a::before {
  background-position: -15px 0;
}

.hd-sns li:nth-child(2) a:hover::before {
  background-position: -20px -20px;
}

.hd-sns li:nth-child(2) a:hover {
  background-color: #000;
  border-color: #000;
}

.hd-sns li:nth-child(3) a::before {
  background-position: -40px 0;
}

.sd-sns li:nth-child(3) a::before {
  background-position: -30px 0;
}

.hd-sns li:nth-child(3) a:hover::before {
  background-position: -40px -20px;
}

.hd-sns li:nth-child(3) a:hover {
  background-color: #3b5998;
  border-color: #3b5998;
}

@media screen and (max-width: 767px) {
  .hd-sns {
    display: none;
  }
  .hd-sns li {
    margin-left: 16px;
  }
  .hd-sns li:first-child {
    margin-left: 0;
  }
}
/*------------------------------------
汎用 ↓
------------------------------------*/
.flex {
  display: flex;
}

.aic {
  align-items: center;
}

.jcb {
  justify-content: space-between;
}

/*------------------------------------
ヘッダー a hover:下線アンダーライン ↓
------------------------------------*/
header ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

/*header ul li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 3px;
  background: #3b5d82;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
}
header ul li a:hover {
  color: #3b5d82;
}
header ul li a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}*/
/*------------------------------------
ヘッダー pcハンバーガーメニュー ↓
------------------------------------*/
header .pc_nav {
  margin: auto;
  width: 80%;
  padding-top: 40px;
}

header .pc_nav div .crumbs ul li {
  margin-right: 40px;
}

header .pc_nav div .crumbs ul li:last-of-type {
  margin-right: 0;
}

/*------------------------------------
ヘッダー spハンバーガーメニュー ↓
------------------------------------*/
/*header .sp_nav {
  text-align: center;
}*/
.sidemenu {
  position: fixed;
  top: 66px;
  right: -60%;
  width: 60%;
  padding: 15px 30px 30px;
  border-top: 2px solid var(--color-main);
  border-bottom: 2px solid var(--color-main);
  border-left: 2px solid var(--color-main);
  /*height: 100vh;*/
  /*padding-top: 100px;*/
  z-index: 2;
  transition: all 0.6s;
  background-color: #fff;
  border-radius: 5px 0 0 5px;
}

.sidemenu nav {
  margin-bottom: 30px;
}

.sidemenu nav ul li {
  border-bottom: 1px solid #ccc;
}

.sidemenu nav ul li a {
  position: relative;
  display: block;
  padding: 15px 0;
  font-size: 1.5rem;
  font-weight: 500;
  color: #333;
}

.sidemenu nav ul li a::after {
  content: "";
  position: absolute;
  vertical-align: middle;
  top: 0;
  bottom: 0;
  right: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 3px;
  height: 3px;
  border: 3px solid transparent;
  border-left: 3px solid var(--color-main);
}

.hamburger {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  z-index: 3;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .hamburger {
    top: 3px;
    right: 5px;
  }
}
.hamburger span {
  position: absolute;
  height: 2px;
  left: 15px;
  width: 30px;
  background-color: var(--color-main);
  border-radius: 3px;
  transition: all 0.6s;
}

.hamburger span:nth-child(1) {
  top: 20px;
}

.hamburger span:nth-child(2) {
  top: 29px;
}

.hamburger span:nth-child(3) {
  top: 38px;
}

/*------------------------------------
メニュークリックした後 ↓
------------------------------------*/
.nav_open .sidemenu {
  right: 0;
}

.nav_open .hamburger span:nth-child(1) {
  top: 26px;
  transform: rotate(45deg);
}

.nav_open .hamburger span:nth-child(2) {
  left: 50%;
  width: 0;
}

.nav_open .hamburger span:nth-child(3) {
  top: 26px;
  transform: rotate(-45deg);
}

.nav_open .overlay {
  opacity: 0.8;
  visibility: visible;
}

/*------------------------------------
メニュークリック後メニュー外の背景 ↓
------------------------------------*/
.overlay {
  background-color: #000;
  cursor: pointer;
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: all 0.6s;
  visibility: hidden;
  width: 100vw;
  z-index: 2;
}

/*------------------------------------
@media screen 1000px~999px ↓
------------------------------------*/
@media screen and (max-width: 1000px) {
  .sp_no {
    display: none;
  }
  /*.sidemenu {
    right: -50%;
    width: 50%;
  }*/
}
@media screen and (min-width: 999px) {
  .pc_no {
    display: none;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  padding: 0;
}

@media screen and (max-width: 767px) {
  main {
    margin-top: 70px;
  }
}
.kv {
  max-width: 960px;
  margin: 0 auto;
  padding: 50px 0;
}

.main-inner {
  background: #fff url("../img/bg.gif") top center repeat;
  padding: 12px 50px 50px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 1024px) {
  .main-inner {
    padding: 10px 36px 50px;
  }
}
@media screen and (max-width: 767px) {
  .main-inner {
    padding: 10px 24px 48px;
  }
}
@media screen and (min-width: 768px) {
  .home-row {
    display: flex;
    justify-content: space-between;
    max-width: 960px;
    margin: 0 auto;
  }
  .home-left {
    /*width: 66.6666666667%;*/
    /*max-width: 640px;*/
    /*width: 64%;*/
    /*margin-right: 40px;*/
  }
  .home-right {
    width: 29.1666666667%;
    /*flex: 1 0 0;*/
  }
}
@media screen and (max-width: 767px) {
  .home-right {
    margin-top: 40px;
  }
}
.news,
.news ul.newslist li {
  width: inherit;
}

.news {
  max-width: 960px;
  margin: 40px auto 0;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .news {
    margin-top: 14px;
  }
}
.news h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
  padding: 20px;
  color: #fff;
  line-height: 1;
  border-radius: 3px 3px 0 0;
}

.news .newsdtl {
  position: absolute;
  top: 10px;
  right: 20px;
}

.news ul.newslist {
  padding: 5px 20px;
}

@media screen and (min-width: 768px) {
  .news ul.newslist li {
    display: flex;
    flex-wrap: wrap;
    padding: 15px 0;
  }
}
.news ul.newslist li:first-child {
  border-top: none;
}

.news ul.newslist li span.newsttl a {
  color: #222;
  text-decoration: underline;
}

.news ul.newslist li span.newsttl a:hover {
  text-decoration: none;
}

.news ul.newslist li span.date {
  width: 150px;
  min-height: inherit;
  display: block;
  float: inherit;
  padding: 0;
  background-repeat: no-repeat;
  background-position: 100% 30%;
  letter-spacing: 0;
  line-height: 1.4;
}

.news ul.newslist li span.newsttl {
  width: inherit;
  flex: 1 0 0;
  display: block;
  float: inherit;
  padding: 0;
  font-size: 1.4rem;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .news ul.newslist li span.newsttl {
    padding-left: 15px;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
  }
}
@media screen and (max-width: 767px) {
  .news ul.newslist li span.date {
    width: 140px;
  }
  .news ul.newslist li span.newsttl {
    font-size: 1.3rem;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 768px) {
  .sns-row {
    display: flex;
    justify-content: space-between;
    max-width: 960px;
    margin: 50px auto 0;
  }
  .sns-fb,
  .sns-tw {
    width: 47.5%;
  }
}
@media screen and (max-width: 767px) {
  .sns-row {
    margin-top: 40px;
  }
  .sns-tw {
    margin-top: 20px;
  }
}
.sns-ttl {
  margin-bottom: 20px;
  padding: 20px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 3px 3px 0 0;
}

.sns-ttl-fb {
  background-color: #3b5998;
  color: #fff;
}

.sns-ttl-tw {
  background-color: #00acee;
  color: #fff;
}

.sns-ttl::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background-image: url(../img/icon-sns.svg);
  background-repeat: no-repeat;
  background-position: contain;
  background-color: transparent;
  background-size: 80px 40px;
  vertical-align: middle;
}

.sns-ttl-fb::before {
  background-position: -60px -20px;
}

.sns-ttl-tw::before {
  background-position: -40px -20px;
}

.sns-fb {
  /*margin-left: auto;
  margin-right: auto;*/
  /*width: 80%;*/
}

.fb-page,
.fb-page span,
.sns-fb iframe {
  width: 100% !important;
  height: 500px !important;
}

.sns-fb iframe {
  background-color: transparent !important;
}

.twitter-timeline iframe {
  border: none;
}

/*#mainvisual-slider .mainvisual-container {
 width: 100%;
 height: 100%;
}*/
#mainvisual-slider {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

#mainvisual-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

#mainvisual-slider .swiper-slide a {
  transition: all 0.4s;
}

#mainvisual-slider .swiper-slide a:hover {
  opacity: 0.7;
}

.v2-home-mainvisual {
  overflow-x: hidden;
}

@media screen and (min-width: 768px) {
  .v2-home-mainvisual {
    padding: 45px 0 50px;
  }
  #mainvisual-slider .swiper-slide img {
    border-radius: 5px;
  }
}
@media screen and (max-width: 767px) {
  .v2-home-mainvisual {
    padding-bottom: 50px;
  }
}
.swiper-pagination-bullet {
  background-color: transparent;
  opacity: 1;
}

.swiper-pagination-bullet--svg-animation {
  width: 26px;
  height: 26px;
  margin: 0 6px !important;
  display: inline-block;
}

.swiper-pagination-bullet--svg-animation svg {
  transform: rotate(-90deg);
  display: inherit;
}

.swiper-pagination-bullet--svg-animation .svg__circle-inner {
  stroke: #fff;
  fill: transparent;
  transition: all 0.7s ease;
}

.swiper-pagination-bullet-active .svg__circle {
  stroke: #fff;
  stroke-dasharray: 75;
  stroke-dashoffset: 0;
  animation: progress 7s ease-in-out 1 forwards;
}

.swiper-pagination-bullet-active .svg__circle-inner {
  fill: #fff;
}

.swiper-pagination {
  position: absolute;
  bottom: -38px;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  margin-right: auto;
  margin-left: auto;
  z-index: 1;
}

@-webkit-keyframes progress {
  0% {
    stroke-dashoffset: 75;
    opacity: 1;
  }
  95% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}
@-moz-keyframes progress {
  0% {
    stroke-dashoffset: 75;
    opacity: 1;
  }
  95% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}
@-o-keyframes progress {
  0% {
    stroke-dashoffset: 75;
    opacity: 1;
  }
  95% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}
@keyframes progress {
  0% {
    stroke-dashoffset: 75;
    opacity: 1;
  }
  95% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}
.ft {
  position: relative;
  background-color: #fff;
  font-size: 1.2rem;
  padding-right: 50px;
  padding-left: 50px;
}

@media screen and (max-width: 767px) {
  .ft {
    padding-right: 24px;
    padding-left: 24px;
  }
}
.ft::before,
.ft::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 50%;
  height: 4px;
}

.ft::before {
  left: 0;
  background-color: var(--color-blue);
}

.ft::after {
  right: 0;
  background-color: var(--color-yellow);
}

.ft-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 0 80px;
  background: #fff url("../img/footer_character.gif") no-repeat 50% top;
}

@media screen and (min-width: 768px) {
  .ft-inner {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .ft-inner {
    background-size: 180px 105px;
    /*background-size: 220px 128px;*/
    padding: 140px 0 48px;
  }
}
.ft-r .copyright {
  padding-top: 60px;
  text-align: right;
}

.ft-r ul {
  display: flex;
  flex-wrap: wrap;
}

.ft-r li {
  background: url("../img/li-bg.gif") left 7px no-repeat;
  margin-right: 20px;
  padding-left: 10px;
}

.ft-r li:last-child {
  margin-right: 0;
}

.ft-l li a,
.ft-r li a {
  color: #222;
  text-decoration: none;
}

.ft-l li a:hover {
  color: #d52d00;
}

.ft-l li p {
  padding-top: 5px;
}

.ft-l li:nth-child(n+2) {
  margin-top: 15px;
}

.ft-l span {
  display: inline-block;
  padding: 1px 5px;
  background-color: #64c037;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .ft-l li {
    text-align: center;
  }
  .ft-r {
    padding-top: 40px;
  }
  .ft-r ul {
    justify-content: center;
  }
  .ft-r .copyright {
    padding-top: 40px;
    text-align: center;
  }
}
.yt-movie {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.yt-movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .yt-movie iframe {
    width: 100%;
  }
}
.page-ttl {
  padding: 52px 5px 48px;
  text-align: center;
}

.page-ttl .page-ttl-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-ttl h2 {
  padding: 0;
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 2px #28900c;
}

.page-ttl span {
  position: absolute;
  top: -1.5em;
  right: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 2px #28900c;
}

@media only screen and (max-width: 767px) {
  .page-ttl {
    padding: 30px 5px;
  }
  .page-ttl span {
    font-size: 1.3rem;
  }
  .page-ttl h2 {
    font-size: 2.4rem;
  }
}
.box {
  max-width: 960px;
  margin: 0 auto;
}

.guide-main-row {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .guide-main-right {
    display: none;
  }
}
.guide-main-ttl {
  font-size: 2.6rem;
  font-weight: 700;
}

.guide-main-lead {
  font-size: 1.6rem;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .guide-main-ttl {
    font-size: 1.8rem;
  }
  .guide-main-lead {
    font-size: 1.4rem;
  }
}
.guide-main-wrp {
  padding: 10px 20px;
  background-color: #fff57e;
  border: 2px solid #64c137;
  border-radius: 5px;
}

@media print, screen and (min-width: 768px) {
  .guide-main-wrp {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.guide-main-wrp p {
  padding-right: 15px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #77ae12;
}

@media print, screen and (min-width: 768px) {
  .guide-main-wrp ul {
    flex: 1 0 0;
    display: flex;
    justify-content: space-between;
  }
  .guide-main-wrp ul li {
    width: 48%;
  }
}
.guide-main-wrp ul li .btn-w250fs1up {
  width: 100% !important;
  float: inherit;
}

@media only screen and (max-width: 767px) {
  .guide-main-wrp p {
    padding-right: 0;
    padding-bottom: 10px;
    text-align: center;
  }
  .guide-main-wrp ul li:last-child {
    margin-top: 15px;
  }
}
.guide-index-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 36px;
}

@media print, screen and (min-width: 768px) {
  .guide-index-list li {
    width: 23.5%;
    margin-right: 2%;
  }
  .guide-index-list li:nth-child(4n) {
    margin-right: 0;
  }
  .guide-index-list li:nth-child(n+5) {
    margin-top: 3%;
  }
}
@media only screen and (max-width: 767px) {
  .guide-index-list {
    margin-top: 24px;
  }
  .guide-index-list li {
    width: 48%;
    margin-right: 4%;
  }
  .guide-index-list li:nth-child(even) {
    margin-right: 0;
  }
  .guide-index-list li:nth-child(n+3) {
    margin-top: 6%;
  }
}
.guide-index-list li a {
  display: block;
  text-decoration: none;
  color: #333;
  transition: all 0.4s;
}

.guide-index-list li a:hover {
  opacity: 0.7;
}

.guide-index-list li figure {
  position: relative;
  border-bottom: 3px solid #ff6d65;
}

.guide-index-list li figure img {
  border-radius: 5px 5px 0 0;
}

.guide-index-list li figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 5px 5px 3px;
  border-radius: 0 5px 0 0;
  background: #ff6d65;
  font-style: normal;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1;
}

.guide-index-list li .guide-company-name {
  margin: 10px 0 5px;
  padding-left: 16px;
  background-image: url(../img/arrow_link.gif);
  background-repeat: no-repeat;
  background-position: 0 3px;
  background-size: 12px 12px;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.35;
}

.guide-index-list li .guide-company-theme {
  font-size: 1.2rem;
  line-height: 1.35;
}

@media print, screen and (min-width: 768px) {
  .guide-index-backnumber ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .guide-index-backnumber ul li {
    width: 48%;
  }
  .guide-index-backnumber ul li:nth-child(n+3) {
    margin-top: 2%;
  }
}
@media only screen and (max-width: 767px) {
  .guide-index-backnumber ul li:nth-child(n+2) {
    margin-top: 15px;
  }
}
.btn {
  position: relative;
  border: 1px solid #70ac10;
  border-radius: 5px;
  background: #89bc17;
  background: -webkit-gradient(linear, 0 0, 0 bottom, from(#89bc17), to(#77ae12));
  background: -webkit-linear-gradient(#89bc17, #77ae12);
  background: -ms-linear-gradient(#89bc17, #77ae12);
  background: -o-linear-gradient(#89bc17, #77ae12);
  background: linear-gradient(#89bc17, #77ae12);
  -pie-background: linear-gradient(#89bc17, #77ae12);
  box-shadow: inset 0 0 0 1px #9ac826;
  color: #fff;
  transition: all 0.4s;
}

.btn:hover {
  opacity: 0.7;
}

.btn a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
}

.btn span {
  text-shadow: 0 -1px 1px #409509;
  padding: 0 0 0 20px;
  background: url(../img/arr.png) no-repeat 0 50%;
  color: #fff;
  font-size: 16px;
}

@media only screen and (max-width: 767px) {
  .btn span {
    font-size: 1.4rem;
  }
}
@media (min-width: 1025px) {
  .lg-hide {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .md-hide {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .sm-hide {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  .lg-visible {
    display: inherit !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .md-visible {
    display: inherit !important;
  }
}
@media (max-width: 767px) {
  .sm-visible {
    display: inherit !important;
  }
}
@media print, screen and (min-width: 768px) {
  .c-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 960px;
    margin: 0 auto;
  }
  .p-article {
    order: 0;
    width: 66.6666666667%;
  }
  .p-sidebar {
    order: 1;
    width: 29.1666666667%;
  }
}
@media only screen and (max-width: 767px) {
  .p-sidebar {
    margin-top: 40px;
  }
}
.acd-check {
  display: none;
}

.acd-label {
  position: relative;
  display: block;
  padding: 10px;
  background-color: var(--color-main);
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
}

.acd-label::before,
.acd-label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.acd-label::before {
  transform: rotate(90deg);
  right: 12px;
}

.acd-label::after {
  right: 12px;
}

.acd-check:checked + .acd-label {
  color: #fff;
}

.acd-check:checked + .acd-label::before {
  transform: rotate(180deg);
  background: #fff;
}

.acd-check:checked + .acd-label::after {
  opacity: 0;
}

.acd-content {
  max-height: 0;
  opacity: 0;
  transition-property: opacity, max-height;
  transition-duration: 0.5s;
}

.acd-check:checked + .acd-label + .acd-content {
  max-height: 2000px;
  opacity: 1;
  visibility: visible;
}

@media print, screen and (min-width: 768px) {
  .acd-content {
    max-height: unset;
    opacity: 1;
    visibility: visible;
  }
  .acd-check:checked + .acd-label + .acd-content {
    max-height: unset;
    padding: 0;
  }
  .acd-label {
    display: none;
  }
}
.sidebar-nav ul {
  background-color: #fff;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

.sidebar-nav ul li {
  border-bottom: 1px solid #ddd;
}

/*.acd-content ul li.sidebar-ttl {
 position: relative;
 padding: 15px 0 15px 15px;
 background: var(--color-main) url("../img/sidebar-ttl.png") right bottom no-repeat;
 border-bottom: none;
 font-size: 1.6rem;
 font-weight: 600;
 color: #fff;
 line-height: 1.5;
 text-shadow: 1px 1px 0px #668A11;
}
.acd-content ul li.sidebar-ttl::before,
.acd-content ul li.sidebar-ttl::after {
 content: "";
 position: absolute;
 bottom: 0;
 width: 50%;
 height: 2px;
}
.acd-content ul li.sidebar-ttl::before {
 left: 0;
 background-color: var(--color-blue);
}
.acd-content ul li.sidebar-ttl::after {
 right: 0;
 background-color: var(--color-yellow);
}
@media only screen and (max-width: 767px) {
 .acd-content ul li.sidebar-ttl {
  display: none;
 }
}*/
.sidebar-nav ul li a {
  position: relative;
  display: block;
  padding: 10px 0 10px 25px;
  font-size: 1.3rem;
  color: #222;
  text-decoration: none;
  transition: all 0.4s;
}

.sidebar-nav ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  width: 5px;
  height: 5px;
  margin-top: auto;
  margin-bottom: auto;
  border-radius: 50%;
  background-color: #ee4003;
}

.sidebar-nav ul li a:hover {
  background-color: var(--color-main);
  color: var(--color-white);
}

.sidebar-nav ul li a:hover::before {
  background-color: #fff;
}

/* overwrite start */
h3.h3nomal,
h3.eventstu-h3 {
  padding: 15px;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  h3.h3nomal,
  h3.eventstu-h3 {
    padding: 10px;
    font-size: 1.6rem;
  }
}
/* overwrite end */
.guide-header {
  padding: 15px 15px 0;
  background-color: var(--color-main);
  border-radius: 5px;
}

.guide-header .guide-header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.guide-header .guide-header-ttl {
  padding-bottom: 15px;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.5;
  text-shadow: 0 0 2px #28900c;
}

.guide-header .guide-header-area {
  margin-bottom: 15px;
  padding: 10px 10px;
  background-color: var(--color-white);
  border-radius: 5px;
  font-size: 1.3rem;
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .guide-header {
    padding: 10px 10px 0;
  }
  .guide-header .guide-header-ttl {
    font-size: 2rem;
    letter-spacing: 0;
  }
  .guide-header .guide-header-area {
    padding: 5px;
  }
}
.guide-header .guide-header-area a {
  color: #222;
}

.guide-header .guide-header-award {
  padding: 5px 0 15px;
  border-top: 1px solid #fff;
}

.guide-header .guide-header-award a {
  color: #fff;
}

.guide-header .guide-header-award ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.guide-header .guide-header-award ul li {
  margin-right: 10px;
}

.guide-header .guide-header-award ul li p {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-top: 10px;
  padding: 5px 5px 5px 25px;
  background-color: #fff;
  background-image: url("../../guide/img/ico-award.png");
  background-repeat: no-repeat;
  background-position: 5px 50%;
  background-size: 17px 14px;
  border-radius: 5px;
  border-top: 1px solid #fff;
  line-height: 1;
  letter-spacing: 0;
}

.guide-header .guide-header-award ul li p span {
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 0;
  visibility: hidden;
  width: auto;
  width: 550px;
  padding: 0.3em 0.5em;
  transition: opacity 1s;
  opacity: 0;
  border-radius: 6px;
  background-color: #fabe00;
  display: block;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.5;
}

.guide-header .guide-header-award ul li p span::after {
  position: absolute;
  top: 100%;
  left: 15px;
  margin-left: -5px;
  content: " ";
  border: 5px solid transparent;
  border-top-color: #fabe00;
}

.guide-header .guide-header-award ul li p:hover span {
  visibility: visible;
  opacity: 1;
}

.p-guide-article h2 {
  padding: 20px 0;
  font-family: "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
  font-size: 2.8rem;
  line-height: 1.5;
}

.p-guide-article h2 + p {
  font-size: 1.8rem;
  line-height: 1.5;
}

.guide-article-lead {
  margin-top: 20px;
  font-size: 1.8rem;
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  .p-guide-article h2 {
    padding: 20px 0;
    font-size: 2rem;
  }
  .p-guide-article h2 + p,
  .guide-article-lead {
    font-size: 1.5rem;
  }
}
.p-guide-article h3 {
  position: relative;
  margin: 40px 0 20px;
  padding: 10px;
  background-color: #fff;
  border: 1px solid var(--color-main);
  border-radius: 5px;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-main);
  line-height: 1.5;
}

.p-guide-article h3.meno {
  padding-left: 70px;
  background: #fff url(../../guide/img/ico_h4guide.gif) no-repeat 0 0;
}

.p-guide-article h3 span {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  font-weight: normal;
  color: #222;
}

@media only screen and (max-width: 767px) {
  .p-guide-article h3 {
    margin: 40px 0 20px;
    padding: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
  }
  .p-guide-article h3.meno {
    padding-left: 50px;
    background-size: 36px 36px;
    background-position: 5px 50%;
  }
}
.p-guide-article figure {
  margin-top: 20px;
}

.p-guide-article figure img {
  border-radius: 0;
}

.p-guide-article figcaption {
  padding-top: 10px;
  font-size: 1.2rem;
}

.p-guide-article .guide-need,
.p-guide-article .guide-check {
  position: relative;
  margin-top: 60px;
  padding: 15px 15px 15px 110px;
}

.p-guide-article .guide-need {
  background-color: #fef7e3;
  border: 1px solid #f7bc0b;
}

.p-guide-article .guide-need::before,
.p-guide-article .guide-check::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 10px;
  width: 80px;
  height: 80px;
}

.p-guide-article .guide-need::before {
  background: url("../../guide/img/recruit.png") no-repeat 0 0/contain;
}

.p-guide-article .guide-check {
  background-color: #fef7e3;
  border: 1px solid #389c38;
}

.p-guide-article .guide-check::before {
  background: url("../../guide/img/st-check.png") no-repeat 0 0/contain;
}

@media only screen and (max-width: 767px) {
  .p-guide-article .guide-need,
  .p-guide-article .guide-check {
    margin-top: 100px;
  }
  .p-guide-article .guide-need {
    padding: 25px 15px 15px;
  }
  .p-guide-article .guide-check {
    padding: 15px;
  }
  .p-guide-article .guide-need::before,
  .p-guide-article .guide-check::before {
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-guide-article .guide-table {
  border-collapse: collapse;
  width: 100%;
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-family: "Inter", "YakuHanJP", Noto Sans JP, "Hiragino Sans", sans-serif;
}

.p-guide-article .guide-table th,
.p-guide-article .guide-table td {
  letter-spacing: 0;
}

.p-guide-article .guide-table th {
  background-color: #ededed;
  border-right: 1px solid #ddd;
  font-weight: normal;
  vertical-align: top;
}

.p-guide-article .guide-table td {
  padding: 10px;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  text-align: left;
  vertical-align: middle;
}

@media print, screen and (min-width: 768px) {
  .p-guide-article .guide-table th {
    width: 150px;
  }
}
@media only screen and (max-width: 767px) {
  .p-guide-article .guide-table th,
  .p-guide-article .guide-table td {
    width: 100%;
    display: block;
  }
  .p-guide-article .guide-table th {
    width: 100%;
  }
}
.sidebar-guide-txt {
  padding: 15px;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
}

.sidebar-ttl {
  position: relative;
  padding: 15px;
  background-color: var(--color-main);
  border-radius: 5px 5px 0 0;
  border-bottom: none;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  text-shadow: 0 0 2px #28900c;
}

@media print, screen and (min-width: 768px) {
  .sidebar-ttl {
    background-image: url("../img/sidebar-ttl.png");
    background-repeat: no-repeat;
    background-position: right bottom;
  }
  .sidebar-ttl::before,
  .sidebar-ttl::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 50%;
    height: 2px;
  }
  .sidebar-ttl::before {
    left: 0;
    background-color: var(--color-blue);
  }
  .sidebar-ttl::after {
    right: 0;
    background-color: var(--color-yellow);
  }
}
@media only screen and (max-width: 767px) {
  .sidebar-ttl {
    padding: 10px;
    border-radius: 5px 5px 0 0;
    /*border-radius: 5px;*/
  }
  /* .sidebar-ttl::before, .sidebar-ttl::after {
   content: "";
   position: absolute;
   top: 50%;
   width: 10px;
   height: 2px;
   background-color: #fff;
   transition: all 0.3s ease-in-out;
  }
  .sidebar-ttl::before {
   transform: rotate(90deg);
   right: 12px;
  }
  .sidebar-ttl::after {
   right: 12px;
  }*/
  .sidebar-ttl.acd-active {
    border-radius: 5px 5px 0 0;
  }
  .sidebar-ttl.acd-active::before {
    transform: rotate(180deg);
    background: #fff;
  }
  .sidebar-ttl.acd-active::after {
    opacity: 0;
  }
  /* .sidebar-acd + ul {
   display: none;
  }*/
  .sidebar-acd .acd-active + ul {
    display: block;
  }
  .sidebar-ttl br {
    display: none;
  }
}
#pathwrap {
  margin: 10px 0 20px;
}

#path li:first-child {
  background: none;
}

@media only screen and (max-width: 767px) {
  #pathwrap #path ol {
    display: flex;
    overflow-x: scroll;
    word-break: keep-all;
    white-space: nowrap;
  }
}
.challenge-nav {
  background-color: #fff;
  border: 2px solid var(--color-main);
  border-radius: 5px;
}

.challenge-nav ul {
  display: flex;
  flex-wrap: wrap;
}

.challenge-nav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 15px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #222;
  text-decoration: none;
  text-align: center;
  line-height: 1.5;
  transition: all 0.4s;
}

.challenge-nav ul li a:hover {
  color: var(--color-main);
}

.challenge-nav ul li a.active {
  background-color: var(--color-main);
  color: var(--color-white);
}

.challenge-nav ul li a sup {
  font-size: 1rem;
  /*color: var(--color-red);*/
}

.challenge-nav-note {
  padding: 5px 0 36px;
  text-align: right;
  font-size: 1.1rem;
  letter-spacing: 0.05rem;
}

.challenge-nav-cs {
  pointer-events: none;
}

.challenge-nav-cs span {
  color: #ccc;
}

@media print, screen and (min-width: 768px) {
  .challenge-nav ul li {
    width: 16.6666666667%;
  }
  .challenge-nav.challenge-nav5 {
    margin-bottom: 36px;
  }
  .challenge-nav.challenge-nav5 ul li {
    width: 20%;
  }
  .challenge-nav ul li:nth-child(n+2) {
    border-left: 2px solid var(--color-main);
  }
}
@media only screen and (max-width: 767px) {
  .challenge-nav ul li {
    width: 33.3333333333%;
  }
  .challenge-nav ul li a {
    padding: 10px 5px;
    font-size: 1.4rem;
  }
  .challenge-nav ul li:nth-child(n+4) {
    border-top: 2px solid var(--color-main);
  }
  .challenge-nav ul li {
    border-right: 2px solid var(--color-main);
  }
  .challenge-nav ul li:nth-child(3n) {
    border-right: none;
  }
  .challenge-nav.challenge-nav5 {
    margin-bottom: 36px;
  }
  .challenge-nav.challenge-nav5 ul li:nth-child(-n+2) {
    width: 50%;
  }
  .challenge-nav.challenge-nav5 ul li:nth-child(n+3) {
    border-top: 2px solid var(--color-main);
  }
  .challenge-nav.challenge-nav5 ul li:nth-child(1),
  .challenge-nav.challenge-nav5 ul li:nth-child(3),
  .challenge-nav.challenge-nav5 ul li:nth-child(4) {
    border-right: 2px solid var(--color-main);
  }
  .challenge-nav.challenge-nav5 ul li:nth-child(2),
  .challenge-nav.challenge-nav5 ul li:nth-child(5) {
    border-right: none;
  }
}
.challenge-nav-top {
  margin-bottom: 40px;
  background-color: #fff;
  border: 2px solid var(--color-main);
  border-radius: 5px;
}

.challenge-nav-top ul {
  display: flex;
  flex-wrap: wrap;
}

.challenge-nav-top ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 15px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #222;
  text-decoration: none;
  text-align: center;
  line-height: 1.5;
  transition: all 0.4s;
}

.challenge-nav-top ul li a:hover {
  color: var(--color-main);
}

.challenge-nav-top ul li a.active {
  background-color: var(--color-main);
  color: var(--color-white);
}

.challenge-nav-top ul li a em {
  display: block;
  font-size: 1rem;
  font-style: normal;
  letter-spacing: 0;
}

@media print, screen and (min-width: 768px) {
  .challenge-nav-top ul li {
    width: 20%;
  }
  .challenge-nav-top ul li:nth-child(n+2) {
    border-left: 2px solid var(--color-main);
  }
}
@media only screen and (max-width: 767px) {
  .challenge-nav-top ul li {
    width: 33.33333333%;
  }
  .challenge-nav-top ul li:first-child,
  .challenge-nav-top ul li:last-child {
    width: 100%;
  }
  .challenge-nav-top ul li:first-child {
    border-bottom: 2px solid var(--color-main);
  }
  .challenge-nav-top ul li:last-child {
    border-top: 2px solid var(--color-main);
  }
  .challenge-nav-top ul li:nth-child(3),
  .challenge-nav-top ul li:nth-child(4) {
    border-left: 2px solid var(--color-main);
  }
  .challenge-nav-top ul li a {
    padding: 10px 5px;
    font-size: 1.5rem;
  }
}
/**/
/**/
/**/
/**/
/**/
/**/
/* edit */
/**/
/**/
/**/
/**/
/**/
/**/
/**/
/**/
.txt-ind {
  margin-left: 1em;
  text-indent: -1em;
}

.disc > li {
  position: relative;
  list-style-type: none;
  margin-bottom: 0.5rem;
  padding-left: 0.8em;
}
.disc > li:last-child {
  margin-bottom: 0;
}
.disc > li::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 5px;
  height: 5px;
  background-color: var(--color-black);
  border-radius: 50%;
}
.disc-main li::before {
  background-color: var(--color-main);
}
.disc-blue li:before {
  background-color: var(--color-blue);
}
.disc-yellow li:before {
  background-color: var(--color-yellow);
}
.disc-orange li:before {
  background-color: var(--color-orange);
}
.disc-red li:before {
  background-color: var(--color-red);
}
.disc-white li:before {
  background-color: var(--color-white);
}

.c-main {
  color: var(--color-main);
}

.c-blue {
  color: var(--color-blue);
}

.c-yellow {
  color: var(--color-yellow);
}

.c-orange {
  color: var(--color-orange);
}

.c-red {
  color: var(--color-red);
}

.c-white {
  color: var(--color-white) !important;
}

.ttl {
  position: relative;
  margin-bottom: 36px;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  font-size: 2.2rem;
  background-repeat: no-repeat;
  background-size: 0.4rem 40%;
  background-position: left center;
  border-radius: 5px;
  font-weight: 600;
  line-height: 1.5;
}

.ttl-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
  padding-right: 15px;
  background-color: var(--color-main);
  border-radius: 5px;
}

@media only screen and (max-width: 767px) {
  .ttl-box {
    margin-bottom: 24px;
    padding-right: 10px;
  }
}
.ttl-box .ttl {
  margin-bottom: 0;
}

.ttl.ttl-main {
  background-color: var(--color-main);
  background-image: linear-gradient(var(--color-blue) 50%, var(--color-yellow) 50%);
  color: var(--color-white);
  text-shadow: 0 0 2px #28900c;
}

.ttl.ttl-blue {
  background-color: var(--color-blue);
  background-image: linear-gradient(var(--color-main) 50%, var(--color-yellow) 50%);
  color: var(--color-white);
}

.ttl.ttl-yellow {
  background-color: var(--color-yellow);
  background-image: linear-gradient(var(--color-main) 50%, var(--color-blue) 50%);
  color: var(--color-white);
}

.ttl.ttl-orange {
  background-color: var(--color-orange);
  background-image: linear-gradient(var(--color-main) 50%, var(--color-blue) 50%);
  color: var(--color-white);
  text-shadow: 0 0 2px #f55e01;
}

.ttl.ttl-noicon {
  background-image: none;
}

.ttl.ttl-border-main {
  background-color: var(--color-white);
  border: 0.2rem solid var(--color-main);
  color: var(--color-main);
}

.ttl.ttl-border-blue {
  background-color: var(--color-white);
  border: 0.2rem solid var(--color-blue);
  color: var(--color-blue);
}

.ttl.ttl-border-yellow {
  background-color: var(--color-white);
  border: 0.2rem solid var(--color-yellow);
  color: var(--color-yellow);
}

.ttl.ttl-border-orange {
  background-color: var(--color-white);
  border: 0.2rem solid var(--color-orange);
  color: var(--color-orange);
}

.ttl2 {
  position: relative;
  padding: 0 0 1rem;
  margin-bottom: 30px;
  overflow: hidden;
  font-weight: 600;
  font-size: 2rem;
}

.ttl2:before,
.ttl2:after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
}

.ttl2:before {
  border-bottom: 0.3rem solid var(--color-blue);
}

.ttl2:after {
  border-bottom: 0.3rem solid var(--color-yellow);
}

.ttl3 {
  margin-bottom: 24px;
  padding: 0 0 0 1.5rem;
  border-left-width: 0.4rem;
  border-left-style: solid;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
}

.ttl4 {
  margin-bottom: 12px;
  padding: 0;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  .ttl {
    margin-bottom: 24px;
    font-size: 1.8rem;
  }
  .ttl2 {
    font-size: 1.7rem;
  }
  .ttl3 {
    font-size: 1.6rem;
  }
  .ttl4 {
    font-size: 1.4rem;
  }
}
.ttl-lg {
  font-size: 2.4rem;
}

.ttl-xs {
  margin-bottom: 24px;
  font-size: 1.8rem;
}

.ttl-sm {
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.fw-n {
  font-weight: normal;
}

.fw-b {
  font-weight: 600;
}

.cont {
  margin-bottom: 60px;
}

.cont-xs {
  margin-bottom: 36px;
}

@media only screen and (max-width: 767px) {
  .cont {
    margin-bottom: 48px;
  }
  .cont-xs {
    margin-bottom: 24px;
  }
}
.marker-blue {
  background: linear-gradient(transparent 60%, var(--color-blue) 60%);
}

.marker-yellow {
  background: linear-gradient(transparent 60%, var(--color-yellow) 60%);
}

/* page - challenge
------------------------------------------ */
@media print, screen and (min-width: 768px) {
  .page-challenge .user-voice {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .page-challenge .user-voice-company,
  .page-challenge .user-voice-student {
    width: 48%;
  }
}
@media only screen and (max-width: 767px) {
  .page-challenge .user-voice-student {
    margin-top: 20px;
  }
}
.challenge-main .challenge-kv {
  text-align: center;
}

@media print, screen and (min-width: 768px) {
  .challenge-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  .challenge-main .challenge-kv {
    width: 40.625%;
  }
  .challenge-main .challenge-slider {
    width: 54.1666666667%;
  }
}
@media only screen and (max-width: 767px) {
  .challenge-main {
    margin-bottom: 40px;
  }
  .challenge-main .challenge-slider {
    margin-top: 15px;
  }
}
.challenge-slider .swiper-pagination {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  margin-right: auto;
  margin-left: auto;
  z-index: 1;
}

.challenge-slider .swiper-pagination-bullet--svg-animation {
  width: 16px;
}

.challenge-slider {
  position: relative;
  padding-bottom: 38px;
  overflow: hidden;
}

.challenge-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.challenge-slider .swiper-slide img {
  border-radius: 5px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  z-index: 2;
  cursor: pointer;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  top: -50%;
}

.swiper-button-next {
  right: 25px;
}

.swiper-button-next::after {
  border-width: 16px 0 16px 20px;
  border-color: transparent transparent transparent var(--color-main);
  left: 100%;
}

.swiper-button-prev {
  left: 25px;
}

.swiper-button-prev::after {
  border-width: 16px 20px 16px 0;
  border-color: transparent var(--color-main) transparent transparent;
  right: 100%;
}

.slider-caption {
  position: absolute;
  right: 5px;
  bottom: 5px;
  padding: 10px 20px;
  background-color: var(--color-white);
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
}

.challenge-slider .swiper-pagination-bullet--svg-animation .svg__circle-inner {
  stroke: var(--color-main);
}

.challenge-slider .swiper-pagination-bullet-active .svg__circle {
  stroke: var(--color-main);
}

.challenge-slider .swiper-pagination-bullet-active .svg__circle-inner {
  fill: var(--color-main);
}

.table-normal {
  width: 100%;
  overflow-y: hidden;
  overflow-x: auto;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -webkit-overflow-scrolling: touch;
}

.table-normal table {
  width: 100%;
  font-size: inherit;
}

.table-normal th,
.table-normal td {
  padding: 15px;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  font-family: "Inter", "YakuHanJP", Noto Sans JP, "Hiragino Sans", sans-serif;
  text-align: left;
}

.table-normal th {
  font-weight: 600;
}

.table-normal.table-center th,
.table-normal.table-center td {
  text-align: center;
}

.table-normal.table-va-m th,
.table-normal.table-va-m td {
  vertical-align: middle;
}

.table-normal.table-sm th,
.table-normal.table-sm td {
  padding: 10px;
  font-size: 1.25rem;
}

.table-normal.table-zebra tbody tr:nth-child(even) td {
  background-color: #fafafa;
}

.table-normal.table-swipe table {
  width: 960px;
}

@media only screen and (max-width: 767px) {
  .table-normal th,
  .table-normal td {
    padding: 10px;
  }
}
@media (min-width: 960px) {
  .table-normal {
    overflow-y: auto;
    /*padding-bottom: 15px;*/
  }
}
@media (max-width: 960px) {
  .table-normal.table-swipe:before {
    content: "▼ 横にスライドすると表を全て見ることができます。";
    display: block;
    width: 100%;
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
}
.table-normal.table-challenge-archive thead th:first-child {
  width: 120px;
}

@media only screen and (max-width: 767px) {
  .table-normal.table-challenge-archive thead th:first-child {
    width: 80px;
  }
}
.table-normal.table-challenge-archive thead th {
  background-color: var(--color-main);
  color: var(--color-white);
  text-shadow: 0 0 2px #28900c;
}

.table-normal.table-challenge-archive tbody tr:nth-child(even) td {
  background-color: #f2f2f2;
}

.table-normal.table-challenge-archive .challenge-archive-ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.table-normal.table-challenge-archive .challenge-archive-ttl p:first-child {
  font-size: 2rem;
}

.table-normal.table-challenge-archive .challenge-archive-ttl .mbtn {
  text-shadow: none;
}

.table-normal.table-challenge-kadai thead th:last-child {
  width: 135px;
}

.archive-ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  background-color: var(--color-main);
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

.archive-ttl p {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-white);
  text-shadow: 0 0 2px #28900c;
}

.archive-ttl .mbtn {
  text-shadow: none;
}

.archive-box {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.archive-head {
  display: flex;
  align-items: stretch;
  border-top: 1px solid #ddd;
}

.archive-head li {
  padding: 15px;
  background-color: var(--color-main);
  font-weight: 600;
  color: var(--color-white);
  text-shadow: 0 0 2px #28900c;
}

.archive-head li:first-child {
  width: 12.5%;
}

.archive-head li:nth-child(2),
.archive-head li:nth-child(3) {
  border-left: 1px solid #ddd;
}

.archive-head li:nth-child(2) {
  width: 35.5%;
}

.archive-head li:nth-child(3) {
  width: 52%;
}

.archive-list {
  display: flex;
  align-items: stretch;
  background-color: #fff;
  border-top: 1px solid #ddd;
}

.archive-list li {
  position: relative;
}

.archive-list-bg li {
  background-color: #f2f2f2;
}

@media print, screen and (min-width: 768px) {
  .archive-list li {
    padding: 15px;
  }
  .archive-list li:first-child {
    width: 12.5%;
  }
  .archive-list li:last-child::before {
    content: "";
    position: absolute;
    top: 0;
    left: 40.5%;
    width: 1px;
    height: 100%;
    background-color: #ddd;
  }
  .archive-list li:nth-child(2) {
    flex: 1 0 0;
    display: flex;
    align-items: center;
    border-left: 1px solid #ddd;
  }
  .archive-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .archive-col:first-child {
    flex: 1 0 0;
  }
  .archive-col:last-child {
    padding-left: 15px;
    width: 59.5%;
  }
  .archive-col p {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .archive-head {
    display: none;
  }
  .archive-ttl,
  .archive-list li {
    padding: 10px;
  }
  .archive-list li:first-child {
    width: 90px;
  }
  .archive-list li:last-child {
    flex: 1 0 0;
    padding-left: 0;
  }
  .archive-col:last-child {
    padding-top: 10px;
  }
  .archive-col p {
    font-weight: 600;
    color: var(--color-main);
  }
}
.challenge-schedule > li {
  position: relative;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.challenge-schedule > li:nth-child(n+2) {
  margin-top: 35px;
}

.challenge-schedule > li::before,
.challenge-schedule > li::after {
  content: "";
  position: absolute;
  left: 50%;
}

.challenge-schedule > li::before {
  bottom: -32px;
  height: 15px;
  border-left: 2px solid var(--color-main);
  transform: translate(-50%, -50%);
}

.challenge-schedule > li::after {
  bottom: -25px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-main);
  border-left: 2px solid var(--color-main);
  transform: translateX(-50%) rotate(-135deg);
}

.challenge-schedule > li:last-child::before,
.challenge-schedule > li:last-child::after {
  display: none;
}

/*.challenge-schedule h3{
	display: flex;
	font-size: 1.6rem;
	font-weight: 600;
}*/
/*.challenge-schedule h3 span{
	margin-right: 1rem;
	padding: 0 .85rem;
	background-color: var(--color-main);
	color: var(--color-white);
}*/
.challenge-schedule h3 em {
  padding-left: 1rem;
  font-style: normal;
  font-size: 1.4rem;
}

.l-asterisk {
  list-style: none;
  margin: 0.5em 0;
  padding-left: 1.5em;
}

.l-asterisk li {
  text-indent: -1.5em;
  line-height: 1.35;
}

.l-asterisk li:nth-child(n+2) {
  margin-top: 0.5em;
}

.l-number {
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
}

.l-number ol {
  padding-left: 1em;
}

.l-number li {
  text-indent: -1.3em;
  padding-left: 1.3em;
}

.l-number li:before {
  counter-increment: item;
  content: counter(item) ".";
  padding-right: 0.5em;
  font-weight: 600;
  color: var(--color-main);
}

.l-number li:nth-child(n+2) {
  margin-top: 0.5em;
}

.l-border > li {
  padding-top: 1.25em;
  padding-bottom: 1.25em;
}

.l-border > li:first-child {
  padding-top: 0;
}

.l-border > li:last-child {
  padding-bottom: 0;
}

.l-border > li:nth-child(n+2) {
  margin-top: 0;
  border-top: 1px solid #ddd;
}

.challenge-schedule dl {
  display: flex;
  padding-bottom: 15px;
}

.challenge-schedule dt em {
  margin-right: 1rem;
  padding: 0.35rem 0.85rem;
  background-color: var(--color-main);
  border-radius: 5px;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  color: var(--color-white);
}

.challenge-schedule dd h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 0;
  font-size: 1.8rem;
  font-weight: 600;
}

.challenge-schedule dd span {
  padding-left: 1rem;
  font-size: 1.4rem;
}

@media only screen and (max-width: 767px) {
  .challenge-schedule dd span {
    padding-left: 0;
    font-size: 1.4rem;
    display: block;
  }
}
.l-committee li {
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.l-committee li:nth-child(n+2) {
  margin-top: 24px;
}

.l-committee .committee-box {
  display: flex;
  justify-content: space-between;
}

.l-committee .committee-photo {
  position: relative;
  text-align: center;
}

.l-committee .committee-photo img {
  border-radius: 5px;
  box-shadow: 5px 5px 0 0 #f2f2f2;
  width: 116px;
}

@media print, screen and (min-width: 768px) {
  .l-committee .committee-photo {
    width: 116px;
  }
  .l-committee .committee-txt {
    flex: 1 0 0;
    padding-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .l-committee .committee-box {
    flex-direction: column;
  }
  .l-committee .committee-txt {
    padding-top: 15px;
  }
}
.l-committee .committee-photo span {
  display: inline-flex;
  padding: 0.5em;
  font-size: 1.2rem;
  background-color: var(--color-blue);
  border-radius: 5px;
  color: var(--color-white);
  text-align: center;
  line-height: 1;
}

@media print, screen and (min-width: 768px) {
  .l-committee .committee-photo span {
    position: absolute;
    top: -10px;
    left: -5px;
  }
}
@media only screen and (max-width: 767px) {
  .l-committee .committee-photo span {
    margin-top: 10px;
  }
}
.l-committee .committee-leader .committee-photo span {
  background-color: var(--color-yellow);
  color: var(--color-white);
}

.l-committee .committee-position {
  font-size: 1.3rem;
}

.l-committee .committee-name {
  font-size: 1.5rem;
}

.l-committee .committee-name strong {
  background: linear-gradient(transparent 60%, #5fc8f1 0%);
}

.l-committee .committee-leader .committee-name strong {
  background: linear-gradient(transparent 60%, #ffee00 0%);
}

.l-committee .committee-discription {
  padding-top: 15px;
  font-size: 1.3rem;
}

.txt-box {
  position: relative;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.mbtn,
a.mbtn,
button.mbtn {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  /*display: inline-block;*/
  display: inline-flex;
  align-items: center;
  padding: 1.2rem 2.2rem 1.2rem 2.2rem;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #222;
  border-radius: 100vh;
}

.mbtn.mbtn-full {
  width: 100%;
  justify-content: center;
}

.mbtn.mbtn-xl {
  font-size: 2rem;
}

.mbtn.mbtn-xs {
  padding: 1rem 2rem 1rem 2rem;
  font-size: 1.3rem;
}

.mbtn.mbtn-c-white {
  color: var(--color-white);
}

a.mbtn:hover {
  opacity: 0.7;
}

a.mbtn-white {
  background-color: var(--color-white);
  border: 1px solid #222;
  border-bottom: 3px solid #000;
}

a.mbtn-main {
  background-color: var(--color-main);
  /*color: var(--color-white);*/
  border-bottom: 3px solid #28900c;
}

a.mbtn-yellow {
  background-color: var(--color-yellow);
  color: var(--color-white);
}

a.mbtn-blue {
  background-color: var(--color-blue);
  color: var(--color-white);
  border-bottom: 3px solid #0b4a97;
}

a.btn--yellow {
  color: #000;
  background-color: #fff100;
}

a.btn--yellow.btn--cubic {
  border-bottom: 3px solid #ccc100;
}

/*a.btn--yellow.btn--cubic:hover {
 margin-top: 3px;
 border-bottom: 2px solid #ccc100;
}*/
a.mbtn i.fa {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

a.mbtn i.fa img {
  vertical-align: middle;
}

a.ipdf {
  padding-left: 1.6em;
}

a.ipdf[target=_blank] {
  background: url(../img/icon-pdf.svg) no-repeat 0 0;
  /*background-size: contain;*/
  background-size: 13px 17px;
}

@media only screen and (max-width: 767px) {
  a.ipdf[target=_blank] {
    background-size: 11px 15px;
  }
}
a.iblank[target=_blank]::after {
  position: relative;
  top: 3px;
  display: inline-block;
  width: 17px;
  height: 17px;
  margin: 0 2px;
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+DQoJPHN0eWxlPi5pbmxpbmUtc3ZnLS1saW5lIHsgZmlsbDogbm9uZTsgc3Ryb2tlOiBjdXJyZW50Q29sb3I7IHN0cm9rZS13aWR0aDogaW5oZXJpdDsgc3Ryb2tlLW1pdGVybGltaXQ6IDEwOyB9PC9zdHlsZT4NCgk8cGF0aCBjbGFzcz0iaW5saW5lLXN2Zy0tbGluZSIgZD0iTTE3LjksMTEuOXY0LjZjMCwwLjYtMC40LDEtMSwxSDcuMWMtMC42LDAtMS0wLjQtMS0xVjcuNGMwLTAuNiwwLjQtMSwxLTFoNC43Ii8+PGxpbmUgY2xhc3M9ImlubGluZS1zdmctLWxpbmUiIHgxPSIxMS45IiB5MT0iMTIiIHgyPSIxOC40IiB5Mj0iNS41Ii8+PHBvbHlsaW5lIGNsYXNzPSJpbmxpbmUtc3ZnLS1saW5lIiBwb2ludHM9IjE4LjQsOS4zIDE4LjQsNS41IDE0LjYsNS41ICIvPg0KPC9zdmc+");
}

.committee-acc {
  margin-top: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.committee-acc-ttl {
  position: relative;
  padding: 20px;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
}

.committee-acc-inner {
  position: relative;
  display: none;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}

.committee-acc-inner strong {
  display: block;
  padding-bottom: 5px;
  font-size: 1.4rem;
}

.committee-acc-inner p {
  padding-top: 20px;
  font-size: 1.3rem;
}

.committee-acc-ttl .icn-faq {
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  border-radius: 50%;
  border: 1px solid #27ad38;
}

.committee-acc-ttl .icn-faq,
.committee-acc-ttl .icn-faq span {
  display: inline-block;
  transition: all 0.4s;
}

.committee-acc-ttl .icn-faq span {
  position: absolute;
  background-color: #27ad38;
}

.committee-acc-ttl .icn-faq span:nth-of-type(1) {
  transform: rotate(0deg);
}

.committee-acc-ttl .icn-faq span:nth-of-type(2) {
  transform: rotate(90deg);
}

.committee-acc-ttl .icn-faq.open span:nth-of-type(2) {
  transform: rotate(180deg);
}

.committee-acc-ttl .icn-faq.open span:nth-of-type(1) {
  display: none;
}

@media print, screen and (min-width: 768px) {
  .committee-acc-ttl .icn-faq {
    width: 34px;
    height: 34px;
  }
  .icn-faq span {
    left: 10px;
    width: 12px;
    height: 2px;
  }
  .icn-faq span:nth-of-type(1),
  .icn-faq span:nth-of-type(2) {
    top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .list-faq li .q-ttl .icn-faq {
    right: 0;
  }
  .list-faq li .list-faq-inner::before {
    position: absolute;
    top: 4px;
    left: 0;
    width: 20px;
    height: 20px;
    font-size: 1.6rem;
    line-height: 20px;
  }
  .list-faq li .q-ttl {
    padding: 1em 2.5em 1em 2.4em;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .list-faq li .q-ttl::before {
    top: 18px;
    left: 0.2em;
    font-size: 1.6rem;
  }
  .list-faq li .list-faq-inner {
    margin-bottom: 20px;
    padding: 0;
  }
  .icn-faq {
    width: 24px;
    height: 24px;
  }
  .icn-faq span {
    left: 6px;
    width: 10px;
    height: 2px;
  }
  .icn-faq span:nth-of-type(1),
  .icn-faq span:nth-of-type(2) {
    top: 10px;
  }
  .list-faq li .list-faq-inner p {
    padding: 0 0 0 35px;
  }
}
.challenge-result {
  background-color: #fff;
  padding: 20px;
  border-width: 1px;
  border-style: solid;
  border-radius: 5px;
}

@media only screen and (max-width: 767px) {
  .challenge-result {
    padding: 15px;
  }
}
.challenge-result.result-no1 {
  margin-bottom: 40px;
  border-color: #f5bf38;
}

.challenge-result.result-no2 {
  margin-bottom: 40px;
  border-color: #a6adb3;
}

.challenge-result.result-no3 {
  margin-bottom: 40px;
  border-color: #cf927d;
}

.challenge-result.result-no4 {
  border-color: var(--color-main);
}

@media print, screen and (min-width: 768px) {
  .challenge-result .result-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .challenge-result .result-ttl {
    padding-left: 20px;
  }
  .challenge-result .result-theme {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 10px;
  }
}
.challenge-result .result-badge {
  text-align: center;
}

.challenge-result .result-zemi {
  font-size: 2rem;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .challenge-result .result-zemi {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
  }
  .challenge-result .result-theme {
    margin-top: 25px;
    text-align: center;
  }
  .challenge-result .result-badge {
    margin-top: -30px;
  }
}
.challenge-result .result-theme span {
  padding: 0.5em;
  border: 1px solid var(--color-black);
  border-radius: 5px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
}

.challenge-result .result-theme p {
  font-size: 2rem;
  font-weight: 600;
}

@media print, screen and (min-width: 768px) {
  .challenge-result .result-theme p {
    padding-left: 1em;
  }
}
.result-discription,
.result-photo {
  margin-top: 20px;
}

.result-discription {
  padding-top: 20px;
  border-width: 1px;
  border-top-style: solid;
}

.challenge-result.result-no1 .result-discription {
  border-top-color: #f5bf38;
}

.challenge-result.result-no2 .result-discription {
  border-top-color: #a6adb3;
}

.challenge-result.result-no3 .result-discription {
  border-top-color: #cf927d;
}

.challenge-result.result-no4 .result-discription {
  border-top-color: var(--color-main);
}

.result-discription-lead {
  padding-bottom: 10px;
  font-size: 2rem;
  font-weight: 600;
}

@media print, screen and (min-width: 768px) {
  .result-photo {
    display: flex;
    justify-content: space-between;
  }
  .result-photo li {
    width: 48%;
  }
}
@media only screen and (max-width: 767px) {
  .result-photo li:last-child {
    margin-top: 15px;
  }
}
.result-msg {
  margin-top: 20px;
  padding: 20px;
}

.result-msg.result-company-msg {
  background-color: #bbd7ef;
}

.result-msg.result-zemi-msg {
  background-color: #f5c2d5;
}

.result-msg-ttl {
  padding-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 600;
}

@media print, screen and (min-width: 768px) {
  .result-msg.result-company-msg {
    display: flex;
    flex-wrap: wrap;
  }
  .result-company-photo {
    width: 101px;
  }
  .result-msg-txt {
    flex: 1 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .result-company-photo {
    text-align: center;
    padding-bottom: 10px;
  }
}
.challenge-movie-box {
  padding: 20px;
  background-color: var(--color-white);
  border: 1px solid #ddd;
  border-radius: 5px;
}

.challenge-movie-box .challenge-movie-ttl {
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.challenge-movie-box .challenge-movie-ttl p {
  font-size: 2rem;
  font-weight: 600;
}

.challenge-movie-box .challenge-movie-ttl a {
  font-size: 1.1rem;
}

.challenge-movie-box .challenge-movie-list {
  padding: 24px 0;
}

@media print, screen and (min-width: 768px) {
  .challenge-movie-box .challenge-movie-list > ul {
    display: flex;
    justify-content: center;
  }
  .challenge-movie-box .challenge-movie-list.movie-list3 > ul > li {
    width: 33.3333333333%;
    padding-right: 20px;
    padding-left: 20px;
    text-align: center;
  }
  .challenge-movie-box .challenge-movie-list.movie-list3 > ul > li:nth-child(2) {
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
  }
  .challenge-movie-box .challenge-movie-list.movie-list3.movie-list3-bd-none > ul > li:nth-child(2) {
    border-right: none;
  }
}
@media only screen and (max-width: 767px) {
  .challenge-movie-box .challenge-movie-list.movie-list3 > ul > li {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
  }
  .challenge-movie-box .challenge-movie-list.movie-list3 > ul > li:nth-child(2) {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
}
.challenge-movie-box .challenge-movie-list ul li .movie-zemi-name {
  padding-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 600;
}

.movie-cont {
  position: relative;
  max-height: 100%;
  max-width: 100%;
}

.movie-cont > .video {
  position: relative;
  /*height: 100%;*/
  width: 100%;
}

.guide-list-txt {
  display: flex;
  align-items: center;
}

@media print, screen and (min-width: 768px) {
  .guide-list-txt {
    justify-content: space-between;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .guide-list-txt {
    flex-direction: column;
    margin-bottom: 15px;
  }
  .guide-list-txt p:first-child {
    order: 2;
  }
  .guide-list-txt p:last-child {
    order: 1;
    text-align: center;
    padding-bottom: 10px;
  }
}
.p-about .about-ttl {
  font-size: 4.2rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}

.p-about .lead-txt {
  padding: 20px 0;
  text-align: center;
  font-size: 2rem;
}

.p-about .character-txt h3 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--color-main);
}

.p-about .character-txt p {
  font-size: 1.5rem;
}

.p-about .character-photo {
  text-align: center;
}

@media print, screen and (min-width: 768px) {
  .p-about .character-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
  }
  .p-about .character-txt {
    flex: 1 0 0;
  }
  .p-about .character-photo {
    width: 286px;
  }
}
@media only screen and (max-width: 767px) {
  .p-about .about-ttl {
    font-size: 2.8rem;
  }
  .p-about .lead-txt {
    padding: 10px 0;
    font-size: 1.6rem;
  }
  .p-about .character-txt h3 {
    font-size: 2rem;
  }
  .p-about .character-photo {
    padding: 20px 50px 0;
  }
}
/**/
/**/
/**/
.article-category {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
  background-color: #fff;
  border: 2px solid var(--color-main);
  border-radius: 5px;
}

.article-category ul {
  display: flex;
  flex-wrap: wrap;
}

.article-category ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 15px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #222;
  text-decoration: none;
  text-align: center;
  line-height: 1.5;
  transition: all 0.4s;
}

@media print, screen and (min-width: 768px) {
  .article-category.article-category-news ul li {
    width: 20%;
  }
  .article-category ul li:nth-child(n+2) {
    border-left: 2px solid var(--color-main);
  }
}
.category-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  /*width: 118rem;*/
  height: 9.64rem;
  margin-bottom: 30px;
  background-color: #fff;
  border: 2px solid var(--color-main);
  border-radius: 5px;
  /*box-shadow: 1px 1px 30px rgba(142, 142, 142, .16);*/
}

.category-link p {
  width: 12rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #98a9ac;
  text-align: center;
}

.category-link ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: calc(100% - 12rem);
}

.category-link li {
  width: 20%;
}

.category-link li a {
  display: block;
  border-left: 1px solid #d8e2e3;
  font-size: 1.5rem;
  font-weight: 500;
  color: #222;
  text-decoration: none;
  text-align: center;
}

.category-link li a:hover {
  color: #25b1a8;
}

@media screen and (max-width: 1024px) {
  /*.category-link {
  	padding: 0 8.901rem;
  }*/
  .category-link {
    width: calc(100% - 17.802rem);
  }
}
@media screen and (max-width: 767px) {
  .category-link {
    position: relative;
    top: -4.82rem;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    height: auto;
    border-radius: 6px;
    padding: 7.5rem;
  }
  .category-link ul {
    justify-content: flex-start;
    width: 100%;
  }
  .category-link p {
    width: 100%;
    font-size: 6.8rem;
    text-align: center;
  }
  .category-link li {
    width: 47.5%;
    margin-right: 5%;
  }
  .category-link li:nth-child(even) {
    margin-right: 0;
  }
  .category-link li a {
    position: relative;
    display: block;
    padding: 7.5rem 0;
    border-left: none;
    border-bottom: 1px solid #d8e2e3;
    font-size: 5.418rem;
    text-align: left;
    line-height: 1;
  }
  .category-link li a::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: -1px;
    width: 10rem;
    border-bottom: 1px solid #25b1a8;
  }
  .category-link li a::after {
    content: "";
    display: block;
    position: absolute;
    right: 2.5rem;
    width: 0;
    height: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    border-left: 3.9rem solid #25b1a8;
    border-top: 2.1rem solid transparent;
    border-top-color: transparent;
    border-bottom: 2.1rem solid transparent;
    border-bottom-color: transparent;
    border-top-color: transparent !important;
    border-bottom-color: transparent !important;
    border-right-color: transparent !important;
  }
}
/* news/
------------------------------------------ */
.rbox {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.rboxleft,
.rboxright {
  float: none;
}

.rboxright {
  width: inherit;
  flex: 1 0 0;
  padding-left: 15px;
}

.rboxright span {
  font-weight: normal;
  letter-spacing: 0;
}

.pagectrl ul li,
.pagectrl ul li a {
  line-height: 1;
}

.pagectrl ul li {
  padding: 0;
}

.pagectrl ul li.current span,
.pagectrl ul li a {
  display: block;
  padding: 12px 13px;
  text-decoration: none;
  color: #333;
}

.pagectrl ul li.current span {
  color: #fff;
}

.pagectrl ul li img {
  padding-top: 0;
}

.pagectrl ul li.arrow span,
.pagectrl ul li.arrow a {
  display: block;
  padding: 10.5px 13px;
}

.pagectrl ul li a:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 767px) {
  .pagectrl ul li.current span,
  .pagectrl ul li a {
    padding: 8px 10px;
  }
  .pagectrl ul li.arrow span,
  .pagectrl ul li.arrow a {
    padding: 5.5px 10px;
  }
}
.newsboxdtl,
.newsboxdtl ul.newslist3,
.newsboxdtl ul.newslist3 li {
  width: 100%;
}

.newsboxdtl ul.newslist3 li span {
  font-weight: normal;
}

.newsboxdtl ul.newslist3 li span.date {
  width: 154px;
  background-position: 0 2px;
}

.link01 {
  display: flex;
  justify-content: flex-end;
}

.link01 a {
  padding: 8px 30px;
  background-color: #fff;
  border: 1px solid #ddd;
  float: right;
  display: block;
  margin-top: 30px;
  float: none;
}

@media only screen and (max-width: 767px) {
  .link01 {
    display: flex;
    justify-content: center;
  }
}
.newsboxdtl h3 {
  font-size: 2rem;
}

@media only screen and (max-width: 767px) {
  .newsboxdtl h3 {
    font-size: 1.8rem;
  }
}
/* media
------------------------------------------ */
.p-madia {
  max-width: 700px;
  margin: 0 auto;
}

.p-madia .mbox {
  width: 100%;
  padding: 20px;
  border-radius: 5px;
}

.p-madia .mbox-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}

.p-madia .mbox-ttl span {
  color: var(--color-main);
}

.p-madia .mbox-ttl h3 {
  flex: 1 0 0;
  padding-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
}

.p-madia .mbox-thum {
  width: 80px;
  border: 1px solid #ccc;
}

@media only screen and (max-width: 767px) {
  .p-madia .mbox {
    padding: 15px;
  }
  .p-madia .mbox-ttl {
    padding-right: 10px;
  }
  .p-madia .mbox-ttl h3 {
    font-size: 1.6rem;
    line-height: 1.35;
  }
  .p-madia .mbox-thum {
    width: 70px;
  }
}
.p-madia .mbox-thum,
.p-madia .mbox-thum img {
  border-radius: 5px;
}

.mboxleft span {
  border-radius: 5px;
  background-color: var(--color-main);
  line-height: 1;
}

@media print, screen and (min-width: 768px) {
  .mboxlast p {
    display: flex;
    align-items: center;
  }
}
@media only screen and (max-width: 767px) {
  .mboxlast p a {
    display: block;
  }
}
.mboxlast .rUrl,
.mboxlast .rPdf {
  padding: 3px;
  line-height: 1;
}

.mboxlast .rUrl {
  background-color: var(--color-blue);
}

.mboxlast .rPdf {
  background-color: var(--color-yellow);
}

.mboxlast a {
  line-height: 1.25;
}

.p-news-article table {
  width: 100% !important;
}

/**/
/*240912 add*/
/**/
@media screen and (min-width: 768px) {
  .guide-top-sec1 {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .guide-top-sec1 .text {
    flex: 1 0 0;
    padding-right: 50px;
  }
}
.guide-top-sec1 .text p:not(:first-of-type) {
  padding-top: 2rem;
}
@media screen and (min-width: 768px) {
  .guide-top-sec1 .text p:not(:first-of-type) {
    padding-bottom: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .guide-top-sec1 .photo {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .guide-top-sec1 .photo {
    width: 36%;
  }
}
.guide-top-sec2 .text p:not(:first-of-type) {
  padding-top: 2rem;
}
.guide-top-sec2 .text span {
  display: block;
  padding-top: 0.5rem;
  font-size: var(--fz12);
}
.guide-top-sec2 .discription {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .guide-top-sec2 .discription {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
  }
}
.guide-top-sec2 .discription-l, .guide-top-sec2 .discription-r {
  position: relative;
}
@media screen and (min-width: 768px) {
  .guide-top-sec2 .discription-l, .guide-top-sec2 .discription-r {
    width: 48%;
  }
}
.guide-top-sec2 .discription-box {
  position: relative;
  padding: 2rem;
  border-radius: 5px;
}
.guide-top-sec2 .discription-box h3 {
  color: var(--color-blue);
  font-size: var(--fz24);
  font-weight: 700;
}
.guide-top-sec2 .discription-box h4 {
  padding: 0;
  color: var(--color-white);
  font-size: var(--fz18);
  font-weight: 500;
}
.guide-top-sec2 .discription-box li {
  position: relative;
  margin-top: 1rem;
  padding-left: 1.5rem;
}
.guide-top-sec2 .discription-box li::before {
  content: "";
  position: absolute;
  top: 0.9rem;
  left: 0;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .guide-top-sec2 .discription-l {
    background-color: var(--color-blue);
    border-radius: 5px;
  }
  .guide-top-sec2 .discription-l::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: -1.4rem;
    transform: translateX(-50%);
    border-left: 1rem solid transparent;
    border-right: 1rem solid transparent;
    border-top: 1.5rem solid var(--color-blue);
  }
}
.guide-top-sec2 .discription-l li {
  color: var(--color-white);
}
.guide-top-sec2 .discription-l .discription-box {
  background-color: var(--color-blue);
}
@media screen and (min-width: 768px) {
  .guide-top-sec2 .discription-l .discription-box::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: -1.5rem;
    transform: translateY(-50%);
    border-left: 1.5rem solid var(--color-blue);
    border-top: 1rem solid transparent;
    border-bottom: 1rem solid transparent;
    border-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .guide-top-sec2 .discription-l .discription-box:last-child {
    border-top: 1px dashed #fff;
  }
}
@media screen and (min-width: 768px) {
  .guide-top-sec2 .discription-l .discription-box:last-child {
    margin-top: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .guide-top-sec2 .discription-r {
    margin-top: 2rem;
  }
}
.guide-top-sec2 .discription-r li::before {
  background-color: var(--color-black);
}
.guide-top-sec2 .discription-r .discription-box {
  background-color: var(--color-white);
  border: 4px solid var(--color-orange);
}
.guide-top-sec2 .discription-r .discription-box::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 10rem;
  height: 9.453rem;
  background: url(../../guide/img/ill-labo2.png) no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .guide-top-sec2 .discription-r .discription-box::after {
    width: 16rem;
    height: 15.124rem;
  }
}
.guide-top-sec2 .discription-r .discription-box p {
  font-size: var(--fz18);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .guide-top-sec3 .menu-box {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .guide-top-sec3 .menu-box-l, .guide-top-sec3 .menu-box-r {
    width: 48%;
  }
}
.guide-top-sec3 .menu-box-l h4, .guide-top-sec3 .menu-box-r h4 {
  padding: 0;
  color: var(--color-blue);
  font-size: var(--fz15);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .guide-top-sec3 .menu-box-l h4, .guide-top-sec3 .menu-box-r h4 {
    font-size: var(--fz18);
  }
}
@media screen and (min-width: 768px) {
  .guide-top-sec3 .menu-box-1 .menu-box-l {
    width: 52%;
  }
}
@media screen and (min-width: 768px) {
  .guide-top-sec3 .menu-box-1 .menu-box-r {
    width: 44%;
  }
}
@media screen and (max-width: 767px) {
  .guide-top-sec3 .menu-box-r {
    margin-top: 2rem;
  }
}
.guide-top-sec3 dd sup {
  font-size: var(--fz10);
}
.guide-top-sec3 dd span:nth-of-type(2) {
  padding-top: 1rem;
}

.guide-table {
  border-top: 1px solid #ddd;
  background-color: var(--color-white);
}
.guide-table-cell {
  padding-top: 1.3rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #ddd;
}
@media screen and (min-width: 768px) {
  .guide-table-cell {
    display: flex;
    padding-top: 1.4rem;
    padding-bottom: 1.3rem;
  }
}
.guide-table-cell:nth-child(even) {
  background-color: #edf6f9;
}
.guide-table-cell dt {
  padding-left: 1rem;
  font-weight: 500;
  color: var(--color-blue);
}
@media screen and (min-width: 768px) {
  .guide-table-cell dt {
    width: 20%;
    padding: 0 2rem 0 1rem;
    text-align-last: justify;
  }
}
@media screen and (max-width: 767px) {
  .guide-table-cell dd {
    padding-left: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .guide-table-cell dd {
    flex: 1;
    padding-right: 1rem;
  }
}
.guide-table-cell dd span {
  display: block;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .guide-table-wide dt {
    width: 27%;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
}
.row > * {
  flex-grow: 0;
  flex-shrink: 0;
}
.row [class^=col1-] {
  width: calc(100% / 1);
}
.row [class^=col2-] {
  width: calc(100% / 2);
}
.row [class^=col3-] {
  width: calc(100% / 3);
}
.row [class^=col4-] {
  width: calc(100% / 4);
}
.row [class^=col5-] {
  width: calc(100% / 5);
}
.row [class^=col6-] {
  width: calc(100% / 6);
}
.row [class^=col7-] {
  width: calc(100% / 7);
}
.row [class^=col8-] {
  width: calc(100% / 8);
}
.row [class^=col9-] {
  width: calc(100% / 9);
}
.row [class^=col10-] {
  width: calc(100% / 10);
}
.row [class^=col11-] {
  width: calc(100% / 11);
}
.row [class^=col12-] {
  width: calc(100% / 12);
}
@media screen and (min-width: 768px) {
  .row [class*="-1-"] {
    width: calc(100% / 1);
  }
  .row [class*="-2-"] {
    width: calc(100% / 2);
  }
  .row [class*="-3-"] {
    width: calc(100% / 3);
  }
  .row [class*="-4-"] {
    width: calc(100% / 4);
  }
  .row [class*="-5-"] {
    width: calc(100% / 5);
  }
  .row [class*="-6-"] {
    width: calc(100% / 6);
  }
  .row [class*="-7-"] {
    width: calc(100% / 7);
  }
  .row [class*="-8-"] {
    width: calc(100% / 8);
  }
  .row [class*="-9-"] {
    width: calc(100% / 9);
  }
  .row [class*="-10-"] {
    width: calc(100% / 10);
  }
  .row [class*="-11-"] {
    width: calc(100% / 11);
  }
  .row [class*="-12-"] {
    width: calc(100% / 12);
  }
}
@media screen and (min-width: 1025px) {
  .row [class$="-1"] {
    width: calc(100% / 1);
  }
  .row [class$="-2"] {
    width: calc(100% / 2);
  }
  .row [class$="-3"] {
    width: calc(100% / 3);
  }
  .row [class$="-4"] {
    width: calc(100% / 4);
  }
  .row [class$="-5"] {
    width: calc(100% / 5);
  }
  .row [class$="-6"] {
    width: calc(100% / 6);
  }
  .row [class$="-7"] {
    width: calc(100% / 7);
  }
  .row [class$="-8"] {
    width: calc(100% / 8);
  }
  .row [class$="-9"] {
    width: calc(100% / 9);
  }
  .row [class$="-10"] {
    width: calc(100% / 10);
  }
  .row [class$="-11"] {
    width: calc(100% / 11);
  }
  .row [class$="-12"] {
    width: calc(100% / 12);
  }
}

.row > * {
  padding: 10px;
  border: solid 5px #fff;
  text-align: center;
}

.row.gray > * {
  background: #eee;
}

.row.blue > * {
  background: #ddf;
}

.row.green > * {
  background: #dfd;
}

.l-circle {
  margin-left: 1rem;
}
.l-circle li {
  position: relative;
  padding-left: 0.5rem;
}
.l-circle li::before {
  content: "";
  background-color: #222;
  position: absolute;
  top: 1rem;
  left: -0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.note {
  font-size: var(--fz10);
}

.guide-top-sec4-row {
  position: relative;
  background-color: var(--color-white);
  border: 1px solid var(--color-yellow);
  border-radius: 10px;
  padding: 30px 15px 15px;
}
@media screen and (min-width: 768px) {
  .guide-top-sec4-row {
    display: flex;
    justify-content: space-between;
    padding: 50px 30px 15px;
  }
}
.guide-top-sec4-row-fit {
  padding-top: 15px;
  border-color: var(--color-blue);
}
@media screen and (min-width: 768px) {
  .guide-top-sec4-row-fit {
    padding-top: 30px;
  }
}
.guide-top-sec4-row-fit .guide-table dt {
  color: var(--color-black);
}
.guide-top-sec4-row-fit .guide-table-cell:nth-child(2n) {
  background-color: #f2f7fc !important;
}
.guide-top-sec4-row span {
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 15px;
  padding: 3px 5px;
  background-color: var(--color-yellow);
  color: var(--color-white);
  font-size: var(--fz14);
}
@media screen and (max-width: 767px) {
  .guide-top-sec4-col:nth-child(n+2) {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .guide-top-sec4-col {
    width: 48%;
  }
}
.guide-top-sec4-col h3 {
  display: flex;
  align-items: center;
  color: var(--color-black);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .guide-top-sec4-col h3 {
    font-size: var(--fz16);
  }
}
.guide-top-sec4-col .guide-table dt {
  color: var(--color-black);
}
.guide-top-sec4-col .guide-table-cell:nth-child(2n) {
  background-color: #fbfbdd;
}
.guide-top-sec4-box {
  padding: 15px;
  background-color: var(--color-white);
  border: 1px solid var(--color-blue);
  border-radius: 10px;
}

@media screen and (min-width: 768px) {
  .menu-box6 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.menu-box6 ul li {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .menu-box6 ul li {
    width: 48%;
    margin-top: 20px;
  }
}
.menu-box6 ul li h4 {
  padding: 0;
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ddd;
  font-size: var(--fz15);
  font-weight: 700;
  color: var(--color-blue);
}
@media screen and (min-width: 768px) {
  .menu-box6 ul li h4 {
    font-size: var(--fz16);
  }
}

.menu-box7 .menu-box-inner img {
  width: 220px;
}

@media screen and (min-width: 768px) {
  .guide-top-sec6 ul {
    display: grid;
  }
  .guide-top-sec6 ul.guide-top-sec6-list1 {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 10px;
  }
  .guide-top-sec6 ul.guide-top-sec6-list2 {
    grid-template-columns: 2fr 1fr 1fr;
    column-gap: 10px;
  }
}
.guide-top-sec6 ul li {
  position: relative;
  grid-row: span 4;
  display: grid;
  grid-template-rows: subgrid;
  padding: 50px 5px 10px;
  background-color: #fff;
  border: 1px solid #ddd;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .guide-top-sec6 ul li:nth-child(n+2) {
    margin-top: 10px;
  }
}
.guide-top-sec6 ul li img {
  margin-right: auto;
  margin-left: auto;
}
.guide-top-sec6 ul li h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: var(--fz15);
  font-weight: 700;
  color: var(--color-blue);
}
.guide-top-sec6 ul li:nth-child(5) {
  width: 400px;
}
.guide-top-sec6 ul li p {
  padding-top: 15px;
  font-size: var(--fz13);
}
.guide-top-sec6 ul li .sec6-note {
  margin-top: 0;
  font-size: var(--fz11);
}
.guide-top-sec6-limit-text {
  padding-bottom: 25px;
  font-size: var(--fz16);
  font-weight: 700;
  color: #e8465a;
}
.guide-top-sec6-limit-text-date {
  padding-bottom: 25px;
}
.guide-top-sec6-limit-text-date span {
  padding: 10px;
  background-color: #e8465a;
  border-radius: 5px;
  font-size: var(--fz16);
  font-weight: 700;
  color: #fff;
}

.guide-top-sec6-ribbon {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 2px 0;
  width: 30px;
  text-align: center;
  font-size: 17px;
  color: white;
  background: #e8465a;
}

.guide-top-sec6-ribbon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  width: 0;
  border-left: 15px solid #e8465a;
  border-right: 15px solid #e8465a;
  border-bottom: 5px solid transparent;
}

.page-guide-top figure {
  position: relative;
}
.page-guide-top figure figcaption {
  position: absolute;
  right: 5px;
  bottom: 5px;
  font-size: var(--fz10);
}
.page-guide-top figure figcaption.cap-white {
  color: var(--color-white);
}
.page-guide-top figure figcaption.cap-fit {
  right: 0;
  bottom: 0;
}

.guide-top-sec7 {
  margin-bottom: 0;
  padding-top: 25px;
  border-top: 1px solid #ddd;
}
@media screen and (min-width: 768px) {
  .guide-top-sec7 ul {
    display: flex;
    justify-content: space-between;
  }
}
.guide-top-sec7 ul li {
  padding-right: 15px;
  padding-left: 15px;
}
@media screen and (min-width: 768px) {
  .guide-top-sec7 ul li {
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 767px) {
  .guide-top-sec7 ul li:nth-child(1) {
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .guide-top-sec7 ul li:nth-child(2), .guide-top-sec7 ul li:nth-child(3) {
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: 1px solid #ddd;
  }
}
@media screen and (min-width: 768px) {
  .guide-top-sec7 ul li:nth-child(2), .guide-top-sec7 ul li:nth-child(3) {
    border-left: 1px solid #ddd;
  }
}
.guide-top-sec7 ul li:nth-child(2) {
  text-align: center;
}
.guide-top-sec7 ul li:nth-child(2) p:first-child {
  font-size: var(--fz16);
  font-weight: 700;
  color: var(--color-blue);
}
@media screen and (max-width: 767px) {
  .guide-top-sec7 ul li:nth-child(3) {
    text-align: center;
  }
}
.guide-top-sec7 ul li:nth-child(3) p {
  display: flex;
  align-items: center;
  font-size: var(--fz18);
  font-weight: 700;
  color: var(--color-blue);
}
@media screen and (max-width: 767px) {
  .guide-top-sec7 ul li:nth-child(3) p {
    justify-content: center;
  }
}
.guide-top-sec7 ul li:nth-child(3) p em {
  font-style: normal;
  font-size: var(--fz14);
}
.guide-top-sec7 ul li:nth-child(3) span {
  font-size: var(--fz12);
}

.nav-lower {
  margin-bottom: 40px;
  background-color: #fff;
  border: 2px solid var(--color-main);
  border-radius: 5px;
}
.nav-lower ul {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .nav-lower ul li:last-child {
    border-left: 2px solid var(--color-main);
  }
}
@media screen and (min-width: 768px) {
  .nav-lower ul li:nth-child(n+2) {
    border-left: 2px solid var(--color-main);
  }
}
.nav-lower ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 10px 5px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #222;
  text-decoration: none;
  text-align: center;
  line-height: 1.5;
  transition: all 0.4s;
}
@media screen and (min-width: 768px) {
  .nav-lower ul li a {
    padding: 15px;
    font-size: 1.6rem;
  }
}
.nav-lower ul li a:hover {
  color: var(--color-main);
}
.nav-lower ul li a.active {
  background-color: var(--color-main);
  color: var(--color-white);
}
.nav-lower ul li a em {
  display: block;
  font-size: 1rem;
  font-style: normal;
  letter-spacing: 0;
}
.nav-lower-3 ul li {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .nav-lower-3 ul li:first-child {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .nav-lower-3 ul li {
    width: 33.3333333333%;
  }
}

.modal {
  display: none;
}

.modal.is-open {
  display: block;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal__container {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 0;
  max-width: 1100px;
  max-height: 90vh;
  overflow-y: auto;
}

@media screen and (max-width: 767px) {
  .modal__container {
    max-height: 86vh;
    margin-right: 15px;
    margin-left: 15px;
  }
}
.modal__btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  margin: 0;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: var(--color-main);
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  outline: none;
  transition: all 0.3s;
  z-index: 100;
}

@media screen and (max-width: 767px) {
  .modal__btn {
    width: 60px;
    height: 60px;
  }
}
.modal__btn:hover {
  background-color: #fff;
  color: #ac9559;
}

.modal__btn::before,
.modal__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 27px;
  background: #fff;
}

.modal__btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal__btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__btn:hover::before,
.modal__btn:hover::after {
  background: #ac9559;
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.modal-inner {
  padding: 3vw;
  background-color: #fff;
}

.modal-ttl {
  padding: 3.5vw 1vw;
  background-color: #087525;
  color: var(--white);
  line-height: 1;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .modal-ttl {
    padding: 1.5vw 1vw;
  }
}
.modal-discription {
  padding: 4vw;
}

@media screen and (min-width: 768px) {
  .modal-discription {
    padding: 2vw;
  }
}
.modal-discription-cols {
  display: flex;
  width: 100%;
}

.guide-top-sec8 .company-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .guide-top-sec8 .company-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.guide-top-sec8 .company-list li {
  outline: 1px solid #ddd;
  cursor: pointer;
}
.guide-top-sec8 .company-list li:hover {
  outline-color: var(--color-main);
}

@media screen and (min-width: 768px) {
  .modal-sec8-row {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .modal-sec8-left {
    width: 60%;
  }
}
.modal-sec8-left strong {
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .modal-sec8-right {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .modal-sec8-right {
    width: 36%;
  }
}
.modal-sec8-right dl {
  display: flex;
  flex-wrap: wrap;
}
.modal-sec8-right dl dt,
.modal-sec8-right dl dd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ddd;
}
.modal-sec8-right dl dt:last-of-type,
.modal-sec8-right dl dd:last-of-type {
  border-bottom: none;
}
.modal-sec8-right dl dt {
  width: 9rem;
}
.modal-sec8-right dl dd {
  width: calc(100% - 9rem);
}
.modal-sec8-company {
  margin-top: 1rem;
  padding: 0.5rem;
  background-color: var(--color-blue);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .modal-sec8-company {
    font-size: 1.8rem;
  }
}
.modal-sec8-company-photo {
  margin-top: 2rem;
}
.modal-sec8-head {
  display: flex;
  justify-content: space-between;
}
.modal-sec8-head p {
  padding-top: 2.5rem;
}
.modal-sec8-head p span {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-blue);
  display: inline;
  background: linear-gradient(transparent 55%, #fe0 0%);
}
@media screen and (min-width: 768px) {
  .modal-sec8-head p span {
    font-size: 2rem;
  }
}
.modal-sec8-text {
  padding-top: 2rem;
}
.modal-sec8-text-lead {
  font-weight: 600;
}
.modal-sec8-headline {
  padding-top: 2rem;
  padding-bottom: 0.5rem;
}
.modal-sec8-headline span {
  font-size: 1.4rem;
  font-weight: 600;
  display: inline;
  background: linear-gradient(transparent 55%, #c2dae6 0%);
}
@media screen and (min-width: 768px) {
  .modal-sec8-headline span {
    font-size: 1.6rem;
  }
}
.modal-sec8-message {
  padding-top: 2rem;
  font-weight: 600;
  color: var(--color-blue);
}
.modal-sec8-recruit {
  margin-top: 2rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-top: 1px solid var(--color-blue);
  border-bottom: 1px solid var(--color-blue);
  font-size: var(--fz16);
  font-weight: 600;
  color: var(--color-blue);
  text-align: center;
}
.modal-sec8-list li {
  position: relative;
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}
.modal-sec8-list li:first-child {
  margin-top: 0;
}
.modal-sec8-list li::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-black);
}
.modal-sec8-list-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.modal-sec8-list-row li {
  width: 48%;
}
.modal-sec8-disc2 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.modal-sec8-disc2-head {
  width: 8rem;
  padding-top: 1rem;
  font-weight: 600;
  color: var(--color-blue);
}
.modal-sec8-disc2-text {
  width: calc(100% - 8rem);
  padding-top: 1rem;
}
.modal-sec8-type2-ttl {
  display: flex;
}
.modal-sec8-type2-ttl:nth-of-type(n + 2) {
  margin-top: 1rem;
}
.modal-sec8-type2-disc {
  padding-left: 1.5rem;
}

@media screen and (min-width: 768px) {
  .guide-top-sec9 .schedule-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.guide-top-sec9 .schedule-list li {
  padding: 2rem;
  background-color: #f2f7fc;
}
@media screen and (max-width: 767px) {
  .guide-top-sec9 .schedule-list li:nth-child(n+2) {
    margin-top: 2rem;
  }
}
.guide-top-sec9 .schedule-list li .schedule-ttl {
  padding-bottom: 1rem;
  font-weight: 600;
  font-size: var(--fz18);
}
.guide-top-sec9 .schedule-list li .schedule-discription {
  padding-top: 1rem;
}
.guide-top-sec9 .schedule-list li dl {
  display: flex;
  flex-wrap: wrap;
}
.guide-top-sec9 .schedule-list li dl dt,
.guide-top-sec9 .schedule-list li dl dd {
  margin-top: 1rem;
}
.guide-top-sec9 .schedule-list li dl dt {
  width: 7rem;
}
.guide-top-sec9 .schedule-list li dl dt span {
  display: block;
  width: 100%;
  background-color: var(--color-blue);
  color: var(--color-white);
  text-align: center;
}
.guide-top-sec9 .schedule-list li dl dd {
  width: calc(100% - 7rem);
  padding-left: 1rem;
}
.guide-top-sec9 .joint-solo {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .guide-top-sec9 .joint-solo {
    display: flex;
  }
}
.guide-top-sec9 .joint-solo-ttl {
  position: relative;
  display: inline-flex;
  font-size: 1.8rem;
  font-weight: 700;
  color: #254e92;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .guide-top-sec9 .joint-solo-ttl {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .guide-top-sec9 .joint-solo-left {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .guide-top-sec9 .joint-solo-right {
    margin-top: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .guide-top-sec9 .joint-solo-right {
    flex: 1 0 0;
    padding-left: 2rem;
  }
}
.guide-top-sec9 .joint-solo-right dl {
  display: flex;
  flex-wrap: wrap;
}
.guide-top-sec9 .joint-solo-right dl dt,
.guide-top-sec9 .joint-solo-right dl dd {
  margin-top: 1rem;
}
.guide-top-sec9 .joint-solo-right dl dt {
  width: 7rem;
}
.guide-top-sec9 .joint-solo-right dl dt span {
  display: block;
  width: 100%;
  background-color: #254e92;
  color: var(--color-white);
  text-align: center;
}
.guide-top-sec9 .joint-solo-right dl dd {
  width: calc(100% - 7rem);
  padding-left: 1rem;
}
.guide-top-sec9 .joint-partner {
  margin-top: 3rem;
  text-align: center;
}
.guide-top-sec9 .joint-partner p {
  padding-bottom: 1rem;
}
.guide-top-sec9 .joint-btn {
  margin-top: 3rem;
  text-align: center;
}
.guide-top-sec9 .joint-btn a {
  font-size: 2.6rem;
  letter-spacing: 0;
}
.guide-top-sec9 .joint-event {
  background-color: #fabe00;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .guide-top-sec9 .joint-event {
    display: flex;
    align-items: center;
  }
}
.guide-top-sec9 .joint-event-left {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .guide-top-sec9 .joint-event-left {
    width: 30rem;
  }
}
.guide-top-sec9 .joint-event-right {
  flex: 1 0 0;
}
.guide-top-sec9 .joint-event-right-inner {
  padding-bottom: 1rem;
}
@media screen and (min-width: 1025px) {
  .guide-top-sec9 .joint-event-right-inner {
    display: flex;
    justify-content: space-between;
  }
}
.guide-top-sec9 .joint-event-ttl {
  position: relative;
  display: inline-flex;
  font-size: 4.2rem;
  font-weight: 700;
  color: #254e92;
  line-height: 1.5;
  letter-spacing: 0;
}
.guide-top-sec9 .joint-event-text1 {
  font-weight: 700;
  font-size: 1.6rem;
}
.guide-top-sec9 .joint-event-text1 span {
  color: #b9193b;
  text-shadow: 1px 1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, -1px -1px 0 #fff;
}
.guide-top-sec9 .joint-event-text2 {
  font-weight: 700;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .guide-top-sec9 .joint-event-text2 {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .guide-top-sec9 .joint-event-text3 {
    margin-top: 1rem;
    text-align: center;
  }
}
.guide-top-sec9 .joint-event-text3 span {
  padding: 1rem;
  background-color: #fff;
  border-radius: 5px;
  font-weight: 700;
  font-size: 3rem;
  color: #b9193b;
}
.guide-top-sec9 .joint-event1 {
  position: relative;
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .guide-top-sec9 .joint-event1 {
    padding: 3rem;
  }
}
.guide-top-sec9 .joint-event2 {
  position: relative;
  margin-top: 3rem;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .guide-top-sec9 .joint-event2 {
    padding: 3rem;
  }
}
.guide-top-sec9 .joint-box {
  position: relative;
  margin-top: 5rem;
  background-color: #fabe00;
  padding: 1.5rem;
}
@media screen and (min-width: 768px) {
  .guide-top-sec9 .joint-box {
    padding: 3rem;
  }
}
.guide-top-sec9 .joint-ill {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .guide-top-sec9 .joint-ill {
    display: none;
  }
}
.guide-top-sec9 .joint-ttl {
  position: relative;
  font-size: 2.8rem;
  font-weight: 700;
  color: #254e92;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .guide-top-sec9 .joint-ttl {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .guide-top-sec9 .joint-ttl {
    display: inline-flex;
    font-size: 4rem;
  }
}
.guide-top-sec9 .joint-ttl-sub {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fabe00;
  text-shadow: 1px 1px 0 #254e92, 1px -1px 0 #254e92, -1px 1px 0 #254e92, -1px -1px 0 #254e92;
}
@media screen and (min-width: 768px) {
  .guide-top-sec9 .joint-ttl-sub {
    font-size: 2.2rem;
  }
}
.guide-top-sec9 .joint-ttl-box {
  position: relative;
  margin-bottom: 3rem;
}
.guide-top-sec9 .joint-ttl-bubble {
  position: absolute;
  top: -2rem;
  right: -1rem;
  display: inline-block;
  margin-bottom: 2rem;
  padding: 1.1rem;
  background-color: #fabe00;
  border-radius: 9999rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #254e92;
}
@media screen and (min-width: 768px) {
  .guide-top-sec9 .joint-ttl-bubble {
    right: -7rem;
    font-size: 1.3rem;
  }
}
.guide-top-sec9 .joint-ttl-bubble::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 70%;
  border-style: solid;
  border-width: 10px 4px 0 4px;
  border-color: #fabe00 transparent transparent;
  translate: -50% 100%;
  transform: skew(22deg);
  transform-origin: top;
  left: 50%;
  transform: skew(-22deg);
}
@media screen and (min-width: 768px) {
  .guide-top-sec9 .joint-cols {
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .guide-top-sec9 .joint-cols {
    flex-wrap: wrap;
  }
}
.guide-top-sec9 .joint-cols:nth-of-type(n + 2) {
  border-top: 1px dotted #254e92;
}
.guide-top-sec9 .joint-col {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .guide-top-sec9 .joint-col {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media screen and (min-width: 1025px) {
  .guide-top-sec9 .joint-col {
    width: 33.3333333333%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .guide-top-sec9 .joint-col:first-child {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .guide-top-sec9 .joint-col:first-child {
    padding-top: 3rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .guide-top-sec9 .joint-col:nth-child(n+2) {
    width: 50%;
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .guide-top-sec9 .joint-col:last-child {
    padding-bottom: 2rem;
  }
}
.guide-top-sec9 .joint-schedule {
  display: flex;
}
.guide-top-sec9 .joint-schedule span:first-child {
  width: 11rem;
}
.guide-top-sec9 .joint-schedule-ttl {
  font-size: 2rem;
  font-weight: 700;
  color: #fabe00;
  text-shadow: 1px 1px 0 #254e92, 1px -1px 0 #254e92, -1px 1px 0 #254e92, -1px -1px 0 #254e92;
}
@media screen and (max-width: 767px) {
  .guide-top-sec9 .joint-day {
    text-align: center;
  }
}
.guide-top-sec9 .joint-day strong {
  display: flex;
  align-items: flex-end;
  font-size: 2.6rem;
  font-weight: 700;
  color: #254e92;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .guide-top-sec9 .joint-day strong {
    justify-content: center;
  }
}
.guide-top-sec9 .joint-day strong span {
  padding-left: 0.5rem;
  font-size: 4.6rem;
}
.guide-top-sec9 .joint-day p {
  font-size: 2rem;
  font-weight: 700;
  color: #fabe00;
  text-shadow: 1px 1px 0 #254e92, 1px -1px 0 #254e92, -1px 1px 0 #254e92, -1px -1px 0 #254e92;
}
.guide-top-sec9 .joint-flows {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid #254e92;
  border-bottom: 1px solid #254e92;
}
@media screen and (min-width: 1025px) {
  .guide-top-sec9 .joint-flows {
    display: flex;
    align-items: stretch;
  }
}
.guide-top-sec9 .joint-flow:first-child {
  background-color: #254e92;
}
@media screen and (max-width: 1024px) {
  .guide-top-sec9 .joint-flow:first-child {
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .guide-top-sec9 .joint-flow:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10rem;
    text-align: center;
  }
}
.guide-top-sec9 .joint-flow:first-child p {
  color: #fff;
  padding: 0.5rem;
  font-size: 1.6rem;
  font-weight: 600;
}
@media screen and (min-width: 1025px) {
  .guide-top-sec9 .joint-flow:first-child p {
    padding: 1rem;
    font-size: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .guide-top-sec9 .joint-flow:last-child {
    padding-left: 2rem;
  }
}
.guide-top-sec9 .joint-flow-ttl {
  font-size: 1.6rem;
  font-weight: 600;
  color: #fabe00;
  text-shadow: 1px 1px 0 #254e92, 1px -1px 0 #254e92, -1px 1px 0 #254e92, -1px -1px 0 #254e92;
}
.guide-top-sec9 .joint-flow span {
  letter-spacing: 0;
}

.guide-top-sec10-copy {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-blue);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .guide-top-sec10-copy {
    padding-bottom: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .guide-top-sec10-copy {
    font-size: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .guide-top-sec10-voice {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .guide-top-sec10-voice-left {
    flex: 1 0 0;
    padding-right: 20px;
  }
}
@media screen and (min-width: 768px) {
  .guide-top-sec10-voice-right {
    width: 30%;
  }
}
.guide-top-sec10-name {
  padding-top: 1rem;
}
.guide-top-sec10-name span {
  font-size: 1.8rem;
  line-height: 1.2;
}
.guide-top-sec10-career {
  padding-top: 1rem;
}
.guide-top-sec10-lead {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-blue);
  font-weight: 600;
  color: var(--color-blue);
}
.guide-top-sec10-head {
  padding-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-blue);
}
.guide-top-sec10-article {
  padding: 2rem;
  background-color: #f2f7fc;
}
@media screen and (min-width: 768px) {
  .guide-top-sec10-article {
    padding: 4rem;
  }
}
.guide-top-sec10-box {
  margin-top: 2.5rem;
}
.guide-top-sec10-box-first {
  margin-top: 0;
}
.guide-top-sec10-img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  .guide-top-sec10-img {
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .guide-top-sec10-img {
    max-width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .guide-top-sec10-img-left {
    float: left;
    margin: 0 20px 0 0;
  }
}
@media screen and (min-width: 768px) {
  .guide-top-sec10-img-right {
    float: right;
    margin: 0 0 0 20px;
  }
}
.guide-top-sec10-img figure {
  position: relative;
}
.guide-top-sec10-img figure figcaption {
  position: absolute;
  left: 5px;
  bottom: 5px;
  font-size: 1.1rem;
}
.guide-top-sec10-img figure figcaption span {
  padding-right: 3px;
  padding-left: 3px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .guide-top-sec10-in {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .guide-top-sec10-in-left {
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  .guide-top-sec10-in-right {
    width: 48%;
  }
}
.guide-top-sec10-acc {
  margin-top: 20px;
  border: 1px solid var(--color-blue);
  border-radius: 5px;
}
.guide-top-sec10-acc-ttl {
  position: relative;
  padding: 10px 20px;
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .guide-top-sec10-acc-ttl {
    padding: 20px;
    font-size: 1.8rem;
  }
}
.guide-top-sec10-acc-ttl .icn-faq {
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  border-radius: 50%;
  border: 1px solid var(--color-white);
  display: inline-block;
  transition: all 0.4s;
}
@media screen and (min-width: 768px) {
  .guide-top-sec10-acc-ttl .icn-faq {
    width: 34px;
    height: 34px;
  }
}
.guide-top-sec10-acc-ttl .icn-faq span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  background-color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .guide-top-sec10-acc-ttl .icn-faq span {
    left: 10px;
    width: 12px;
    height: 2px;
  }
}
.guide-top-sec10-acc-ttl .icn-faq span:nth-of-type(1) {
  transform: rotate(0deg);
}
@media screen and (min-width: 768px) {
  .guide-top-sec10-acc-ttl .icn-faq span:nth-of-type(1) {
    top: 15px;
  }
}
.guide-top-sec10-acc-ttl .icn-faq span:nth-of-type(2) {
  transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  .guide-top-sec10-acc-ttl .icn-faq span:nth-of-type(2) {
    top: 15px;
  }
}
.guide-top-sec10-acc-ttl .icn-faq.open span:nth-of-type(2) {
  transform: rotate(180deg);
}
.guide-top-sec10-acc-ttl .icn-faq.open span:nth-of-type(1) {
  display: none;
}
.guide-top-sec10-acc-inner {
  position: relative;
  display: none;
  padding: 20px;
  background-color: var(--color-white);
}

.guide-top-sec12-row {
  display: flex;
  justify-content: space-between;
}
.guide-top-sec12-ttl {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .guide-top-sec12-ttl {
    font-size: 2.6rem;
  }
}
.guide-top-sec12-ttl span {
  color: var(--color-blue);
}
@media screen and (max-width: 767px) {
  .guide-top-sec12-right {
    display: none;
  }
}

.remodal {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 0;
  max-width: 1100px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-inner {
  text-align: left;
}

.remodal-close {
  left: inherit;
  right: 0;
  background-color: var(--color-main);
  color: var(--color-white);
}

@media screen and (min-width: 768px) {
  .signage-discription {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .signage-discription-text {
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  .signage-discription-photo {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .signage-discription-photo {
    width: 48%;
  }
}
@media screen and (min-width: 768px) {
  .signage-discription:nth-of-type(2) {
    margin-top: 50px;
  }
}
.signage-ttl {
  margin-bottom: 36px;
  background-color: var(--color-main);
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .signage-ttl {
    display: grid;
    grid-template-columns: 1fr 14rem;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .signage-ttl-logo {
    padding-bottom: 1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .signage-ttl-logo {
    padding-right: 1.5rem;
  }
}
.signage-ttl .ttl {
  margin-bottom: 0;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .signage-ttl .ttl {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    font-size: 2.6rem;
  }
}
.signage-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .signage-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.signage-list li {
  outline: 1px solid #ddd;
  cursor: pointer;
}
.signage-list li:hover {
  outline-color: var(--color-main);
}
@media screen and (min-width: 768px) {
  .signage-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.signage-info li {
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .signage-info li {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .signage-info li {
    padding-bottom: 2rem;
  }
}
.signage-info dl {
  display: flex;
}
.signage-info dl dt {
  width: 10rem;
}
.signage-info dl dd {
  width: calc(100% - 10rem);
}

.meeting {
  padding: 1rem;
  background-color: #fabe00;
}
@media screen and (min-width: 768px) {
  .meeting {
    padding: 3rem;
  }
}
.meeting-kv {
  border-radius: 0.5rem 0.5rem 0 0;
  overflow: hidden;
}
.meeting-inner {
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 0 0 0.5rem 0.5rem;
}
@media screen and (min-width: 768px) {
  .meeting-inner {
    padding: 3rem;
  }
}
.meeting-ttl {
  font-size: 2.5rem;
  font-weight: 700;
  color: #254e92;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .meeting-ttl {
    font-size: 5rem;
  }
}
.meeting-date {
  margin-top: 1rem;
  margin-bottom: 2.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 1px solid #b8193b;
  border-bottom: 1px solid #b8193b;
  font-size: 2rem;
  font-weight: 700;
  color: #b8193b;
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .meeting-date {
    font-size: 4rem;
  }
}
.meeting-date span {
  font-size: 4rem;
  vertical-align: bottom;
}
@media screen and (min-width: 768px) {
  .meeting-date span {
    font-size: 6rem;
  }
}
@media screen and (min-width: 768px) {
  .meeting-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .meeting-info li:last-child {
    margin-top: 1rem;
  }
}
.meeting-info dl {
  display: flex;
}
.meeting-info dl dt {
  width: 6rem;
}
.meeting-info dl dt span {
  padding: 0.5rem 1rem;
  background-color: #b8193b;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .meeting-info dl dt span {
    font-size: 1.5rem;
  }
}
.meeting-info dl dd {
  flex: 1 0 0;
}
.meeting-place dd {
  color: #254e92;
}
.meeting-place dd p {
  padding-bottom: 1rem;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .meeting-place dd p {
    font-size: 3rem;
  }
}
.meeting-place dd span {
  font-weight: 500;
  line-height: 1.2;
}
.meeting-target dd p {
  padding-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: #254e92;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .meeting-target dd p {
    font-size: 1.6rem;
  }
}
.meeting-target dd span {
  display: block;
  margin-left: 1em;
  text-indent: -1em;
  font-size: 1.15rem;
  line-height: 1.4;
}
.meeting-discription {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .meeting-discription {
    margin-top: 4rem;
  }
}
.meeting-discription-ttl {
  padding-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
  color: #254e92;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .meeting-discription-ttl {
    font-size: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .meeting-cols2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
.meeting-sub {
  position: relative;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: #f1f7fb;
  font-size: 1.8rem;
  font-weight: 700;
  color: #254e92;
  line-height: 1;
}
.meeting-sub::before, .meeting-sub::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1.5rem;
  height: 100%;
  transform: skew(-13deg, 0deg);
}
.meeting-sub::before {
  right: 1rem;
  background: var(--color-blue);
}
.meeting-sub::after {
  right: -0.5rem;
  background: var(--color-yellow);
}
.meeting-schedule {
  display: flex;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #333;
}
.meeting-schedule span:first-child {
  width: 9.5rem;
  letter-spacing: 0;
}
.meeting-schedule span:last-child {
  flex: 1 0 0;
}
.meeting-lecture {
  position: relative;
  margin-top: 3rem;
  padding: 2rem 1.5rem;
  background-color: #f1f7fb;
  box-shadow: 0.5rem 0.5rem 0 0 #e9eaea;
}
@media screen and (min-width: 768px) {
  .meeting-lecture {
    padding: 2rem;
  }
}
.meeting-lecture::after {
  content: "LECTURE";
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.4rem;
  font-weight: 700;
  color: #f8d77f;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .meeting-lecture::after {
    top: 2rem;
    right: 2rem;
    font-size: 2.8rem;
  }
}
.meeting-lecture-ttl {
  font-size: 2rem;
  font-weight: 700;
  color: #254e92;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .meeting-lecture-ttl {
    font-size: 2.4rem;
  }
}
.meeting-lecture-sub {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #254e92;
  line-height: 1;
}
.meeting-lecture-cols {
  display: flex;
}
.meeting-lecture-col:first-child {
  flex: 1 0 0;
  padding-right: 0.5rem;
}
.meeting-lecture-col:first-child p {
  line-height: 1.5;
}
.meeting-lecture-col:last-child {
  width: 40%;
}
.meeting-lecture-col:last-child span {
  margin-top: 1rem;
  display: block;
  font-weight: 700;
  color: #254e92;
  line-height: 1;
  text-align: center;
}
.meeting-cols3 {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .meeting-cols3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.meeting-join {
  border-bottom: 1px solid #b8193b;
}
.meeting-join-cols {
  margin-top: 3rem;
  padding: 1.5rem;
  background-color: #b8193b;
  border-radius: 1rem;
}
@media screen and (min-width: 768px) {
  .meeting-join-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .meeting-join-col:first-child {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .meeting-join-col:first-child img {
    margin: 0 auto;
    transform: rotate(90deg);
  }
}
.meeting-join-col:first-child p {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .meeting-join-col:first-child p:first-child {
    text-align: center;
  }
}
.meeting-join-col:first-child p:last-child {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .meeting-join-col:first-child p:last-child {
    margin-left: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .meeting-join-col:last-child {
    text-align: center;
  }
}
.meeting-join-col:last-child a {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 1.8rem;
  letter-spacing: 0;
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .meeting-join-col:last-child a {
    width: 100%;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .meeting-join-col:last-child a {
    padding-top: 3rem;
    padding-bottom: 3rem;
    font-size: 2.4rem;
  }
}
.meeting-open {
  margin-top: 4rem;
}
.meeting-open p {
  padding-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
  color: #254e92;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .meeting-open p {
    font-size: 3rem;
  }
}
.meeting-open p span {
  background: linear-gradient(transparent 60%, var(--color-yellow) 0%);
}
@media screen and (max-width: 767px) {
  .meeting-exchange {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .meeting-exchange {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}
@media screen and (max-width: 767px) {
  .meeting-exchange p {
    padding-bottom: 1rem;
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .meeting-exchange p {
    flex: 1 0 0;
    padding-right: 1rem;
  }
}
.meeting-exchange img {
  width: 16.8rem;
  height: 13.3rem;
}/*# sourceMappingURL=style2.css.map */