@charset "UTF-8";

/* 自家製フェード（修正） */
.fx[data-inview] {
  opacity: 0;
  /* transform: none;  ← 削除！ 初期変位は下の [data-inview] に任せる */
  will-change: transform, opacity;
  --fx-distance: 120px;
  --fx-duration: 800ms;
  --fx-ease: ease-out;
}

/* 初期の軽い持ち上げ＆トランジション */
[data-inview] {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}

[data-inview].is-inview {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-inview] {
    transition: none;
  }
}

/* キーフレーム */
@keyframes slideInFromRight {
  from {
    transform: translateX(var(--fx-distance));
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(calc(-1 * var(--fx-distance)));
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromBottom {
  from {
    transform: translateY(var(--fx-distance));
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInOnly {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ここから “最後にまとめて” 置く */
.fx.is-inview.fx-slide-from-right {
  animation: slideInFromRight var(--fx-duration) var(--fx-ease) both;
}

.fx.is-inview.fx-slide-from-left {
  animation: slideInFromLeft var(--fx-duration) var(--fx-ease) both;
}

/* ▼ bottom は「移動だけ長め」に一本化（重複させない） */
@keyframes slideUpMoveOnly {
  from {
    transform: translateY(var(--fx-distance));
  }

  to {
    transform: translateY(0);
  }
}

.fx.is-inview.fx-slide-from-bottom {
  --fx-move-duration: 700ms;
  /* 動きだけ長く */
  animation:
    slideUpMoveOnly var(--fx-move-duration) var(--fx-ease) both,
    fadeInOnly var(--fx-duration) var(--fx-ease) both;
}

.fx.is-inview.fx-fade {
  animation: fadeInOnly var(--fx-duration) var(--fx-ease) both;
}

@media (prefers-reduced-motion: reduce) {

  .fx,
  .fx.is-inview {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* カラー設定 */
.c-dl {
  /* background: #00b8ee; */
  background: #f4e934;
}

.c-recruit {
  background: #000000;
}

/* 矢印 */
.arrow01,
.arrow02 {
  position: relative;
}

.arrow01:before,
.arrow01::after,
.arrow02:before,
.arrow02::after {
  content: "";
}

.arrow01:before,
.arrow02:before {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  margin: auto;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
}

.arrow01:after,
.arrow02:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  margin: auto;
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
}

.arrow01:after {
  /* border-color: transparent transparent transparent #00b8ee; */
  border-color: transparent transparent transparent #7f8080;
}

.arrow02:after {
  border-color: transparent transparent transparent #000;
}

/* ヘッダー */
body {
  background: #f5f4f4;
}

header {
  background: #fff;
  padding: 14px 14px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.head-block {
  justify-content: center;
  align-items: center;
}

.head-block h1 {
  margin-right: 2vw;
}

.head-block h1 a {
  min-width: 213px;
  max-width: 213px;
  display: inline-block;
}

.head-block h1 a:hover {
  opacity: 0.7;
}

.h-sp-link {
  display: none;
}

.h-nav {
  justify-content: center;
  align-self: center;
  margin: 6px 2vw 0 0;
  list-style: none;
  padding: 0;
}

.h-nav li a {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0.5vw;
  text-decoration: none;
  position: relative;
}

.h-nav li a::after {
  content: "";
  background: #00b8ee;
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.h-nav li a:hover::after,
.h-nav li a:focus-visible::after {
  transform: scaleX(1);
}

/* カレント設定 */
#philosophy .h-nav li:nth-of-type(1) a::before,
#business .h-nav li:nth-of-type(2) a::before,
#business-under .h-nav li:nth-of-type(2) a::before,
#work .h-nav li:nth-of-type(3) a::before,
#work_project .h-nav li:nth-of-type(3) a::before,
#report .h-nav li:nth-of-type(4) a::before,
#about .h-nav li:nth-of-type(5) a::before,
#news .h-nav li:nth-of-type(6) a::before,
#contact .h-nav li:nth-of-type(7) a::before {
  content: "";
  background: #00b8ee;
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.sub-nav {
  margin-top: 5px;
  list-style: none;
  padding: 0;
}

.sub-nav li:nth-of-type(1) {
  margin-right: 20px;
}

.sub-nav li:nth-of-type(1) a {
  color: #7f8080;
}

.sub-nav li a {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  border-radius: 20px;
  padding: 5px 38px 5px 14px;
  transition: all 0.5s;
}

.sub-nav li a:hover {
  opacity: 0.7;
  transform: scale(1.2);
}

/* PC時ハンバーガーメニュー非表示 */
.hamburger,
.nav-close {
  display: none;
}

/* フッター */
footer {
  background: #fff;
  background-image: url(../img/f-treat.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  padding: 0 0 60px 0;
  margin: 60px auto 0;
}

.f-link-box {
  background: #d3edfb;
  padding: 60px 0;
}

.f-link-box ul {
  width: 90%;
  max-width: 1000px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
}

.f-link-box ul li {
  width: 32%;
  background: #fff;
  border-radius: 15px;
  padding: 20px 20px 20px 20px;
}

.f-link-ttl {
  font-size: 22px;
  font-weight: 600;
}

.f-link-txt {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 10px;
}

.link-download {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #808080;
  background: #fff21e;
  border-radius: 30px;
  padding: 5px 40px 5px 20px;
  margin-top: 20px;
  position: relative;
  transition: all 0.5s;
}

.link-download:hover {
  opacity: 0.7;
  transform: scale(1.1);
}

.link-download:before {
  content: "";
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto;
}

.link-download:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #808080;
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  margin: auto;
}

.f-logo {
  width: 160px;
}

.f-nav {
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #bababa;
  padding: 40px 0;
  margin-bottom: 20px;
}

.f-nav a {
  font-size: 12px;
  padding: 0 15px;
  transition: all 0.5s;
}

.f-nav a:hover {
  opacity: 0.7;
}

.mark-privacy {
  width: 50px;
}

/* 下層ページにも共通↓ */
.under-page footer {
  margin: 0 auto;
}



.viewmore {
  width: 80px;
  position: relative;
  transition: transform 0.3s ease;
}

.viewmore::after {
  content: "";
  width: 0;
  height: 1px;
  /* background-color: #00b8ee; */
  background: #f4e934;
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: width 0.3s ease;
}

.viewmore:hover::after {
  width: 100%;
}

.readmore {
  display: block;
  width: 80px;
  transition: transform 0.3s ease;

  /* ブロック全体をaタグとするため↓ */
  pointer-events: none;
}

.readmore:hover {
  transform: scale(1.2);
}

.page-link {
  display: inline-block;
}

.page-link:hover .viewmore {
  transform: scale(1.2);
}

.ttl-flex {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

h3 {
  font-size: 40px;
  line-height: 1.2;
  margin-right: 20px;
}

h4 {
  font-size: 26px;
  line-height: 1;
  margin-bottom: 15px;
}

.inner-ttl {
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 40px;
}

.inner-subttl {
  font-size: 22px;
  font-weight: 600;
  line-height: 2.2
}

.inner-ensubttl {
    font-size: 26px;
  font-weight: 600;
  line-height: 2.2
}

.white-inner {
  width: 90%;
  max-width: 1100px;
  background: #fff;
  border-radius: 20px;
  padding: 60px 55px;
  margin: 0 auto 0;
}


#work .white-inner,
#news .white-inner {
  padding: 80px 80px;
}

.under-content {
  margin: 60px auto 0;
}

.related_info {
  background: #fff;
  border-radius: 20px;
  padding: 40px 40px 80px 40px;
  margin: 60px auto 0;
}

.related_info h3 {
  padding-left: 40px;
  margin: 0 0 20px 0;
}

.related_info-flex {
  flex-wrap: wrap;
  justify-content: space-between;
}

.related_info-flex li {
  width: calc(100% / 3);
  border-right: 1px solid #bababa;
  padding: 0 40px 20px 40px;
  transition: box-shadow 0.5s ease;
}

.related_info-flex li:hover {
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 #000, 0 0 rgba(0, 0, 0, 0), 0 0 #000, 0 14px 10px rgba(14, 51, 108, 0.06), 40px 30px 40px rgba(14, 51, 108, 0.12);
}

.related_info-flex li:last-of-type {
  border-right: none;
}

.related_info-flex li a {
  position: relative;
}

.related_info-flex li a .viewmore {
  display: inline-block;
  margin-top: 10px;
  transition: transform 0.3s ease;
}

.related_info-flex li a:hover .viewmore {
  transform: scale(1.2);
}

.related-ttl {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0 5px 0;
}

.related-txt {
  font-size: 14px;
}

.related_info-card .thumb {
  overflow: hidden;
  display: block;
}

.related_info-card .thumb img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.related_info-card .thumb:hover img {
  transform: scale(1.2);
}

.related_info-card .thumb:hover::after {
  transform: scale(1);
}

.inner-item {
  max-width: 1000px;
  position: relative;
}

.inner-item li {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.inner-item li:nth-of-type(n+2) {
  margin-top: 80px;
}


.inner-item-ttl {
  width: 28%;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 2px;
  white-space: nowrap;
  margin-right: 2%;
}

.inner-item-ttl span {
  position: relative;
}

.inner-item-ttl span::after {
  content: "";
  display: block;
  background-image: url(../../common/img/arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 27px;
  height: 34px;
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
}

.inner-middle-ttl {
  font-size: 26px;
  font-weight: 600;
  margin: 30px auto 10px;
}

/* ホバー時のドロップシャドウを表示させるため */
.slick-slider .slick-list {
  padding: 40px 0;
}

.slick-prev,
.slick-next {
  position: absolute;
  top: -50px;
  /* 見出しより少し上に置く */
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.slick-prev:hover,
.slick-next:hover {
  transform: scale(1.5);
  opacity: 0.7;
}

.slick-prev {
  right: 26vw;
  /* 見出し右端から少し左 */
}

.slick-next {
  right: 22.5vw;
  /* 見出し右端 */
}

.slick-prev img,
.slick-next img {
  width: 30px;
  height: auto;
}

/* プログレスバー設置 */
.progress {
  position: relative;
  height: 3px;
  background: #fff;
  width: 100%;
  margin-top: 16px;
  overflow: hidden;
}

.progress__bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 20%;
  background: #bababa;
  transition: left 0.4s ease-in-out, width 0.2s ease;
  will-change: left;
}

button {
  all: unset;
  display: inline-block;
  cursor: pointer;
  box-sizing: border-box;
}

button:focus {
  outline: none;
  outline-offset: none;
}

.tag-flex {
  flex-direction: column;
}

.tag-row {
  display: flex;
  gap: 10px;
  /* ボタン間の横の余白 */
  margin-bottom: 10px;
  /* 行と行の余白 */
}

.tag-row button {
  font-size: 14px;
  color: #808080;
  white-space: nowrap;
  border: 1px solid #808080;
  padding: 5px 12px;
  transition: all 0.5s;
}

.tag-row button.active,
.tag-row button:hover {
  color: #fff;
  background: #808080;
}

.pagination {
  display: inline-block;
  margin-top: 60px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.pagination__list {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pagination__item {
  line-height: 1;
}

.pagination__item a,
.pagination__item span {
  font-size: 16px;
  text-decoration: none;
  line-height: 1;
  color: #777;
  vertical-align: top;
  transition: all 0.5s;
}

.pagination__item--current span {
  font-weight: bold;
  color: #000;
}

.pagination__item a:hover {
  text-decoration: underline;
  opacity: 0.7;
}

.btn_link {
  display: block;
  width: 90%;
  max-width: 320px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: #000;
  text-align: center;
  border-radius: 8px;
  padding: 10px 0;
  margin: 50px auto 0;
}

.btn_link:hover {
  opacity: 0.7;
}

.btn_link.back_btn {
  color: #000;
  background: #fff;
  border: 1px solid #231815;
  margin-bottom: 100px;
}

.page_detail {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-top: 60px;
}

.page_detail p:not(:first-of-type) {
  margin-top: 10px;
}

.page_detail .site-btn {
  margin-left: 40px;
}

.page_detail .site-btn a {
  color: #fff;
}

.page_detail .site-btn a:hover {
  opacity: 0.7;
}

.page_detail .en {
  display: inline-block;
  font-size: 14px;
  color: #808080;
  letter-spacing: 0.5px;
  margin-right: 15px;
}

.page_detail .ja {
  font-size: 18px;
}

.page_detail_study {
  font-size: 16px;
}

.page_detail_ttl {
  font-size: 40px;
  font-weight: 600;
}

  .pro-outline {
  width: 90%;
  max-width: 1000px;
  padding: 60px 0 80px 0;
  margin: 0 auto;
}

.outline-ttl {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}

.outline-txt {
  font-size: 16px;
}

.list_title {
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
}

/* レイアウト調整 */
@media (max-width: 1450px) {
  .inner-item-ttl {
    font-size: 36px;
  }
}

@media (max-width: 1280px) {
  h3 {
    font-size: 32px;
  }
}

/* tab */
@media (max-width: 1180px) {
  .head-block h1 a {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 153px;
    min-width: 153px;
    height: auto;
  }

  .h-nav li a,
  .sub-nav li a {
    font-size: 12px;
    letter-spacing: 0px;
  }

  .viewmore {
    width: 60px;
  }

  .inner-item-ttl {
    width: 18%;
    font-size: 24px;
    margin-right: 10%;
  }

  .inner-item-ttl span::after {
    width: 20px;
    height: 24px;
  }
}

/* レイアウト調整 */
@media (max-width: 980px) {
  header {
    padding: 14px 5px;
  }

  .head-block h1 {
    margin-right: 1vw;
  }

  .head-block h1 a {
    max-width: 110px;
    min-width: 110px;
  }

  .h-nav li a,
  .sub-nav li a {
    white-space: nowrap;
  }
}

/* sp*/
@media (max-width: 820px) {
  header {
    max-width: 100%;
    padding: 8px 10px;
  }

  .head-block {
    justify-content: space-between;
  }

  .head-block h1 a {
    width: 213px;
    max-width: 213px;
  }

  .h-sp-link {
    display: block;
    font-size: 12px;
    font-weight: 600;
  }

  .hamburger {
    display: block;
    width: 44px;
    height: 44px;
    background: #e7e3e3;
    border-radius: 999px;
    border: none;
    position: relative;
    z-index: 999;
    cursor: pointer;
  }

  .hamburger .bar,
  .hamburger::before,
  .hamburger::after {
    content: "";
    background: #000;
    position: absolute;
    left: 10px;
    right: 10px;
    height: 1px;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }

  .hamburger .bar {
    top: 21px;
  }

  .hamburger::before {
    top: 14px;
  }

  .hamburger::after {
    top: 28px;
  }

  .hamburger[aria-expanded="true"] .bar {
    opacity: 0;
  }

  .hamburger[aria-expanded="true"]::before {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger[aria-expanded="true"]::after {
    transform: translateY(-7px) rotate(-45deg);
  }

  .h-nav-inner {
    gap: 8px;
  }

  .site-overlay {
    width: 100%;
    position: fixed;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .h-nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: -6px 0 20px rgba(0, 0, 0, 0.08);
    padding: 72px 0 24px 0;
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 900;

    /* ★ スクロール可能にする */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* iOSで慣性スクロール */
  }

  .h-nav {
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }

  .h-nav li {
    width: 100%;
    border-bottom: 1px solid #7d7878;
  }

  .h-nav li a {
    font-size: 20px;
    text-align: center;
    padding: 1.2rem 0;
    margin: 0;
  }

  .h-nav li a::after {
    content: none;
  }

  #philosophy .h-nav li:nth-of-type(1) a::before,
  #business .h-nav li:nth-of-type(2) a::before,
  #work .h-nav li:nth-of-type(3) a::before,
  #report .h-nav li:nth-of-type(4) a::before,
  #about .h-nav li:nth-of-type(5) a::before,
  #news .h-nav li:nth-of-type(6) a::before,
  #contact .h-nav li:nth-of-type(7) a::before {
    content: none;
  }

  .sub-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    margin-top: 12px;
  }

  .sub-nav li {
    width: 90%;
    margin: 0 auto;
  }

  .sub-nav li:nth-of-type(1) {
    margin: 0 auto;
  }

  .sub-nav li a {
    width: 100%;
    font-size: 20px;
    text-align: center;
    padding: 10px 14px;
    border-radius: 999px;
  }

  .sub-nav li a:hover {
    transform: scale(1);
  }

  .h-nav-inner.is-open {
    transform: translateX(0);
  }

  .site-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 800;
  }

  .nav-close {
    display: none;
    font-size: 28px;
    line-height: 1;
    border: none;
    background: transparent;
    cursor: pointer;
  }

  .nav-close {
    display: block;
    width: 44px;
    height: 44px;
    text-align: center;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 999px;
    position: absolute;
    top: 16px;
    right: 16px;
  }

  .nav-close:active {
    transform: scale(0.96);
  }

  /* ハンバーガーメニュー開いている間、ページをスクロールできないようにする」ための指定 */
  html.nav-locked,
  body.nav-locked {
    overflow: hidden;
  }

  footer {
    padding: 0 0 10px 0;
    margin: 60px auto 0;
  }

  .f-link-box {
    padding: 30px 0;
  }

  .f-link-box ul li {
    width: 100%;
  }

  .f-link-box ul li:nth-of-type(n + 2) {
    margin-top: 10px;
  }

  .f-link-ttl {
    font-size: 20px;
  }

  .link-download:hover {
    transform: scale(1);
  }

  .f-nav {
    flex-wrap: wrap;
    padding: 30px 0;
  }

  .f-nav .com-logo {
    width: 100%;
  }

  .f-logo {
    width: 60%;
    margin: 0 auto 20px;
  }

  .f-nav li:nth-of-type(2),
  .f-nav li:nth-of-type(3) {
    text-align: center;
    padding: 0 10px;
  }

  .f-nav li:nth-of-type(4) {
    width: 10%;
    max-width: 70px;
  }

  .f-nav li:nth-of-type(2) {
    border-right: 1px solid #bababa;
  }

  .f-nav li:nth-of-type(2) a .f-nav li:nth-of-type(3) a {
    padding: 10px 0;
  }

  /* 下層ページにも共通 */
  .viewmore {
    width: 55px;
    top: -4px;
  }

  .viewmore:hover {
    transform: scale(1);
  }

  .readmore {
    width: 55px;
  }

  .readmore:hover {
    transform: scale(1);
  }

  .ttl-flex {
    margin-bottom: 10px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 20px;
    position: relative;
    top: -25px;
    left: 70px;
    margin-bottom: 22px;
  }

  .inner-ttl {
    font-size: 18px;
    line-height: 1.4;
  }

  .inner-subttl {
    font-size: 18px;
    line-height: 1.8;
  }

  .inner-ensubttl {
    font-size: 22px;
  }

  .under-content {
    padding-bottom: 30px;
    margin: 30px auto 0;
  }

  .white-inner {
    padding: 30px 20px;
  }


  #work .white-inner,
  #news .white-inner {
    padding: 30px 20px;
  }

  .related_info {
    width: 90%;
    padding: 20px 20px 20px 20px;
  }

  .related_info .inner_1000 {
    width: 100%;
  }

  .related_info h3 {
    padding-left: 0;
  }

  .related_info-flex li {
    width: 100%;
    border-right: none;
    padding: 0;
  }

  .related_info-flex li:nth-of-type(n + 2) {
    margin-top: 40px;
  }

  .related_info-flex li:hover {
    box-shadow: none;
  }


  .inner-item li:nth-of-type(n+2) {
    margin-top: 80px;
  }

  .inner-item-ttl {
    width: 100%;
    font-size: 18px;
    margin-bottom: 10px;
  }

  .inner-item-ttl span::after {
    width: 14px;
    height: 17px;
    right: -28px;
  }

  .inner-middle-ttl {
    font-size: 22px;
    margin-top: 0;
  }

  /* スライド共通 */
  .slick-next {
    right: 0;
  }

  .slick-prev {
    right: 38px;
  }

  .slick-prev:hover,
  .slick-next:hover {
    transform: scale(1);
    opacity: 1;
  }

    .tag-row {
    flex-wrap: wrap;
  }


  .btn_link {
    margin-top: 30px;
  }

  .btn_link:hover {
    opacity: 1;
  }

  .btn_link.back_btn {
    margin: 60px auto 20px;
  }

   .page_detail_ttl {
    font-size: 24px;
  }

   .page_detail {
    margin-top: 30px;
  }

  .page_detail div {
    width: 100%;
  }

  .page_detail .site-btn {
    width: 100%;
    margin: 20px 0 0 0;
  }

  .page_detail .site-btn a:hover {
    opacity: 1;
  }

  .page_detail .ja {
    font-size: 14px;
  }

   .pro-outline {
    padding: 30px 0 40px 0;
  }
}

/* スマホ実機サイズ用 */
@media (max-width: 499px) {
  .head-block h1 a {
    width: 150px;
    max-width: 150px;
  }
}


/* 矢印非表示 */
.inner-item-ttl span::after {
  content: none;
}