/* ----------------------------------
under common
---------------------------------- */
main.under {
  padding-top: 27.9rem;
}
main.under section:not(#contact) .ttl-h2 {
  position: relative;
  max-width: 70rem;
  margin: 0 auto 5.2rem;
}
main.under section:not(#contact) .ttl-h2::before {
  position: absolute;
  top: -14.7rem;
  left: calc(50% + 4.2rem);
  content: "";
  display: block;
  width: 47.9rem;
  height: 42.1rem;
  background: url(../img/under-ttl-bg.svg) center/contain no-repeat;
  transform: translateX(-50%);
  z-index: -1;

  content: none;
}
@media screen and (max-width: 767px) {
  main.under {
    padding-top: 17.3rem;
  }
  main.under section:not(#contact) .ttl-h2 {
    max-width: none;
    margin-bottom: 4.2rem;
    padding: 0 2rem;
  }
  main.under section:not(#contact) .ttl-h2::before {
    top: -7.4rem;
    left: calc(50% + 1.7rem);
    width: 29.1rem;
    height: 21.4rem;
    background-image: url(../img/under-ttl-bg_sp.svg);
  }
}


/* ----------------------------------
works-page
---------------------------------- */
#works-page .works-wrap {
  padding: 0;
  overflow: visible;
}
#works-page .works-wrap .in::after {
  content: none;
}
#works-page .works-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 6.5rem;
  column-gap: 3rem;
}
#works-page .works-list li {
  width: calc(33.33% - (3rem * 2 / 3));
}
#works-page .works-list li a {
  display: block;
}
#works-page .works-list .img-wrap {
  position: relative;
  width: 100%;
  height: 39rem;
  overflow: hidden;
  border-top-left-radius: 5rem;
  border-bottom-right-radius: 5rem;
  z-index: 2;
}
#works-page .works-list .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s;
  z-index: 1;
}
#works-page .works-list li a:hover .img-wrap img {
  transform: scale(1.05);
}
#works-page .works-list .txt-wrap {
  padding-top: 1.1rem;
}
#works-page .works-list .txt-wrap dt {
  font-size: 2rem;
  font-weight: var(--bold);
  letter-spacing: 0.1em;
  color: var(--color-txt);
}
#works-page .works-list .txt-wrap dt span {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-size: max(1.2rem, 10px);
  color: var(--color-orange1);
  line-height: 1;
  letter-spacing: 0.05em;
}
#works-page .works-list .txt-wrap dd {
  font-size: 1.4rem;
  font-size: max(1.4rem, 10px);
  padding-top: 1rem;
  color: var(--color-txt);
}
#works-page .tab {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.7rem;
  margin-bottom: 5.2rem;
}
#works-page .tab .tab-item {
  padding: 0.6rem;
  width: 11.4rem;
  border-radius: 2rem;
  background: var(--color-white);
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-size: max(1.3rem, 10px);
  font-weight: var(--bold);
  text-align: center;
  color: var(--color-orange1);
}
#works-page .tab .tab-item.current,
#works-page .tab .tab-item:hover {
  background: var(--color-orange1);
  color: var(--color-white);
}
#works-page .tab .tab-item.current {
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  #works-page .works-list li a {
    position: relative;
    overflow: hidden;
  }
  #works-page .works-list .txt-wrap {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgb(0 0 0 / 0.5);
    color: var(--color-white);
    border-bottom-right-radius: 5rem;
    transition: .3s;
    opacity: 0;
    z-index: 2;
  }
  #works-page .works-list li a:hover .txt-wrap {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  #works-page .tab {
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 4.2rem;
  }
  #works-page .tab .tab-item {
    padding: 0.4rem;
    width: 10rem;
    font-size: 1.2rem;
  }
  #works-page .works-list {
    flex-wrap: wrap;
    gap: 4rem;
  }
  #works-page .works-list li {
    width: 100%;
  }
  #works-page .works-list .img-wrap {
    height: 31rem;
  }
  #works-page .works-list .txt-wrap dt {
    font-size: 1.6rem;
  }
  #works-page .works-list .txt-wrap dt span {
    font-size: 1.1rem;
  }
  #works-page .works-list .txt-wrap dd {
    font-size: 1.2rem;
    padding-top: 0;
  }
}


