@charset "UTF-8";
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

#root,
#__next {
  isolation: isolate;
}

ul, ol {
  padding-inline-start: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  color: #222;
  padding-top: 56px;
}
@media (min-width: 769px) {
  body {
    padding-top: 72px;
  }
}

.l-container {
  margin: auto;
  padding: 0 16px;
  width: 100%;
}
.l-container > *:first-child {
  margin-top: 0;
}
@media (min-width: 769px) {
  .l-container {
    padding: 0 40px;
    max-width: 1280px;
  }
  .l-container--min {
    max-width: 960px;
  }
}

.l-header {
  background: #fff;
  height: 56px;
  width: 100vw;
  position: fixed;
  top: 0;
  z-index: 100;
}
.l-header > .l-container {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
}
.l-header .c-logo {
  flex: 1 1 0;
}
@media (min-width: 769px) {
  .l-header {
    height: 72px;
  }
  .l-header > .l-container {
    gap: 24px;
  }
}

.admin-bar .l-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .l-header {
    top: 46px;
  }
}

#wp-admin-bar-aioseo-main .ab-item {
  display: flex !important;
  align-items: center;
}
#wp-admin-bar-aioseo-main .aioseo-logo {
  flex-shrink: 0;
}
#wp-admin-bar-aioseo-main .text {
  flex: 1;
}
#wp-admin-bar-aioseo-main #aioseo-menu-new-notifications {
  flex-shrink: 0;
}

.l-footer {
  background: #222;
  color: #fff;
  padding: 40px 0;
}
.l-footer a {
  color: #fff;
}

.l-main {
  padding: 28px 0 80px;
}

.l-contents {
  width: 100%;
}
.l-contents__secondary {
  width: 100%;
  margin-top: 40px;
}
@media (min-width: 993px) {
  .l-contents {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
  }
  .l-contents__primary {
    flex: 1 1 0;
  }
  .l-contents__secondary {
    width: 240px;
    margin-top: 0;
  }
}

.c-logo {
  height: 32px;
}
.c-logo img {
  height: 100%;
}
@media (min-width: 769px) {
  .c-logo {
    height: 40px;
  }
}

.c-search__trigger {
  cursor: pointer;
  background: none;
  border: none;
  vertical-align: middle;
  padding: 0;
}
.c-search__trigger::before {
  content: "";
  background: url(../../images/common/icon_search.svg) no-repeat center/18px;
  display: inline-block;
  vertical-align: middle;
  height: 18px;
  width: 18px;
}
@media (min-width: 993px) {
  .c-search__trigger {
    border: 1px solid #CACACA;
    border-radius: 4px;
    padding: 10px 16px;
    text-align: left;
    width: 170px;
  }
}

.c-search__txt {
  color: #707070;
  display: inline-block;
  vertical-align: middle;
  font-size: 1.4rem;
  line-height: 1;
  margin-left: 8px;
}
@media (max-width: 992.9px) {
  .c-search__txt {
    display: none;
  }
}

.c-search {
  position: relative;
}

#search-popup {
  background: #F9FBFD;
  border-radius: 8px;
  display: none;
  padding: 8px;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(34, 34, 34, 0.2);
}
@media (min-width: 769px) {
  #search-popup {
    padding: 16px 20px;
    width: 360px;
    position: absolute;
    top: 10px;
    left: -20px;
  }
}

.c-search.is-open #search-popup {
  display: block;
}

@media (max-width: 768.9px) {
  .c-search__popup-inner {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }
}

.c-search.is-open .c-search__trigger {
  opacity: 0.5;
}

.c-search__form {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #CACACA;
  border-radius: 4px;
  padding: 8px 15px;
}
@media (max-width: 768.9px) {
  .c-search__form {
    flex: 1 1 0;
    width: 100%;
  }
}

.c-search__submit {
  cursor: pointer;
  background: none;
  border: none;
  vertical-align: middle;
  padding: 0;
}
.c-search__submit > svg {
  display: none;
}
.c-search__submit::before {
  content: "";
  background: url(../../images/common/icon_search.svg) no-repeat center/18px;
  display: inline-block;
  vertical-align: middle;
  height: 18px;
  width: 18px;
}

.c-search__input {
  border: none;
  outline: none;
  flex: 1 1 0;
  font-size: 1.4rem;
  line-height: 1;
}

.c-search__links {
  list-style: none;
  padding: 20px;
  width: 100%;
}
.c-search__links li {
  font-size: 1.4rem;
  font-weight: bold;
}
.c-search__links li a {
  color: #222;
  text-decoration: none;
}
.c-search__links li a:hover {
  text-decoration: underline;
}
.c-search__links li + li {
  margin-top: 16px;
}
@media (min-width: 769px) {
  .c-search__links {
    margin-top: 10px;
    padding: 0;
  }
  .c-search__links li + li {
    margin-top: 10px;
  }
}

.c-search__close {
  border: none;
  background: none;
}
.c-search__close img {
  height: 20px;
  width: auto;
  opacity: 0.7;
  transform: rotate(180deg);
}
@media (min-width: 769px) {
  .c-search__close {
    display: none;
  }
}

