@charset "UTF-8";
/*	共通部分
-------------------------------	*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-optical-sizing: auto;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  font-weight: 400;
  font-display: swap;
  line-height: 2;
  letter-spacing: auto;
}

img {
  width: 100%;
  height: auto;
}

p {
  margin-bottom: 1rem;
}

.small {
  font-size: 1.4rem;
}

.sp {
  display: none;
}
@media screen and (min-width: 480px) {
  .sp {
    display: block;
  }
}

@media screen and (min-width: 480px) {
  .pc {
    display: none;
  }
}
a {
  color: #0076de;
}

.btn {
  display: block;
  text-decoration: none;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 2rem;
  font-weight: bold;
  text-align: left;
}
.btn:hover {
  transition: all 0.5s ease 0s;
}
@media screen and (min-width: 768px) {
  .btn {
    font-size: 3rem;
  }
}

.btn_radius {
  margin: 3rem auto 0;
  border-radius: 30px;
  background-position: 91% 50%;
  background-size: 32px;
  width: 100%;
  max-width: 250px;
  text-align: center;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .btn_radius {
    padding-top: 15px;
    padding-bottom: 15px;
    background-size: 40px;
    max-width: 360px;
  }
}

.page_top_btn {
  border-radius: 50%;
  box-shadow: none !important;
}

.right-circle {
  background-position: 100% 50%;
  background-size: 30px;
  color: #333333;
  font-size: 2rem;
  width: 100%;
  max-width: 215px;
}

#info .right-circle {
  margin: 3rem auto;
  background-image: url(../images/svg/arrow_circle-2.svg);
}

h2 {
  margin-bottom: 3rem;
  text-align: center;
}

.wrap {
  position: relative;
  margin: 0 auto;
  width: 90%;
  max-width: 1110px;
}

/*	HEADER
-------------------------------	*/
header {
  background-image: url(../images/svg/top_footprints.svg);
  background-position: 100% 50%;
  background-size: 70%;
  overflow: hidden;
}
header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 980px;
}
header img {
  margin-top: -20px;
  width: 150px;
}
@media screen and (min-width: 1120px) {
  header img {
    margin-top: -20px;
    width: 180px;
  }
}

#g-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background: #0076de;
  transition: all 0.6s;
}
#g-nav.panelactive {
  right: 0;
}
#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#g-nav ul {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
#g-nav ul li {
  list-style: none;
  text-align: center;
}
#g-nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 3rem;
}
@media screen and (min-width: 1120px) {
  #g-nav {
    position: relative;
    top: inherit;
    right: inherit;
    background: inherit;
    height: inherit;
    max-width: 690px;
  }
  #g-nav ul {
    position: relative;
    top: inherit;
    left: inherit;
    transform: inherit;
    list-style: none;
    display: flex;
    justify-content: space-between;
  }
  #g-nav ul li a {
    text-decoration: none;
    color: #333333;
    font-size: 1.6rem;
  }
  #g-nav ul li a:hover {
    text-decoration: underline;
  }
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: #0076de;
  border-radius: 30px;
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #ffffff;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}
.openbtn.active span:nth-of-type(1), .openbtn.active span:nth-of-type(3) {
  left: 18px;
  width: 50%;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  transform: translateY(6px) rotate(-45deg);
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  transform: translateY(-6px) rotate(45deg);
}
@media screen and (min-width: 1120px) {
  .openbtn {
    display: none;
  }
}

/*	FOOTER
-------------------------------	*/
footer {
  padding-top: 3rem;
  padding-bottom: 3rem;
  text-align: center;
}
footer .footer__banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  margin-bottom: 3rem;
  padding: 0 2%;
  width: 100%;
}
footer .footer__banner li {
  width: 49%;
}
@media screen and (min-width: 768px) {
  footer .footer__banner {
    margin: 0 auto;
    max-width: 680px;
  }
  footer .footer__banner li {
    width: 30%;
  }
}

#mainvisual {
  margin: 0 auto;
  width: 100%;
  max-width: 960px;
}
#mainvisual figure img {
  margin: 0 auto;
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 960px;
}

#top-about {
  background-color: #64dcfa;
  padding: 15rem 0 6rem 0;
  background-image: url(../images/svg/bg_search.svg);
  background-size: 600px;
  background-position: 50% -1px;
}
@media screen and (min-width: 768px) {
  #top-about h2 {
    margin-bottom: 6rem;
  }
  #top-about h2 img {
    margin: 0 auto;
    width: 100%;
    max-width: 690px;
  }
}

