@charset "UTF-8";
/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}

button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
}

button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td, th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

/* destyleにスタイル追加 */
li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

address {
  font-style: normal;
}

sup {
  font-size: smaller;
  vertical-align: super;
}

/* destyleにスタイル追加②フォーム系 */
button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  text-transform: none;
  border-radius: 0;
}

textarea {
  resize: vertical;
}

[type=number] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
[type=number]::-webkit-outer-spin-button, [type=number]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}

[type=radio],
[type=checkbox] {
  cursor: pointer;
}

button,
[type=submit],
[type=reset] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background: none;
  border: none;
}

label {
  cursor: pointer;
}

/* --------------------------------------------
 font
-------------------------------------------- */
@font-face {
  font-family: "NotoSansJP";
  font-weight: 700;
  src: url("../font/NotoSansJP-Bold.woff") format("woff");
}
@font-face {
  font-family: "NotoSansJP";
  font-weight: 500;
  src: url("../font/NotoSansJP-Medium.woff") format("woff");
}
@font-face {
  font-family: "NotoSansJP";
  font-weight: 400;
  src: url("../font/NotoSansJP-Regular.woff") format("woff");
}
/* --------------------------------------------
 base
-------------------------------------------- */
body {
  overflow-x: hidden;
  font-family: "YakuHanJPs", "NotoSansJP", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #1E1E1E;
}
@media (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}

/* br */
.pc-only {
  display: none;
}
@media (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

/* 非表示要素 */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --------------------------------------------
layout
-------------------------------------------- */
.wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0 5px 5px;
}
@media (min-width: 768px) {
  .wrapper {
    padding: 0 13px 13px;
  }
}

main {
  flex: 1;
}

.container {
  max-width: 1200px;
  padding-inline: 6.4102564103vw;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    padding-inline: 4.1666666667vw;
  }
}

/* --------------------------------------------
 header
-------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background: #FFF;
}
@media (min-width: 768px) {
  .header {
    padding-inline: 5.5555555556vw;
  }
}

.header-container {
  display: flex;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .header-container {
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    padding-block: 15px;
    margin: 0 auto;
  }
}

.header__header-title {
  display: none;
}
@media (min-width: 768px) {
  .header__header-title {
    display: block;
    font-size: 1.4375rem;
    color: #CACACA;
  }
}

/* グローバルメニューopenボタン */
.header__menu-btn {
  position: relative;
  width: 3.125rem;
  height: 3.125rem;
  text-align: center;
  border: 1px solid #CACACA;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .header__menu-btn {
    display: none;
  }
}

.header__menu-text {
  position: absolute;
  top: 50%;
  left: 50%;
  font-weight: 700;
  color: #CACACA;
  transform: translate(-50%, -50%);
}

/* グローバルメニューコンテンツ */
@media (max-width: 768px) {
  .header-nav__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
  }
}

.header-nav {
  position: fixed;
  top: 0;
  right: -80%;
  z-index: 50;
  width: 80%;
  height: 100%;
  margin: auto;
  visibility: hidden;
  background: #FFF;
  box-shadow: -5px 0 10px 0 rgba(148, 151, 134, 0.3);
  opacity: 0;
  transition: all 0.4s;
}
@media (min-width: 768px) {
  .header-nav {
    position: relative;
    right: auto;
    left: 0;
    width: auto;
    margin: 0;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }
}

/* メニューclose オーバーレイ */
.header-nav__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  background: rgba(223, 223, 223, 0.6);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  opacity: 0;
  transition: opacity 0.5s, visibility 0.5s;
}
@media (min-width: 768px) {
  .header-nav__overlay {
    display: none;
  }
}

/* メニューclose ボタン */
.header-nav__close-btn {
  padding: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #CACACA;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .header-nav__close-btn {
    display: none;
  }
}

.header-nav__top {
  text-align: center;
  opacity: 0;
  transition: opacity 0.2s;
}
@media (min-width: 768px) {
  .header-nav__top {
    text-align: unset;
    opacity: 1;
  }
}

.header-nav-list {
  padding: 60px 30px 30px;
  margin: 10px;
  text-align: center;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .header-nav-list {
    display: flex;
    gap: 3.8194444444vw;
    padding: 0;
  }
}