/* ----------------------------------
works-page パスワード
---------------------------------- */
.works-password {
  text-align: center;
  margin: 13rem auto;
}
.works-password p {
  font-size: 1.4rem;
  font-size: max(1.4rem, 10px);
  line-height: 1.857;
}
.works-password .moreBtn {
  margin: 5rem auto 0;
  background: var(--color-orange1);
  font-family: var(--font-ja);
  color: var(--color-white);
}
.works-password form {
  margin-top: 5rem;
}
.works-password .field {
  font-size: 1.4rem;
  font-size: max(1.4rem, 10px);
  line-height: 1.857;
}
.works-password .field input {
  display: block;
  width: 39rem;
  margin: 1rem auto 0;
  padding: 1.5rem 2rem;
  border: none;
  background: #f4f4e4;
  border-radius: 0.5rem;
  outline: none;
}
.works-password .error {
  font-size: 1.1rem;
  font-size: max(1.1rem, 10px);
  color: #e95038;
}
@media screen and (max-width: 767px) {
  .works-password {
    margin: 11rem auto 4rem;
  }
  .works-password p,
  .works-password .field {
    font-size: 1.3rem;
    line-height: 1.76;
  }
  .works-password .field input {
    width: 100%;
  }

}


/* ----------------------------------
detail-page
---------------------------------- */
#detail-page .in {
  position: relative;
  z-index: 1;
}
#detail-page .desc-wrap {
  width: 95rem;
  margin: 10rem auto 7.8rem;
}
#detail-page .desc-wrap p {
  font-size: 1.4rem;
  font-size: max(1.4rem, 10px);
  line-height: 1.857;
}
#detail-page .design-wrap + a[target="_blank"] {
  font-size: 1.2rem;
  font-size: max(1.2rem, 10px);
  margin-top: 4rem;
  padding-left: 2.5rem;
  transition: .3s;
  background: url(../img/icon-window.svg) center left/1.5rem no-repeat;
  letter-spacing: 0;
  color: var(--color-txt);
}
#detail-page .design-wrap + a[target="_blank"]:hover {
  color: var(--color-orange1);
}
#detail-page .desc-area {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0;
  margin-top: 1rem;
  padding-left: 7rem;
}
#detail-page .desc-area::before {
  position: absolute;
  top: 1rem;
  left: 0;
  content: "";
  display: block;
  width: 5.5rem;
  height: 1px;
  background: #bababa;
  transform: unset;
}
#detail-page .desc-area li {
  position: relative;
  font-size: 1.2rem;
  font-size: max(1.2rem, 10px);
  letter-spacing: 0.1em;
}
#detail-page .desc-area li + li {
  padding-left: 2.2rem;
}
#detail-page .desc-area li + li::before {
  position: absolute;
  top: 50%;
  left: 0.8rem;
  content: "/";
  font-size: 1.2rem;
  font-size: max(1.2rem, 10px);
  transform: translateY(-50%);
}
#detail-page .design-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 9rem;
}
#detail-page .design-wrap .design-pc .box::-webkit-scrollbar,
#detail-page .design-wrap .design-sp .box::-webkit-scrollbar {
  display: none;
}
#detail-page .design-wrap .design-pc .box {
  width: 100rem;
  height: 62rem;
}
#detail-page .design-wrap .design-sp .box {
  width: 25.5rem;
  height: 50rem;
}
#detail-page .design-wrap .design-pc .box,
#detail-page .design-wrap .design-sp .box {
  border: 1.5rem solid var(--color-white);
  border-radius: 3rem;
  overflow-y: scroll;
  box-shadow: 0 0 0.2rem rgb(0 0 0 / 0.2);
}
#detail-page #works.works-wrap {
  padding-top: 26rem;
  padding-bottom: 10rem;
}
#detail-page #works.works-wrap .in::after,
#detail-page #works.works-wrap .ttl-h2::before {
  content: none;
}
#detail-page .design-wrap p {
  margin-bottom: 3rem;
  font-size: 1.5rem;
  font-size: max(1.5rem, 10px);
  font-family: var(--font-en);
  letter-spacing: 0.2em;
  color: #bababa;
  border-left: 0.4rem solid #bababa;
  padding-left: 1.4rem;
  line-height: 1;
}
#detail-page .cms {
  margin-top: 1rem;
  font-size: 1.2rem;
  font-size: max(1.2rem, 10px);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  #detail-page .desc-area li,
  #detail-page .cms {
    font-size: 1rem;
  }
  #detail-page .desc-area::before {
    top: 0.9rem;
  }
  #detail-page .desc-wrap {
    width: auto;
    margin: 10.8rem auto 6.5rem;
    padding: 0;
  }
  #detail-page .desc-wrap p {
    width: auto;
    font-size: 1.3rem;
    line-height: 1.76;
  }
  #detail-page .design-wrap {
    flex-direction: column;
    gap: 5rem;
    align-items: center;
  }
  #detail-page .design-wrap .design-pc .box {
    width: 100%;
    height: 40rem;
  }
  #detail-page .design-wrap .design-sp .box {
    width: 23.5rem;
    margin: 0 auto;
  }
  #detail-page .design-wrap .design-pc .box,
  #detail-page .design-wrap .design-sp .box {
    border-width: 1rem;
  }
  #detail-page #works.works-wrap {
    padding-top: 17rem;
    padding-bottom: 0;
  }
  #detail-page .design-wrap p {
    margin-bottom: 2rem;
    font-size: 1.3rem;
    border-left: 0.4rem solid #bababa;
    padding-left: 1rem;
  }
  #detail-page .design-wrap + a[target="_blank"] {
    font-size: 1.1rem;
  }
}