.youthyell-mark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .youthyell-mark {
    flex-direction: row;
  }
}
.youthyell-mark figure {
  margin: 0 auto;
  width: 200px;
  text-align: center;
}
.youthyell-mark__desc {
  width: 100%;
  color: #ffffff;
  font-size: 1.8rem;
}
.youthyell-mark__desc p:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .youthyell-mark__desc {
    margin-bottom: 6rem;
    width: 68%;
    font-size: 2.4rem;
    line-height: 1.8;
  }
}

#search {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0076de;
}
#search h2 {
  color: #ffffff;
  font-size: 2.4rem;
}
#search span {
  color: #ffac00;
}

#search .search_body {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #search .search_body {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 980px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 3rem;
  }
}
#search input,
#search select {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  box-sizing: border-box;
  background: #ffffff;
}
#search .form-row {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
}
@media screen and (min-width: 768px) {
  #search .form-row {
    flex-direction: column;
    width: 24%;
  }
}
#search .form-row label[for=area],
#search .form-row label[for=industry],
#search .form-row label[for=overtimehours],
#search .form-row label[for=s] {
  width: 55%;
  padding: 0 0 0 3rem;
  color: #ffffff;
  background-position: 0 50%;
  background-size: 21px;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  #search .form-row label[for=area],
  #search .form-row label[for=industry],
  #search .form-row label[for=overtimehours],
  #search .form-row label[for=s] {
    width: 100%;
    padding: 0 0 0 5rem;
    background-size: 38px;
    line-height: 2;
  }
}
#search .form-row label[for=area] {
  background-image: url(../images/svg/srch-icon_1.svg);
}
#search .form-row label[for=industry] {
  background-image: url(../images/svg/srch-icon_2.svg);
}
#search .form-row label[for=overtimehours] {
  background-image: url(../images/svg/srch-icon_3.svg);
}
#search .form-row label[for=s] {
  background-image: url(../images/svg/srch-icon_4.svg);
}
#search .form-row label[for=area]::after,
#search .form-row label[for=industry]::after,
#search .form-row label[for=overtimehours]::after {
  content: "";
  position: absolute;
  bottom: 30px;
  right: 16px;
  width: 12px;
  height: 12px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
}
#search [type=submit] {
  display: block;
  margin: 3rem auto 0;
  padding: 0.5rem;
  width: 50%;
  max-width: 500px;
  background-color: #ffac00;
  border-radius: 5px;
  font-size: 1.8rem;
  font-weight: bold;
}

.youthyell-merit {
  background-color: #64dcfa;
  padding-top: 135px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .youthyell-merit {
    padding-top: 250px;
    padding-bottom: 10rem;
    font-size: 2.8125rem;
  }
  .youthyell-merit p {
    margin-bottom: 6rem;
  }
}
.youthyell-merit__head {
  position: relative;
}
.youthyell-merit__contents {
  padding: 3rem;
  background-color: #ffffff;
  border-radius: 30px;
  color: #333333;
  text-align: center;
  background-image: url(../images/svg/bg_youthyell.svg);
  background-position: 90% 90%;
  background-size: 50%;
}
@media screen and (min-width: 768px) {
  .youthyell-merit__contents {
    padding: 6rem 9rem;
    background-position: 90% 50%;
    background-size: 20%;
  }
}
.youthyell-merit em {
  color: #ff0000;
  text-decoration: underline;
  font-style: normal;
}
.youthyell-merit .bear_big,
.youthyell-merit .bear_small {
  position: absolute;
  width: 100%;
  bottom: -5px;
  max-width: 85px;
}
@media screen and (min-width: 768px) {
  .youthyell-merit .bear_big,
  .youthyell-merit .bear_small {
    max-width: 150px;
  }
}
.youthyell-merit .bear_big {
  left: 0;
}
.youthyell-merit .bear_small {
  right: 0;
}
.youthyell-merit h3 {
  margin: -80px auto 3rem;
  padding-top: 10rem;
  font-size: 6.8125rem;
  line-height: 1;
  background-image: url(../images/svg/heading_merit.svg);
  background-position: 50% 0;
  background-size: 150px;
}
.youthyell-merit h3 img {
  width: 100%;
  max-width: 150px;
}
@media screen and (min-width: 768px) {
  .youthyell-merit h3 {
    margin: -120px auto 6rem;
    background-size: 320px;
  }
  .youthyell-merit h3 img {
    margin: 6rem auto 0;
    max-width: 320px;
  }
}
.youthyell-merit h3 span {
  display: block;
  font-size: 3rem;
}