.header-nav-list__item {
  width: 100%;
  transition: opacity 0.3s;
}
@media (min-width: 768px) {
  .header-nav-list__item {
    width: auto;
    padding: 2px;
  }
  .header-nav-list__item:hover {
    opacity: 0.5;
  }
}

.header-nav-list__item:not(:last-child) {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .header-nav-list__item:not(:last-child) {
    padding-bottom: 0;
  }
}

.header-nav-list__link {
  display: block;
  padding: 10px;
  font-size: 1.1875rem;
  font-weight: 700;
  background: #FFF;
  border: 1px solid #93A86A;
  border-radius: 5px;
}
@media (min-width: 768px) {
  .header-nav-list__link {
    padding: 2px;
    border: transparent;
  }
}

/* メニュー内サイトタイトル */
.header-nav__bottom {
  padding: 0% 5% 40%;
  margin: 10px;
  background-position: bottom;
  background-size: contain;
  border-radius: 10px;
  background-image: url("../img/_common/image_bg-trees.webp");
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .header-nav__bottom {
    display: none;
  }
}

.header-nav-title {
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transition: opacity 2s 0.2s;
}

.header-nav-title__img {
  max-width: 100px;
  padding-bottom: 8px;
  margin: 0 auto;
}

.header-nav-title__name {
  padding-right: 6px;
  background: linear-gradient(90deg, rgb(135, 154, 57) 9%, rgb(157, 182, 113) 30%, rgb(87, 139, 101) 83%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-nav-title__heading {
  font-size: min(5.1282051282vw, 25px);
  font-weight: 500;
  border-bottom: 1px solid #e8e8e8;
}

/* グローバルメニュー オープン */
@media (max-width: 768px) {
  body.is-open {
    overflow: hidden;
  }
  body.is-open .header-nav {
    right: 0%;
    visibility: visible;
    opacity: 1;
  }
  body.is-open .header-nav__overlay {
    visibility: visible;
    opacity: 1;
  }
  body.is-open .header-nav__top {
    opacity: 1;
  }
  body.is-open .header-nav-title {
    opacity: 1;
  }
}
/* --------------------------------------------
 link
-------------------------------------------- */
/* ページ内リンク調整 */
.anchor {
  padding-top: 100px;
  margin-top: -100px;
}

/* リンクボタン */
.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  padding-block: 0.875rem;
  margin: 0 auto;
  border: 0.5px transparent solid;
  border-radius: 50px;
  transition: opacity 0.2s, box-shadow 0.2s;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  .page-link {
    display: inline-flex;
    width: auto;
    padding-inline: 1.25rem;
  }
}

.page-link__text {
  padding-right: 20px;
  font-size: 0.875rem;
}

.page-link__arrow {
  position: relative;
  width: 30px;
  height: 13px;
  overflow: hidden;
}
.page-link__arrow::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-size: contain;
  transition: transform 0.3s;
  background-image: url("../img/_common/icon_arrow-to-right.svg");
  background-repeat: no-repeat;
}

/* リンクボタン ホバー時 */
@media (min-width: 768px) {
  .page-link:hover {
    border: 0.5px #CACACA solid;
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0);
  }
  .page-link:hover .page-link__arrow::before {
    transform: translateX(3px);
  }
}
/* --------------------------------------------
components
-------------------------------------------- */
/* 大きい見出し */
.main-heading {
  padding-top: 24px;
  padding-bottom: 40px;
  font-size: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .main-heading {
    padding-bottom: 80px;
    font-size: 40px;
  }
}

/* --------------------------------------------
 loading
-------------------------------------------- */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: #fff;
}

body.is-fixed {
  overflow: hidden;
}

.loading-pulse {
  width: 60px;
  height: 60px;
  margin: 100px auto;
  background-color: #93A86A;
  border-radius: 100%;
  opacity: 0;
}

/* --------------------------------------------
 animation
-------------------------------------------- */
/* 上にふわっと */
.fadeup-animation {
  opacity: 0;
  transition: opacity 0.7s, transform 0.7s;
  transform: translateY(10px);
}

.fadeup-animation.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ふわっと */
.fadein-animation {
  opacity: 0;
  transition: opacity 1s 0.2s;
}

