@charset "UTF-8";
@media screen and (max-width: 768px) {
  .columns-layout {
    display: flex;
    flex-direction: column;
  }
}

.columns-layout__main {
  display: flex;
}
@media screen and (max-width: 768px) {
  .columns-layout__main {
    display: contents;
  }
}

.columns-layout__content {
  width: 83%;
}
@media screen and (max-width: 768px) {
  .columns-layout__content {
    width: 100%;
  }
}

.columns-layout__wrapper {
  background-color: white;
  padding: 40px;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .columns-layout__wrapper {
    padding: 16px 16px 32px;
  }
}

.columns-layout__wrapper--detail {
  padding: 26px 40px 40px 40px;
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .columns-layout__wrapper--detail {
    padding: 16px 16px 32px;
  }
}

.columns-layout__wrapper--search {
  display: block;
  background: linear-gradient(90.29deg, #78efda 0%, #36cfcf 100%);
}
@media screen and (max-width: 768px) {
  .columns-layout__wrapper--search {
    display: none;
  }
}

.columns-layout__wrapper:not(:first-child) {
  margin-top: 40px;
}

.columns-layout__button {
  display: flex;
  justify-content: center;
  margin-top: 21px;
}
@media screen and (max-width: 768px) {
  .columns-layout__button {
    margin-top: 16px;
  }
}

.columns-layout__side-bar {
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  .columns-layout__side-bar {
    order: 3;
    margin-left: 0;
  }
}

.columns-layout__search-list {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .columns-layout__search-list {
    margin-top: 14px;
  }
}

.columns-layout__category:not(:first-child) {
  margin-top: 25px;
}

.columns-layout__category-tag {
  margin-top: 9px;
}

.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 100%;
}

.footer__wrapper {
  width: 100%;
  background: linear-gradient(90.29deg, #868686 0%, #404041 100%);
  padding: 40px 0;
}

.footer__logo {
  max-width: 248px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    max-width: 195px;
  }
}

.footer__logo img {
  aspect-ratio: 248/90;
}

.footer__container {
  margin: 0 auto;
  margin-top: 32px;
  max-width: 830px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer__container {
    padding: 0 32px;
  }
}