.youthyell-merit .btn_radius,
#yamagata_shinsotsu .btn_radius,
#youth .btn_radius {
  background-image: url(../images/svg/arrow_circle-1.svg);
  background-color: #0076de;
  color: #ffffff;
}
.youthyell-merit .btn_radius:hover,
#yamagata_shinsotsu .btn_radius:hover,
#youth .btn_radius:hover {
  background-image: url(../images/svg/arrow_circle-2.svg);
  background-color: #ebf6fb;
  color: #0076de;
}
.youthyell-merit .right-circle,
#yamagata_shinsotsu .right-circle,
#youth .right-circle {
  position: absolute;
  margin: 3rem 0;
  background-color: transparent !important;
  background-image: url(../images/svg/arrow_circle-2.svg);
}

#yamagata_shinsotsu .btn_radius {
  font-size: 1.4rem;
  background-size: 18px;
}

#business .btn_radius {
  background-color: #ffffea;
  color: #ffac00;
}
#business .btn_radius:hover {
  background-color: #ffac00;
  color: #ffffea;
}
#business .btn_radius {
  background-image: url(../images/svg/arrow_circle-3.svg);
}
#business .btn_radius:hover {
  background-image: url(../images/svg/arrow_circle-1.svg);
}
#business .right-circle {
  position: absolute;
  margin: 3rem 0;
  background-color: transparent !important;
  background-image: url(../images/svg/arrow_circle-3.svg);
}

#info {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url(../images/svg/bg_about.svg), url(../images/svg/bg_youth-top.svg);
  background-position: 50% -1px, 50% 100%;
  background-size: 600px, contain;
}
@media screen and (min-width: 768px) {
  #info {
    padding-bottom: 25rem;
  }
}
#info h2 img {
  width: 100%;
  max-width: 380px;
}
@media screen and (min-width: 768px) {
  #info h2 img {
    max-width: 540px;
  }
}
#info ul {
  margin: 3rem auto;
  width: 100%;
  max-width: 690px;
}
#info ul li {
  list-style: none;
  margin-bottom: 3rem;
}
#info ul li figure {
  aspect-ratio: 16/9;
}
#info ul li figure img {
  width: 100%;
  border-radius: 15px;
}
#info ul li h4 {
  margin-top: 0;
  font-size: 2rem;
}
#info ul li p {
  font-size: 1.4rem;
  line-height: 1.5;
}
#info ul li .info__cate {
  display: inline-block;
  margin-bottom: 1rem;
  margin-left: 1rem;
  padding: 0 1rem;
  color: #ffffff;
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
  background-color: #0076de;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  #info ul li {
    display: flex;
    justify-content: space-between;
  }
  #info ul li figure {
    width: 30%;
  }
  #info ul li figure img {
    width: 100%;
  }
  #info ul li .info__meta {
    width: 65%;
  }
}

.topics-carousel {
  overflow: hidden;
}

.topics {
  position: relative;
  padding-bottom: 3rem;
  margin-bottom: 10rem;
}
.topics ul {
  list-style: none;
}
.topics ul li {
  margin-right: 24px;
}
.topics ul li:last-child {
  margin-right: 0;
}
.topics ul li figure {
  display: block;
  overflow: hidden;
}
.topics ul li figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 250px;
  transition: transform 0.4s;
}
.topics ul li figure:hover > img {
  transform: scale(1.15);
}
.topics ul li figure img {
  margin-bottom: 1rem;
  border-radius: 15px;
}
.topics ul li a {
  text-decoration: none;
}
.topics ul h4 {
  margin-bottom: 2rem;
  font-weight: normal;
  font-size: 1.6875rem;
}
.topics ul .topics__meta {
  font-size: 1.6rem;
}
.topics ul .topics__date {
  margin-right: 1rem;
}
.topics ul .topics__cate {
  display: inline-block;
  padding: 0.1rem 1rem;
  color: #ffffff;
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
  font-size: 1.2rem;
}
.topics .slick-list {
  overflow: visible;
}
.topics .slick-nav-arrows {
  position: absolute;
  bottom: 0;
  right: 8%;
}
.topics .slick-arrow {
  display: inline-flex;
  margin: 1rem;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
}
.topics .slick-next {
  right: 0;
}
.topics .slick-prev {
  left: 0;
}
.topics .slick-next:before,
.topics .slick-prev:before {
  display: block;
  text-indent: -999999px;
}
.topics .slick-next.slick-disabled,
.topics .slick-prev.slick-disabled {
  display: none;
}