.fadein-animation.visible {
  opacity: 1;
}

/* --------------------------------------------
 footer
-------------------------------------------- */
/* topへ戻る */
.page-top {
  text-align: center;
  border-top: 1px solid #CACACA;
}

.page-top__link {
  display: block;
  padding-block: 0.5rem;
}

.page-top__icon {
  width: 18px;
  padding-bottom: 5px;
  margin-right: 5px;
}

.page-top__text {
  font-size: 0.9375rem;
  color: #CACACA;
}

/* フッター共通 */
.footer-container {
  position: relative;
  padding-inline: 7.6923076923vw;
  padding-top: 40px;
  overflow: hidden;
  border-radius: 15px;
}
.footer-container::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #1E1E1E;
  mix-blend-mode: multiply;
}
@media (min-width: 768px) {
  .footer-container {
    padding-inline: 4.1666666667vw;
    border-radius: 20px;
  }
}

.footer__copyright {
  position: relative;
  z-index: 5;
  padding-bottom: 12px;
  color: #4a4a4a;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__copyright {
    font-size: 0.875rem;
  }
}

/* WORKSのフッター */
.footer-works-list {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 10px;
  justify-content: center;
  max-width: 1100px;
  padding-top: 40px;
  margin: 0 auto;
  margin-bottom: 100px;
}
@media (min-width: 768px) {
  .footer-works-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 7% 2%;
  }
}

.footer-works-list__title {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 7;
  padding: 5px;
  font-size: min(1.3888888889vw, 0.9375rem);
  color: #FFF;
  text-align: center;
  letter-spacing: 0.03em;
  border: 0.4px solid #FFF;
  border-radius: 3px;
  opacity: 0;
  transition: opacity 0.3s;
  transform: translate(-50%, -50%);
}

.footer-works-list__link {
  position: relative;
  display: block;
}
.footer-works-list__link::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  content: "";
  background: #1E1E1E;
  opacity: 0;
  transition: opacity 0.3s;
}

.footer-works-list__thumb {
  overflow: hidden;
  border-radius: 8px;
}

.footer-works-list__thumb > img {
  transition: transform 0.3s ease-out;
}

/* モックアップホバー時 */
@media (min-width: 768px) {
  .footer-works-list__link:hover::before {
    opacity: 0.8;
  }
  .footer-works-list__link:hover .footer-works-list__title {
    opacity: 1;
  }
  .footer-works-list__link:hover .footer-works-list__thumb > img {
    filter: blur(1px);
    transform: scale(1.05);
  }
}
/* ****** ここからworksページ固有 ****** */
/* --------------------------------------------
 worksページ共通 layout
-------------------------------------------- */
@media (min-width: 768px) {
  .container--wide {
    max-width: unset;
  }
}

/* --------------------------------------------
 ページ上部　概要エリア
-------------------------------------------- */
/* 制作物タイトル */
.works-title {
  padding-top: 40px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .works-title {
    padding-top: 60px;
    margin-bottom: 70px;
  }
}

.works-title__heading {
  margin-bottom: 13px;
  font-size: 1.1875rem;
}
@media (min-width: 768px) {
  .works-title__heading {
    font-size: 2.375rem;
  }
}

.works-title__meta {
  color: #CACACA;
}

.works-title__type {
  padding: 1px 5px;
  margin-right: 10px;
  font-weight: 700;
  color: #CACACA;
  border: 1px solid #CACACA;
  border-radius: 6px;
}

/* web - メインビジュアル */
.web-top-img {
  margin: 0 auto 50px;
}
@media (min-width: 768px) {
  .web-top-img {
    max-width: 1100px;
    margin: 0 auto 65px;
  }
}

.web-top-img__img {
  border: 1px solid #CACACA;
  box-shadow: 2px 2px 4px 0 rgba(108, 108, 108, 0.3);
}
@media (min-width: 768px) {
  .web-top-img__img {
    box-shadow: 2px 2px 6px 0 rgba(108, 108, 108, 0.3);
  }
}

.web-top-img__img--scroll {
  height: 400px;
  overflow-y: scroll;
  box-shadow: none;
}
@media (min-width: 768px) {
  .web-top-img__img--scroll {
    height: 580px;
  }
}