.footer__list {
  display: flex;
  -moz-column-gap: 32px;
       column-gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 3px;
}
@media screen and (max-width: 768px) {
  .footer__list {
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}

.footer__list:not(:first-child) {
  margin-top: 16px;
}

.footer__item a {
  font-size: 15px;
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 0.05em;
  text-align: center;
  color: white;
}
@media screen and (max-width: 768px) {
  .footer__item a {
    font-size: 13px;
    line-height: 13px;
  }
}

.footer__copy {
  background: linear-gradient(90.29deg, #78efda 0%, #36cfcf 100%);
  display: flex;
  justify-content: center;
  font-family: Noto Sans JP;
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 14px 0;
  color: white;
  width: 100%;
}

.header {
  background-color: white;
  width: 100%;
  height: 80px;
  display: flex;
  padding-left: 130px;
}
@media screen and (max-width: 768px) {
  .header {
    display: contents;
    height: 64px;
    padding-left: 155px;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  margin-left: 26px;
}
@media screen and (max-width: 768px) {
  .header__inner {
    height: 64px;
  }
}

.header__logo {
  max-width: 49.26px;
}
@media screen and (max-width: 768px) {
  .header__logo {
    max-width: 38.96px;
  }
}

.header__logo img {
  aspect-ratio: 49.26/46.21;
}

.header__text {
  max-width: 141.46px;
  margin-left: 6.85px;
}
@media screen and (max-width: 768px) {
  .header__text {
    max-width: 111.88px;
  }
}

.header__text img {
  aspect-ratio: 141.46/45.16;
}

.inner {
  max-width: 1178px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 16px;
  }
}

.latest-article {
  background-color: white;
  border-radius: 8px;
  padding: 24px;
}
@media screen and (max-width: 768px) {
  .latest-article {
    padding: 16px;
  }
}

.latest-article__title {
  display: flex;
  border-bottom: 2px solid #00bdbd;
  padding-bottom: 2px;
  align-items: center;
}

.latest-article__title h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.05em;
  text-align: left;
  margin-left: 4px;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .latest-article__title h2 {
    font-size: 18px;
    line-height: 28.8px;
  }
}

.latest-article__logo {
  max-width: 40px;
}

.latest-article__logo img {
  aspect-ratio: 1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.latest-article__item {
  display: flex;
  align-items: center;
}

.latest-article__item:hover .latest-article__text p {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-color: #3599e8;
          text-decoration-color: #3599e8;
  color: #3599e8;
}

.latest-article__item:not(:first-child) {
  margin-top: 8px;
}

.latest-article__img {
  max-width: 84px;
  min-width: 84px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .latest-article__img {
    max-width: 122px;
  }
}

.latest-article__img img {
  aspect-ratio: 84/42;
  width: 100%;
  margin-top: 7px;
  object-fit: cover;
  border-radius: 8px;
}

.latest-article__text {
  margin-left: 8px;
}

.latest-article__text time {
  font-size: 11px;
  font-weight: 500;
  line-height: 15.4px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #8d9999;
}

.latest-article__text p {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16.8px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #333333;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.latest-article__more {
  margin-top: 24px;
}

.latest-article__more-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.latest-article__more-text {
  font-size: 13px;
  font-weight: 700;
  line-height: 13px;
  letter-spacing: 0.05em;
  text-align: right;
  color: #00bdbd;
}
@media screen and (max-width: 768px) {
  .latest-article__more-text {
    font-size: 12px;
    line-height: 12px;
  }
}

.latest-article__more-triangle {
  background: #00bdbd;
  height: calc(tan(60deg) * 8px / 2);
  width: 6px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  margin-left: 8px;
}

.search-box {
  display: flex;
  width: 100%;
}

.search-box {
  display: flex;
  width: 100%;
}

.search-box input[type=text] {
  background-color: white;
  padding: 0.7rem 0 0.7rem 0.8rem;
  border: 1px solid #c8d9d9;
  border-right: none;
  border-radius: 1.5rem 0 0 1.5rem;
  color: #8d9999;
}

.search-box button {
  cursor: pointer;
  padding: 10px 0;
  border-radius: 0 1.5rem 1.5rem 0;
  border: 1px solid #c8d9d9;
  background-color: #f8f8f8;
  color: #fff;
  font-size: 0.75rem;
  border-left: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

input {
  width: 76.3%;
}
input::-moz-placeholder {
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.05em;
  color: #8d9999;
}
input::placeholder {
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.05em;
  color: #8d9999;
}

.search-box__logo img {
  aspect-ratio: 1;
  width: 16px;
}

.search-box__logo {
  width: 23%;
}

.side-banner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.side-banner__item {
  max-width: 280px;
}
@media screen and (max-width: 768px) {
  .side-banner__item {
    max-width: unset;
  }
}

.side-banner__item img {
  aspect-ratio: 280/75;
  width: 100%;
}

.triangle-item {
  padding: 0 8px 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #c8d9d9;
}
@media screen and (max-width: 768px) {
  .triangle-item {
    padding: 0 8px 0 9px;
    padding-bottom: 11px;
  }
}

.triangle-item__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.triangle-item:not(:first-child) {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .triangle-item:not(:first-child) {
    margin-top: 11px;
  }
}

.triangle-item__title {
  font-family: Noto Sans JP;
  font-size: 18px;
  font-weight: 700;
  line-height: 28.8px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .triangle-item__title {
    font-size: 14px;
    line-height: 22.4px;
  }
}

.triangle-item__title--side {
  font-size: 13px;
  line-height: 13px;
  font-weight: 400;
}

.triangle-item__triangle {
  background: #00bdbd;
  height: calc(tan(60deg) * 18px / 2);
  width: 12px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: #00bdbd;
}
@media screen and (max-width: 768px) {
  .triangle-item__triangle {
    height: calc(tan(60deg) * 12px / 2);
    width: 8px;
  }
}

.triangle-item__triangle--side {
  height: calc(tan(60deg) * 12px / 2);
  width: 8px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.search-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid #8d9999;
  padding-bottom: 8px;
}

.search-title__logo {
  max-width: 40px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .search-title__logo {
    max-width: 38px;
  }
}

.search-title__logo img {
  aspect-ratio: 1;
}

.search-title h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 38.4px;
  letter-spacing: 0.07em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .search-title h2 {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.07em;
  }
}

.side-bar {
  width: 28.5%;
}
@media screen and (max-width: 768px) {
  .side-bar {
    width: 100%;
    margin-top: 45px;
  }
}

.side-bar__search-box {
  margin-top: 24px;
}

.side-bar__banners {
  margin-top: 24px;
}

.side-bar__latest {
  margin-top: 31px;
}
@media screen and (max-width: 768px) {
  .side-bar__latest {
    margin-top: 26px;
  }
}

.side-bar__ranking {
  margin-top: 27px;
}

.tag-list {
  display: flex;
  -moz-column-gap: 4px;
       column-gap: 4px;
  row-gap: 8px;
  flex-wrap: wrap;
}

.tag-list--category {
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .tag-list--category {
    gap: 16px;
  }
}

.tag-list--side {
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 8px;
}

.tag {
  list-style: none;
  display: inline-block;
}

.tag__name {
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  letter-spacing: 0.05em;
  text-align: left;
  text-align: left;
  color: #00bdbd;
  display: block;
}
@media screen and (max-width: 768px) {
  .tag__name {
    font-size: 13px;
    line-height: 20.8px;
  }
}

@media screen and (max-width: 768px) {
  .tag__name--ranking {
    font-size: 11px;
    line-height: 19.2px;
  }
}

.tag__name--side-ranking {
  font-size: 12px;
  line-height: 17.6px;
}

.tag__name--category {
  color: #333;
  font-size: 14px;
  line-height: 14px;
}

.tag__name--side {
  color: #333;
  font-size: 13px;
  line-height: 13px;
}
@media screen and (max-width: 768px) {
  .tag__name--side {
    font-size: 14px;
    line-height: 14px;
  }
}

.pentagon-tag {
  position: relative;
}

.pentagon-tag span {
  font-size: 11px;
  font-weight: 400;
  line-height: 11px;
  letter-spacing: 0.05em;
  position: absolute;
  top: 5px;
  left: 6px;
  color: #333333;
  padding: 1px 0;
}

.pentagon-tag--detail span {
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
}

.pentagon-tag img {
  width: 54px;
  height: 23px;
}

.pentagon-tag--detail img {
  height: 28px;
}

.pentagon-tag--ranking {
  display: block;
}
@media screen and (max-width: 768px) {
  .pentagon-tag--ranking {
    display: none;
  }
}

.article-bread {
  display: flex;
  font-size: 12px;
  padding-top: 32px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .article-bread {
    padding-top: 8px;
  }
}

.article-bread--list {
  padding-top: 8px;
}
@media screen and (max-width: 768px) {
  .article-bread--list {
    padding-top: 8px;
  }
}

.article-bread__home {
  color: #00bdbd;
  border-bottom: 1px solid #00bdbd;
  padding-bottom: -5px;
  white-space: nowrap;
}

.article-bread span {
  margin-left: 5px;
}

.article-bread__current {
  margin-left: 5px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.article-bread__icon {
  width: 5px;
  margin-left: 5px;
  margin-right: 5px;
}
@media screen and (max-width: 550px) {
  .article-bread__icon {
    width: 14px;
  }
}

@media screen and (max-width: 550px) {
  .article-bread__icon--list {
    width: 5px;
  }
}

.article-bread__icon img {
  aspect-ratio: 5/7;
  width: 100%;
}

@media screen and (max-width: 550px) {
.article-bread__icon img {
    aspect-ratio: 5/5;
  }
}

html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", "Noto Serif JP", sans-serif;
  color: #333333;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

button {
  transition: opacity 0.3s;
}
button:hover {
  opacity: 0.8;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.article-detail {
  background-image: url(../images/bg-img.jpg);
  background-position: 0px -75px;
  background-size: contain;
}

.article-detail__bread {
  padding-top: 32px;
}
@media screen and (max-width: 768px) {
  .article-detail__bread {
    padding-top: 10px;
  }
}

.article-detail__layout {
  margin-top: 32px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .article-detail__layout {
    margin-top: 12px;
    padding-bottom: 40px;
  }
}

.work-intro {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .work-intro {
    margin-bottom: 24px;
  }
}

.work-intro__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 51.2px;
  letter-spacing: 0.05em;
  text-align: left;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .work-intro__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 28.8px;
  }
}

.work-intro__tag {
  margin-top: 8px;
}

.work-intro__tag-link {
  margin-top: 8px;
}

.work-intro__image-wrapper {
  margin-top: 40px;
  max-width: 748px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.work-intro__image-wrapper:hover img {
  transform: scale(1.1);
}
@media screen and (max-width: 768px) {
  .work-intro__image-wrapper {
    margin-top: 24px;
  }
}

.work-intro__image-wrapper img {
  aspect-ratio: 748/374;
  width: 100%;
  /* height: 100%; */
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .work-intro__image-wrapper img {
    aspect-ratio: 311/145;
  }
}

.toc__header {
  background-color: #f8f8f8;
  padding: 16px 7px 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border: 1px solid #3e4d4c;
}
@media screen and (max-width: 768px) {
  .toc__header {
    padding: 6px 16px;
  }
}

.toc-header-active {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.toc__header-left {
  display: flex;
  align-items: center;
}

.toc__logo {
  width: 24px;
}
@media screen and (max-width: 768px) {
  .toc__logo {
    width: 16px;
  }
}

.toc__title {
  margin-left: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.05em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .toc__title {
    font-size: 16px;
    line-height: 25.6px;
    letter-spacing: 0.05em;
  }
}

.toc__logo img {
  aspect-ratio: 1;
  width: 100%;
}

.toc__triangle {
  width: 12px;
}
@media screen and (max-width: 768px) {
  .toc__triangle {
    width: 10px;
  }
}

.toc__triangle.active img {
  transform: rotate(180deg); /* 180度回転して上下反転 */
}

.toc__triangle img {
  transition: transform 0.3s ease; /* スムーズな回転 */
  aspect-ratio: 10/14;
  width: 100%;
}

.pr-img {
  margin-bottom: 40px;
}

.toc__content {
  border: 1px solid #3e4d4c;
  border-top: none;
  padding: 16px 24px 24px 40px;
  max-height: 220px;
  overflow: hidden;
  position: relative;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
@media screen and (max-width: 768px) {
  .toc__content {
    padding: 6px 24px 24px 30px;
    max-height: 163px;
  }
}

.toc__content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 36%;
  background-color: rgba(255, 255, 255, 0.3);
}

.toc__more-button {
  z-index: 1000;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #38c2c2;
  border: 1px solid #38c2c2;
  border-radius: 84px;
  height: 46px;
  max-width: 180px;
  padding: 0 52px;
  top: 158px;
  background-color: white;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0.03em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .toc__more-button {
    width: 180px;
    top: 100px;
    left: 41vw;
  }
}

.toc__content.is-expanded::after {
  display: none;
}

.toc__close-text {
  display: none;
}

.toc__more-button.is-active .toc__more-text {
  display: none;
}

.toc__more-button.is-active .toc__close-text {
  display: inline;
}

.toc__content.is-expanded .toc__more-button {
  position: static;
  transform: none;
  margin-top: 10px;
  text-align: center;
}

.toc__content.is-expanded {
  max-height: unset;
}

.toc_button-wrapper {
  display: flex;
  justify-content: center;
}

.detail__text {
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  letter-spacing: 0.05em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .detail__text {
    font-size: 13px;
    line-height: 23.4px;
    margin-bottom: 24px;
  }
}

.detail__text span {
  background: linear-gradient(transparent 50%, #a1e9e9 0%);
  line-height: 1.3em;
}

.detail__img {
  max-width: 748px;
  width: 100%;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .detail__img {
    margin-bottom: 24px;
  }
}

.detail__img img {
  aspect-ratio: 748/490;
  width: 100%;
  border-radius: 8px;
}

.detail__toc {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .detail__toc {
    margin-bottom: 24px;
  }
}

.detail__shear {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .detail__shear {
    margin-top: 24px;
  }
}

.heading-star {
  position: relative;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .heading-star {
    margin-bottom: 25px;
  }
}

.heading-star__box {
  height: 24px;
}

.heading-star__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 38.4px;
  letter-spacing: 0.05em;
  text-align: left;
  position: relative;
  padding-left: 65px;
}
@media screen and (max-width: 768px) {
  .heading-star__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 25.6px;
    letter-spacing: 0.05em;
    padding-left: 49px;
  }
}

.heading-star__title::before {
  position: absolute;
  content: "";
  bottom: -12px;
  left: 0;
  border-top: 1px dotted #00bdbd; /*上の線*/
  border-bottom: 2px solid #00bdbd; /*下の線*/
  width: 100%;
  height: 7px; /*空けたい隙間＋上の線＋下の線*/
}
@media screen and (max-width: 768px) {
  .heading-star__title::before {
    bottom: -9px;
  }
}

.heading-star__title::after {
  position: absolute;
  content: "";
  top: -12px;
  left: 0;
  border-bottom: 1px dotted #00bdbd; /*上の線*/
  border-top: 2px solid #00bdbd; /*下の線*/
  width: 100%;
  height: 7px; /*空けたい隙間＋上の線＋下の線*/
}

.heading-star__logo {
  max-width: 60.98px;
  width: 100%;
  position: absolute;
  top: 2px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .heading-star__logo {
    max-width: 44.28px;
    top: 6px;
    left: -3px;
  }
}

.heading-star__logo img {
  aspect-ratio: 60.98/84;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .heading-star__logo img {
    aspect-ratio: 44.28/53;
  }
}

.tag-text {
  background-color: #ebffff;
  padding: 15px 25px 32px;
  margin-bottom: 56px;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .tag-text {
    padding: 6px 17px 32px;
    margin-bottom: 32px;
  }
}

.tag-text__content {
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  letter-spacing: 0.05em;
  text-align: left;
  margin-top: 14px;
}
@media screen and (max-width: 768px) {
  .tag-text__content {
    font-size: 13px;
    font-weight: 400;
    line-height: 23.4px;
  }
}

.tag-text__flag {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  line-height: 25.6px;
  letter-spacing: 0.05em;
  text-align: left;
  color: white;
  background-color: #00bdbd;
  display: inline-block;
  margin-left: -31px;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.1019607843);
  padding: 8px 16px;
}
@media screen and (max-width: 768px) {
  .tag-text__flag {
    font-size: 13px;
    font-weight: 600;
    line-height: 20.8px;
    padding: 4px 12px;
    margin-left: -23px;
  }
}

.tag-text__flag::before {
  content: "";
  position: absolute;
  top: 41px;
  left: 0;
  border-style: solid;
  border-color: transparent #0097a7 transparent transparent;
  border-width: 0 7px 7px 0;
}
@media screen and (max-width: 768px) {
  .tag-text__flag::before {
    border-width: 0 5px 5px 0;
    top: 29px;
  }
}

.list-content {
  background-color: #f8f8f8;
  list-style-type: none; /* 親要素リストのマーカーを消す */
  padding: 29px 32px 32px 49px;
  margin: 0;
  border-radius: 8px;
  margin-bottom: 56px;
  border: 1px solid #3e4d4c;
}
@media screen and (max-width: 768px) {
  .list-content {
    padding: 17px 32px 14px 31px;
    margin-bottom: 32px;
  }
}

.list-content__item {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 25.6px;
  letter-spacing: 0.05em;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 768px) {
  .list-content__item {
    font-size: 13px;
    font-weight: 400;
    line-height: 20.8px;
    letter-spacing: 0.05em;
    text-align: left;
    margin-bottom: 3px;
  }
}

.list-content__item::before {
  content: "";
  position: absolute;
  left: -17px;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: #00bdbd;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .list-content__item::before {
    left: -15px;
    top: 6px;
  }
}

.list-content__child {
  margin-top: 12px;
  list-style-type: decimal; /* 小要素リストは番号付き */
  margin-left: 28px;
  padding-left: 0;
  color: #00bdbd;
}

.list-content__child-item {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  letter-spacing: 0.05em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .list-content__child-item {
    font-size: 13px;
    line-height: 20.8px;
    letter-spacing: 0.05em;
    text-align: left;
  }
}

.list-content__child-text {
  color: #333 !important;
}

.heading-stripe {
  position: relative;
  margin-bottom: 24px;
}

.heading-stripe::before,
.heading-stripe::after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid #00bdbd;
}