.recommend_nav {
  margin-top: 5rem;
  padding-top: 8rem;
  padding-bottom: 10rem;
  background-size: 600px;
  background-position: 50% -1px;
}
.recommend_nav h3 {
  padding: 3rem 0;
  text-align: center;
  line-height: 1.5;
}
.recommend_nav h3 span {
  display: block;
  font-size: 2.4rem;
}
.recommend_nav ul {
  margin: 0 auto;
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 980px;
}
.recommend_nav ul li {
  width: 49%;
}
@media screen and (min-width: 768px) {
  .recommend_nav ul li {
    width: 24%;
  }
}

#youth,
#business {
  padding-top: 3rem;
  background-size: 50%;
  background-position: 90% 0;
}
#youth h2 img,
#business h2 img {
  width: 100%;
  max-width: 400px;
}
@media screen and (min-width: 768px) {
  #youth h2 img,
  #business h2 img {
    max-width: 690px;
  }
}
#youth h3,
#business h3 {
  text-align: center;
  font-size: 4rem;
}
@media screen and (min-width: 768px) {
  #youth h3,
  #business h3 {
    text-align: left;
    font-size: 5rem;
  }
}
#youth h3 img,
#business h3 img {
  width: 100%;
  max-width: 120px;
}
@media screen and (min-width: 768px) {
  #youth h3 img,
  #business h3 img {
    max-width: 165px;
  }
}
#youth p,
#business p {
  margin-bottom: 6rem;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #youth p,
  #business p {
    font-size: 2.5rem;
  }
}

#youth {
  background-color: #ebf6fb;
  background-image: url(../images/svg/youth_footprints.svg);
}
#youth .topics__cate {
  background-color: #00afde;
}
#youth .recommend_nav {
  background-image: url(../images/svg/bg_youth.svg), url(../images/svg/bg_business-top.svg);
  background-position: 50% -1px, 100% 100%;
  background-size: 600px, contain;
  background-color: #64dcfa;
}
@media screen and (min-width: 768px) {
  #youth .recommend_nav {
    padding-bottom: 25rem;
  }
}
#youth .recommend_nav h3 {
  font-size: 3.5rem;
  color: #ffffff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #youth .recommend_nav h3 {
    font-size: 5rem;
  }
}
#youth .slick-next {
  background-image: url(../images/svg/arrow_youth-left.svg);
}
#youth .slick-prev {
  background-image: url(../images/svg/arrow_youth-right.svg);
}

#business {
  background-color: #ffffea;
  background-image: url(../images/svg/biz_footprints.svg);
}
#business h2 {
  color: #ffac00;
}
#business .topics__cate {
  background-color: #ffac00;
}
#business .recommend_nav {
  background-image: url(../images/svg/bg_business.svg);
  background-color: #ffac00;
}
#business .recommend_nav h3 {
  font-size: 3.5rem;
  color: #ffffff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #business .recommend_nav h3 {
    font-size: 5rem;
  }
}
#business .slick-next {
  background-image: url(../images/svg/arrow_biz-left.svg);
}
#business .slick-prev {
  background-image: url(../images/svg/arrow_biz-right.svg);
}

.single__cate {
  display: inline-block;
  margin-bottom: 1rem;
  margin-left: 2rem;
  padding: 0 1rem;
  color: #ffffff;
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
  background-color: #0076de;
  font-size: 1.4rem;
}

#single {
  margin-top: 10rem;
}
#single .date {
  font-size: 2.4rem;
}

.post-categories {
  list-style: none;
  display: flex;
}
.post-categories a {
  margin-right: 1rem;
  padding: 0.5rem 1rem;
  color: #ffffff;
  background-color: #0076de;
  border-radius: 15px;
  text-decoration: none;
}

/*#page*/
.page__header .wrap,
.page__content .wrap {
  max-width: 980px;
}