.web-top-img__message {
  padding-bottom: 10px;
  color: #CACACA;
  text-align: center;
}

.link-to-site {
  display: block;
}

/* logo - メインビジュアル(スライダー) */
.logo-slide {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 50px;
  background: #dbdbdb;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .logo-slide {
    padding-bottom: 30px;
    margin-bottom: 65px;
    border-radius: 20px;
  }
}
.logo-slide::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background-size: cover;
  mix-blend-mode: multiply;
  background-image: url("../img/_common/bg_polygon.webp");
  background-repeat: no-repeat;
}

.logo-slide__main-image {
  position: relative;
  z-index: 5;
  width: 90%;
  max-width: 800px;
  height: 400px;
  margin: 0 auto;
  overflow: hidden;
}
@media (min-width: 768px) {
  .logo-slide__main-image {
    width: 80%;
  }
}

.logo-slide__main-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.4s ease;
  transform: translate(-50%, -50%);
}

.logo-slide__thumbnail {
  position: relative;
  z-index: 5;
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 0;
  list-style: none;
}

.logo-slide__thumbnail label {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.logo-slide__thumbnail-img {
  display: block;
  max-width: 80px;
  padding-block: 0;
  cursor: pointer;
  background: #FFF;
  opacity: 1;
  transition: opacity 0.4s ease;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 768px) {
  .logo-slide__thumbnail-img {
    max-width: 150px;
    padding-block: 10px;
  }
}

#img1:checked ~ .logo-slide__thumbnail label[for=img1],
#img2:checked ~ .logo-slide__thumbnail label[for=img2],
#img3:checked ~ .logo-slide__thumbnail label[for=img3] {
  opacity: 1;
}

#img1:checked ~ .logo-slide__thumbnail label[for=img2],
#img1:checked ~ .logo-slide__thumbnail label[for=img3],
#img2:checked ~ .logo-slide__thumbnail label[for=img1],
#img2:checked ~ .logo-slide__thumbnail label[for=img3],
#img3:checked ~ .logo-slide__thumbnail label[for=img1],
#img3:checked ~ .logo-slide__thumbnail label[for=img2] {
  opacity: 1;
}

#img1:checked ~ .logo-slide__main-image img:nth-child(1),
#img2:checked ~ .logo-slide__main-image img:nth-child(2),
#img3:checked ~ .logo-slide__main-image img:nth-child(3) {
  opacity: 1;
}

#img1:checked ~ .logo-slide__thumbnail label[for=img1] img,
#img2:checked ~ .logo-slide__thumbnail label[for=img2] img,
#img3:checked ~ .logo-slide__thumbnail label[for=img3] img {
  outline: 3px solid #808080;
}
@media (min-width: 768px) {
  #img1:checked ~ .logo-slide__thumbnail label[for=img1] img,
  #img2:checked ~ .logo-slide__thumbnail label[for=img2] img,
  #img3:checked ~ .logo-slide__thumbnail label[for=img3] img {
    outline: 3px solid #808080;
  }
}

/* DTP - メインビジュアル */
.dtp-top-img {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
}

.dtp-top-img img {
  filter: drop-shadow(1px 2px 4px rgba(163, 163, 163, 0.8));
}

/* web・その他共通 - 概要情報テーブル */
.outline {
  padding-bottom: 60px;
  margin-bottom: 30px;
  border-bottom: 1px solid #8D8D8D;
}
@media (min-width: 768px) {
  .outline {
    margin-bottom: 40px;
  }
}

.outline__wrapper {
  display: flex;
  flex-direction: column-reverse;
  row-gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .outline__wrapper {
    flex-direction: row;
    gap: 2.7777777778vw;
  }
}

.outline__mockup {
  max-width: 420px;
}
@media (min-width: 768px) {
  .outline__mockup {
    width: 43.0555555556vw;
    max-width: 690px;
    margin-left: -50px;
  }
}

@media (min-width: 768px) {
  .outline__table {
    font-size: 1.125rem;
  }
}

.outline__row {
  display: flex;
  gap: 0.9375rem 1rem;
  align-items: flex-start;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .outline__row {
    -moz-column-gap: 1.875rem;
    column-gap: 1.875rem;
    margin-bottom: 14px;
  }
}