.heading-stripe::before {
  right: -3px;
  top: -5px;
  background-color: #00bdbd;
}

.heading-stripe::after {
  left: -3px;
  bottom: -5px;
  background-color: #00bdbd;
}

.heading-stripe__title {
  padding: 16px 15px;
  border: 2px solid #00bdbd;
  position: relative;
  outline: 1px dotted #00bdbd;
  outline-offset: -5px;
}
@media screen and (max-width: 768px) {
  .heading-stripe__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.05em;
    text-align: left;
    padding: 8px 15px;
  }
}

.heading-stripe__title::before,
.heading-stripe__title::after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid #00bdbd;
}

.heading-stripe__title::before {
  left: -5px;
  top: -7px;
  background-color: #00bdbd;
}

.heading-stripe__title::after {
  right: -5px;
  bottom: -7px;
  background-color: #00bdbd;
}

/*その他の設定*/
*,
::before,
::after {
  box-sizing: border-box;
}

h3 {
  color: #333;
}

.heading-chapter {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .heading-chapter {
    margin-bottom: 16px;
  }
}

.heading-chapter__circle-wrapper {
  position: relative;
}

.heading-capter__circle {
  width: 71.33px;
}
@media screen and (max-width: 768px) {
  .heading-capter__circle {
    width: 41.34px;
  }
}