/* ----------------------------------
information-page
---------------------------------- */
#information-page .information-wrap {
  padding-top: 0;
}
#information-page .information-wrap .in {
  margin-top: 11rem;
  margin-bottom: 10rem;
}
.info-detail-wrap {
  /* width: max-content; */
  max-width: 95rem;
  margin: 0 auto;
}
.info-detail-wrap * {
  font-size: 1.5rem;
  font-size: max(1.5rem, 10px);
  line-height: 1.857;
}
.info-detail-wrap > *:not(:first-of-type) {
  margin-top: 2rem;
}
#information-page .backBtn {
  text-align: center;
  margin: 7rem auto 0;
  background: #efefef;
  font-family: var(--font-ja);
}
#information-page .backBtn:hover {
  color: var(--color-white);
  background: var(--color-blue);
}
@media screen and (max-width: 767px) {
  #information-page .information-wrap .in {
    margin-top: 6rem;
  }
  .info-detail-wrap * {
    font-size: 1.3rem;
    line-height: 1.76;
  }
}

/* キャンペーン用投稿 */
.info-detail-wrap:has(.single_cp) {
  width: auto;
}
img + .single_cp {
  margin-top: 7rem;
}
.single_cp {
  background: var(--color-white);
  border-radius: 2rem;
  padding: 6.2rem 4.5rem;
  color: var(--color-navy);
  font-weight: var(--medium);
}
.single_cp .note {
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 0.9em;
}
.single_cp .lead {
  text-align: center;
}
.single_cp .guide {
  max-width: 77rem;
  margin-left: auto;
  margin-right: auto;
}
.single_cp .guide:not(:first-child) {
  padding: 20rem 0;
  background-image: url(../img/cp/single_cp_hr.png),url(../img/cp/single_cp_hr.png);
  background-size: 9rem auto;
  background-position: center top 10rem, center bottom 10rem;
  background-repeat: no-repeat;
}
.single_cp .guide dt {
  margin-bottom: 2.5rem;
  padding: 1rem 2.5rem;
  background: #FA8C0C;
  border-top-right-radius: 2rem;
  font-size: 1.6rem;
  font-size: max(1.6rem, 11px);
  font-weight: var(--bold);
  color: var(--color-txt);
  letter-spacing: 0.05em;
}
.single_cp .guide dd + dt {
  margin-top: 5rem;
}
.single_cp .guide dd span:not(.note) {
  color: #FA8C0C;
  font-weight: var(--bold);
}
.single_cp .guide dd b {
  font-weight: 700;
}
.single_cp .guide .flow li {
  position: relative;
  padding-left: 5.8rem;
}
.single_cp .guide .flow li + li {
  margin-top: 2em;
}
.single_cp .guide .flow li .num {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 100%;
  background: #FCFFB1;
  font-family: var(--font-en);
  font-size: 2rem;
  font-size: max(2rem, 14px);
  font-weight: 400;
  color: var(--color-navy);
}
.single_cp .guide ul li {
  text-indent: -1em;
  padding-left: 1em;
}
.single_cp .guide .dl_flex {
  display: flex;
  gap: 1.8rem;
  margin-top: 5rem;
}
.single_cp .guide .dl_flex dl {
  width: calc(50% - 0.9rem);
  border-top-right-radius: 2rem;
}
.single_cp .guide .dl_flex dl.good {
  background: #FCFFB1;
}
.single_cp .guide .dl_flex dl.bad {
  background: #EFEFE3;
}
.single_cp .guide .dl_flex dl.bad dt {
  background: #9AA3AC;
}
.single_cp .guide .dl_flex dl dt {
  margin-bottom: 0;
  font-size: 1.5rem;
  font-size: max(1.5rem, 10px);
}
.single_cp .guide .dl_flex dl dd {
  padding: 2.5rem 1.9rem;
}
.single_cp .guide .dl_flex dl dd .note {
  margin-top: 2rem;
}
.single_cp .cp_form {
  max-width: 77rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  img + .single_cp {
    margin-top: 4rem;
  }
  .single_cp {
    padding: 4rem 2rem;
    margin: 0 -1rem;
  }
  .single_cp .lead {
    text-align: left;
  }
  .single_cp .guide dt {
    padding: 0.5rem 1.5rem;
    font-size: 1.6rem;
  }
  .single_cp .guide .flow li .num {
    top: 0.3rem;
    transform: unset;
    font-size: 2rem;
  }
  .single_cp .guide .dl_flex {
    flex-wrap: wrap;
  }
  .single_cp .guide .dl_flex dl {
    width: 100%;
  }
  .single_cp .guide .dl_flex dl dt {
    font-size: 1.5rem;
  }
  .single_cp .guide:not(:first-child) {
    padding: 10rem 0;
    background-size: 6rem auto;
    background-position: center top 4rem,center bottom 4rem;
  }
}
/* cp_form ------------------------ */
.cp_form .ttl_h2 {
  font-size: 2.4rem;
  font-size: max(2.4rem, 16px);
  font-weight: var(--bold);
  letter-spacing: 0.15em;
  text-align: center;
}
.cp_form .block {
  margin-top: 7.5rem;
}
.cp_form .block h3 {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-weight: var(--bold);
  letter-spacing: 0.2em;
  background: #fcffb1;
  border-radius: 2rem;
  padding: 0.5rem 2rem;
  margin-bottom: 1rem;
}
.cp_form .block h3 span {
  white-space: nowrap;
  font-size: 1.8rem;
  font-size: max(1.8rem, 12px);
}
.cp_form .block h3::before {
  content: "";
  width: 1.4rem;
  min-width: 1.4rem;
  height: 1.4rem;
  border-radius: 100%;
  background: #FA8C0C;
}
.cp_form table {
  width: 100%;
}
.cp_form th,
.cp_form td {
  padding: 2rem 0;
  border-bottom: 1px solid #E9E9E9;
  vertical-align: top;
}
.cp_form th {
  width: 19.6rem;
  font-weight: var(--medium);
  padding-right: 2rem;
  padding-top: 3rem;
}
.cp_form th small {
  font-size: 0.85em;
}
.cp_form td {
  width: 43.5rem;
}
.cp_form input:not([type="checkbox"],[type="submit"],[type="radio"]),
.cp_form textarea {
  border-radius: 0.5rem;
  border: 1px solid #E9E9E9;
  background: #FCFCFC;
  width: 100%;
  font-size: 1.5rem;
  font-size: max(1.5rem, 10px);
  padding: 1rem;
  outline: none !important;
}
.cp_form textarea {
  min-height: 20rem;
  resize: vertical;
}
.cp_form th span:not(.label) {
  position: relative;
}
.cp_form th .label {
  position: absolute;
  right: -5rem;
  bottom: 0;
  display: block;
  padding: 0 0.5rem;
  border-radius: 0.5rem;
  background: #A5E25F;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-white);
}
.cp_form th .label.req {
  background: var(--color-red);
}
.cp_form .flex_field {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 0;
}
.cp_form .flex_field.col2 > * {
  width: 50%;
}
.cp_form .flex_field.col2 > div {
  width: 100%;
}
.cp_form .note {
  margin-top: 1rem;
}
.cp_form .flex_field.umu {
  gap: 1rem 3rem;
  align-items: center;
}
.cp_form .flex_field.umu > div {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cp_form .flex_field.umu > div input {
  width: 40rem;
}
.cp_form .flex_field.col1 > * {
  width: 100%;
}
.cp_form .btn-wrap .btn-small .moreBtn {
  background: var(--color-white);
  color: var(--color-orange1);
}
.cp_form .btn-wrap > *:last-of-type .moreBtn {
  margin-top: 2rem;
}
.cp_form .btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}
.cp_form .btn-wrap .moreBtn {
  margin: 0 1rem !important;
  font-family: var(--font-ja) !important;
}
.cp_form .btn-wrap > .moreBtn {
  background: var(--color-orange1);
  color: var(--color-white);
  border: 1px solid var(--color-orange1);
}
.cp_form .btn-wrap .btn-small .moreBtn {
  background: var(--color-white);
  border: 1px solid var(--color-orange1);
  color: var(--color-orange1);
} 
.single_cp .complete {
  padding: 0 0 10rem;
  max-width: max-content;
  margin: 0 auto;
}
.single_cp .complete .lead {
  font-size: 1.8rem;
  font-size: max(1.8rem, 10px);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.15em;
  font-weight: 600;
}
.single_cp .complete p {
  margin-top: 3rem;
  line-height: 2;
}
.single_cp .complete p small {
  display: block;
  font-size: 1.2rem;
  font-size: max(1.2rem, 10px);
  line-height: 2;
  letter-spacing: 0;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .cp_form .btn-wrap > .moreBtn:hover {
    background: var(--color-navy);
    border-color: var(--color-navy);
  }
  .cp_form .btn-wrap .btn-small .moreBtn:hover {
    background: var(--color-orange1);
    border: 1px solid var(--color-white);
    color: var(--color-white);
  }
}
@media screen and (max-width: 767px) {
  .cp_form .ttl_h2 {
    font-size: 2rem;
  }
  .cp_form .block {
    margin-top: 4.5rem;
  }
  .cp_form .block h3 span {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }
  .cp_form .block h3 {
    padding: 0.5rem 1.5rem;
  }
  .cp_form th, 
  .cp_form td {
    display: block;
    width: 100%;
  }
  .cp_form th {
    border-bottom: 0;
    padding: 1.5rem 0 0;
    font-size: 1.4rem;
  }
  .cp_form th * {
    font-size: 1.4rem;
  }
  .cp_form th *:not(.note) {
    font-weight: var(--bold);
  }
  .cp_form tr:last-of-type td {
    border-bottom: none;
  }
  .cp_form td {
    padding: 1.5rem 0;
  }
  .cp_form input:not([type="checkbox"],[type="submit"],[type="radio"]), 
  .cp_form textarea {
    font-size: 1.3rem;
    padding: 0.8rem 1rem;
  }
  .cp_form th .label {
    font-size: 1.2rem;
    bottom: -0.1rem;
  }
  .cp_form .flex_field > * {
    width: 100% !important;
  }
  .cp_form .flex_field.umu > div {
    margin-left: 3rem;
  }
  .cp_form .flex_field.umu > div input {
    width: 19rem;
  }
  .single_cp .complete {
    padding: 3rem 0 6rem;
  }
  .single_cp .complete .lead {
    font-size: 1.6rem;
  }
  .single_cp .complete p small {
    font-size: 1.1rem;
  }
  .cp_form .btn-wrap {
    flex-direction: column;
    align-items: center;
  }
  .cp_form .btn-wrap .moreBtn {
    margin: 1rem 0 !important;
  }
}