.page__header {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ebf6fb;
  background-image: url(../images/svg/youth_footprints.svg);
}
@media screen and (min-width: 768px) {
  .page__header {
    padding-top: 0;
  }
}
.page__header h2 {
  font-size: 3.2rem;
}
.page__header p {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .page__header {
    padding-top: 36px;
  }
  .page__header h2 {
    font-size: 4.2rem;
    text-align: left;
  }
  .page__header p {
    font-size: 1.6rem;
  }
}

.page__content {
  padding-inline: 5.3333vw;
}
.page__content h3 {
  font-size: 2.8rem;
  line-height: 1.6;
}
.page__content p {
  margin-top: 1.5rem;
  font-size: 1.8rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .page__content {
    padding: 8rem 0;
  }
  .page__content h2 {
    font-size: 3.2rem;
  }
  .page__content h3 {
    font-size: 2.8rem;
    line-height: 1.6;
  }
  .page__content p {
    margin-top: 1.4rem;
    line-height: 1.6;
  }
}

/*ユースエール*/
.youthyell .page__header {
  padding-bottom: 0;
}
.youthyell .page__header figure {
  position: relative;
  overflow: hidden;
  height: 200px;
  margin-top: 6rem;
}
@media screen and (min-width: 768px) {
  .youthyell .page__header figure {
    height: 400px;
  }
}
.youthyell .page__header figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  display: block;
}

/*nintei*/
.nintei-youthyell__box {
  display: flex;
  flex-direction: column;
  margin: 3rem 0;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 30px;
  color: inherit;
  color: #333;
}
.nintei-youthyell__box h3 {
  color: #0076de;
  text-align: center;
  font-size: 2.4rem;
}
.nintei-youthyell__box p {
  text-align: justify;
  font-size: 1.4rem;
  flex-grow: 1;
}
.nintei-youthyell .nintei-youthyell__point {
  padding: 1.5rem;
  background-color: #ebf6fb;
  color: #0076de;
  line-height: 1.5;
  text-align: justify;
  height: 110px;
  font-weight: bold;
  font-size: 1.8rem;
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  .nintei-youthyell {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .nintei-youthyell__box {
    width: 31.5%;
  }
}

.nintei__type figure {
  text-align: center;
}
.nintei__type_box {
  margin: 3rem 0;
  padding: 3rem 3rem 0rem 3rem;
  border: 1px solid #0076de;
  border-radius: 30px;
}
.nintei__type_box h3 {
  color: #0076de;
  text-align: center;
}
.nintei__type_box a {
  display: block;
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 1px solid #ccc;
  text-align: center;
  text-decoration: none;
  color: #0076de;
}
.nintei__type_box img {
  width: 100%;
  max-width: 150px;
  margin: 0 auto 3rem;
}
@media screen and (min-width: 768px) {
  .nintei__type {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .nintei__type_box {
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    width: 49%;
  }
}

.guide__youth {
  padding: 4rem 0;
  background-color: #ebf6fb;
  color: #0076de;
}
.guide__youth h2 {
  margin-bottom: 2rem;
}
.guide__youth h2 span {
  display: block;
  font-size: 2rem;
}
.guide__youth .btn {
  margin: 0 auto;
  border: 4px solid #ffffff;
  text-align: center;
  border-radius: 15px;
  color: #ffffff;
  width: 60%;
}
.guide__youth .btn:hover {
  background-color: #ffffff;
  color: #0076de;
}

.article__body {
  width: 100%;
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}
.article__body table {
  width: 100%;
  border-collapse: collapse;
}
.article__body th,
.article__body td {
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  text-align: left;
}
.article__body th {
  background-color: #f7f7f7;
  width: 36%;
}
.article__body h3 {
  margin: 8rem 0 2rem;
  padding: 1rem;
  color: #ffffff;
  background-color: #0076de;
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  .article__body {
    padding: 0 2%;
  }
  .article__body th,
  .article__body td {
    display: block;
    width: 100%;
  }
  .article__body th {
    font-weight: 600;
  }
}

.corp-meta ul {
  display: flex;
  list-style: none;
}
.corp-meta ul li {
  margin-right: 1rem;
}

.corp-note,
#srch-corp {
  background-color: #f5f5f5;
}

.corp-note {
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 1rem 2rem;
  border-radius: 15px;
  border: 1px solid #ccc;
}

.corp-description .wp-block-gallery {
  display: flex;
}

.search-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
}
.search-list li {
  padding: 1rem;
  width: 48%;
}
.search-list h3 {
  margin-top: 0;
}