.heading-chapter__circle-wrapper span {
  font-family: Noto Serif JP;
  font-size: 11px;
  font-weight: 600;
  line-height: 16.5px;
  letter-spacing: 0.04em;
  text-align: center;
  padding-top: 9px;
  position: absolute;
  color: white;
  left: 16px;
  top: 0;
}
@media screen and (max-width: 768px) {
  .heading-chapter__circle-wrapper span {
    font-size: 6.37px;
    font-weight: 600;
    line-height: 9.56px;
    left: 10px;
    top: -3px;
  }
}

.heading-chapter__number {
  font-family: Noto Serif JP;
  font-size: 26px;
  font-weight: 600;
  line-height: 39px;
  letter-spacing: 0.04em;
  text-align: center;
  position: absolute;
  top: 18px;
  color: white;
  left: 26px;
}
@media screen and (max-width: 768px) {
  .heading-chapter__number {
    font-size: 15.07px;
    font-weight: 600;
    line-height: 22.6px;
    left: 16px;
    top: 11px;
  }
}

.heading-chapter__title {
  font-size: 24px;
  font-weight: bold;
  line-height: 38.4px;
  letter-spacing: 0.05em;
  text-align: left;
  margin-left: 8px;
}
@media screen and (max-width: 768px) {
  .heading-chapter__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 25.6px;
    text-align: left;
    margin-left: 5px;
  }
}

.heading-circle {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .heading-circle {
    margin-bottom: 16px;
  }
}

.heading-circle__wrapper {
  position: relative;
}

.heading-circle__logo {
  width: 50.96px;
}
@media screen and (max-width: 768px) {
  .heading-circle__logo {
    width: 25.34px;
  }
}

.heading-circle__logo img {
  aspect-ratio: 50.96/50.01;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .heading-circle__logo img {
    aspect-ratio: 25.34/24.86;
  }
}

.heading-circle__number {
  font-family: Noto Serif JP;
  font-size: 22px;
  font-weight: 600;
  line-height: 33px;
  letter-spacing: 0.04em;
  text-align: center;
  text-align: center;
  position: absolute;
  top: 6px;
  color: #00bdbd;
  width: 48px;
}
@media screen and (max-width: 768px) {
  .heading-circle__number {
    font-size: 10.94px;
    font-weight: 600;
    line-height: 16.41px;
    width: 24px;
    top: 3px;
  }
}

.heading-circler__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0.05em;
  text-align: left;
  margin-left: 8px;
}
@media screen and (max-width: 768px) {
  .heading-circler__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 24px;
    margin-left: 5px;
  }
}

.table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  border-radius: 8px;
  margin-bottom: 56px;
  border: 1px solid #00bdbd;
}
@media screen and (max-width: 768px) {
  .table {
    margin-bottom: 32px;
  }
}

.table__row {
  display: flex;
}

.table__cell {
  border-bottom: 1px solid white;
  padding: 14.2px 14.5px 14px;
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .table__cell {
    font-size: 13px;
    line-height: 23.4px;
    padding: 6px 7px;
  }
}

.table__row:nth-child(odd) .table__cell--content {
  background-color: #f8f8f8;
}

/* 最初の行 */
.table__row:first-child .table__cell--header {
  border-top-left-radius: 7px;
}

.table__row:first-child .table__cell:last-child {
  border-top-right-radius: 7px;
}

/* 最後の行 */
.table__row:last-child .table__cell--header {
  border-bottom-left-radius: 7px;
}

.table__row:last-child .table__cell:last-child {
  border-bottom-right-radius: 7px;
}

/* 最後の行のborder-bottomを削除 */
.table__row:last-child .table__cell {
  border-bottom: none;
}

.table__cell--header {
  background-color: #00bdbd;
  color: white;
  flex: none;
  border: none;
  padding: 16px;
  width: 186px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid white;
}
@media screen and (max-width: 768px) {
  .table__cell--header {
    width: 40%;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.04em;
    padding: 8px;
  }
}

.table td,
.table th {
  border-top: none;
  padding: 11px;
}
@media screen and (max-width: 768px) {
  .table td,
.table th {
    padding: 7px 3px;
  }
}

.table__cell--content {
  padding: 11px 14px !important;
}
@media screen and (max-width: 768px) {
  .table__cell--content {
    padding: 7px 5px !important;
  }
}

.table-4line {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  border-radius: 8px;
  margin-bottom: 56px;
  border: 1px solid #00bdbd;
}
@media screen and (max-width: 768px) {
  .table-4line {
    margin-bottom: 32px;
  }
}

.table-4line__row {
  display: flex;
}

.table-4line__cell {
  border-bottom: 1px solid white;
  padding: 14.2px 14.5px 14px;
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 28.8px;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .table-4line__cell {
    font-size: 13px;
    font-weight: 400;
    line-height: 23.4px;
    padding: 6px 7px;
  }
}

.table-4line__row:nth-child(odd) .table-4line__cell--content {
  background-color: #f8f8f8;
}

.table-4line__row:first-child .table-4line__cell--header:first-child {
  border-top-left-radius: 7px;
}

.table-4line__row:first-child .table-4line__cell:last-child {
  border-top-right-radius: 7px;
}

.table-4line__row:last-child .table-4line__cell {
  border-bottom: none;
}

tbody .table-4line__row:last-child .table-4line__cell:last-child {
  border-bottom-right-radius: 8px;
}

tbody .table-4line__row:last-child .table-4line__cell:first-child {
  border-bottom-left-radius: 8px;
}

.table-4line__cell--header {
  background-color: #00bdbd;
  color: white;
  flex: none;
  border: none;
  padding: 16px;
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid white;
}
@media screen and (max-width: 768px) {
  .table-4line__cell--header {
    width: 25%;
    font-size: 13px;
    line-height: 21px;
    letter-spacing: 0.04em;
    padding: 8px;
  }
}

.table-4line td,
.table-4line th {
  border-top: none;
  padding: 14px 12px;
}
@media screen and (max-width: 768px) {
  .table-4line td,
.table-4line th {
    padding: 7px;
  }
}

.table-4line__cell:not(:last-child) {
  border-right: 1px solid white;
}

.related-content {
  background-color: #f4fcfc;
  padding: 24px 16px;
  position: relative;
  border-radius: 8px;
  margin-bottom: 56px;
  border: 1px solid #00bdbd;
  box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.1019607843);
}
@media screen and (max-width: 768px) {
  .related-content {
    padding: 22px 16px;
	margin-bottom: 56px;
  }
}

