@charset "UTF-8";

/* SPECIAL ORDER
------------------------------------*/

.special__main {
  text-align: center;
  padding: 230px 0 90px;
}
.special__main h1 {
  font-size: 60px;
  font-weight: bold;
  font-style: italic;
  color: #FFF;
  line-height: 1em;
  margin-bottom: 0;
}
.special__main h1 span {
  display: block;
  font-size: 20px;
  font-style: normal;
  font-weight: normal;
  color: #FFF;
  letter-spacing: 0.15em;
  margin-top: 20px;
}
.special__main-lead {
  font-size: 30px;
  font-weight: normal;
  color: #FFF;
  line-height: 1.8em;
  margin: 60px auto 30px;
  white-space: nowrap;
}
.special__main-txt {
  font-size: 16px;
  color: #FFF;
  line-height: 2em;
  max-width: 720px;
  margin: 0 auto;
}


/* 各項目ブロック
------------------------------------*/

.special__list {
  padding-bottom: 200px;
}

.special__block {
  position: relative;
  margin-bottom: 100px;
}
.special__block:last-child {
  margin-bottom: 0;
}
.special__block .wrap {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  padding: 50px;
}

.special__head {
  margin-bottom: 40px;
}
.special__no {
  display: block;
  font-size: 20px;
  font-weight: bold;
  font-style: italic;
  font-family: "Montserrat";
  color: var(--ft-yellow);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.special__no span {
  font-size: 40px;
  margin-left: 10px;
}
.special__head h2 {
  font-size: 30px;
  font-weight: bold;
  color: #FFF;
  line-height: 1.4em;
}
.special__head h2 a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

.special__body {
  position: relative;
  padding-left: 420px;
  margin-bottom: 50px;
}
.special__body-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 360px;
  border-radius: 10px;
  overflow: hidden;
}
.special__body-img a {
  display: block;
}
.special__body-img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.special__body-lead {
  font-size: 18px;
  font-weight: bold;
  color: #FFF;
  line-height: 1.6em;
  margin-bottom: 24px;
}
.special__body-desc {
  font-size: 14px;
  color: #FFF;
  line-height: 2em;
}


/* 施工内容・制作状況パネル
------------------------------------*/

.special__work,
.special__schedule {
  margin-bottom: 26px;
}
.special__panel-ttl {
  display: flex;
  align-items: center;
  width: calc(100% - 420px);
  margin-left: 420px;
  font-size: 16px;
  font-weight: bold;
  color: #FFF502;
  border-bottom: 2px solid #FFF502;
  padding-bottom: 16px;
  margin-bottom: 20px;
  box-sizing: border-box;
}
.special__panel-ttl img {
  width: 22px;
  height: auto;
  margin-right: 12px;
}
.special__panel {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 20px;
  margin-left: 420px;
}

.special__work ul li {
  position: relative;
  font-size: 14px;
  color: #FFF;
  line-height: 2em;
  padding-left: 1.2em;
}
.special__work ul li::before {
  position: absolute;
  content: "・";
  left: 0;
  color: #FFF;
}
.special__work ul li span {
  display: block;
  padding-left: 1.2em;
  font-size: 13px;
  color: #999;
  line-height: 1.8em;
}

.special__schedule table {
  width: 100%;
  border-collapse: collapse;
}
.special__schedule tr {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.special__schedule tr:first-child {
  border-top: none;
}
.special__schedule td {
  padding: 16px 0;
  vertical-align: top;
}
.special__schedule-date {
  width: 110px;
  font-size: 14px;
  color: #FFF;
  font-weight: bold;
  white-space: nowrap;
}
.special__schedule-txt {
  font-size: 14px;
  color: #FFF;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.special__more {
  text-align: center;
  margin-top: 70px;
  margin-bottom: 20px;
}
.special__more a {
  position: relative;
  display: inline-block;
  width: 350px;
  box-sizing: border-box;
  background: var(--ft-yellow);
  color: var(--ft-black);
  font-weight: bold;
  font-size: 15px;
  padding: 18px 30px;
  border-radius: 2px;
  transition: all 0.3s;
}
.special__more a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 22px;
  height: 1px;
  background: var(--ft-black);
  transform: translateY(-50%);
  transition: all 0.3s;
}
.special__more a:hover {
  opacity: 0.7;
}
.special__more a:hover::after {
  width: 10px;
}


/* 画像・タイトルのリンク演出（マウス操作が可能なPCのみ）
------------------------------------*/
@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .special__body-img img {
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.45s ease;
  }
  .special__body-img a:hover img,
  .special__body-img a:focus-visible img {
    transform: scale(1.045);
    filter: brightness(1.1) contrast(1.03);
  }

  .special__head h2 a {
    transition: color 0.25s ease;
  }
  .special__head h2 a:hover,
  .special__head h2 a:focus-visible {
    color: var(--ft-yellow);
  }
}


@media (max-width: 767px) {

  .special__list {
    padding-bottom: 100px;
  }

  .special__main {
    padding: 150px 0 60px;
  }
  .special__main h1 {
    font-size: 10vw;
  }
  .special__main h1 span {
    font-size: 12px;
    margin-top: 12px;
  }
  .special__main-lead {
    font-size: 18px;
    padding: 0 20px;
    margin: 40px auto 24px;
    white-space: normal;
  }
  .special__main-txt {
    padding: 0 20px;
    text-align: left;
  }

  .special__block {
    margin-bottom: 30px;
  }
  .special__block .wrap {
    padding: 30px 20px;
    border-radius: 4px;
  }
  .special__head {
    margin-bottom: 30px;
  }
  .special__no span {
    font-size: 22px;
  }
  .special__head h2 {
    font-size: 24px;
  }

  .special__body {
    padding-left: 0;
    margin-bottom: 30px;
  }
  .special__body-img {
    position: static;
    width: 100%;
    margin-bottom: 24px;
  }
  .special__body-lead {
    font-size: 17px;
  }

  .special__panel-ttl {
    width: 100%;
    margin-left: 0;
  }
  .special__panel {
    padding: 24px 20px;
    margin-left: 0;
  }
  .special__work,
  .special__schedule {
    margin-bottom: 20px;
  }
  .special__schedule-txt {
    white-space: normal;
  }

  .special__more a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 16px 20px;
  }
  .special__more a::after {
    display: none;
  }
  .special__more {
    margin-top: 40px;
    margin-bottom: 10px;
  }
}
/* end @media */

/* ACF production status: date/text spacing and wrapping */
.special__schedule table {
  table-layout: fixed;
}
.special__schedule-date {
  width: 130px;
  padding-right: 20px !important;
}
.special__schedule-txt {
  min-width: 0;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .special__schedule tr {
    display: block;
    padding: 12px 0;
  }
  .special__schedule td {
    display: block;
    width: auto;
    padding: 6px 0;
  }
  .special__schedule-date {
    padding-right: 0 !important;
  }
}

/* PC：絶対配置された商品画像の高さを親要素に確保し、
   内容が短いブロックでも View More が画像に重ならないようにする */
@media (min-width: 768px) {
  .special__body {
    min-height: 240px;
  }
}