.srch-corp__wrap {
  margin: 3rem 2%;
  background-color: #ffffff;
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  .srch-corp__wrap {
    margin: 3rem auto;
    width: 100%;
    max-width: 960px;
  }
}
.srch-corp__wrap a {
  text-decoration: none;
}

.srch-corp__header {
  padding: 1rem;
  background-color: #0076de;
  color: #ffffff;
  border-radius: 15px 15px 0 0;
}
@media screen and (min-width: 768px) {
  .srch-corp__header {
    padding: 1rem 2rem;
  }
}
.srch-corp__header h3 {
  font-size: 2.4rem;
}
.srch-corp__header h3 span {
  display: block;
  font-size: 1.4rem;
}
.srch-corp__header_area {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .srch-corp__header_area {
    flex-direction: row;
  }
  .srch-corp__header_area span {
    width: 70%;
  }
}
.srch-corp__header_area .btn__corp-pr {
  margin-right: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  text-align: center;
  border: 1px solid #ffac00;
  background-color: #ffac00;
  color: #0076de;
  border-radius: 15px;
  width: 100%;
  max-width: 100px;
  align-items: center;
}
.srch-corp__header_area .btn__corp-pr:hover {
  border: 1px solid #ffffff;
  background-color: #ffffff;
}
.srch-corp__header_area .btn__corp-pr:last-child {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .srch-corp__header_area .btn__corp-pr {
    border-radius: 15px;
    width: 200px;
  }
}

.srch-corp__contaner {
  padding: 2rem;
}
.srch-corp__contaner figure {
  margin-bottom: 2rem;
  display: block;
  overflow: hidden;
}
.srch-corp__contaner figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 250px;
  transition: transform 0.4s;
}
.srch-corp__contaner figure:hover > img {
  transform: scale(1.15);
}
@media screen and (min-width: 768px) {
  .srch-corp__contaner {
    display: flex;
    justify-content: space-between;
  }
  .srch-corp__contaner figure {
    width: 40%;
  }
}

.srch-corp__box .srch-corp__box-corp_pr {
  margin-bottom: 2rem;
  padding: 1.5rem;
  line-height: 1.5;
  background-color: #f5f5f5;
  border-radius: 15px;
}
.srch-corp__box span {
  display: block;
  margin-right: 2rem;
  font-weight: bold;
  color: #0076de;
}
@media screen and (min-width: 768px) {
  .srch-corp__box {
    width: 55%;
  }
}

@media screen and (min-width: 768px) {
  .srch-corp__meta {
    display: flex;
    justify-content: space-between;
  }
}
.srch-corp__meta ul {
  list-style: none;
  color: #333333;
  line-height: 1.4;
}
.srch-corp__meta ul li {
  margin-bottom: 1rem;
}

#search-guide h3 {
  font-size: 3.2rem;
}
#search-guide dl dt {
  padding: 0.2rem 2rem;
  font-size: 2.4rem;
  background-color: #add9ff;
  border-radius: 15px;
}
#search-guide dl dd {
  margin-bottom: 3rem;
  padding: 2rem;
}