.related-content span {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #00bdbd;
  padding: 8px 19px;
  font-size: 13px;
  font-weight: 600;
  line-height: 13px;
  letter-spacing: 0.04em;
  text-align: center;
  border-bottom-left-radius: 8px;
  border-top-right-radius: 8px;
  color: white;
}
@media screen and (max-width: 768px) {
  .related-content span {
    font-size: 11px;
    font-weight: 600;
    line-height: 11px;
    padding: 5px 12px;
  }
}

.related-content__wrapper {
  display: flex;
  align-items: center;
}

.related-content__img {
  max-width: 228px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .related-content__img {
    max-width: 112px;
  }
}

.related-content__img img {
  aspect-ratio: 228/107;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .related-content__img img {
    aspect-ratio: 112/52;
  }
}

.related-content__text {
  margin-left: 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 28.8px;
  letter-spacing: 0.04em;
  text-align: left;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .related-content__text {
    font-size: 13px;
    font-weight: 700;
    line-height: 23.4px;
    margin-left: 8px;
    width: 57%;
  }
}

.shear-content {
  background-color: #f8f8f8;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .shear-content {
    padding: 16px;
  }
}

.shear-content__wrapper {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .shear-content__wrapper {
    flex-direction: column;
  }
}

.shear-content__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 25.6px;
  letter-spacing: 0.05em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .shear-content__text {
    font-family: Noto Sans JP;
    font-size: 13px;
    font-weight: 700;
    line-height: 20.8px;
    letter-spacing: 0.05em;
    text-align: left;
  }
}