.outline__dt {
  width: 5.3125rem;
  min-width: 85px;
  padding-block: 4px;
  font-weight: 500;
  color: #808080;
  text-align: center;
  border-right: 1px solid #CACACA;
  border-bottom: 1px solid #CACACA;
}
@media (min-width: 768px) {
  .outline__dt {
    width: 6.25rem;
  }
}

.outline__dd {
  line-height: 1.5;
}

.outline__dd-list > li {
  position: relative;
  padding-left: 15px;
}
.outline__dd-list > li::after {
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 6px;
  content: "●";
  transform: translateY(-47%);
}

.outline__dd-link {
  position: relative;
  padding-right: 20px;
  color: #808080;
}
.outline__dd-link::after {
  position: absolute;
  top: 50%;
  width: 15px;
  height: 15px;
  margin-left: 5px;
  content: "";
  transform: translateY(-50%);
  background-image: url("../img/_common/icon_external-link.svg");
  background-repeat: no-repeat;
}

/* logo・DTP - 概要情報テーブル */
.outline__inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, 21.875rem);
  justify-content: center;
}
.outline__inner .outline__table {
  padding-left: 30px;
}
@media (min-width: 768px) {
  .outline__inner {
    grid-template-columns: repeat(auto-fill, 28.75rem);
  }
  .outline__inner .outline__table {
    padding-left: 60px;
  }
}

/* --------------------------------------------
 topic-section
 テキスト類共通パーツ
-------------------------------------------- */
.topic-heading {
  position: relative;
  padding-left: 18px;
  margin-bottom: 16px;
  font-size: 1.125rem;
}
.topic-heading::before {
  position: absolute;
  inset: 0 auto;
  left: 0;
  width: 8px;
  height: 80%;
  margin: auto;
  content: "";
  background: #1E1E1E;
}
@media (min-width: 768px) {
  .topic-heading {
    padding-left: 25px;
    margin-bottom: 24px;
    font-size: 1.5625rem;
  }
  .topic-heading::before {
    width: 12px;
  }
}

.topic-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.topic-summary {
  margin-bottom: 20px;
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .topic-summary {
    font-size: 1.4375rem;
  }
}

.topic-description {
  margin-bottom: 40px;
  text-align: justify;
  line-height: 2;
}
@media (min-width: 768px) {
  .topic-description {
    margin-bottom: 40px;
  }
}

/* --------------------------------------------
 relief旧サイトへのリンク
-------------------------------------------- */
.works-link-section {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .works-link-section {
    margin-bottom: 40px;
  }
}

.works-link {
  display: flex;
  flex-direction: column-reverse;
  gap: 4.1666666667vw;
  align-items: center;
  max-width: 400px;
  padding: 20px;
  margin: 0 auto;
  border: 0.5px transparent solid;
  border-radius: 24px;
  box-shadow: 0 2px 8px 0 rgba(108, 108, 108, 0.4);
  transition: opacity 0.2s, border 0.2s;
}
@media (min-width: 768px) {
  .works-link {
    flex-direction: row;
    justify-content: center;
    max-width: unset;
    padding: 30px;
    box-shadow: 0 4px 8px 0 rgba(108, 108, 108, 0.3);
  }
  .works-link:hover {
    border: 0.5px #CACACA solid;
    opacity: 0.7;
  }
}

.works-link__content {
  position: relative;
}
.works-link__content::before {
  position: absolute;
  top: 0;
  left: -2rem;
  font-size: 36px;
  font-weight: 700;
  color: #efefef;
  content: "Before";
}
@media (min-width: 768px) {
  .works-link__content {
    padding-left: 7%;
    border-left: 1px solid #CACACA;
  }
  .works-link__content::before {
    top: -2rem;
    left: 1rem;
  }
}

.works-link__title {
  padding-top: 50px;
  margin-bottom: 10px;
  font-size: 1.1875rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.1em;
}
@media (min-width: 768px) {
  .works-link__title {
    padding-top: 10px;
    margin-bottom: 15px;
    font-size: 1.4375rem;
    text-decoration-thickness: 0.05em;
  }
}

.works-link__text {
  color: #808080;
}

.works-link__img {
  max-width: 280px;
}
@media (min-width: 768px) {
  .works-link__img {
    width: 50%;
    max-width: 390px;
  }
}