.single-corp__nav {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.single-corp__nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.single-corp__nav ul li {
  margin-bottom: 1.5rem;
  width: 32%;
}
.single-corp__nav ul li a {
  padding: 1rem;
  display: block;
  background-color: #ffac00;
  color: #333333;
  text-decoration: none;
  width: 100%;
  border-radius: 15px;
  text-align: center;
}

.nav-links {
  padding: 3rem;
  font-size: 2rem;
  text-align: center;
  background-color: #ffffff;
}

.youth-support__list {
  border-collapse: collapse;
  width: 100%;
}
.youth-support__list th,
.youth-support__list td {
  padding: 10px;
  border: solid 1px #ccc;
  box-sizing: border-box;
}
.youth-support__list th {
  background: #64dcfa;
  color: #ffffff;
}
.youth-support__list td:first-child {
  background: #ebf6fb;
  font-weight: bold;
  width: 330px;
}
.youth-support__list td:last-child {
  width: 140px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .youth-support__list {
    width: 100%;
  }
  .youth-support__list .head {
    display: none;
  }
  .youth-support__list td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .youth-support__list td:first-child {
    background: #64dcfa;
    color: #ffffff;
    font-weight: bold;
    width: 100%;
  }
  .youth-support__list td:last-child {
    width: 100%;
    text-align: left;
  }
  .youth-support__list tr:last-child {
    border-bottom: solid 1px #ccc;
  }
}

.youthyell__nav {
  margin-bottom: 3rem;
  padding: 2rem;
}
.youthyell__nav_box {
  margin-bottom: 3rem;
  border: #0076de solid 3px;
  border-radius: 15px;
}
.youthyell__nav_box h3 {
  font-size: 2.2rem;
  text-align: center;
}
.youthyell__nav_box p {
  margin-bottom: 0;
  font-size: 1.4rem;
}
.youthyell__nav_box .btn_right {
  text-align: right;
}
.youthyell__nav_box a {
  display: block;
  padding: 2rem;
  font-size: 1.4rem;
  text-decoration: none;
  border-radius: 11px;
  color: inherit;
  color: #ffffff;
  background-color: #0076de;
}
.youthyell__nav_box a:hover {
  color: #0076de;
  background-color: #ffffff;
  transition: all 0.5s ease 0s;
}
.youthyell__nav_box a:hover h3 {
  color: #0076de;
  transition: all 0.5s ease 0s;
}
@media screen and (min-width: 768px) {
  .youthyell__nav {
    display: flex;
    /*justify-content: space-between;*/
	justify-content: space-evenly;
    flex-wrap: wrap;
  }
  .youthyell__nav_box {
    width: 32%;
  }
}

.slider_auto div {
  display: block;
}
.slider_auto div img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s;
  aspect-ratio: 16/9;
}
@media screen and (min-width: 480px) {
  .slider_auto div img {
    width: 100%;
    height: 250px;
  }
}
@media screen and (min-width: 768px) {
  .slider_auto div img {
    width: 100%;
    height: 250px;
  }
}
.slider_auto div:hover > img {
  transform: scale(1.15);
}

#yamaharo_ig,
#yamagata_shinsotsu,
#yamaharo_yt {
  margin: 6rem auto 2rem;
  width: 100%;
  max-width: 300px;
}
#yamaharo_ig img,
#yamagata_shinsotsu img,
#yamaharo_yt img {
  width: 100%;
}

/**/
.bg_gray {
  padding-bottom: 6rem;
  background-color: #f5f5f5;
}

@media screen and (min-width: 768px) {
  .news-archive__wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

.news-archive__items {
  margin-top: 6rem;
  border-radius: 15px;
  background-color: #ffffff;
}
.news-archive__items a {
  text-decoration: none;
  color: #333333;
}
.news-archive__items a:hover {
  color: #333333;
}
@media screen and (min-width: 768px) {
  .news-archive__items {
    width: 32%;
  }
}

.c-news-archive {
  border-radius: 15px;
  position: relative;
  z-index: 1;
}

.c-news-archive {
  display: block;
  background-color: #fff;
}

.c-news-archive__content {
  padding: 2rem;
}

.c-news-archive__thumbnail img {
  aspect-ratio: 376/226;
  width: 100%;
  height: 226px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px 15px 0 0;
}

.c-news-archive__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.14rem;
}

.c-news-archive__meta {
  display: flex;
}
@media screen and (min-width: 768px) {
  .c-news-archive__meta {
    margin-top: 2rem;
    flex-direction: column;
    font-size: 1.4rem;
    line-height: 1;
  }
}

.c-news-archive__date {
  margin-right: 2rem;
}

.youthyell__content {
  margin-bottom: 3rem;
}
.youthyell__content .youthyell__block h3,
.youthyell__content .youthyell__block h4 {
  color: #0076de;
}
.youthyell__content .youthyell__block p {
  font-size: 1.6rem;
}
.youthyell__content .youthyell__block ul {
  margin-left: 1.5rem;
  font-size: 1.2rem;
  line-height: 1.5;
}
.youthyell__content .youthyell__service {
  margin-top: 3rem;
  padding: 1.5rem 2.5rem;
  background-color: #f5f5f5;
}
.youthyell__content .btn {
  margin: 1rem 0 1rem auto;
  font-size: 1.4rem;
  color: #ffffff;
  background-color: #0076de;
  border-radius: 15px;
  width: 100%;
  max-width: 200px;
  text-align: center;
}
.youthyell__content figure {
  width: 100%;
}
.youthyell__content figure img {
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  .youthyell__content {
    display: flex;
    justify-content: space-between;
  }
  .youthyell__content figure {
    width: 45%;
  }
}
.youthyell__content .youthyell__block {
  width: 50%;
}/*# sourceMappingURL=style.css.map */