@media (max-width: 768.9px) {
  /* 最初は画面外（右側）に飛ばしておく */
  #search-popup {
    display: block; /* blockにしておくが、位置で隠す */
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    transform: translateX(100%); /* 右に100%ずらす */
    transition: transform 0.3s ease; /* アニメーション設定 */
  }
  /* クラスが付いたら元の位置(0)に戻す */
  .c-search.is-open #search-popup {
    transform: translateX(0);
  }
}
.c-header-nav {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.c-header-nav__trigger {
  cursor: pointer;
  background: none;
  border: none;
  display: inline-block;
  vertical-align: middle;
  padding: 5px;
  height: 28px;
  width: 28px;
  position: relative;
  z-index: 100;
}
.c-header-nav__trigger > span, .c-header-nav__trigger::before, .c-header-nav__trigger::after {
  background: #222;
  border-radius: 2px;
  display: inline-block;
  margin: auto;
  height: 2px;
  width: 18px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.3s;
}
.c-header-nav__trigger::before, .c-header-nav__trigger::after {
  content: "";
}
.c-header-nav__trigger::before {
  bottom: 10px;
}
.c-header-nav__trigger::after {
  top: 10px;
}
.c-header-nav.is-active .c-header-nav__trigger > span {
  opacity: 0;
}
.c-header-nav.is-active .c-header-nav__trigger::before {
  transform: translateY(5px) rotate(-45deg);
}
.c-header-nav.is-active .c-header-nav__trigger::after {
  transform: translateY(-5px) rotate(45deg);
}
@media (min-width: 993px) {
  .c-header-nav__trigger {
    display: none;
  }
}
.c-header-nav__sp {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
@media (max-width: 992.9px) {
  .c-header-nav__sp {
    display: flex;
    flex-flow: column wrap;
    align-content: center;
    justify-content: flex-start;
    gap: 0;
    background: #fff;
    padding: 4em 2em;
    height: 100vh;
    width: 100vw;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 10;
    position: fixed;
    left: 0;
    top: 0;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .c-header-nav.is-active .c-header-nav__sp {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media (max-width: 992.9px) {
  .c-header-nav__inner {
    width: 100%;
  }
}
.c-header-nav__list {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8em;
  list-style: none;
}
.c-header-nav__list .menu-item {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  list-style: none;
}
.c-header-nav__list .menu-item a {
  color: #222;
  text-decoration: none;
}
@media (min-width: 993px) {
  .c-header-nav__list > li.menu-item > a {
    display: block;
    padding: 1em 0.5em;
  }
  .c-header-nav__list > li.menu-item > a:hover {
    background-color: #edfefa;
  }
  .c-header-nav__list li.menu-item {
    position: relative;
    border-radius: 4px;
  }
  .c-header-nav__list li.menu-item:has(> .sub-menu) > a::after {
    content: "▼";
    display: inline;
    padding-left: 0.4em;
    font-size: 0.8em;
    opacity: 0.7;
  }
  .c-header-nav__list li.menu-item > .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0em;
    border-radius: 8px;
    background: #f9fbfd;
    min-width: 150px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
    height: 0;
    overflow: hidden;
    transition-duration: 0.3s;
    opacity: 0.5;
  }
  .c-header-nav__list li.menu-item > .sub-menu > li > a {
    display: block;
    padding: 0.7em 0.5em;
  }
  .c-header-nav__list li.menu-item:hover {
    background-color: #f9fbfd;
  }
  .c-header-nav__list li.menu-item:hover > ul.sub-menu {
    height: auto;
    padding: 0.5em;
    opacity: 1;
  }
  .c-header-nav__list li.menu-item:hover > ul.sub-menu > .menu-item:hover {
    text-decoration: underline;
  }
}
@media (max-width: 992.9px) {
  .c-header-nav__list {
    display: flex;
    flex-flow: column wrap;
    align-content: flex-start;
    justify-content: flex-start;
    gap: 0;
    align-items: flex-start;
    width: 100%;
  }
  .c-header-nav__list .menu-item {
    font-size: 2rem;
    width: 100%;
  }
  .c-header-nav__list .menu-item a {
    display: block;
    padding: 16px 0;
  }
  .c-header-nav__list .sub-menu {
    padding-left: 1.6em;
    border-left: 1px solid #E1E2EB;
  }
  .c-header-nav__list .sub-menu > .menu-item {
    font-size: 1.4rem;
  }
}
.c-header-nav__btn a {
  background: #00DDCF;
  border: 1px solid #00DDCF;
  border-radius: 100px;
  color: #222;
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  padding: 10px 16px;
  transition: all 0.3s;
}
.c-header-nav__btn a[target=_blank]::after {
  content: "";
  background: url(../../images/common/icon_window.svg) no-repeat center/12px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  height: 16px;
  width: 16px;
}
.c-header-nav__btn a:hover {
  background: #fff;
  color: #00DDCF;
}
@media (max-width: 992.9px) {
  .c-header-nav__btn {
    margin-top: 32px;
    width: 100%;
  }
  .c-header-nav__btn a {
    font-size: 1.6rem;
    text-align: center;
    padding: 16px;
    position: relative;
  }
  .c-header-nav__btn a[target=_blank]::after {
    content: "";
    background-size: auto 100%;
    margin: auto;
    height: 16px;
    width: 16px;
    position: absolute;
    right: 16px;
    top: 0;
    bottom: 0;
  }
}

@media (min-width: 769px) {
  .c-post-nav {
    margin: auto;
    max-width: 940px;
  }
}

.c-post-nav__list {
  display: flex;
  flex-flow: column wrap;
  align-content: center;
  justify-content: center;
  gap: 16px;
  list-style: none;
}
@media (min-width: 769px) {
  .c-post-nav__list {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
  }
}

.c-post-nav__list-item {
  width: 100%;
}
@media (min-width: 769px) {
  .c-post-nav__list-item {
    flex: 1 1 0;
    width: calc(50% - 20px);
  }
}

.c-post-nav__prev {
  left: 0;
}
.c-post-nav__prev .c-post-nav__inner::before {
  transform: rotate(180deg);
}

.c-post-nav__next {
  right: 0;
}

.c-post-nav__prev .c-post-nav__inner::before,
.c-post-nav__next .c-post-nav__inner::before {
  content: "";
  background: url(../../images/common/icon_link-arrow.svg) no-repeat center/auto 100%;
  display: block;
  height: 10px;
  width: 10px;
}
@media (min-width: 769px) {
  .c-post-nav__prev,
  .c-post-nav__next {
    position: absolute;
    top: 0;
  }
}

.c-post-nav__inner {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #E1E2EB;
  border-radius: 8px;
  text-decoration: none;
  padding: 16px;
  width: 100%;
}
.c-post-nav__next .c-post-nav__inner {
  flex-flow: row-reverse wrap;
}

.c-post-nav__img {
  border-radius: 4px;
  height: 80px;
  width: 80px;
  overflow: hidden;
}
.c-post-nav__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.c-post-nav__txt {
  flex: 1 1 0;
  color: #222;
  font-size: 1.4rem;
  line-height: 1.6;
  width: calc(100% - 122px);
}
.c-post-nav__next .c-post-nav__txt {
  text-align: right;
}

.c-post-nav__ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  max-height: 4.8em;
}

.c-post-nav__sub {
  color: #707070;
  font-size: 1.2rem;
}

.c-footer-nav__list {
  list-style: none;
}
.c-footer-nav__list .menu-item {
  border: #666 solid 0;
  padding: 0;
}
.c-footer-nav__list .menu-item a {
  display: inline-block;
  padding: 0.7em 0;
  margin: 0.1em;
  font-size: 1.5rem;
  line-height: 1;
  text-decoration: none;
}
.c-footer-nav__list .menu-item a:hover {
  text-decoration: underline;
}
.c-footer-nav__list > .menu-item {
  padding: 1em 0;
}
.c-footer-nav__list .sub-menu {
  list-style: disc;
  padding: 0 0.5em;
}
.c-footer-nav__list .sub-menu li {
  margin-left: 3.4em;
}
@media (max-width: 992.9px) {
  .c-footer-nav__list > .menu-item {
    border-width: 0 0 1px 0;
  }
}
@media (min-width: 769px) {
  .c-footer-nav__list {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    align-items: flex-start;
  }
  .c-footer-nav__list .menu-item a {
    font-size: 1.6rem;
  }
  .c-footer-nav__list > .menu-item {
    border-width: 0 1px 0 0;
    max-width: 320px;
    width: 20%;
    min-height: 17.5em;
  }
  .c-footer-nav__list > .menu-item:last-child {
    border-width: 0;
  }
  .c-footer-nav__list .sub-menu {
    padding-top: 1em;
  }
}

.p-copyright {
  margin-top: 40px;
  text-align: center;
}
.p-copyright > small {
  font-size: 1rem;
}
@media (min-width: 769px) {
  .p-copyright > small {
    font-size: 1.2rem;
  }
}

.c-sub-nav {
  margin: 28px -16px;
}
.c-sub-nav--name .c-sub-nav__list-item {
  width: 10%;
}
.c-sub-nav.is-sticky {
  margin: 0;
  width: 100%;
  position: sticky;
  top: 56px;
  z-index: 1;
}
@media (max-width: 768.9px) {
  .c-sub-nav--scroll .c-sub-nav__list {
    flex-flow: row nowrap;
    justify-content: flex-start;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .c-sub-nav--scroll .c-sub-nav__list::-webkit-scrollbar {
    display: none;
  }
  .c-sub-nav--scroll .c-sub-nav__list-item {
    flex-shrink: 0;
  }
  .c-sub-nav--scroll .c-sub-nav__list-item a {
    padding: 13px 20px;
  }
}
@media (min-width: 769px) {
  .c-sub-nav {
    margin: 40px 0;
  }
  .c-sub-nav--name .c-sub-nav__list-item {
    width: auto;
  }
  .c-sub-nav.is-sticky {
    top: 72px;
  }
  .c-sub-nav.is-sticky .c-sub-nav__list {
    border-radius: 0 0 8px 8px;
  }
}

.c-sub-nav__list {
  background: #F9FBFD;
  list-style: none;
  overflow-x: auto;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: unset;
}
@media (min-width: 769px) {
  .c-sub-nav__list {
    border-radius: 8px;
    transition: border-radius 0.3s;
  }
}

.c-sub-nav__list-item a {
  border-bottom: 2px solid #F9FBFD;
  color: #222;
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  padding: 13px;
}
.c-sub-nav__list-item.is-current a {
  border-bottom-color: #00C7BA;
  color: #00C7BA;
}
@media (min-width: 769px) {
  .c-sub-nav__list-item a {
    border-bottom-width: 4px;
    font-size: 1.6rem;
    padding: 16px 32px 12px;
  }
  .c-sub-nav__list-item a:hover {
    border-bottom-color: #00C7BA;
    color: #00C7BA;
  }
}

.c-pagination {
  margin-top: 40px;
}
@media (min-width: 769px) {
  .c-pagination {
    margin-top: 80px;
  }
}

.wp-pagenavi {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.wp-pagenavi .page,
.wp-pagenavi .current,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  border-radius: 8px;
  color: #222;
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  height: 40px;
  width: 40px;
}
.wp-pagenavi .page,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  background: #fff;
}
.wp-pagenavi .current {
  background: #E1FF14;
}
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  font-size: 0;
  position: relative;
}
.wp-pagenavi .nextpostslink::after,
.wp-pagenavi .previouspostslink::after {
  content: "";
  background: url(../../images/common/icon_link-arrow.svg) no-repeat center/auto 100%;
  display: block;
  margin: auto;
  height: 10px;
  width: 10px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.wp-pagenavi .previouspostslink {
  transform: rotate(180deg);
}
@media (min-width: 769px) {
  .wp-pagenavi .page:hover {
    background: #E1FF14;
    opacity: 0.7;
  }
}

.c-breadcrumb__inner {
  padding: 16px 0;
}
@media (min-width: 769px) {
  .c-breadcrumb__inner {
    padding: 18px 0;
  }
}

.c-breadcrumb__list {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  list-style: none;
}

.c-breadcrumb__list-item {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.c-breadcrumb__list-item span,
.c-breadcrumb__list-item a {
  color: #707070;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
}
.c-breadcrumb__list-item a {
  text-decoration: none;
}
.c-breadcrumb__list-item:last-child {
  min-width: 0;
  overflow: hidden;
}
.c-breadcrumb__list-item:last-child .current-item {
  display: inline-block;
  flex-shrink: 1;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.c-breadcrumb__list-item + .c-breadcrumb__list-item::before {
  content: "";
  background: url(../../images/common/icon_link-arrow.svg) no-repeat center/auto 100%;
  display: block;
  height: 8px;
  width: 4px;
  opacity: 0.7;
}
@media (min-width: 769px) {
  .c-breadcrumb__list-item span,
  .c-breadcrumb__list-item a {
    font-size: 1.2rem;
  }
}

.c-heading {
  font-weight: bold;
  line-height: 1.75;
  text-wrap: auto;
}
.c-heading--s {
  font-size: 1.6rem;
}
.c-heading--m {
  font-size: 1.6rem;
}
.c-heading--l {
  font-size: 2rem;
}
.c-heading--xl {
  font-size: 2rem;
}
@media (min-width: 769px) {
  .c-heading--s {
    font-size: 1.6rem;
  }
  .c-heading--m {
    font-size: 2rem;
  }
  .c-heading--l {
    font-size: 2.4rem;
  }
  .c-heading--xl {
    font-size: 2.8rem;
  }
}

.c-description {
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 8px 0;
}

.c-link-btn {
  margin-top: 24px;
}
.c-link-btn a {
  border: 1px solid #C0C1CD;
  border-radius: 100px;
  color: #222;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  padding: 16px;
  margin: auto;
  min-width: 280px;
  width: fit-content;
  position: relative;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.c-link-btn a::after {
  content: "";
  background: url(../../images/common/icon_link-arrow.svg) no-repeat center/contain;
  display: block;
  height: 16px;
  width: 9px;
}
.c-link-btn a[target=_blank]::after {
  content: "";
  background: url(../../images/common/icon_window.svg) no-repeat center/12px;
  display: block;
  height: 12px;
  width: 12px;
}
.c-link-btn--cta a {
  background-color: #00DDCF;
  border-color: #00DDCF;
  font-size: 1.4rem;
  gap: 14px;
}
.c-link-btn__note {
  text-align: center;
  margin-top: 16px;
  margin-bottom: 16px;
}
@media (min-width: 769px) {
  .c-link-btn {
    margin-top: 24px;
  }
  .c-link-btn a {
    padding: 24px;
    min-width: 320px;
    width: fit-content;
    transition: all 0.3s;
  }
  .c-link-btn a:hover {
    opacity: 0.7;
  }
  .c-link-btn a::after {
    position: static;
  }
  .c-link-btn a[target=_blank]::after {
    background-size: 16px;
    height: 16px;
    width: 16px;
  }
  .c-link-btn--cta a {
    font-size: 1.6rem;
    padding: 20px;
    gap: 16px;
  }
}

.c-link-txt {
  margin-top: 16px;
}
.c-link-txt a {
  color: #222;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  text-decoration: none;
}
.c-link-txt a::after {
  content: "";
  display: inline-block;
  background: url(../../images/common/icon_link-arrow.svg) no-repeat center/contain;
  vertical-align: middle;
  margin-left: 8px;
  height: 12px;
  width: 7px;
}
@media (min-width: 769px) {
  .c-link-txt a:hover {
    text-decoration: underline;
  }
}

.c-card-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px 8px;
}
.c-card-list--col4 .c-card-list__list-item, .c-card-list--col6 .c-card-list__list-item {
  width: calc((100% - (16px)) / 3);
}
.c-card-list .c-card-list__list-item {
  align-self: stretch;
}
.c-card-list .c-card-list__list-item a {
  background: #fff;
  color: #222;
  text-decoration: none;
  display: block;
  border-radius: 4px;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
}
.c-card-list .c-card-list__list-item a:hover {
  opacity: 0.7;
}
@media (min-width: 769px) {
  .c-card-list {
    margin-top: 28px;
    gap: 40px 24px;
  }
  .c-card-list--col4 .c-card-list__list-item {
    width: calc((100% - (72px)) / 4);
  }
}
@media (min-width: 993px) {
  .c-card-list--col6 .c-card-list__list-item {
    width: calc((100% - (120px)) / 6);
  }
}
@media (min-width: 769px) and (max-width: 992.9px) {
  .c-card-list--col6 .c-card-list__list-item {
    width: calc((100% - (72px)) / 4);
  }
}

.c-card-list-mb_limit6 .c-card-list__list-item:nth-child(n+7) {
  display: none;
}
@media (min-width: 769px) {
  .c-card-list-mb_limit6 .c-card-list__list-item:nth-child(n+7) {
    display: block;
  }
}

.c-card-list__img {
  position: relative;
}
.c-card-list__img img {
  height: auto;
  width: 100%;
}

.c-card-list__txt {
  padding: 5px 8px;
}
@media (min-width: 769px) {
  .c-card-list__txt {
    padding: 8px 16px;
  }
}

.c-card-list__ttl {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  max-height: 3.9em;
}
@media (min-width: 769px) {
  .c-card-list__ttl {
    font-size: 1.2rem;
  }
}

.c-card-list__date {
  background: #E1FF14;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  padding: 5px 8px;
  position: absolute;
  top: 8px;
  left: 8px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.c-card-list__date::before {
  content: "";
  background: url(../../images/common/icon_time.svg) no-repeat center/10px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  height: 10px;
  width: 10px;
}
@media (min-width: 769px) {
  .c-card-list__date {
    font-size: 1.2rem;
    padding: 8px 12px;
    top: 12px;
    left: 12px;
  }
  .c-card-list__date::before {
    background-size: 12px;
    margin-right: 8px;
    height: 12px;
    width: 12px;
  }
}

.c-card-list__date--overlay {
  background: #E1FF14;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  padding: 3px 6px;
  position: absolute;
  top: 6px;
  left: 6px;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  z-index: 1;
}
@media (min-width: 769px) {
  .c-card-list__date--overlay {
    font-size: 1rem;
    padding: 4px 8px;
    top: 8px;
    left: 8px;
  }
}
.c-card-list__date--overlay.c-card-list__date--past {
  background: #fff;
}

.c-card-list__date--below {
  background: #E1FF14;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  padding: 5px 8px;
  border-radius: 4px;
}
.c-card-list__date--below::before {
  content: "";
  background: url(../../images/common/icon_time.svg) no-repeat center/10px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  height: 10px;
  width: 10px;
}
@media (min-width: 769px) {
  .c-card-list__date--below {
    font-size: 1.2rem;
    padding: 8px 12px;
  }
  .c-card-list__date--below::before {
    background-size: 12px;
    margin-right: 8px;
    height: 12px;
    width: 12px;
  }
}
.c-card-list__date--below.c-card-list__date--past {
  background: #fff;
}

.c-article-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-flow: column wrap;
  align-content: flex-start;
  justify-content: flex-start;
  gap: 48px;
}
@media (min-width: 769px) {
  .c-article-list {
    flex-flow: row wrap;
    gap: 40px;
  }
}

.c-article-list__list-item {
  align-self: stretch;
}
.c-article-list__list-item a {
  color: #222;
  text-decoration: none;
  height: 100%;
}
@media (min-width: 769px) {
  .c-article-list__list-item {
    width: calc((100% - 80px) / 3);
  }
  .c-article-list__list-item a:hover .c-article-list__img {
    opacity: 0.7;
  }
  .c-article-list__list-item a:hover .c-article-list__ttl,
  .c-article-list__list-item a:hover .c-article-list__desc {
    text-decoration: underline;
  }
}

.c-article-list__img {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
}
.c-article-list__img img {
  height: auto;
  width: 100%;
}

.c-article-list__summary {
  margin-top: 16px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.c-article-list__cat {
  background: #EFF0F6;
  border: 1px solid #E1E2EB;
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  padding: 4px 8px;
}

.c-article-list__date {
  color: #707070;
  font-size: 1.2rem;
  line-height: 1;
}

.c-article-list__ttl {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  width: 100%;
}

.c-article-list__desc {
  color: #707070;
  font-size: 1.4rem;
  line-height: 1.4;
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  max-height: 4.2em;
}

.c-social {
  text-align: center;
  margin-top: 48px;
}
.c-social .addtoany_shortcode {
  margin-top: 16px;
}
.c-social .addtoany_list {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.c-social .addtoany_list > a {
  padding: 0;
}
@media (min-width: 769px) {
  .c-social {
    margin-top: 0;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
  }
  .c-social .l-container {
    padding: 0;
  }
  .c-social .addtoany_list {
    flex-flow: column wrap;
  }
}
@media (min-width: 993px) {
  .c-social {
    right: 40px;
  }
}
@media (min-width: 769px) and (max-width: 992.9px) {
  .c-social {
    right: 8px;
  }
}

.c-social__ttl {
  font-size: 1.2rem;
}

@media (min-width: 769px) {
  .c-social--sp {
    display: none;
  }
}

@media (max-width: 768.9px) {
  .c-social--pc {
    display: none;
  }
}

/* ================================================
   Prize Calendar Widget Styles
   ================================================ */
.widget_dmm_onkure_prize_calendar .calendar-wrapper {
  width: 100%;
  overflow-x: auto;
}
.widget_dmm_onkure_prize_calendar table.prize-calendar {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-size: 14px;
  background-color: #fff;
}
.widget_dmm_onkure_prize_calendar table.prize-calendar thead th {
  padding: 8px 4px;
  text-align: center;
  font-weight: bold;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  font-size: 12px;
}
.widget_dmm_onkure_prize_calendar table.prize-calendar thead th.sunday {
  color: #d32f2f;
}
.widget_dmm_onkure_prize_calendar table.prize-calendar thead th.saturday {
  color: #1976d2;
}
.widget_dmm_onkure_prize_calendar table.prize-calendar tbody td {
  padding: 8px 4px;
  text-align: center;
  border: 1px solid #ddd;
  vertical-align: top;
  min-height: 60px;
  position: relative;
  background-color: #fff;
  transition: background-color 0.2s ease;
}
.widget_dmm_onkure_prize_calendar table.prize-calendar tbody td.empty {
  background-color: #fafafa;
}
@media (max-width: 768px) {
  .widget_dmm_onkure_prize_calendar table.prize-calendar {
    font-size: 12px;
  }
  .widget_dmm_onkure_prize_calendar table.prize-calendar thead th {
    padding: 6px 2px;
    font-size: 10px;
  }
  .widget_dmm_onkure_prize_calendar table.prize-calendar tbody td {
    padding: 6px 2px;
    min-height: 50px;
  }
}
@media (prefers-color-scheme: dark) {
  .widget_dmm_onkure_prize_calendar table.prize-calendar {
    background-color: #1e1e1e;
    color: #e0e0e0;
  }
  .widget_dmm_onkure_prize_calendar table.prize-calendar thead th {
    background-color: #2d2d2d;
    border-color: #444;
    color: #e0e0e0;
  }
  .widget_dmm_onkure_prize_calendar table.prize-calendar tbody td {
    border-color: #444;
    background-color: #1e1e1e;
  }
  .widget_dmm_onkure_prize_calendar table.prize-calendar tbody td.empty {
    background-color: #252525;
  }
}
.widget_dmm_onkure_prize_calendar .calendar-day {
  display: block;
  font-weight: bold;
  margin-bottom: 4px;
  font-size: 16px;
}
@media (max-width: 768px) {
  .widget_dmm_onkure_prize_calendar .calendar-day {
    font-size: 14px;
  }
}
.widget_dmm_onkure_prize_calendar td.sunday .calendar-day {
  color: #d32f2f;
}
.widget_dmm_onkure_prize_calendar td.saturday .calendar-day {
  color: #1976d2;
}
.widget_dmm_onkure_prize_calendar td.today {
  background-color: #fffde7 !important;
}
.widget_dmm_onkure_prize_calendar td.today .calendar-day {
  color: #f57c00;
  font-weight: bold;
}
@media (prefers-color-scheme: dark) {
  .widget_dmm_onkure_prize_calendar td.today {
    background-color: #3d3d00 !important;
  }
}
.widget_dmm_onkure_prize_calendar td.has-prizes {
  cursor: pointer;
}
.widget_dmm_onkure_prize_calendar td.has-prizes:hover {
  background-color: #e3f2fd;
}
.widget_dmm_onkure_prize_calendar td.has-prizes a {
  display: block;
  text-decoration: none;
  color: inherit;
}
@media (prefers-color-scheme: dark) {
  .widget_dmm_onkure_prize_calendar td.has-prizes:hover {
    background-color: #1a2332;
  }
}
.widget_dmm_onkure_prize_calendar .prize-count {
  display: inline-block;
  font-size: 11px;
  color: #fff;
  background-color: #ff6f00;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .widget_dmm_onkure_prize_calendar .prize-count {
    font-size: 10px;
    padding: 1px 4px;
  }
}
.widget_dmm_onkure_prize_calendar .calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 8px 0;
  border-bottom: 2px solid #ddd;
}
.widget_dmm_onkure_prize_calendar .calendar-nav .nav-link {
  color: #1976d2;
  text-decoration: none;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.widget_dmm_onkure_prize_calendar .calendar-nav .nav-link:hover {
  background-color: #e3f2fd;
}
@media (prefers-color-scheme: dark) {
  .widget_dmm_onkure_prize_calendar .calendar-nav .nav-link:hover {
    background-color: #2d2d2d;
  }
}
.widget_dmm_onkure_prize_calendar .calendar-nav .current-month {
  font-weight: bold;
  font-size: 16px;
}
@media (max-width: 768px) {
  .widget_dmm_onkure_prize_calendar .calendar-nav {
    font-size: 14px;
  }
  .widget_dmm_onkure_prize_calendar .calendar-nav .current-month {
    font-size: 14px;
  }
}
@media (prefers-color-scheme: dark) {
  .widget_dmm_onkure_prize_calendar .calendar-nav {
    border-bottom-color: #444;
  }
}

.p-author {
  background: #fff;
  border: 1px solid #E1E2EB;
  border-radius: 8px;
  margin-top: 32px;
  padding: 20px;
}
@media (min-width: 769px) {
  .p-author {
    padding: 28px;
  }
}
.p-author:has(+ .c-heading--l) {
  margin-top: 0;
  margin-bottom: 32px;
}
.p-author + .c-heading--l {
  margin-top: 32px;
}
.p-author__inner {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}
@media (min-width: 769px) {
  .p-author__inner {
    gap: 20px;
  }
}
.p-author__avatar {
  flex-shrink: 0;
}
.p-author__avatar a {
  display: block;
  line-height: 0;
}
.p-author__avatar img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
}
.p-author__content {
  flex: 1 1 0;
  min-width: 0;
}
.p-author__name {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 8px;
}
.p-author__name a {
  color: #222;
  text-decoration: none;
}
.p-author__name a:hover {
  color: #009B91;
  text-decoration: underline;
}
.p-author__description {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #707070;
}
.p-author__description p {
  margin: 0;
}
.p-author__description p + p {
  margin-top: 8px;
}

.p-sidebar > *:first-child {
  margin-top: 0;
}

.p-sidebar__inner {
  margin-top: 56px;
}

.p-sidebar__heading--cat {
  border-left: 6px solid #00C7BA;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  padding: 8px 10px;
}

.p-sidebar__heading--tag {
  font-size: 1.6rem;
  font-weight: bold;
}

.p-sidebar__prize-date-title {
  border-left: 4px solid #00C7BA;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1;
  padding: 6px 8px;
}

.p-sidebar__prize-date {
  margin-top: 8px;
}

.p-sidebar__cat-list {
  color: #009B91;
  list-style-position: inside;
}

.p-sidebar__cat-list-item {
  text-indent: -1.4rem;
  padding: 8px 8px 8px 20px;
}
.p-sidebar__cat-list-item:nth-child(n+2) {
  border-top: 1px solid #EFF0F6;
}
.p-sidebar__cat-list-item a {
  color: #009B91;
  font-size: 1.4rem;
  line-height: 1.5;
  text-decoration: none;
}
.p-sidebar__cat-list-item a:hover {
  text-decoration: underline;
}

.p-sidebar__more {
  padding: 8px;
  margin-top: 0;
  text-align: right;
}
.p-sidebar__more a {
  font-size: 1.2rem;
}

.p-sidebar__tag-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px 4px;
}

.p-sidebar__tag-list-item a {
  border: 1px solid #C0C1CD;
  border-radius: 100px;
  color: #707070;
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  padding: 8px 16px;
  transition: all 0.3s;
}
.p-sidebar__tag-list-item a:hover {
  opacity: 0.7;
}

.p-download {
  background: #E1FF14;
  padding: 40px 0;
  margin-top: 40px;
  position: relative;
}
.p-download::before, .p-download::after {
  content: "";
  display: block;
  height: 40px;
  width: 100%;
  position: absolute;
  top: -40px;
  left: 0;
}
.p-download::before {
  background: url(../../images/top/crane-repeat.png) repeat-x top center/auto 100%;
}
.p-download::after {
  background: url(../../images/top/crane-bottom.png) no-repeat bottom center/auto 100%;
}
@media (min-width: 769px) {
  .p-download {
    padding: 40px 0 48px;
    margin-top: 80px;
  }
  .p-download::before, .p-download::after {
    background-size: auto 80px;
    height: 80px;
    top: -80px;
  }
}

.p-download__heading {
  margin: auto;
  width: 264px;
}

.p-download__txt {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-top: 16px;
}
@media (min-width: 769px) {
  .p-download__txt {
    text-align: center;
  }
}

.p-download__btn {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.p-download__btn--apple, .p-download__btn--google {
  height: 40px;
}
.p-download__btn--apple a, .p-download__btn--google a {
  display: block;
  height: 100%;
  transition: all 0.3s;
}
.p-download__btn--apple a:hover, .p-download__btn--google a:hover {
  opacity: 0.7;
}
.p-download__btn--apple a img, .p-download__btn--google a img {
  height: 100%;
}

.p-download__bnr {
  margin-top: 24px;
}
.p-download__bnr img {
  margin: auto;
}
@media (min-width: 769px) {
  .p-download__bnr {
    margin: 40px auto 0;
    width: 600px;
  }
  .p-download__bnr a {
    transition: all 0.3s;
  }
  .p-download__bnr a:hover {
    opacity: 0.7;
  }
}

.p-cta {
  background: #F6FFB9;
  border-radius: 8px;
  padding: 32px 16px 24px;
  margin-top: 48px;
  text-align: center;
}
.p-cta .c-link-btn {
  margin-top: 20px;
}
.p-cta::after {
  content: "";
  background: url(../../images/common/bg_cta_sp.svg) no-repeat bottom center;
  display: block;
  margin: auto;
  height: 160px;
  width: 250px;
  position: relative;
  bottom: -24px;
}
@media (min-width: 769px) {
  .p-cta {
    margin-top: 80px;
    position: relative;
  }
  .p-cta .c-link-btn {
    margin-top: 28px;
  }
}
@media (min-width: 993px) {
  .p-cta {
    padding: 40px 180px;
  }
  .p-cta::before, .p-cta::after {
    content: "";
    display: block;
    height: 180px;
    width: 140px;
    position: absolute;
    bottom: 0;
  }
  .p-cta::before {
    background: url(../../images/common/bg_cta-left_pc.svg) no-repeat bottom center;
    left: 70px;
  }
  .p-cta::after {
    background: url(../../images/common/bg_cta-right_pc.svg) no-repeat bottom center;
    right: 70px;
  }
}

.c-related-prize {
  background: #F9FBFD;
  margin-top: 64px;
  padding: 28px 0;
}

.c-related-column {
  margin-top: 40px;
}

.p-section {
  width: 100%;
}

.p-archive-section {
  margin-top: 28px;
}
.p-archive-section > *:first-child {
  margin-top: 0;
}
@media (min-width: 769px) {
  .p-archive-section {
    margin-top: 40px;
  }
}

.p-home .l-main {
  padding-top: 48px;
}
.p-home .l-contents {
  position: relative;
}
.p-home .l-contents::before {
  content: "";
  background: url(../../images/top/crane-top.png) no-repeat center/auto 100%;
  display: block;
  height: 64px;
  width: 68px;
  position: absolute;
  left: 0;
  top: -64px;
  z-index: -1;
  inset: -48px auto auto 0;
  transform: translateX(var(--tx, 0px));
  pointer-events: none;
  will-change: transform;
}
@media (min-width: 769px) {
  .p-home .l-main {
    padding-top: 80px;
  }
  .p-home .l-contents::before {
    height: 80px;
    width: 84px;
    top: -80px;
  }
}

.p-home-desc {
  background: #E1FF14;
  padding: 12px 0;
}

.p-home-desc__txt {
  font-size: 1.1rem;
  line-height: 1.4;
}
@media (min-width: 769px) {
  .p-home-desc__txt {
    font-size: 1.4rem;
  }
  .p-home-desc__txt br {
    display: none;
  }
}

.p-home-section {
  margin-top: 24px;
}
.p-home-section:first-child {
  margin-top: 0;
}
.p-home-section--column {
  margin-top: 24px;
}
@media (min-width: 769px) {
  .p-home-section {
    margin-top: 24px;
  }
  .p-home-section--column {
    margin-top: 24px;
  }
  .p-home-section--column .c-link-txt {
    margin-top: 0;
  }
}

.p-home-panel {
  background: #F9FBFD;
  border-radius: 8px;
  padding: 24px 16px;
}
@media (min-width: 769px) {
  .p-home-panel {
    padding: 40px;
  }
  .p-home-panel .c-link-txt {
    padding: 0 0;
  }
}

.p-home-category {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}
.p-home-category .p-home-category__list-item {
  align-self: stretch;
  width: calc((100% - 16px) / 3);
}
.p-home-category .p-home-category__list-item a {
  background: #fff;
  border-radius: 4px;
  color: #222;
  display: block;
  text-decoration: none;
  padding: 16px;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
}
.p-home-category .p-home-category__list-item a:hover {
  opacity: 0.7;
}
@media (min-width: 769px) {
  .p-home-category {
    gap: 8px;
  }
  .p-home-category .p-home-category__list-item {
    width: calc((100% - 40px) / 6);
  }
}

.p-home-category__img {
  height: 54px;
  display: flex;
  flex-flow: column wrap;
  align-content: center;
  justify-content: flex-end;
  gap: unset;
}
.p-home-category__img img {
  max-height: 40px;
  width: auto;
}
.p-home-category__img--control img {
  border: 3px solid #222;
  border-radius: 12px;
}
@media (min-width: 769px) {
  .p-home-category__img {
    height: 60px;
  }
  .p-home-category__img img {
    max-height: 45px;
  }
  .p-home-category__img--control img {
    border-width: 4px;
  }
}

.p-home-category__ttl {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  margin-top: 8px;
}
@media (min-width: 769px) {
  .p-home-category__ttl {
    font-size: 1.4rem;
  }
}

.p-home-category__rate {
  background: url(../../images/control/star_white.svg) no-repeat left center/auto 100%;
  display: block;
  font-size: 0;
  line-height: 1;
  height: 12px;
  width: 46px;
  margin: 8px auto 0;
  position: relative;
}
.p-home-category__rate--1::after, .p-home-category__rate--2::after, .p-home-category__rate--3::after {
  content: "";
  background: url(../../images/control/star.svg) no-repeat left center/auto 100%;
  display: block;
  height: 12px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.p-home-category__rate--1::after {
  width: 15px;
}
.p-home-category__rate--2::after {
  width: 31px;
}
.p-home-category__rate--3::after {
  width: 46px;
}
@media (min-width: 769px) {
  .p-home-category__rate {
    height: 15px;
    width: 58px;
  }
  .p-home-category__rate--1::after, .p-home-category__rate--2::after, .p-home-category__rate--3::after {
    height: 15px;
  }
  .p-home-category__rate--1::after {
    width: 19px;
  }
  .p-home-category__rate--2::after {
    width: 39px;
  }
  .p-home-category__rate--3::after {
    width: 58px;
  }
}

.p-home-column {
  list-style: none;
}

.p-home-column__list-item {
  border-bottom: 1px solid #E1E2EB;
  padding: 16px 0;
}
.p-home-column__list-item a {
  text-decoration: none;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
@media (min-width: 769px) {
  .p-home-column__list-item {
    padding: 24px 0;
  }
  .p-home-column__list-item:last-child {
    border-bottom: none;
  }
  .p-home-column__list-item a:hover .p-home-column__img {
    opacity: 0.7;
  }
  .p-home-column__list-item a:hover .p-home-column__ttl {
    text-decoration: underline;
  }
  .p-home-column__list-item a:hover .p-home-column__date {
    text-decoration: underline;
  }
}

.p-home-column__img {
  border-radius: 4px;
  width: 120px;
  overflow: hidden;
}
.p-home-column__img img {
  height: auto;
  width: 100%;
}

.p-home-column__summary {
  flex: 1 1 0;
}

.p-home-column__ttl {
  color: #009B91;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.75;
  text-align: justify;
  text-align-last: left;
}
@media (min-width: 769px) {
  .p-home-column__ttl {
    font-size: 1.6rem;
  }
}

.p-home-column__date {
  color: #707070;
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.3;
  margin-top: 4px;
}
@media (min-width: 769px) {
  .p-home-column__date {
    margin-top: 8px;
  }
}

.c-article-list--home {
  margin-top: 24px;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}
.c-article-list--home .c-article-list__list-item {
  width: 100%;
}
.c-article-list--home .c-article-list__list-item a {
  background: #fff;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-decoration: none;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
}
.c-article-list--home .c-article-list__list-item a:hover {
  opacity: 0.7;
}
.c-article-list--home .c-article-list__img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.c-article-list--home .c-article-list__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-article-list--home .c-article-list__date--overlay {
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  color: #222;
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  padding: 3px 6px;
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 1;
}
.c-article-list--home .c-article-list__cat--overlay {
  background: #E1FF14;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  color: #222;
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  padding: 3px 6px;
  position: absolute;
  bottom: 6px;
  right: 6px;
  z-index: 1;
}
.c-article-list--home .c-article-list__summary {
  padding: 8px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  margin-top: 0;
}
.c-article-list--home .c-article-list__cat {
  display: inline-block;
  background: #eff0f6;
  border-radius: 3px;
  color: #222;
  font-size: 1rem;
  font-weight: bold;
  padding: 2px 6px;
  line-height: 1.2;
}
.c-article-list--home .c-article-list__cat--overlay {
  background: #eff0f6;
}
.c-article-list--home .c-article-list__date {
  display: inline-block;
  color: #707070;
  font-size: 1rem;
  font-weight: normal;
  margin-left: 6px;
}
.c-article-list--home .c-article-list__ttl {
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.4;
  margin-top: 6px;
}
.c-article-list--home .c-article-list__ttl--overlay {
  margin-top: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
}
.c-article-list--home .c-article-list__desc {
  display: none;
}
@media (min-width: 769px) {
  .c-article-list--home {
    gap: 16px;
  }
  .c-article-list--home .c-article-list__list-item {
    width: calc((100% - 32px) / 3);
  }
  .c-article-list--home .c-article-list__list-item a:hover .c-article-list__img {
    opacity: 0.7;
  }
  .c-article-list--home .c-article-list__list-item a:hover .c-article-list__ttl {
    text-decoration: underline;
  }
  .c-article-list--home .c-article-list__date--overlay {
    font-size: 1rem;
    padding: 4px 8px;
    top: 8px;
    left: 8px;
    margin-left: 0;
  }
  .c-article-list--home .c-article-list__cat--overlay {
    font-size: 1rem;
    padding: 4px 8px;
    bottom: 8px;
    right: 8px;
  }
  .c-article-list--home .c-article-list__summary {
    padding: 8px;
  }
  .c-article-list--home .c-article-list__ttl {
    font-size: 1.5rem;
    margin-top: 8px;
  }
  .c-article-list--home .c-article-list__ttl--overlay {
    margin-top: 0;
  }
  .c-article-list--home .c-article-list__cat,
  .c-article-list--home .c-article-list__date {
    font-size: 1.1rem;
  }
}

.p-prize-section {
  margin-top: 28px;
}
.p-prize-section--bg {
  background: #F9FBFD;
  padding: 16px 0 40px;
}
.p-prize-section .p-prize-cta-section4 {
  display: none;
}
.p-prize-section .p-prize-cta-section4:not(:first-child) {
  display: block;
}
.p-prize-section--related {
  background: #F9FBFD;
  margin-top: 58px;
  padding: 28px 0 58px;
}
.p-prize-section--share-top {
  margin: 0;
  display: flex;
  justify-content: center;
}
.p-prize-section--share-top > .addtoany_shortcode {
  width: 100%;
  max-width: 1080px;
  text-align: right;
}
.p-prize-section--share-bottom {
  display: flex;
  justify-content: center;
}
.p-prize-section .c-link-btn {
  margin-top: 28px;
}
@media (min-width: 769px) {
  .p-prize-section {
    margin-top: 1em;
    overflow: hidden;
  }
  .p-prize-section--bg {
    padding-top: 28px;
    padding-bottom: 48px;
  }
  .p-prize-section--related {
    margin-top: 120px;
  }
  .p-prize-section .c-link-btn {
    margin-top: 40px;
  }
}

.p-prize-slider {
  margin: auto;
  padding: 0 16px;
  width: 100%;
}
.p-prize-slider.is-static .p-prize-slider__inner {
  gap: 12px;
  justify-content: center;
}
.p-prize-slider.is-static .p-prize-slider__item {
  width: calc((100% - 12px) / 2);
  opacity: 1;
}
.p-prize-slider.is-static .p-prize-slider__arrow,
.p-prize-slider.is-static .p-prize-slider__dots {
  display: none;
}
@media (min-width: 769px) {
  .p-prize-slider {
    padding: 0 40px;
    max-width: 1080px;
    overflow: visible;
  }
  .p-prize-slider.is-static {
    margin-bottom: 40px;
  }
  .p-prize-slider.is-static .p-prize-slider__inner {
    gap: 24px;
  }
  .p-prize-slider.is-static .p-prize-slider__item {
    width: calc((100% - 48px) / 3);
  }
}

.p-prize-slider__inner {
  display: flex;
  flex-flow: row nowrap;
  align-items: normal;
  justify-content: normal;
  gap: unset;
}

.p-prize-slider__item {
  cursor: pointer;
  border-radius: 8px;
  width: 200px;
  overflow: hidden;
  opacity: 0.5;
  transition: opacity 0.3s;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.15);
}
.p-prize-slider__item.swiper-slide-visible {
  opacity: 1;
}
.p-prize-slider__item img {
  height: auto;
}

.p-prize-slider__dots {
  margin-top: 8px;
  position: static;
}
.p-prize-slider__dots .swiper-pagination-bullet-active {
  background: #00C7BA;
}
@media (min-width: 769px) {
  .p-prize-slider__dots {
    margin-top: 16px;
  }
}

.p-prize-slider__arrow {
  height: 40px;
  width: 40px;
  transform: translateY(-50%);
}
.p-prize-slider__arrow::after {
  color: #222;
  font-size: 2rem;
  font-weight: bold;
}

.p-prize-summary {
  margin-top: 16px;
}

.p-prize-summary__inner {
  border-top: 1px solid #CFD1DC;
  margin-top: 16px;
  padding-top: 16px;
}

.p-prize-summary__item:nth-child(n+2) {
  border-top: 1px solid #CFD1DC;
  margin-top: 16px;
  padding-top: 16px;
}

.p-prize-summary__txt {
  font-size: 1.2rem;
  line-height: 1.6;
}
.p-prize-summary__txt a {
  color: #222;
  text-decoration: underline;
}
@media (min-width: 769px) {
  .p-prize-summary__txt {
    font-size: 1.4rem;
  }
}

.p-prize-summary__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.2rem;
  line-height: 1.6;
}
.p-prize-summary__table th,
.p-prize-summary__table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #CFD1DC;
}
.p-prize-summary__table th {
  background: #F9FBFD;
  font-weight: 600;
  width: 40%;
  white-space: nowrap;
}
.p-prize-summary__table td {
  width: 60%;
}
.p-prize-summary__table td a {
  color: #222;
  text-decoration: underline;
}
.p-prize-summary__table td a:hover {
  text-decoration: none;
}
.p-prize-summary__table tr:last-child th,
.p-prize-summary__table tr:last-child td {
  border-bottom: none;
}
@media (min-width: 769px) {
  .p-prize-summary__table {
    font-size: 1.4rem;
  }
  .p-prize-summary__table th {
    width: 30%;
  }
  .p-prize-summary__table td {
    width: 70%;
  }
}

@media (min-width: 769px) {
  .p-prize-detail {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
  }
  .p-prize-detail .c-heading--m {
    font-size: 1.6rem;
  }
  .p-prize-detail + .c-link-btn {
    display: none;
  }
}

.p-prize-detail__date {
  border: 2px solid #E1FF14;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.6rem;
  line-height: 1;
  padding: 0.3em 0.7em;
  margin: 0.5em 0em;
}
@media (min-width: 769px) {
  .p-prize-detail__date {
    width: fit-content;
  }
}
.p-prize-detail__date dt,
.p-prize-detail__date dd {
  display: inline;
  margin: 0;
}
.p-prize-detail__date h3 {
  font-size: 1.6rem;
  margin: 0;
}
.p-prize-detail__date--past {
  background-color: #fff;
}
.p-prize-detail__date--future {
  background-color: #E1FF14;
  border: none;
}
.p-prize-detail__date--future .p-prize-detail__date--txt {
  font-weight: bold;
}

.p-prize-detail__date--txt {
  margin: 0;
  font-size: 1.6rem;
}

.p-prize-detail__machine {
  list-style: none;
  margin-top: 20px;
}
@media (min-width: 769px) {
  .p-prize-detail__machine {
    flex: 1 1 0;
    margin-top: 0;
  }
}

.p-prize-detail__machine--txt {
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 8px;
  padding: 10px 8px;
}
.p-prize-detail__machine--txt + .p-prize-detail__machine--txt {
  border-top: 1px solid #E1E2EB;
  margin-top: 0;
}
.p-prize-detail__machine--txt a {
  color: #222;
  text-decoration: none;
  width: 100%;
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
}
.p-prize-detail__machine--txt a::after {
  content: "";
  background: url(../../images/common/icon_link-arrow.svg) no-repeat center/contain;
  display: block;
  height: 16px;
  width: 9px;
  margin: auto;
  height: 9px;
  width: 6px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}

.p-prize-detail__machine--icon {
  flex-shrink: 0;
  width: 40px;
}
.p-prize-detail__machine--icon > img {
  border: 2px solid #222;
  border-radius: 10px;
}

.p-prize-detail__machine--content {
  flex: 1;
  display: flex;
  flex-flow: column nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  gap: 4px;
  padding-right: 20px;
}

.p-prize-detail__machine--name {
  font-size: 1.4rem;
  line-height: 1.4;
}

.p-prize-detail__machine--desc {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #707070;
}

.p-prize-review {
  background: #EDFEFA;
  border-radius: 8px;
  margin-top: 20px;
  padding: 20px 16px;
}
@media (min-width: 769px) {
  .p-prize-review {
    margin-top: 80px;
  }
  .p-prize-review + .c-link-btn {
    display: none;
  }
}

.p-control-type {
  list-style: none;
  margin: 8px 0;
}
@media (min-width: 769px) {
  .p-control-type {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0 40px;
  }
}

.p-control-type__list-item {
  border-bottom: 1px solid #E1E2EB;
}
.p-control-type__list-item .p-control-type__link {
  color: #222;
  text-decoration: none;
  padding: 16px 36px 16px 8px;
  position: relative;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.p-control-type__list-item .p-control-type__link:has(+ *) {
  padding-bottom: 0;
}
.p-control-type__list-item .p-control-type__link::after {
  content: "";
  display: block;
  background: url(../../images/common/icon_link-arrow.svg) no-repeat center/contain;
  height: 10px;
  width: 7px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
}
.p-control-type__list-item .p-control-type__children {
  margin: 8px 8px 16px 10px;
  font-size: 1.1rem;
}
.p-control-type__list-item .p-control-type__child-link {
  color: #222;
  text-decoration: none;
}
.p-control-type__list-item .p-control-type__child-link:hover {
  text-decoration: underline;
}
.p-control-type__list-item .p-control-type__child-link:not(:last-child)::after {
  content: " / ";
  color: #222;
  margin: 0 4px;
}
@media (min-width: 769px) {
  .p-control-type__list-item {
    align-self: stretch;
    width: calc(50% - 20px);
  }
  .p-control-type__list-item .p-control-type__link {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .p-control-type__list-item .p-control-type__link:has(+ *) {
    padding-bottom: 8px;
  }
  .p-control-type__list-item:hover .p-control-type__icon {
    opacity: 0.7;
  }
  .p-control-type__list-item:hover .p-control-type__text {
    text-decoration: underline;
  }
}

.p-control-type__icon {
  width: 56px;
  transition: all 0.3s;
}
.p-control-type__icon > img {
  border: 3px solid #222;
  border-radius: 12px;
}

.p-control-type__text {
  flex: 1 1 0;
}

.p-control-type__title {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
}

.p-control-type__desc {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-top: 8px;
  max-height: 3.2em;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.p-control-beginner {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.p-control-beginner::after {
  content: "";
  background: url(../../images/control/icon_beginner.svg) no-repeat center/auto 100%;
  display: block;
  height: 20px;
  width: 14px;
}

.p-control-summary {
  background: #F9FBFD;
  border-radius: 8px;
  padding: 16px;
  position: relative;
}
@media (min-width: 769px) {
  .p-control-summary {
    padding: 28px 40px;
  }
}

.p-control-summary__head {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.p-control-summary__head .c-heading {
  flex: 1 1 0;
}

.p-control-summary__icon {
  width: 56px;
}
.p-control-summary__icon > img {
  border: 3px solid #222;
  border-radius: 12px;
}
@media (min-width: 769px) {
  .p-control-summary__icon {
    width: 72px;
  }
  .p-control-summary__icon > img {
    border-width: 4px;
  }
}

.p-control-summary__inner {
  padding: 20px 0;
}
.p-control-summary__inner + .p-control-summary__inner {
  border-top: 1px solid #C0C1CD;
}

.p-control-summary__ttl {
  color: #707070;
  font-size: 1.2rem;
}
@media (min-width: 769px) {
  .p-control-summary__ttl {
    font-size: 1.4rem;
  }
}

.p-control-summary__txt {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-top: 4px;
}

.p-control-summary__rate {
  background: url(../../images/control/star_white.svg) no-repeat left center/auto 100%;
  display: block;
  font-size: 0;
  line-height: 1;
  height: 24px;
  width: 93px;
  position: relative;
}
.p-control-summary__rate--1::after, .p-control-summary__rate--2::after, .p-control-summary__rate--3::after {
  content: "";
  background: url(../../images/control/star.svg) no-repeat left center/auto 100%;
  display: block;
  height: 24px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.p-control-summary__rate--1::after {
  width: 31px;
}
.p-control-summary__rate--2::after {
  width: 62px;
}
.p-control-summary__rate--3::after {
  width: 93px;
}
@media (min-width: 769px) {
  .p-control-summary__rate {
    height: 30px;
    width: 115px;
  }
  .p-control-summary__rate--1::after, .p-control-summary__rate--2::after, .p-control-summary__rate--3::after {
    height: 30px;
  }
  .p-control-summary__rate--1::after {
    width: 37px;
  }
  .p-control-summary__rate--2::after {
    width: 79px;
  }
  .p-control-summary__rate--3::after {
    width: 114px;
  }
}

.p-control-point {
  background: #EDFEFA;
  margin: 0 -16px;
  padding: 28px 16px 56px;
}
.p-control-point + .c-heading {
  margin-top: 40px;
}
.p-control-point > .c-heading--s:first-of-type {
  margin-top: 32px;
}
@media (min-width: 769px) {
  .p-control-point {
    border-radius: 8px;
    margin: 56px 0 0 0;
    padding-right: 40px;
    padding-left: 40px;
  }
  .p-control-point + .c-heading {
    margin-top: 56px;
  }
}

.p-control-point__movie {
  border-radius: 8px;
  margin-top: 32px;
  padding-bottom: 56.25%;
  height: 0;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.p-control-point__movie > iframe {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-control-point__movie + .c-heading {
  margin-top: 32px;
}

.p-control-point__list {
  list-style: none;
  margin-top: 8px;
}
.p-control-point__list + .c-heading {
  margin-top: 48px;
}

.p-control-point__list-item {
  background: #fff;
  border-radius: 8px;
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 14px 14px 14px 44px;
  position: relative;
}
.p-control-point__list-item::before {
  content: "";
  background: url(../../images/common/icon_check.svg) no-repeat center center/auto 100%;
  display: block;
  margin: auto;
  height: 20px;
  width: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 14px;
}
.p-control-point__list-item + .p-control-point__list-item {
  margin-top: 4px;
}

.p-control-point__detail {
  background: #fff;
  border-radius: 8px;
  margin-top: 16px;
  padding: 20px;
}

.p-control-point__detail-ttl {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.75;
}

.p-control-point__detail-txt {
  border-top: 1px solid #C0C1CD;
  color: #707070;
  font-size: 1.4rem;
  line-height: 1.6;
  margin-top: 20px;
  padding-top: 20px;
}

.p-control-point__detail-list {
  list-style: none;
  margin-top: 20px;
}

.p-control-point__detail-list-item {
  color: #009B91;
}
.p-control-point__detail-list-item::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  border-left: 4px solid #009B91;
  border-right: 0;
}
.p-control-point__detail-list-item:nth-child(n+2) {
  margin-top: 8px;
}

.p-control-case {
  border: 1px solid #EC221F;
  border-radius: 8px;
  margin-top: 16px;
}
.p-control-case + .c-heading {
  margin-top: 48px;
}
@media (min-width: 769px) {
  .p-control-case + .c-heading {
    margin-top: 56px;
  }
}

.p-control-case__item + .p-control-case__item {
  border-top: 1px solid #E1E2EB;
}

.p-control-case__ttl {
  color: #EC221F;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 16px 35px 16px 56px;
  position: relative;
}
.p-control-case__ttl::before {
  content: "";
  background: url(../../images/common/icon_alert.svg) no-repeat center center/auto 100%;
  display: block;
  margin: auto;
  height: 24px;
  width: 24px;
  position: absolute;
  left: 18px;
  top: 4px;
  bottom: 0;
}
.p-control-case__ttl::after {
  content: "";
  content: "";
  background: url(../../images/common/icon_link-arrow.svg) no-repeat center/contain;
  display: block;
  height: 16px;
  width: 9px;
  margin: auto;
  height: 10px;
  width: 6px;
  position: absolute;
  right: 18px;
  top: 0;
  bottom: 0;
  opacity: 0.3;
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.p-control-case__ttl[aria-expanded=true]::after {
  transform: rotate(-90deg);
}

.p-control-case__txt {
  background: #F9FBFD;
  border-radius: 8px;
  margin: 0 8px 8px;
  padding: 16px 20px 16px 48px;
}

.p-control-case__txt--heading {
  color: #009B91;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.3;
}

.p-control-case__txt--desc {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-top: 4px;
}

.p-control-technique {
  background: #EDFEFA;
  border-radius: 8px;
  margin-top: 16px;
  padding: 28px 20px;
}
.p-control-technique + .c-heading {
  margin-top: 48px;
}
@media (min-width: 769px) {
  .p-control-technique {
    padding: 28px 40px;
  }
  .p-control-technique + .c-heading {
    margin-top: 56px;
  }
}

.p-control-technique__item + .p-control-technique__item {
  border-top: 1px solid #C0C1CD;
  margin-top: 16px;
  padding-top: 16px;
}

.p-control-technique__ttl {
  color: #009B91;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.3;
}

.p-control-technique__txt {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-top: 8px;
}

.p-column__head {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.p-column__head .c-heading {
  width: 100%;
}
@media (min-width: 769px) {
  .p-column__head {
    justify-content: flex-start;
    gap: 8px 20px;
  }
}

.p-column__cat {
  background: #EFF0F6;
  border: 1px solid #E1E2EB;
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  padding: 4px 8px;
}
@media (min-width: 769px) {
  .p-column__cat {
    font-size: 1.4rem;
    padding: 6px 10px;
  }
}

.p-column__date {
  color: #707070;
  font-size: 1.2rem;
  line-height: 1;
}
@media (min-width: 769px) {
  .p-column__date {
    font-size: 1.4rem;
  }
}

.p-column__summary {
  margin-top: 32px;
}
.p-column__summary > *:first-child {
  margin-top: 0;
}
@media (min-width: 769px) {
  .p-column__summary {
    margin-top: 40px;
  }
}

.p-column__thumb img {
  border-radius: 8px;
  height: auto;
  width: 100%;
}
@media (min-width: 769px) {
  .p-column__thumb {
    padding: 0 60px;
  }
}

.p-column__desc {
  margin-top: 32px;
}
.p-column__desc p {
  font-size: 1.6rem;
  line-height: 1.6;
}
.p-column__desc p:nth-child(n+2) {
  margin-top: 16px;
}
@media (min-width: 769px) {
  .p-column__desc {
    margin-top: 40px;
  }
}

.p-column-navigation {
  margin-top: 80px;
}
@media (min-width: 769px) {
  .p-column-navigation {
    margin: 120px 0;
  }
}

.p-column__body {
  margin-top: 32px;
}
.p-column__body > *:first-child {
  margin-top: 0;
}
.p-column__body > *:last-child {
  margin-bottom: 0;
}
.p-column__body h1 {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.75;
  margin: 40px 0 24px;
}
@media (min-width: 769px) {
  .p-column__body h1 {
    font-size: 2.8rem;
    margin-top: 48px;
  }
}
.p-column__body h2 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.75;
  margin: 32px 0 16px;
}
@media (min-width: 769px) {
  .p-column__body h2 {
    font-size: 2.4rem;
    margin-top: 40px;
  }
}
.p-column__body h3 {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.75;
  margin: 24px 0 12px;
}
@media (min-width: 769px) {
  .p-column__body h3 {
    font-size: 2rem;
    margin-top: 32px;
  }
}
.p-column__body h4 {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.75;
  margin: 20px 0 10px;
}
@media (min-width: 769px) {
  .p-column__body h4 {
    font-size: 1.8rem;
    margin-top: 28px;
  }
}
.p-column__body p {
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 16px 0;
}
.p-column__body a {
  color: #009B91;
}
.p-column__body a:hover {
  text-decoration: none;
}
.p-column__body ol li,
.p-column__body ul li {
  font-size: 1.6rem;
  line-height: 1.6;
}
.p-column__body ol li + li,
.p-column__body ul li + li {
  margin-top: 8px;
}
.p-column__body ol {
  list-style: none;
  counter-reset: custom-counter;
}
.p-column__body ol li {
  counter-increment: custom-counter;
  text-indent: -1.1em;
  margin-left: 1.1em;
}
.p-column__body ol li::before {
  content: counter(custom-counter) ". ";
}
.p-column__body ul {
  list-style-position: inside;
}
.p-column__body ul li {
  text-indent: -1.4em;
  margin-left: 1.4em;
}

.p-search-section {
  margin-top: 40px;
}
.p-search-section:first-of-type {
  margin-top: 28px;
}
@media (min-width: 769px) {
  .p-search-section {
    margin-top: 48px;
  }
  .p-search-section:first-of-type {
    margin-top: 40px;
  }
}

.p-search-list {
  list-style: none;
  margin: 8px 0;
}
@media (min-width: 769px) {
  .p-search-list {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0 40px;
  }
}

.p-search-list__list-item {
  border-bottom: 1px solid #E1E2EB;
}
.p-search-list__list-item a {
  color: #009B91;
  display: block;
  font-size: 1.4rem;
  line-height: 1.6;
  text-decoration: none;
  padding: 10px 28px 10px 4px;
  position: relative;
}
.p-search-list__list-item a::after {
  content: "";
  display: block;
  background: url(../../images/common/icon_link-arrow.svg) no-repeat center/contain;
  height: 10px;
  width: 7px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
}
@media (min-width: 769px) {
  .p-search-list__list-item {
    align-self: stretch;
    width: calc(50% - 20px);
  }
  .p-search-list__list-item a {
    padding-top: 12px;
    padding-bottom: 12px;
    height: 100%;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-start;
    gap: unset;
  }
  .p-search-list__list-item:hover a {
    text-decoration: underline;
  }
}

.u-txt-r {
  text-align: right;
}

.u-mt-xs {
  margin-top: 4px;
}

.u-mt-sm {
  margin-top: 8px;
}

.u-mt-md {
  margin-top: 16px;
}

.u-mt-lg {
  margin-top: 24px;
}

.u-mt-xl {
  margin-top: 48px;
}

.u-mt-xxl {
  margin-top: 80px;
}

.u-mt-xxxl {
  margin-top: 120px;
}

.u-py-md {
  padding-top: 16px;
  padding-bottom: 16px;
}

.u-text-muted {
  color: #707070;
  font-size: 0.875rem;
}