/* --------------------------------------------
 sp-mockup
 スマホのモックアップ画像
-------------------------------------------- */
.sp-mockup {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 330px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .sp-mockup {
    height: 600px;
    margin-bottom: 0;
  }
}

.sp-mockup__band {
  position: relative;
  width: 100vw;
  height: 100px;
  margin: 0 calc(50% - 50vw);
}
@media (min-width: 768px) {
  .sp-mockup__band {
    height: 200px;
  }
}

.sp-mockup__band--pink {
  background: radial-gradient(circle, rgb(243, 208, 197) 66%, rgb(255, 243, 238) 98%);
}
@media (min-width: 768px) {
  .sp-mockup__band--pink {
    background: radial-gradient(circle, rgb(243, 208, 197) 9%, rgb(255, 243, 238) 83%);
  }
}

.sp-mockup__band--orange {
  background: radial-gradient(circle, rgb(248, 208, 179) 66%, rgb(255, 248, 238) 98%);
}
@media (min-width: 768px) {
  .sp-mockup__band--orange {
    background: radial-gradient(circle, rgb(248, 208, 179) 9%, rgb(255, 248, 238) 83%);
  }
}

.sp-mockup__band--blue {
  background: radial-gradient(circle, rgb(63, 82, 111) 14%, rgb(112, 131, 157) 56%, rgb(210, 215, 222) 91%);
}
@media (min-width: 768px) {
  .sp-mockup__band--blue {
    background: radial-gradient(circle, rgb(63, 82, 111) 3%, rgb(112, 131, 157) 36%, rgb(210, 215, 222) 78%);
  }
}

.sp-mockup__band--green {
  background: radial-gradient(circle, rgb(122, 154, 57) 4%, rgb(147, 170, 100) 43%, rgb(202, 212, 205) 91%);
}
@media (min-width: 768px) {
  .sp-mockup__band--green {
    background: radial-gradient(circle, rgb(122, 154, 57) 4%, rgb(147, 170, 100) 14%, rgb(202, 212, 205) 91%);
  }
}

.sp-mockup__word-list {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  gap: 10.2564102564vw;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  transform: translate(-50%, -50%);
}

.sp-mockup__word-item {
  font-size: 1rem;
  line-height: 1.4;
  color: #FFF;
  letter-spacing: 0.3em;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .sp-mockup__word-item {
    font-size: 2.5rem;
    letter-spacing: 0.1em;
  }
}

.sp-mockup__img {
  position: absolute;
  top: 60%;
  left: 50%;
  width: 100%;
  max-width: 500px;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .sp-mockup__img {
    width: 70%;
    max-width: 730px;
  }
}

/* --------------------------------------------
 works-comp
 カンプ類セクション
-------------------------------------------- */
.works-comp {
  padding-block: 60px;
  margin-bottom: 40px;
  background: #CACACA;
  border-radius: 15px;
}
@media (min-width: 768px) {
  .works-comp {
    padding-block: 80px;
    margin-bottom: 60px;
    border-radius: 20px;
  }
}

.works-comp__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 640px) {
  .works-comp__wrapper {
    flex-direction: row;
  }
}

.works-comp__img img {
  box-shadow: 10px 10px 20px 0 rgba(143, 143, 143, 0.25);
}

.works-comp__img--lg {
  flex: 3;
}

.works-comp__img--sm {
  flex: 2;
}

/* --------------------------------------------
 works-point-section
 こだわりセクション
-------------------------------------------- */
.works-point-section {
  margin-bottom: 60px;
  border-bottom: 1px solid #8D8D8D;
}

/* こだわりポイントタイトル */
.works-point__heading {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  padding-bottom: 8px;
  margin-bottom: 30px;
  font-size: 1.125rem;
  border-bottom: 1px solid #CACACA;
}
@media (min-width: 768px) {
  .works-point__heading {
    flex-wrap: nowrap;
    padding-bottom: 0;
    margin-bottom: 60px;
    font-size: 1.4375rem;
    white-space: nowrap;
    border-bottom: none;
  }
}

.works-point__number {
  padding-right: 10px;
  font-size: 1.25rem;
  color: #CACACA;
}
@media (min-width: 768px) {
  .works-point__number {
    padding-right: 20px;
    font-size: 2rem;
  }
}