.shear-content__sns-list {
  margin-left: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 73%;
}
@media screen and (max-width: 1024px) {
  .shear-content__sns-list {
    margin-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .shear-content__sns-list {
    margin-left: 0;
    width: 100%;
    margin-top: 16px;
    gap: 8px;
  }
}

.shear-content__sne-item {
  max-width: 242px;
  width: 100%;
  padding: 10px 0;
  border: 1px solid #00bdbd;
  border-radius: 48px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
}

.copy-link {
  display: flex;
  align-items: center;
  position: relative;
}

.shear-content__logo {
  max-width: 28px;
  width: 100%;
}

.shear-content__logo img {
  aspect-ratio: 1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.shear-content__logo--x {
  max-width: 24px;
  width: 100%;
}

.shear-content__logo--copy {
  max-width: 16px;
  width: 100%;
}

.shear-content__copy {
  font-size: 13px;
  font-weight: 600;
  line-height: 20.8px;
  letter-spacing: 0.04em;
  text-align: left;
  margin-left: 4px;
  color: #00bdbd;
}
@media screen and (max-width: 1024px) {
  .shear-content__copy {
    font-size: 11px;
    font-weight: 600;
    line-height: 17.6px;
  }
}

.shear-content__copy-wrapper {
  position: relative;
}

.sns__popup-copy {
  opacity: 1 !important;
  display: none;
  position: absolute;
  top: 56px; /* .sns__popup よりも上に表示 */
  left: 50%;
  transform: translateX(-50%);
  background-color: #00bdbd; /* 成功メッセージの色 */
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  white-space: nowrap;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.sns__popup-copy::after {
  content: "";
  position: absolute;
  top: -35%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #00bdbd transparent; /* 成功メッセージの色 */
}

.conditions-search__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.conditions-search__logo {
  max-width: 56px;
  width: 100%;
}

.conditions-search__logo img {
  aspect-ratio: 56/47;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.conditions-search__heading-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.conditions-search__heading-line {
  width: 25px;
}

.conditions-search__heading-line img {
  aspect-ratio: 25/30;
  width: 100%;
}

.conditions-search__heading {
  font-size: 28px;
  font-weight: 700;
  line-height: 44.8px;
  letter-spacing: 0.05em;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .conditions-search__heading {
    font-size: 23px;
  }
}

.conditions-search__box {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.conditions-search__popular {
  margin-top: 40px;
}

.condition-select {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 50px;
  padding: 5px 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 38%;
  position: relative;
  height: 64px;
}

.condition-select--popular {
  width: 100%;
}

.condition-select__logo {
  max-width: 28px;
  width: 100%;
}

.condition-select__logo img {
  aspect-ratio: 1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.condition-select select {
  margin-left: 8px;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.05em;
  text-align: left;
  width: 100%;
  outline: none;
  cursor: pointer;
}

.condition-select:after {
  content: "▼";
  position: absolute;
  right: 18px;
  pointer-events: none;
  font-size: 13px;
  color: #8d9999;
}

.condition-select select option {
  font-size: 16px;
}

.search-button {
  background-color: #f97b81;
  border-radius: 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20%;
}
@media screen and (max-width: 1024px) {
  .search-button {
    width: 34%;
  }
}

.search-button__text {
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.05em;
  text-align: left;
  color: white;
}

.search-button__logo {
  max-width: 24px;
  width: 100%;
  margin-left: 8px;
}

.search-button__logo img {
  aspect-ratio: 1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.popular-content__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.popular-content__line {
  height: 1px;
  background-color: #3e4d4c;
  width: 33%;
}

.popular-content__text {
  font-size: 24px;
  font-weight: 700;
  line-height: 38.4px;
  letter-spacing: 0.05em;
  text-align: center;
}

.popular-content__prefecture {
  margin-top: 16px;
}

.popular-content__select-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 25.6px;
  letter-spacing: 0.05em;
  text-align: center;
}

.popular-content__select-prefecture {
  margin-top: 8px;
}

.popular-content__type {
  margin-top: 16px;
}

.popular-content__select-type {
  margin-top: 8px;
}

.select-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.select-list__item {
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 23px 0;
  background-color: white;
  color: #00bdbd;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.select-list__item.is-active {
  background-color: #00bdbd;
  color: #fff;
}

.outline {
  color: #00bdbd;
}

.toc__content.is-expanded .outline::after {
  display: none;
}

.outline a {
  color: #00bdbd;
  font-size: 16px;
  font-weight: 700;
  line-height: 25.6px;
  letter-spacing: 0.05em;
  text-align: left;
  border-bottom: 1px solid;
}
@media screen and (max-width: 768px) {
  .outline a {
    font-size: 13px;
    font-weight: 700;
    line-height: 20.8px;
  }
}

.outline_level_0 {
  position: relative;
  margin-top: 8px;
}

.outline_level_0::before {
  content: "";
  position: absolute;
  left: -17px;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: #00bdbd;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .outline_level_0::before {
    left: -15px;
    top: 6px;
  }
}

.outline_level_1 {
  list-style: decimal;
  margin-left: 24px;
  margin-top: 8px;
}

.outline_level_1 a {
  font-weight: normal;
}


/* 特徴コンテンツスタイル */
.work_details_feature {
  display: flex;
  margin-bottom: 40px;

  @media screen and (width < 1024px) {
    margin-bottom: 24px;
  }
}

.work_details_feature_section-barometer-list {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.work_details_feature_section-barometer-item:first-child {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .work_details_feature_section-barometer-item:first-child {
    padding-top: 8px;
  }
}
.work_details_feature_section-barometer-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 16px;
  padding-top: 16px;
  width: 100%;

  @media screen and (width < 1024px) {
    justify-content: center;
    padding-left: 15px;

    margin: auto;
    width: 550px;
  }
}
.work_details_feature_wrapper_age {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-left: 20px;
  height:48px;

  @media screen and (width < 768px) {
    padding-left: 8px;
  }
}
.work_details_feature_wrapper_image {
  display: flex;
}
.icon_cake {
  width: 52px;
  height: 48px;
}
.work_details_feature_section-barometer_owlMj {
  display: flex;
  width:240px;
  margin-right: 30px;

  background: url(../images/slide-bar-cat-face.png) center top 10px no-repeat;
  background-size: 200px;
  justify-content: space-between;
  padding-top: 8px;
  position: relative;
}
.work_details_feature_section-barometer_owlMj4pict {
  display: flex;
  width:240px;
  margin-right: 30px;
  background: url(../images/slide-bar-catface-4face.png) center top 10px no-repeat;
  background-size: 200px;
  justify-content: space-between;
  padding-top: 8px;
  position: relative;
}
.work_details_feature_section-barometer_owlMj_slide-line {
  display: flex;
  width: 240px;
  margin-right: 30px;
  background: url(../images/slide-bar-non-catface.png)  center top 10px no-repeat;
  background-size: 200px;
  justify-content: space-between;

  position: relative;
}
.work_details_feature_section-barometer_picture_work_details_level2 {
  position: absolute;
  z-index: 2;
}
.work_details_feature_section-barometer_picture_work_details_level-line {
  position: absolute;

  z-index: 2;
}
 .icon_cat_barometer {
  width: 28px;
  height: 22.29px;
 }
 .age_average {
  font-size: 13px;
  font-weight: 700;
  color:#00BDBD;
 }
 .work_details_feature_title {
  font-size: 20px;
  font-weight: 700;
  min-width: 260px;

  @media screen and (width < 768px) {
    font-size: 18px;
  }
 }
 .work_details_feature_age_category {
  display: flex;

  width: 100%;
  padding-top: 20px;
  justify-content: space-between;

  font-size: 14px;
  font-weight: 700;
  @media screen and (width < 768px) {
    font-size: 12px;
  }
 }
 .work_details_feature_action_category {
  display: flex;

  width: 100%;
  padding-top: 23px;
  justify-content: space-between;

  font-size: 14px;
  font-weight: 700;
  @media screen and (width < 768px) {
    font-size: 12px;
  }
 }

 .dotted-line {
  width: 100%;
  border-bottom: 1px dotted #00BDBD;
 }

/* 特徴１：猫メーター5個タイプ　のアイコンを移動 */
.shift_left_first_of5_1 {
  position: relative;
  left: 15px;
}
.shift_left_second_of5_2 {
  position: relative;
  left: 60px;
}
.shift_left_third_of5_3 {
  position: relative;
  left: 105px;
}
.shift_left_forth_of5_4 {
  position: relative;
  left: 150px;
}
.shift_left_fifth_of5_5 {
  position: relative;
  left: 195px;
}
/* 特徴1：猫メーター4個タイイプ　のアイコンを移動 */
.shift_left_first_of4_1 {
  position: relative;
  left: 15px;
}
.shift_left_second_of4_2 {
  position: relative;
  left: 75px;
}
.shift_left_third_of4_3 {
  position: relative;
  left: 140px;
}
.shift_left_forth_of4_4 {
  position: relative;
  left: 200px;
}

/* 特徴2：緑色メーター4個タイイプ　のアイコンを移動 */
.shift_left_first_of4_green1 {
  position: relative;
  left: 10px;
}
.shift_left_second_of4_green2 {
  position: relative;
  left: 75px;
}
.shift_left_third_of4_green3 {
  position: relative;
  left: 140px;
}
.shift_left_forth_of4_green4 {
  position: relative;
  left: 205px;
}

/* あるバイでバイトを探すリンクのスタイル */
.experience_story {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 10px;
  height: 170px;
  margin-bottom: 20px;

  font-family: 'Zen Maru Gothic';
}

.experience_story_to_arubai {
  color: #333333;
}

.experience_story_background{
  position: absolute;
  width:206px;
  height: 207px;
  right: 5px;
  z-index: 1;
  @media screen and (width < 768px) {
    margin-top: 10px;
    width: 100px;
    height: 101px;
  }
}
.experience_story_icon_wrapper {
  display: flex;
  width: 100%;
  justify-content: center;
  height: 30px;
  z-index: 2;

}
.icon_cat_action_got {
  margin-right: 10px;
  margin-top: 10px;
  width: 54px;
  height: 54px;
}
.experience_story_title {
  color:#fff;
  font-size: 24px;
  font-family: 'Zen Maru Gothic';
  line-height: 1.2em;
  display: inline-block;
  @media screen and (width < 768px) {
    display: none;
  }
}

.experience_story_title_N {
  font-weight: bold;
  font-size: 20px;
  padding-right: 10px;
  padding-left: 10px;
  font-family: 'Zen Maru Gothic';
  @media screen and (width < 768px) {
    padding-right: 10px;
    padding-left: 6px;
    font-size: 16px;
  }
}

.experience_story_city_text span {
  background: linear-gradient(transparent 50%, #a1e9e9 0%);
  line-height: 1.2em;
}

.experience_story_city_text{
  font-weight: bold;
  font-family: 'Zen Maru Gothic';
  font-size: 24px;
  color: #fff;
  text-shadow:
  -0.5px -0.5px 0.5px #00BDBD,
  1px 0px 0.8px #00BDBD,
  0px -1.2px 0.5px #00BDBD,
  -0.4px -1.7px 0.8px #00BDBD,
  -1.5px 0px 0px #00BDBD,
  -1.5px -1px 0.5px #00BDBD,
  -0.5px -1.5px 0.5px #00BDBD,
  -0.8px -0.5px 0.5px #00BDBD,
  -0.6px -0.5px 0.5px#00BDBD,
  1px -1.0px 0.5px #00BDBD,
  0.5px 1px 1px #00BDBD,
  0.5px 0px 0.5px #00BDBD,
  1px -0.5px 0.5px #00BDBD,
  -0.8px 1.2px 0.5px #00BDBD,
  0px -1px 0.5px #00BDBD,
  -1.8px 0px 1.2px #00BDBD,
  -1.5px -1px 1px #00BDBD,
  -0.5px 1px 1px #00BDBD,
  1px -0.5px 0px #00BDBD,
  1px -0.5px 0px#00BDBD,
  1px -1.2px 0px #00BDBD,
  1.2px 1.2px 0px #00BDBD,
  1.1px 0px 1px #00BDBD,
  1px 0px 0px #00BDBD,
  -0.5px 1.1px 0.5px #00BDBD,
  0px -1px 0.5px #00BDBD,
  -1.5px 0px 1px #00BDBD,
  -1.5px -1px 1px #00BDBD,
  0px 1.2px 1px #00BDBD,
  1px -0.5px 1px #00BDBD,
  1px -0.5px 1px#00BDBD,
  -1px -1.5px 1px #00BDBD,
  1px 1.5px 1px #00BDBD,
  1px 0px 0px #00BDBD,
  1px 0px 0px #00BDBD,
  1px 1px 0px #00BDBD,
  1px -1px 0.5px #00BDBD,
  -1.5px 0px 1px #00BDBD,
  -1.5px -1px 1px #00BDBD,
  0px 1.5px 1px #00BDBD,
  1px -0.5px 0.2px #00BDBD,
  1px -0.5px 0.5px#00BDBD,
  1px -1.5px 1px #00BDBD,
  1px 1px 0.8px #00BDBD,
  1px 1px 0.8px #00BDBD;

  @media screen and (width < 768px) {
    font-size: 16px;
    font-family: 'Zen Maru Gothic';
  }
}

.experience_story_title_second {
  font-size: 20px;
  font-family: 'Zen Maru Gothic';
  padding-top: 20px;
  padding-left: 20px;
  @media screen and (width < 768px) {
    font-size: 16px;
  }
}
.experience_story_title_second_single {
  font-weight: bold;
  font-size: 20px;
  font-family: 'Zen Maru Gothic';
  padding-top: 20px;
  padding-left: 20px;
  @media screen and (width < 768px) {
    font-size: 16px;
    padding-top: 15px;
  }
}

.experience_story_contents_wrapper {
  display: flex;
  align-items: center;
}

.experience_story_button_block {
  height: 100px;
}
.experience_story_search_button {
  display: flex;
  justify-content: center;
  font-family: 'Noto Sans JP';
  font-weight: 700;
  font-size: 18px;
  position: absolute;
  background: #F97B81;
  color: #fff;
  margin: 0 auto;
  border-radius: 50px;
  padding: 15px 40px;
  line-height: 1;
  bottom: 20px;
  max-width: 310px;
  height: 50px;
  z-index: 2;

}
.icon_cat_face {
  width:28px;
  height: 22px;
  margin-right: 0px;
}

/* アルバイト体験談サイドバー */
.experience-story-columns-layout__search-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-end;
	margin-top: 8px;
}

.experience-story-item__title {
  height: 29px;
  padding: 3px 14px;
  border: 1px solid #C8D9D9;
  border-radius: 88px;
  font-size: 13px;
  color: #8D9999;
  margin: 4px;
  display:inline-block;
  background: #F8F8F8;
  transition: .3s ease-in-out;
}

.experience-story-item__title:hover {
  background: #cecece;
}

.experience-story-item__title.is-active {
  color: #fff;
  background: #00BDBD;
  font-weight: 700;
  border-color: #00BDBD;
}

.experience-story-item__title:disabled {
  color: #8d9999;
  border: 1px solid #efefef;
}

/* 井上追加分 */
.recruit-company-table {
  background: #Ffff;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  border:1px solid #00BDBD;
  width: 100%;
  position: relative;
  margin-bottom: 40px;
}
.recruit-company-table-th_feature,
.recruit-company-table-th-border,
 .recruit-company-table-th-border_hidden {
  text-align: center;
  box-sizing: border-box;
  padding: 8px 10px;
  font-size: 14px;
  width: 20%;
  /* min-width: 100px; */
  background: #00BDBD;
  color: #fff;
}
.recruit-company-table-th-border,
.recruit-company-table-th_feature {
  border-bottom: 1px solid #fff;
}
.recruit-company-table td {
  width: 80%;
  font-size: 14px;
  color:#333333;
  line-height: 1.6;

  padding: 12px 10px 11px 14px;

  @media screen and (max-width: 767px) {
    padding: 8px;
    text-align: left;
  }
}
.recruit-company-table tr:nth-child(odd) td {
  background: #F8F8F8;
}

.recruit-company-table__link-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}
.recruit-company-table__link {
  /* display: block; */
  /* justify-content: flex-start; */
  /* align-items: center; */
  width: auto;
  height: 100%;
  color: #00BDBD;
  font-size: 12px;
  text-decoration: none;
  padding-top: 4.5px;
  padding-bottom: 5px;
  padding-left: 20px;
  background: url(../images/icon_map_green.webp) left -1px top 6.5px no-repeat;
  background-size: 18px;
}

.recruit-show-more-info_button-wrapper {
  display: none;
}
.recruit-show-more-info_recruiting-button-wrapper {
  display: none;
}
.recruit-description-icon-arrow_open {
  padding-top: 6px;
}
.recruit-description-icon-arrow_close {
  padding-bottom: 6px;
  transform: rotate(180deg);
}
.recruit-hidden-row {
  display: table-row;
}

@media screen and (max-width: 767px) {
  .recruit-company-table-th-border {
    padding: 6.5px;
    text-align: left;
  }
  .recruit-company-table-th-border_hidden {
    padding: 6.5px;
    text-align: left;
  }
  .recruit-description-job {
    padding-top: 10px;
  }
  .recruit-description-work-date {
    padding-top: 1px;
  }
  .recruit-description-work-time {
    padding-top: 0px;
    width: 250px;
  }
  /* .recruit-description-work-time_one-row {
    padding-top: 0px;
    width: 250px;
  } */
  .search_results__aside_block {
    display: none;
  }

  .recruit-hidden-row {
    display: none;
  }
  /* is-openクラスが付いた時は表示する */
  .recruit-table-expanded .recruit-hidden-row {
    display: table-row;
  }

  /* is-openクラスが付いた時はもっと見るボタンを隠す */
  .recruit-table-expanded .recruit-show-more-info-table_open-button {
    display: none;
  }

  /* is-openクラスが付いていない時は閉じるボタンを隠す */
  .recruit-show-more-info-table_close-button {
    display: none;
  }

  .recruit-table-expanded .recruit-show-more-info-table_close-button {
    display: inline-flex;
  }

  .favorite__section-outer {
    padding: 0;
    background: #caf5f5;
  }
  .recruit-main-title-mobile {
    display: block;
    padding: 5px 10px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    background: #00BDBD;
  }
  .recruit-company-title-mobile {
    color: #fff;
    letter-spacing: 2;

  }
  .recruit-company-name-mobile {
    color: #fff;
    letter-spacing: 2;
    font-size: 18px;
    font-weight: 700;
  }
  .recruit-company-info-popup::before {
    left: 4%;
  }
  .search_results__aside-select__recommend {
    width: 135px;
    height: 30px;
    border: none;
    box-shadow: 0px 0px 5px 0px rgba(141, 153, 153, 0.25);
  }
  .search_results__aside-select__recommend select {
    line-height: 30px;
    transform: translateY(0px);
  }
  .search_results__backgraund {
    background: #caf5f5;
    padding: 0 0 40px;
  }
  .search_results__contents-title {
    background: #00bdbd;
    padding: 1% 2%;
    font-size: 1.8rem;
    color: #fff;
  }
  .search_results__contents-title em {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
  }
  .search_results__wrap {
    display: block;
  }
  .recruit-company-table {
    width: 100%;
    margin-bottom: 40px;
  }
  .recruit-company-table th,
  .recruit-company-table td {
    display: block;
    width: 100%;
  }
  .recruit-company-table th {
    background-color: #00BDBD;
    color: #fff;
    font-weight: 700;
  }
  .recruit-show-more-info_button-wrapper {
    display: flex;
    justify-content: center;
    padding-top: 7px;
  }
  .recruit-show-more-info-table_open-button {
    border: none;
    background: none;
    cursor: pointer;

    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;

    font-size: 12px;
    color: #00BDBD;

    padding-top: 10px;
  }
  .recruit-show-more-info-table_close-button {
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: #00BDBD;
  }
  .recruit-show-more-info-table_open-button img,
  .recruit-show-more-info-table_close-button img {
    width: 14px;
    height: 12px;
  }

  .recruit-show-more-info-table_hidden-button {
    display: none;
  }
  .recruit-description-schedule-title,
  .recruit-description-schedule-term {
    font-size: 10px;
  }
  .recruit-description-system-schedule-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 10px;
    padding-bottom: 7px;

    padding-top: 4px;
  }
  .search_results__background {
    background: #caf5f5;
    padding: 0 0 70px;
  }
  .recruit-description-popup {
    right: 2%;
    width: 360px;
    height: 182px;
    top: -130px;
  }
  .recruit-company-info-text {
    height: 155px;
  }
  .search_results_aside-select_pagination {
    padding-top: 0px;
  }
}

.genre-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.genre-item {
  width: 100%;
  height: auto; /* 高さを可変に */
  padding: 0 8px 0 0;
  border-bottom: 1px solid #c8d9d9;
}
@media screen and (max-width: 768px) {
  .genre-item {
    height: auto;
    padding: 0 8px 0 0;
  }
}

.genre-item__wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.genre-item__title {
  display: inline-block;
  font-family: Noto Sans JP;
  line-height: 20px;
  letter-spacing: 0.05em;
  padding-right: 8px;
  margin-top: 16px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .genre-item__title {
    line-height: 20px;
  }
}

.genre-item__text_line-one {
  font-size: 12px;
  color: gray;
}
@media screen and (max-width: 768px) {
  .genre-item__text_line-one {
    font-size: 11px;
  }
}

.genre-item__text_line-two {
  font-size: 15px;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .genre-item__text_line-two {
    font-size: 14px;
    line-height: 20px;
  }
}

.genre-item__title--side {
  font-size: 13px;
  line-height: 13px;
  font-weight: 400;
}

.genre-item__icon {
  width: 12px; /* 矢印画像の幅に合わせて調整 */
  height: 12px; /* 矢印画像の高さに合わせて調整 */
  background-image: url('../images/icon_arrow_green.webp');
  background-size: contain; /* 画像を要素内に収める */
  background-repeat: no-repeat; /* 画像の繰り返しを防止 */
  background-position: center; /* 画像を中央に配置 */
}

/* 地域密着バナー */
.pr-container {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
}

.pr-container__img {
  width: 100%;
  overflow: hidden;
}

.pr-container__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PC用画像の表示設定 */
.pr-container__img--pc {
  display: block;
  width: 100%;
}

/* SP用画像の表示設定 */
.pr-container__img--sp {
  display: none;
  width: 100%;
}

/* スマートフォン向けの設定 */
@media screen and (max-width: 768px) {
  .pr-container__img--pc {
    display: none;
  }

  .pr-container__img--sp {
    display: block;
  }
}

/* テキストオーバーレイ全体 */
.text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.text-block {
  display: block;
  margin-bottom: 0;
  position: absolute;
  left: 5%; /* 左からの距離を固定 */
  color: white;
}

/* 上段テキスト */
.text-top {
  top: 13%; /* 上からの距離を固定 */
  font-weight: 700;
  font-size: clamp(14px, 1.8vw, 18px); /* レスポンシブなフォントサイズ */
  /* line-height: 28.8px; */
  background: linear-gradient(to right, #4BDFDF, #17BBBB);
  -webkit-background-clip: text;
  background-clip: text;
  /* -webkit-text-fill-color: transparent; */
  color: transparent;
  /* -webkit-text-stroke: 4px #029595; */
  -webkit-text-stroke: 5px #029595;
  paint-order: stroke;
}

@media screen and (max-width: 768px) {
  .text-top {
    top: 11.5%;
  }
}

.text-top::before {
  position: absolute;
  top: 0;
  content: attr(data-text);
  color: #36CFCF;
  -webkit-text-stroke: 3px #FFF;
}

/* 下段テキスト */
.text-bottom {
  top: 32%; /* 上からの距離を固定 */
  font-weight: 700;
  font-size: clamp(20px, 3.4vw, 33px);
  color: #234468;
  line-height: 1.4;
  -webkit-text-stroke: 6.5px #234468;
  /* text-stroke: 6px #234468; */
  paint-order: stroke;
  position: relative;
}

@media screen and (max-width: 768px) {
  .text-bottom {
    top: 30%;
  }
}

.text-bottom::before {
  content: attr(data-text);
  position: absolute;
  color: #234468;
  -webkit-text-stroke: 5px #FFF;
  /* text-stroke: 3px #FFF; */
}

/* 市区町村内の駅 */
.city-stations__title-wrap {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}

.city-stations__title-image {
  height: 32px;
  width: 32px;
}

.city-stations__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.05em;
}

.city-stations__title-br {
  display: none;
}

.city-stations__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0 !important;
  border: none !important;
}

.city-stations__list-item {
  list-style: none;
  display: flex;
  height: 30px;
  width: 16%;
  margin-bottom: 8px !important;
}

.city-stations__list-item::before {
  content: '';
  width: 0 !important;
  height: 0 !important;
}

.city-stations__list-item a {
  display: block;
  position: relative;
  text-decoration: none;
  color: #333333;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  border: 1px solid #00bdbd;
  border-radius: 5px;
  padding: 6px 20px 0px 8px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.city-stations__list-item span {
  position: relative;
}

.city-stations__list-item span::before {
  content: '';
  display:block;
  position: absolute;
  top: 45%;
  right: 10px;
  height: 6px;
  width: 6px;
  border-right: 1px solid #00bdbd;
  border-bottom: 1px solid #00bdbd;
  transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .city-stations__title-image {
    height: 26px;
    width: 26px;
  }
  .city-stations__title {
    font-size: 16px;
    line-height: 25.6px;
  }
  .city-stations__title-br {
    display: block;
  }
  .city-stations__list {
    margin-bottom: 24px !important;
  }
  .city-stations__list-item {
    width: 49%;
    margin-bottom: 4px !important;
  }
  .city-stations__list-item span::before {
    top: 40%;
  }
}

/**
 * 仕事内容で探す
 */
.aside-job-list {
  font-size: 13px;
  padding-top: 6px;
}

.aside-job-list__expand {
  background-color: #f4fcfc;
  border-radius: 5px;
  padding: 6px;
}

.aside-job-list__expand span {
  color: #00bdbd;
  font-size: 11px;
  padding-right: 5px;
}

.aside-job-list__expand .aside-job-list__list {
  padding-left: 0.5rem;
}

.aside-job-list__list-item {
  padding: 3px 0;
}

.aside-job-list__list-item a {
  color: #00bdbd;
  text-decoration-line: underline;
  text-decoration-color: #00bdbd;
  transition: .3s ease-in-out;
}

.aside-job-list__list-item a:hover {
  opacity: 0.7;
  text-decoration-line: underline;
  text-decoration-color: #00bdbd;
}

@media screen and (max-width: 768px) {
  .aside-job-list {
    font-size: 14px;
  }
  .aside-job-list__list-item {
    padding: 4px 0;
  }
}