.works-point__line {
  display: none;
}
@media (min-width: 768px) {
  .works-point__line {
    display: block;
    width: 100%;
    height: 1px;
    margin-left: 20px;
    background: #CACACA;
  }
}

/* こだわりポイントコンテナ */
.works-point-container {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .works-point-container {
    margin-bottom: 60px;
  }
}

.works-point-container--row {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .works-point-container--row {
    flex-direction: row;
  }
}

.works-point-container--row-reverse {
  display: flex;
  flex-direction: column-reverse;
  -moz-column-gap: 40px;
  column-gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .works-point-container--row-reverse {
    flex-direction: row-reverse;
  }
}

.works-point__img {
  width: 80%;
  max-width: 330px;
}
@media (min-width: 768px) {
  .works-point__img {
    width: 25%;
    min-width: 330px;
  }
}

.works-point__img--shadow {
  box-shadow: 2px 2px 4px 0 rgba(108, 108, 108, 0.3);
}
@media (min-width: 768px) {
  .works-point__img--shadow {
    box-shadow: 2px 2px 6px 0 rgba(108, 108, 108, 0.3);
  }
}

.works-point__img-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.works-point__img-item {
  max-width: 150px;
}
@media (min-width: 768px) {
  .works-point__img-item {
    max-width: 180px;
  }
}

/* --------------------------------------------
 works-point__slide
 企画書スライダー
-------------------------------------------- */
.works-point-container--slider {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
@media (width >= 1200px) {
  .works-point-container--slider {
    flex-direction: row;
  }
}

.works-point__slide {
  position: relative;
  display: inline-block;
  width: 100vw;
}
@media (min-width: 768px) {
  .works-point__slide {
    width: unset;
  }
}

.carousel {
  position: relative;
  z-index: 9;
  display: inline-block;
  display: flex;
  justify-content: center;
  margin: 0 5px;
}

.carousel-contains {
  position: relative;
  width: 600px;
  padding: 0;
  overflow: hidden;
  list-style: none;
}

.slide {
  position: absolute;
  padding: 3px;
  background: #808080;
  opacity: 0;
}
@media (min-width: 768px) {
  .slide {
    padding: 5px;
    border-radius: 3px;
  }
}

/* 1番目のスライド選択時 */
.slide_select:nth-of-type(1):checked ~ .slide:nth-of-type(1) {
  opacity: 1;
}

.slide_select:nth-of-type(1):checked ~ .move_controler .button_move:nth-of-type(1) {
  opacity: 1;
}

.slide_select:nth-of-type(2):checked ~ .slide:nth-of-type(2) {
  opacity: 1;
}

.slide_select:nth-of-type(2):checked ~ .move_controler .button_move:nth-of-type(2) {
  opacity: 1;
}

.slide_select:nth-of-type(3):checked ~ .slide:nth-of-type(3) {
  opacity: 1;
}

.slide_select:nth-of-type(3):checked ~ .move_controler .button_move:nth-of-type(3) {
  opacity: 1;
}

.slide_select:nth-of-type(4):checked ~ .slide:nth-of-type(4) {
  opacity: 1;
}

.slide_select:nth-of-type(4):checked ~ .move_controler .button_move:nth-of-type(4) {
  opacity: 1;
}

.pagination {
  inset: auto 0;
  margin: auto;
  text-align: center;
}

.scroll_button {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: block;
  width: 20px;
  height: 20px;
  cursor: pointer;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.8));
  border-color: #FFF;
  border-style: solid;
  border-width: 4px 4px 0 0;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.scroll_button:hover {
  opacity: 1;
}

.scroll_prev {
  left: 12px;
  transform: rotate(-135deg);
}

.scroll_next {
  right: 12px;
  transform: rotate(45deg);
}

/* --------------------------------------------
 logo img
 ロゴページ画像関連のスタイル
-------------------------------------------- */
.logo-img,
.logo-fixed-img {
  text-align: center;
}

.logo-img__img {
  max-width: 450px;
  height: 110px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .logo-img__img {
    max-width: 530px;
    height: 150px;
  }
}

.logo-fixed-img__img {
  max-width: 550px;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  margin-bottom: 80px;
  border: 1px solid #CACACA;
}
@media (min-width: 768px) {
  .logo-fixed-img__img {
    max-width: 600px;
    height: 300px;
  }
}

/* 説明用イメージ */
.material-img {
  margin-bottom: 40px;
}

/* --------------------------------------------
 DTP img
 DTPページ画像関連のスタイル
-------------------------------------------- */
.dtp-middle-img {
  width: 100%;
  max-width: 400px;
  padding-top: 20px;
  margin: 0 auto;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .dtp-middle-img {
    width: 60%;
    max-width: 550px;
    padding-top: 80px;
    margin-bottom: 60px;
  }
}

.dtp-middle-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
  margin: 0 auto;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .dtp-middle-wrapper {
    flex-direction: row;
    gap: 80px;
    max-width: 1000px;
  }
}

.dtp-middle__text {
  padding-bottom: 3px;
}

/* --------------------------------------------
 end-section
 振り返りセクション
-------------------------------------------- */
.end-section {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .end-section {
    margin-bottom: 80px;
  }
}

.topic-heading--end {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .topic-heading--end {
    margin-bottom: 60px;
  }
}

.end__wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.end__heading {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding-bottom: 5px;
  margin-bottom: 16px;
  font-size: 0.9375rem;
  border-bottom: 1px solid #B4554D;
}
@media (min-width: 768px) {
  .end__heading {
    padding-bottom: 0;
    font-size: 1.25rem;
    border-bottom: none;
  }
}

.end__heading-theme {
  display: block;
  width: 9.375rem;
  padding-block: 1px 2px;
  font-weight: 500;
  color: #FFF;
  text-align: center;
  background: #B4554D;
  border-radius: 6px;
}
@media (min-width: 768px) {
  .end__heading-theme {
    width: 11.875rem;
    margin-bottom: 0;
  }
}

/* checkマーク */
.end__heading-theme img {
  width: 20px;
  height: 16px;
  padding-bottom: 5px;
}
@media (min-width: 768px) {
  .end__heading-theme img {
    width: 24px;
    height: 20px;
    padding-bottom: 5px;
  }
}

/* 考える子イラスト */
.end__img {
  width: 84px;
  margin: 0 auto;
}

/* --------------------------------------------
部分的なスタイルパーツ
-------------------------------------------- */
/* 動画 */
.video-container {
  padding: 15px;
  margin-bottom: 50px;
  text-align: center;
  background: #CACACA;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .video-container {
    padding: 30px;
    border-radius: 20px;
  }
}

.video {
  width: 100%;
  max-width: 400px;
  border: 1px solid #808080;
}
@media (min-width: 768px) {
  .video {
    width: 90%;
    max-width: 600px;
  }
}

/* バナー */
.banner-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .banner-container {
    flex-direction: row;
  }
}
.banner-container figure:last-of-type {
  max-width: 400px;
}
@media (min-width: 768px) {
  .banner-container figure:last-of-type {
    max-width: unset;
  }
}

.banner__img {
  box-shadow: 2px 2px 4px 0 rgba(108, 108, 108, 0.3);
}
@media (min-width: 768px) {
  .banner__img {
    box-shadow: 2px 2px 6px 0 rgba(108, 108, 108, 0.3);
  }
}

/* 後ろのページに戻るリンク */
.back-link {
  display: inline-block;
  padding-bottom: 3px;
  margin-bottom: 24px;
  border-bottom: 1px solid #1E1E1E;
}

.back-link img {
  width: 14px;
  margin-right: 5px;
  margin-bottom: 2px;
}

/* 縮小版 footer */
.tiny-footer {
  padding-top: 80px;
}
.tiny-footer .footer-container {
  padding-top: 10px;
}

/* ベーシック認証使用時 */
.locked-attention {
  max-width: 800px;
  padding: 20px 30px;
  margin: 0 auto;
  margin-bottom: 40px;
  line-height: 1.3;
  text-align: center;
  border: 1px solid #CACACA;
}
.locked-item {
  display: inline-block;
  padding-top: 8px;
  text-align: left;
}

.locked-item__head {
  display: inline-block;
  padding-top: 8px;
  color: #CACACA;
}