@charset "UTF-8";

/* =========================================================
  link color
========================================================= */
body {
  color: var(--mono-color-1);
  font-family: var(--font-family);
}

body.no_scroll {
  overflow: hidden;
}

.serif {
  font-family: var(--font-family-serif);
}

a {
  color: var(--a-color);
}

a:hover {
  color: var(--a-hover-color);
}

a:visited {
  color: var(--a-visited-color);
}

/* =========================================================
  site layout
========================================================= */
#container {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

#pageHeader {
  width: 100%;
}

#main {
  width: 100%;
}

#pageFooter {
  width: 100%;
}

@media screen and (max-width: 959px) {
  .top #main {
    margin-bottom: -50px;
  }

  .page #main {
    padding: 20px 30px;
  }

  #container {
    overflow-x: hidden;
  }
}

/* body
----------------------------------------------- */
.body h1,
.cke_editable h1 {
  line-height: 1;
  margin-bottom: 1.5rem;
  color: var(--mono-color-2);
  font-family: var(--font-family-serif);
  font-size: 2.1875rem;
  font-weight: 600;
}

.surveyForms h2 a,
.body h2,
.cke_editable h2 {
  line-height: 1;
  margin-bottom: 1.5rem;
  padding: 10px;
  background-color: var(--main-color-1);
  color: var(--mono-color-9);
  font-family: var(--font-family-serif);
  font-size: 1.5625rem;
  font-weight: 500;
}

.surveyForms h2 a {
  display: block;
  border: 1px solid transparent;
  text-decoration: none;
}

.surveyForms h2 a:hover,
.surveyForms h2 a:focus {
  border-color: var(--mono-coloro-1);
  background-color: transparent;
  color: var(--mono-color-1);
}

.body h3,
.cke_editable h3 {
  line-height: 1;
  margin-bottom: 1.5rem;
  padding-left: 6px;
  border-left: 5px solid var(--main-color-5);
  color: var(--main-color-6);
  font-size: 1.4375rem;
  font-weight: bold;
}

.body p+h1,
.body p+h2,
.body p+h3,
.body p+h4,
.body p+h5,
.body p+h6,
.cke_editable p+h1,
.cke_editable p+h2,
.cke_editable p+h3,
.cke_editable p+h4,
.cke_editable p+h5,
.cke_editable p+h6 {
  margin-top: 3.75rem;
}

.body p,
.summary p,
.cke_editable p {
  line-height: 2;
  margin: 0 0 1rem;
}

.body table {
  margin-bottom: 1rem;
  border: 1px solid var(--mono-color-2);
}

.body iframe {
  width: 100%;
  height: 680px;
}

@media screen and (max-width: 959px) {

  .body h1,
  .cke_editable h1 {
    font-size: 1.75rem;
  }

  .body h2,
  .cke_editable h2 {
    font-size: 1.25rem;
  }

  .body h3,
  .cke_editable h3 {
    font-size: 1rem;
  }

  .body p,
  .summary p {
    font-size: 0.875rem;
  }

  .body p+h1,
  .body p+h2,
  .body p+h3,
  .body p+h4,
  .body p+h5,
  .body p+h6,
  .cke_editable p+h1,
  .cke_editable p+h2,
  .cke_editable p+h3,
  .cke_editable p+h4,
  .cke_editable p+h5,
  .cke_editable p+h6 {
    margin-top: 2rem;
  }

  .body .video {
    padding: 0;
  }

  .body iframe {
    position: static;
    width: calc(100vw - 60px) !important;
    height: calc(56.25vw - 33.75px) !important;
    margin: 0 auto;
  }
}

/* opening
----------------------------------------------- */
#opening {
  display: none;
}

.video-active #opening {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  z-index: 9999;
}

.video-close {
  overflow: visible;
}

.video-active {
  overflow: hidden;
}

.video-active #movie,
.video-active #pageHeader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh !important;
  object-fit: cover;
  transition: opacity 1s ease-in-out;
  z-index: 5;
}

#stopButton {
  position: fixed;
  bottom: 50px;
  right: 65px;
  padding: 16px 72px 16px 32px;
  border: 0;
  border-radius: 30px;
  background: var(--mono-color-10) url("../images/arrow_black.webp") no-repeat right 20px center / 40px 10px;
  color: var(--mono-color-1);
  font-family: var(--font-family-serif);
  font-size: 1.15rem;
  font-weight: 500;
  cursor: pointer;
  z-index: 5;
  transition: opacity 1s ease-in-out;
}

#stopButton:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.hidden {
  opacity: 0;
  visibility: hidden !important;
}

.visible {
  opacity: 1;
  visibility: visible !important;
}

/* pageHeader
----------------------------------------------- */
#pageHeader {
  background: var(--main-color-1) url("../images/main-visual.webp") no-repeat center -20.05vw / cover;
}

.top #pageHeader {
  background-attachment: fixed;
}

#pageHeader .pageHeaderContainer {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

#pageHeader.open .pageHeaderContainer {
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
}

.page #pageHeader:not(.open) {
  background-image: url("../images/header-visual.webp");
}

.page #pageHeader:not(.open) .pageHeaderContainer {
  height: 19.79vw;
}

@media screen and (max-width: 959px) {
  .top #pageHeader {
    background-position: 43% -20vh;
    background-size: auto 120vh;
  }

  .top #pageHeader .pageHeaderContainer {
    height: 100vh;
  }

  .page #pageHeader.open {
    background-position: 43% -20vh;
    background-size: auto 120vh;
  }

  .page #pageHeader:not(.open) {
    background-position: 80% -46vw;
    background-size: 220% auto;
  }

  .page #pageHeader:not(.open) .pageHeaderContainer {
    height: 43.6vw;
  }
}

/* iOSのみbackground-attachmentが効かない） */
@media screen and (max-width: 959px) and (-webkit-device-pixel-ratio: 2),
(max-width: 959px) and (-webkit-min-device-pixel-ratio: 3) {
  #container.top::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /*background: var(--main-color-1) url("../images/main-visual.webp") no-repeat center -20.05vw / cover;*/
    background: var(--main-color-1) url("../images/main-visual.webp") no-repeat 43% -20vh / auto 120vh;
  }

  .top #pageHeader {
    background: none;
  }

  .top #scroll {
    position: relative;
    background-color: transparent;
    z-index: 1;
  }

  .top #main,
  .top #pageFooter {
    position: relative;
    background-color: var(--mono-color-9);
  }

  .top #main {
    z-index: 2;
  }

  .top #pageFooter {
    z-index: 1;
  }
}

/* menu
----------------------------------------------- */
#menu {
  font-family: var(--font-family-serif);
}

#menu .pieceHeader a {
  display: block;
  position: fixed;
  right: 40px;
  top: 40px;
  width: 70px;
  padding-top: 30px;
  background: url("../images/menu.svg") no-repeat center top / 43px auto;
  color: var(--mono-color-1);
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  z-index: 9999;
}

.open #menu .pieceHeader a {
  background-image: url("../images/menu_close.svg");
  color: var(--mono-color-9);
}

#menu .pieceBody {
  display: none;
  position: absolute;
  right: 85px;
  top: 130px;
}

.open #menu .pieceBody {
  display: block;
}

#menu li:not(:last-child) {
  margin-bottom: 20px;
}

#menu li a {
  display: inline-block;
  width: 310px;
  padding-left: 15px;
  border-bottom: 1px solid var(--mono-color-9);
  color: var(--mono-color-9);
  font-size: 2.5rem;
  text-decoration: none;
}

#menu li a:hover,
#menu li a:focus {
  border-color: transparent;
}

@media screen and (max-width: 959px) {
  #menu .pieceHeader a {
    right: 5px;
    top: 10px;
    padding-top: 25px;
    font-size: 0.7rem;
  }

  #menu .pieceBody {
    top: 80px;
    right: 30px;
  }

  #menu li a {
    width: 7.5em;
    max-width: 100%;
    font-size: 1.25rem;
  }
}

/* sitelogo
----------------------------------------------- */
#sitelogo {
  flex-basis: 100%;
  margin-bottom: 1em;
  padding-top: 55px;
  text-align: center;
}

#sitelogo img {
  height: 62.5vh;
}

.open #sitelogo {
  margin-bottom: -1em;
  padding: 70px 0 0 120px;
  text-align: left;
}

.page #pageHeader:not(.open) #sitelogo {
  height: 100%;
  margin-bottom: 0;
  padding: 25px 80px;
  text-align: left;
}

.page #pageHeader:not(.open) #sitelogo * {
  height: 100%;
}

@media screen and (max-width: 959px) {
  .top #pageHeader:not(.open) #sitelogo {
    padding-top: 30px;
  }

  .page #pageHeader:not(.open) #sitelogo {
    padding: 10px 20px;
  }

  .top #pageHeader:not(.open) #sitelogo img {
    height: 55vh;
  }

  .open #sitelogo {
    padding: 20px 30px;
  }

  .open #sitelogo img {
    width: 35.9vw;
    height: auto;
  }
}

/* catchphrase
----------------------------------------------- */
#catchphrase {
  position: absolute;
  left: calc(25% - 15rem);
  top: calc(50% - 11vh);
  line-height: 2.75;
  writing-mode: vertical-rl;
  color: var(--mono-color-9);
  font-size: 1.15rem;
  font-weight: 500;
}

.open #catchphrase,
.page #catchphrase {
  display: none;
}

#catchphrase span {
  display: block;
}

@media screen and (max-width: 959px) {
  .top #pageHeader:not(.open) #catchphrase {
    top: calc(100vh - 18rem);
    left: 20px;
    line-height: 2;
    padding-right: 80px;
    font-size: 1rem;
    font-weight: normal;
    writing-mode: horizontal-tb;
  }

  .top #pageHeader:not(.open) #catchphrase span:not(:nth-child(-n+3)) {
    display: inline-block;
  }
}

/* schedule
----------------------------------------------- */
#schedule {
  flex-basis: 100%;
  line-height: 1;
  margin: 0 auto 8vw;
  color: var(--mono-color-9);
  font-family: var(--font-family-serif);
  font-weight: 500;
  text-align: center;
}

#schedule .num {
  font-size: 2.4375rem;
}

#schedule .broadcast {
  font-size: 1.875rem;
}

#schedule .broadcast>span {
  display: inline-block;
  margin-bottom: 0.5em;
}

#schedule .broadcast>span:last-child {
  display: block;
}

#schedule .rebroadcast {
  display: inline-block;
  margin: 0.25em 0 0.5em;
  padding: 0.5em;
  border: 1px solid var(--mono-color-9);
  font-size: 1.375rem;
}

#schedule .note {
  margin-bottom: 1.5rem;
  font-family: var(--font-family);
  font-size: 0.875rem;
}

#schedule .scroll {
  padding-top: 50px;
  background: url("../images/arrow_white_down.webp") no-repeat center top / 12.5px 46px;
  font-size: 1rem;
  letter-spacing: 0.25em;
}

.open #schedule {
  position: absolute;
  left: 120px;
  bottom: 100px;
  margin-bottom: 0;
  text-align: left;
}

.open #schedule .broadcast {
  font-size: 2rem;
}

.open #schedule .broadcast>span {
  display: block;
}

.open #schedule .note {
  margin-bottom: 0;
}

.open #schedule .scroll,
.page #schedule .scroll {
  display: none;
}

.page #pageHeader:not(.open) #schedule {
  position: absolute;
  right: 40px;
  bottom: 25px;
  margin-bottom: 0;
}

.page #pageHeader:not(.open) #schedule .pieceBody {
  text-align: right;
}

.page #pageHeader:not(.open) #schedule .broadcast>span {
  display: block;
}

.page #pageHeader:not(.open) #schedule .note {
  margin-bottom: 0;
}

@media screen and (min-width: 960px) and (max-width: 1650px) {
  .top #pageHeader:not(.open) #schedule {
    flex-basis: calc(100% - 1000px);
  }

  .top #pageHeader:not(.open) #youtube iframe {
    width: 400px;
    height: 227px;
  }
}

@media screen and (min-width: 960px) and (max-width: 1040px) {
  .top #pageHeader:not(.open) #youtube {
    right: 20px;
  }
}

@media screen and (max-width: 959px) {
  .top #pageHeader:not(.open) #schedule {
    margin: 15.5rem 0 0;
  }

  .page #pageHeader:not(.open) #schedule {
    right: 10px;
    bottom: 10px;
  }

  .top #pageHeader:not(.open) #schedule .broadcast {
    font-size: 1.25rem;
  }

  .top #pageHeader:not(.open) #schedule .rebroadcast {
    font-size: 1.15rem;
  }

  .top #pageHeader:not(.open) #schedule .note {
    font-size: 0.875rem;
  }

  #schedule .scroll {
    position: absolute;
    right: 10px;
    top: calc(100vh - 18rem + 90px);
    width: auto;
    margin: 0;
    font-size: 0.875rem;
    white-space: normal;
    overflow: visible;
  }

  .open #schedule {
    top: calc(58.98vw + 2rem);
    left: 60px;
    bottom: auto;
    width: calc(100% - 120px);
    font-size: 2.25rem;
    text-align: center;
  }

  .open #schedule .broadcast {
    font-size: 1rem;
  }

  .open #schedule .broadcast>span {
    display: inline-block;
  }

  .open #schedule .num {
    font-size: 1.5rem;
  }

  .open #schedule .rebroadcast {
    font-size: 1rem;
  }

  .open #schedule .note {
    font-size: 0.875rem;
    font-weight: normal;
    white-space: nowrap;
  }

  .page #pageHeader:not(.open) #schedule {
    line-height: 1;
  }

  .page #pageHeader:not(.open) #schedule .num {
    font-size: 1.17rem;
  }

  .page #pageHeader:not(.open) #schedule .broadcast {
    font-size: 0.8rem;
  }

  .page #pageHeader:not(.open) #schedule .rebroadcast {
    font-size: 0.7rem;
  }

  .page #pageHeader:not(.open) #schedule .rebroadcast {
    margin-top: 0;
  }

  .page #pageHeader:not(.open) #schedule .note {
    font-size: 0.6rem;
    white-space: nowrap;
  }
}

/* youtube
----------------------------------------------- */
#youtube {
  position: absolute;
  right: 60px;
  top: calc(55px + 69vh - 3em);
}

.page #pageHeader:not(.open) #youtube {
  display: none;
}

#youtube .caption {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 0.5em;
  color: var(--mono-color-9);
}

#youtube .note {
  font-family: var(--font-family-serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.open #youtube {
  position: absolute;
  top: auto;
  right: 90px;
  bottom: 100px;
}

.open #youtube .caption {
  justify-content: flex-start;
  align-items: flex-end;
}

.open #youtube .note {
  margin-right: 1rem;
  font-size: 2rem;
}

.open #youtube .date {
  margin-bottom: 0.5em;
}

@media screen and (max-width: 959px) {
  .top #pageHeader:not(.open) #youtube {
    top: calc(100vh + 13rem);
    left: 30px;
    right: auto;
    z-index: 9999;
    width: calc(100vw - 60px);
  }

  .top #pageHeader:not(.open) #youtube .note {
    font-size: 1.15rem;
  }

  .top #pageHeader:not(.open) #youtube .date {
    font-size: 0.875rem;
  }

  .top #pageHeader:not(.open) #youtube iframe {
    width: calc(100vw - 60px);
    height: calc(56.25vw - 33.75px);
  }

  .open #youtube {
    left: 30px;
    right: auto;
    bottom: auto;
    top: calc(58.98vw + 12.5rem);
    width: calc(100vw - 60px);
  }

  .open #youtube .note {
    font-size: 1.25rem;
  }

  .open #youtube .date {
    margin-bottom: 0.25em;
    font-size: 0.875rem;
  }
}

/* snslink
----------------------------------------------- */
#snslink {
  flex-basis: 100%;
  margin: 0 auto;
}

.open #snslink {
  display: none;
}

#snslink ul {
  display: flex;
  justify-content: center;
  gap: 0 90px;
}

#snslink li {
  flex-basis: 526px;
}

#snslink li a {
  display: block;
  padding: 20px 40px;
  border-radius: 45px;
  background-color: var(--mono-color-9);
  background-repeat: no-repeat, no-repeat;
  background-position: 40px center, right 40px center;
  color: var(--mono-color-1);
  font-family: var(--font-family-serif);
  font-size: 1.05rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
}

#snslink li.instagram a {
  background-image: url("../images/instagram.webp"), url("../images/arrow_black.webp");
  background-size: 61px auto, 40px auto;
}

#snslink li.tiktok a {
  background-image: url("../images/tiktok.webp"), url("../images/arrow_black.webp");
  background-size: 50px auto, 40px auto;
}

#snslink li a:hover,
#snslink li a:focus {
  opacity: 0.75;
}

#snslink li a .account {
  display: block;
  color: var(--main-color-4);
  font-family: var(--font-family);
  font-size: 0.875rem;
}

@media screen and (min-width: 960px) and (max-width: 1200px) {
  #snslink ul {
    gap: 0 45px;
  }

  #snslink li a {
    background-position: 20px center, right 20px center !important;
  }
}

@media screen and (max-width: 959px) {
  #snslink {
    position: absolute;
    top: calc(100vh + 230px + 56.25vw + 1.25rem);
    left: 30px;
    z-index: 9999;
    width: calc(100% - 60px);
  }

  #snslink ul {
    flex-wrap: wrap;
  }

  #snslink li {
    flex-basis: 100%;
  }

  #snslink li:not(:last-child) {
    margin-bottom: 20px;
  }

  #snslink li a {
    background-position: 15px center, right 15px center;
    background-size: auto 60%, 10% auto !important;
    padding: 10px 20px;
    font-size: 0.875rem;
  }
}

/* scroll
----------------------------------------------- */
#scroll {
  margin-bottom: -1px;
  padding: 8.5vw 0 0;
}

#scroll img {
  width: 100%;
}

@media screen and (max-width: 959px) {
  #scroll {
    padding-top: 92vh;
  }
}

/* about
----------------------------------------------- */
#about {
  margin-bottom: 200px;
  padding-top: 110px;
  background-image: url("../images/line_blue.webp"), url("../images/about_image1.webp"), url("../images/about_image2.webp"), url("../images/about_image3.webp");
  background-repeat: no-repeat;
  background-position: left 110px bottom, left 100px top 450px, right bottom 355px, right 390px bottom 120px;
  background-size: 1309.5px auto, 169px auto, 502px auto, 350px auto;
}

#about .pieceBody {
  display: flex;
  justify-content: center;
  gap: 0 90px;
}

#about .youtube {
  flex-basis: 800px;
  padding: 125px 0 340px;
}

#about video,
#about iframe {
  width: 800px;
  height: 450px;
  margin-bottom: 2em;
}

#about .text {
  line-height: 2.5;
  font-size: 1.15rem;
}

#about .text p:not(:last-child) {
  margin-bottom: 2em;
}

#about .text span {
  display: block;
}

#about .sitelogo {
  flex-basis: 372.5px;
}

@media screen and (min-width: 960px) and (max-width: 1820px) {
  #about {
    background-position: left 110px bottom, left 100px top 40px, right bottom 355px, right 390px bottom 120px;
  }
}

@media screen and (max-width: 959px) {
  #about {
    margin-bottom: 0;
    padding-top: 30vw;
    background-position: left -28vw top 41%, left 20px top 19%, right 16.67vw top 6vw, right 10px top 37%;
    background-size: 110vw auto, 20.5vw auto, 29.5vw auto, 20.5vw auto;
  }

  #about .pieceBody {
    flex-wrap: wrap;
    gap: 0;
  }

  #about .sitelogo {
    order: 1;
  }

  #about .sitelogo {
    flex-basis: 42.5vw;
    margin: 0 auto;
  }

  #about .youtube {
    order: 2;
    padding: 100px 0 0;
  }

  #about .video {
    width: auto;
    padding: 0 30px;
  }

  #about video,
  #about iframe {
    position: static;
    width: calc(100vw - 60px) !important;
    height: calc(56.25vw - 33.75px) !important;
  }

  #about .text {
    line-height: 2;
    padding: 0 30px;
    font-size: 0.875rem;
  }
}

/* pickup-banner
----------------------------------------------- */
#pickupBanner {
  margin-bottom: 360px;
}

@media screen and (max-width: 959px) {
  #pickupBanner {
    margin-bottom: 0;
  }
}

/* cast
----------------------------------------------- */
#cast {
  max-width: var(--content-width);
  margin: 0 auto 120px;
}

@media screen and (max-width: 959px) {
  #cast {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
  }
}

/* breadCrumbs
----------------------------------------------- */
#breadCrumbsCast .pieceBody,
#breadCrumbs .pieceBody {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 40px 0 90px;
  font-size: 0.875rem;
}

#breadCrumbsCast .pieceBody {
  padding-bottom: 70px;
}

#breadCrumbsCast ol,
#breadCrumbsCast li,
#breadCrumbs ol,
#breadCrumbs li {
  list-style: none;
}

#breadCrumbsCast li,
#breadCrumbs li {
  display: inline-block;
}

#breadCrumbsCast li:not(:first-child)::before,
#breadCrumbs li:not(:first-child)::before {
  content: ">";
  margin: 0 1rem;
}

body[class^="dir-sukitsumoruKochi-category-tag"] #breadCrumbs li:nth-child(2) {
  display: none;
}

#breadCrumbsCast li a,
#breadCrumbs li a {
  color: var(--mono-color-2);
  text-decoration: none;
}

#breadCrumbsCast li a:hover,
#breadCrumbs li a:hover,
#breadCrumbsCast li a:focus,
#breadCrumbs li a:focus {
  text-decoration: underline;
}

.bc-more a {
  display: inline-block;
  padding: 0 0 0 16px;
  background: url("../../kochi/images/ic-breadcrumbs.png") left 0.5rem no-repeat;
}

.bc-more::after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (max-width: 959px) {

  #breadCrumbsCast .pieceBody,
  #breadCrumbs .pieceBody {
    max-width: 100%;
    padding: 0 0 40px;
    font-size: 0.875rem;
  }
}

/* breadCrumbsTag
----------------------------------------------- */
.castTitleContainer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: var(--content-width);
  margin: 0 auto 25px;
}

.castTitleContainer #pageTitle {
  margin: 0 0 10px;
}

#breadCrumbsTag li:not(:last-child) {
  display: none;
}

@media screen and (max-width: 959px) {
  .castTitleContainer {
    flex-wrap: wrap;
    max-width: 100%;
    margin-bottom: 0;
  }

  .castTitleContainer #pageTitle {
    margin-bottom: 10px;
  }

  #breadCrumbsTag {
    flex-basis: 100%;
  }
}

/* page-title
----------------------------------------------- */
#pageTitle {
  max-width: var(--content-width);
  margin: 0 auto 90px;
}

#pageTitle h1 {
  line-height: 1;
  color: var(--mono-color-2);
  font-family: var(--font-family-serif);
  font-weight: normal;
  font-size: 4rem;
}

@media screen and (max-width: 959px) {
  #pageTitle {
    max-width: 100%;
    margin-bottom: 30px;
  }

  #pageTitle h1 {
    font-size: 2.5rem;
    word-break: auto-phrase;
  }

  .dir-sukitsumoruKochi-contact-form #pageTitle h1 {
    word-break: normal;
  }
}

/* .pieceHeader h2
----------------------------------------------- */
#main .pieceHeader,
#pageFooter .pieceHeader {
  margin-bottom: 90px;
}

#main .pieceHeader h2,
#pageFooter .pieceHeader h2 {
  line-height: 1;
  font-family: var(--font-family-serif);
  font-size: 6rem;
  font-weight: normal;
}

#main .pieceHeader h2 {
  color: var(--mono-color-2);
}

#pageFooter .pieceHeader h2 {
  color: var(--mono-color-9);
}

#main .pieceHeader h2 .subtitle,
#pageFooter .pieceHeader h2 .subtitle {
  display: inline-block;
  margin-left: 2rem;
  font-size: 1.5rem;
  font-weight: 500;
}

@media screen and (max-width: 959px) {

  #main .pieceHeader,
  #pageFooter .pieceHeader {
    margin-bottom: 30px;
  }

  #main .pieceHeader h2,
  #pageFooter .pieceHeader h2 {
    font-size: 2.5rem;
  }

  #main .pieceHeader h2 .subtitle,
  #pageFooter .pieceHeader h2 .subtitle {
    margin-left: 1rem;
    font-size: 1rem;
  }
}

/* pageFooter
----------------------------------------------- */
#pageFooter .pageFooterUpper {
  padding-top: 22.92vw;
  background: url("../images/fade_top.webp") no-repeat left top / contain;
}

#pageFooter .pageFooterUpperContainer {
  padding: 170px 0 24.48vw;
  background-color: var(--main-color-1);
}

#pageFooter .pageFooterLower {
  margin-top: -21.61vw;
  padding-top: 21.61vw;
  background: url("../images/fade_bottom.webp") no-repeat left top / contain;
}

#pageFooter .pageFooterLowerContainer {
  display: flex;
  flex-wrap: wrap;
  padding: 55px 70px 70px;
  background-color: var(--main-color-5);

}

@media screen and (max-width: 959px) {
  #pageFooter .pageFooterUpper {
    padding-top: 98vw;
    background-image: url("../images/fade_top_sp.webp");
  }

  #pageFooter .pageFooterUpperContainer {
    padding: 0;
  }

  #pageFooter .pageFooterUpper+.pageFooterLower {
    background-color: var(--main-color-1);
  }

  #pageFooter .pageFooterLower {
    margin-top: -37vw;
    padding-top: 98.72vw;
    background-image: url("../images/fade_bottom_sp.webp");
  }

  #pageFooter .pageFooterLowerContainer {
    padding: 0 30px 30px;
  }
}

/* tag
----------------------------------------------- */
#tag {
  max-width: var(--content-width);
  margin: 0 auto 70px;
}

#pageTitle+#tag .pieceHeader {
  display: none;
}

#tag .level1 {
  display: flex;
  flex-wrap: wrap;
  gap: 35px 20px;
}

#tag a {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 25px;
  border: 1px solid transparent;
  background-color: var(--mono-color-9);
  color: var(--mono-color-1);
  font-weight: normal;
  text-decoration: none;
}

.page #tag a {
  border-color: var(--mono-color-5);
}

#tagMore {
  display: none;
  margin-bottom: 125px;
  text-align: center;
}
#tag + #tagMore {
  display: block;
}
#tagMore a {
  display: inline-block;
  padding: 27px 70px 27px 34px;
  border-radius: 40px;
  background: var(--mono-color-9) url("../images/arrow_black.webp") no-repeat right 20px center / 40px 10px;
  color: var(--mono-color-1);
  font-family: var(--font-family-serif);
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
}

#tag a.cur,
#tag a:hover,
#tag a:focus,
#tagMore a:hover,
#tagMore a:focus,
#breadCrumbsTag li a:hover,
#breadCrumbsTag li a:focus {
  border-color: var(--main-color-2);
  background-color: var(--main-color-2);
  color: var(--mono-color-9);
}

#tagMore a:hover,
#tagMore a:focus {
  background-image: url("../images/arrow_white.webp");
}

@media screen and (max-width: 959px) {

  #tag,
  #tagMore {
    max-width: 100%;
    padding: 0 30px;
  }

  #tag {
    margin-bottom: 30px;
  }

  #pageTitle+#tag {
    padding: 0;
  }

  #tag .level1 {
    gap: 10px 5px;
  }

  #tag a {
    padding: 5px;
    font-size: 0.875rem;
  }

  #tagMore {
    margin-bottom: 60px;
  }

  #tagMore a {
    display: block;
    font-size: 1rem;
  }
}

/* contact
----------------------------------------------- */
#contact {
  max-width: calc(100% - 140px);
  margin: 0 auto;
  padding: 165px 530px 150px 145px;
  background:
    url("../images/sitelogo_dark_blue.webp") no-repeat right 55px top / contain,
    url("../images/contact_image.webp") no-repeat left center / cover;
}

#contact .pieceHeader {
  margin-bottom: 60px;
}

#contact .pieceHeader h2 {
  color: var(--mono-color-2);
}

#contact .comment {
  margin-bottom: 40px;
}

#contact .comment span {
  display: block;
}

#contact .more a {
  display: inline-block;
  padding: 17px 95px 17px 50px;
  border-radius: 30px;
  background: var(--mono-color-9) url("../images/arrow_black.webp") no-repeat right 40px center / 40px auto;
  color: var(--mono-color-1);
  font-family: var(--font-family-serif);
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
}

#contact .more a:hover,
#contact .more a:focus {
  border-color: var(--main-color-2);
  background-color: var(--main-color-2);
  background-image: url("../images/arrow_white.webp");
  color: var(--mono-color-9);
}

@media screen and (max-width: 959px) {
  #contact {
    position: relative;
    max-width: calc(100% - 60px);
    margin-bottom: 40px;
    padding: 40px 30px;
    background-position: right 10px bottom, -290px -160px;
    background-size: auto 30%, 267% auto;
    z-index: 1;
  }

  #contact .pieceHeader {
    margin-bottom: 30px;
  }

  #pageFooter #contact .pieceHeader h2 .subtitle {
    display: block;
    margin-left: 0;
    margin-top: 10px;
  }

  #contact .pieceBody {
    width: 73%;
  }

  #contact .comment {
    font-size: 0.875rem;
  }

  #contact .more a {
    display: block;
    padding: 8px 45px 8px 20px;
    background-position: right 15px center;
    background-size: 30px auto;
    font-size: 1rem;
  }
}

/* commonFooter
----------------------------------------------- */
#commonFooter .pieceContainer {
  display: flex;
  padding: 0 0 0 65px;
  color: var(--mono-color-9);
}

#commonFooter .pieceHeader {
  margin-bottom: 0;
}

#commonFooter .pieceHeader img {
  height: 385px;
}

#commonFooter .pieceBody {
  display: flex;
  flex-wrap: wrap;
  margin-left: 95px;
}

#commonFooter ul {
  align-self: flex-start;
}

#commonFooter li:not(:last-child) {
  margin-bottom: 10px;
}

#commonFooter li a {
  display: inline-block;
  width: 150px;
  padding-left: 5px;
  border-bottom: 1px solid var(--mono-color-9);
  color: var(--mono-color-9);
  font-family: var(--font-family-serif);
  font-size: 1.5rem;
  text-decoration: none;
}

#commonFooter li a:hover,
#commonFooter li a:focus {
  border-color: transparent;
}

#commonFooter address {
  align-self: flex-end;
  margin-left: -150px;
  padding-bottom: 10px;
}

#commonFooter .department {
  margin-bottom: 0.25rem;
  font-size: 1.15rem;
}

#commonFooter address span {
  margin-right: 2em;
}

@media screen and (max-width: 959px) {
  #commonFooter {
    order: 2;
    flex-basis: 100%;
  }

  #commonFooter .pieceContainer {
    position: relative;
    gap: 0 30px;
    padding: 0;
  }

  #commonFooter .pieceHeader {
    padding-bottom: 9rem;
  }

  #commonFooter .pieceHeader img {
    height: auto;
  }

  #commonFooter .pieceBody {
    flex-basis: 100%;
    margin-left: 0;
  }

  #commonFooter ul {
    padding-right: 20px;
  }

  #commonFooter li a {
    width: 7.5em;
    max-width: 100%;
    font-size: 1rem;
  }

  #commonFooter address {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    margin-left: 0;
    font-size: 0.875rem;
    text-align: center;
  }

  #commonFooter .department {
    font-size: 1rem;
  }

  #commonFooter address span {
    display: block;
    margin-right: 0;
  }
}

/* footerBanner
----------------------------------------------- */
#footerBanner {
  max-width: 610px;
  margin-left: auto;
}

#footerBanner ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

#footerBanner li a img {
  width: 190px;
  height: 80px;
  object-fit: contain;
}

#footerBanner li a:hover img,
#footerBanner li a:focus img {
  opacity: 0.75;
}

@media screen and (min-width: 960px) and (max-width: 1600px) {
  #footerBanner {
    max-width: calc(100% - 828px);
  }

  #footerBanner li {
    flex-basis: calc(50% - 10px);
  }

  #footerBanner li a img {
    width: auto;
    height: auto;
  }
}

@media screen and (min-width: 960px) and (max-width: 1372px) {
  #footerBanner {
    max-width: 32%;
    margin-top: -385px;
  }
}

@media screen and (max-width: 959px) {
  #footerBanner {
    order: 1;
    max-width: 100%;
    margin-bottom: 80px;
  }

  #footerBanner ul {
    gap: 10px 20px;
    justify-content: center;
  }

  #footerBanner li {
    flex-basis: calc(50% - 20px);
  }

  #footerBanner li a img {
    width: auto;
    height: auto;
  }
}

/* copyright
----------------------------------------------- */
#copyright {
  flex-basis: 100%;
  margin-left: auto;
  margin-top: -2em;
  color: var(--mono-color-9);
  text-align: right;
}

#copyright small {
  font-size: 1rem;
}

@media screen and (min-width: 960px) and (max-width: 1384px) {
  #copyright {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 959px) {
  #copyright {
    order: 3;
    flex-basis: 100%;
    margin-top: 1rem;
    text-align: center;
  }

  #copyright small {
    font-size: 0.875rem;
  }
}

/* =========================================================
  docs
========================================================= */
ul.docs,
.docs ul,
.content ul,
.contentGpCategory>section>h2+ul,
.contentGpCategoryCategory>section>ul:not(.feed) {
  display: flex;
  flex-wrap: wrap;
  gap: 180px;
  max-width: var(--content-width);
  margin: 0 auto;
  color: var(--mono-color-2);
}

ul.docs li,
.docs ul li,
.content li,
.contentGpCategory>section>h2+ul li,
.contentGpCategoryCategory ul:not(.feed) li {
  display: flex;
  flex-basis: calc(50% - 90px);
  flex-wrap: wrap;
}

.docs ul li div.image,
ul.docs li div.image {
  display: flex;
  justify-content: space-between;
  flex-basis: 100%;
  margin-bottom: 30px;
}

.docs ul li .subtitle,
ul.docs li .subtitle {
  height: 15em;
  line-height: 2;
  padding-top: 10px;
  writing-mode: vertical-rl;
  color: var(--mono-color-2);
  font-family: var(--font-family-serif);
  font-size: 1.75rem;
  font-weight: 600;
  word-break: auto-phrase;
}

.docs ul li .image img,
ul.docs li .image img {
  width: 350px;
}

#pageTitle h1 .department,
.docs ul li .title .department,
ul.docs li .title .department {
  display: block;
  margin-bottom: 0.5rem;
}

#pageTitle h1 .department {
  font-family: var(--font-family);
  font-size: 1.25rem;
  font-weight: bold;
}

#pageTitle h1 .name,
.docs ul li .title .name,
ul.docs li .title .name {
  display: inline-block;
  margin-bottom: 1rem;
  font-family: var(--font-family-serif);
  font-weight: 500;
  font-size: 2rem;
}

#pageTitle h1 .name {
  margin-bottom: 0;
  font-size: 3.5rem;
  font-weight: normal;
}

#pageTitle h1 .honorific,
.docs ul li .title .honorific,
ul.docs li .title .honorific {
  font-size: 1.25rem;
}

#pageTitle h1 .honorific {
  font-size: 2rem;
  font-weight: 500;
}

.docs ul li .summary,
ul.docs li .summary {
  line-height: 1.8;
  margin-bottom: 2rem;
}

#breadCrumbsTag .pieceBody,
.docs ul li .category,
ul.docs li .category {
  display: flex;
  flex-wrap: wrap;
  flex-basis: 100%;
  gap: 4px;
  margin-bottom: 40px;
}

#breadCrumbsTag .pieceBody {
  margin-bottom: 0;
}

#breadCrumbsTag li a,
.docs ul li .category a,
ul.docs li .category a {
  display: block;
  line-height: 1;
  padding: 6px;
  border: 1px solid var(--mono-color-5);
  border-radius: 15px;
  color: var(--mono-color-2);
  text-decoration: none;
}

.docs ul li .category a:hover,
.docs ul li .category a:focus,
ul.docs li .category a:hover,
ul.docs li .category a:focus {
  border-color: var(--main-color-2);
  background-color: var(--main-color-2);
  color: var(--mono-color-9);
}

.docs ul li .doc_link,
ul.docs li .doc_link {
  display: inline-block;
  padding-right: 68px;
  border-bottom: 1px solid var(--mono-color-1);
  background: url("../images/arrow_black.webp") no-repeat right center / 40px auto;
  color: var(--mono-color-1);
  font-family: var(--font-family-serif);
  font-size: 1.15rem;
  font-weight: 500;
  text-decoration: none;
}

.docs ul li .doc_link:hover,
.docs ul li .doc_link:focus,
ul.docs li .doc_link:hover,
ul.docs li .doc_link:focus {
  border-bottom-color: transparent;
}

ul.docs+.more,
.back {
  margin-top: 150px;
  text-align: center;
}

.back a,
.surveyForm input[type="submit"],
.surveyForm input[type="button"],
ul.docs+.more a {
  display: inline-block;
  padding: 28px 130px 28px 90px;
  border: 1px solid transparent;
  border-radius: 40px;
  background: var(--main-color-1) url("../images/arrow_white.webp") no-repeat right 75px center / 40px 10px;
  color: var(--mono-color-9);
  font-family: var(--font-family-serif);
  font-weight: 500;
  text-decoration: none;
}

.surveyForm input[type="submit"][name="edit_answers"],
.back a {
  padding: 28px 90px 28px 130px;
  background: var(--main-color-1) url("../images/arrow_white_left.webp") no-repeat 75px center / 40px auto;
}

.back a:hover,
.back a:focus,
.surveyForm input[type="submit"]:hover,
.surveyForm input[type="button"]:hover,
.surveyForm input[type="submit"]:focus,
.surveyForm input[type="button"]:focus,
.surveyForm input[type="submit"][name="edit_answers"]:hover,
.surveyForm input[type="submit"][name="edit_answers"]:focus,
ul.docs+.more a:hover,
ul.docs+.more a:focus {
  border-color: var(--mono-color-3);
  background-color: var(--mono-color-9);
  background-image: url("../images/arrow_black.webp");
  color: var(--mono-color-1);
  cursor: pointer;
}

.back a:hover,
.back a:focus,
.surveyForm input[type="submit"][name="edit_answers"]:hover,
.surveyForm input[type="submit"][name="edit_answers"]:focus {
  background-image: url("../images/arrow_black_left.webp");
}

@media screen and (max-width: 959px) {

  ul.docs,
  .docs ul,
  .content ul,
  .contentGpCategory>section>h2+ul,
  .contentGpCategoryCategory>section>ul:not(.feed) {
    max-width: 100%;
    gap: 75px 0;
  }

  ul.docs li,
  .docs ul li,
  .content li,
  .contentGpCategory>section>h2+ul li,
  .contentGpCategoryCategory ul:not(.feed) li {
    flex-basis: 100%;
  }

  #pageTitle h1>span,
  .docs ul li>span,
  ul.docs li>span {
    flex-basis: 100%;
  }

  .docs ul li div.image,
  ul.docs li div.image {
    margin-bottom: 10px;
  }

  .docs ul li .image img,
  ul.docs li .image img {
    width: 100%;
  }

  .docs ul li .subtitle,
  ul.docs li .subtitle {
    line-height: 2;
    font-size: 1.25rem;
  }

  #pageTitle h1 .name,
  .docs ul li .title .name,
  ul.docs li .title .name {
    margin-bottom: 0.5rem;
    font-size: 2rem;
  }

  #pageTitle h1 .honorific,
  .docs ul li .title .honorific,
  ul.docs li .title .honorific {
    font-size: 1.5rem;
  }

  #pageTitle h1 .department,
  .docs ul li .title .department,
  ul.docs li .title .department,
  .docs ul li .summary,
  ul.docs li .summary,
  #breadCrumbsTag li a,
  .docs ul li .category a,
  ul.docs li .category a {
    font-size: 0.875rem;
  }

  .docs ul li .summary,
  ul.docs li .summary {
    margin-bottom: 1rem;
  }

  #breadCrumbsTag .pieceBody,
  .docs ul li .category,
  ul.docs li .category {
    margin-bottom: 20px;
  }

  #pageTitle h1 .department,
  .docs ul li .title .department,
  ul.docs li .title .department {
    margin-bottom: 0;
  }

  .docs ul li .doc_link,
  ul.docs li .doc_link {
    font-size: 1.15rem;
  }

  ul.docs+.more,
  .back {
    margin-top: 80px;
  }

  .back a,
  .surveyForm input[type="submit"],
  ul.docs+.more a {
    display: block;
    padding: 20px;
    font-size: 1.15rem;
  }

  ul.docs+.more a {
    width: 78.26%;
  }

  #cast ul.docs+.more a {
    width: 100%;
  }

  .back a,
  .surveyForm input[type="submit"] {
    width: 100%;
    margin: 20px 0 0;
  }

  .surveyForm input[type="submit"] {
    background-position: right 20px center;
  }

  .surveyForm input[type="submit"][name="edit_answers"],
  .back a {
    padding: 20px;
    background-position: 20px center;
  }
}

/* =========================================================
  doc
========================================================= */
.contentGpArticleDoc {
  max-width: var(--content-width);
  margin: 0 auto;
}

.contentGpArticleDoc .date {
  display: none;
}

@media screen and (max-width: 959px) {
  .contentGpArticleDoc {
    max-width: 100%;
  }
}

/* =========================================================
  surveyForm
========================================================= */
.surveyForms,
.surveyForm {
  max-width: var(--content-width);
  margin: 30px auto 0;
}

.surveyForm input[type="text"],
.surveyForm input[type="email"],
.surveyForm select,
.surveyForm input[type="radio"],
.surveyForm input[type="checkbox"],
.surveyForm textarea {
  appearance: none;
  border: 1px solid var(--mono-color-2);
}

.surveyForm input[type="radio"] {
  position: relative;
  width: 20px;
  height: 20px;
  line-height: 1;
  border: 1px solid var(--mono-color-2);
  border-radius: 50%;
  color: var(--mono-color-1);
  vertical-align: -3px;
  cursor: pointer;
}

.surveyForm input[type="checkbox"] {
  position: relative;
  width: 1em;
  height: 1em;
  border: 1px solid var(--mono-color-2);
  vertical-align: -2px;
  color: var(--mono-color-1);
  cursor: pointer;
}

.surveyForm input[type="radio"]::before {
  content: "●";
  position: absolute;
  font-size: 22px;
  right: -2px;
  top: -3px;
  visibility: hidden;
}

.surveyForm input[type="checkbox"]::before {
  content: "✔";
  position: absolute;
  font-size: 1.2em;
  right: -1px;
  top: -0.3em;
  visibility: hidden;
}

.surveyForm input[type="radio"]:checked::before,
.surveyForm input[type="checkbox"]:checked::before {
  visibility: visible;
}

.surveyForm input[type="radio"]:disabled,
.surveyForm input[type="checkbox"]:disabled {
  border-color: var(--mono-color-1);
  background: var(--mono-color-2);
  color: var(--mono-color-5);
}

.surveyForm .answer_content label {
  margin-right: 1.5rem;
}

.surveyForm fieldset,
.surveyForm legend {
  appearance: none;
}

.surveyForm select,
.surveyForm textarea {
  border-radius: 8px;
}

.surveyForm select {
  min-width: 280px;
  padding: 12px 20px;
}

.surveyForm .question {
  display: flex;
  position: relative;
  padding: 42px 0;
}

.surveyForm .question:not(:last-child) {
  border-bottom: 1px solid var(--mono-color-5);
}

.surveyForm .question_content {
  position: relative;
  flex-basis: 290px;
  width: 290px;
  font-family: var(--font-family-serif);
  font-size: 1.25rem;
  font-weight: bold;
}

.surveyForm .answer_content {
  position: relative;
  flex-basis: calc(100% - 290px);
  margin-left: auto;
  font-weight: 500;
}

.surveyForm .answer_content label {
  cursor: pointer;
}

.surveyForm legend.question_content,
.surveyForm legend.question_content+.answer_content {
  display: inline-block;
  float: left;
}

.surveyForm .select {
  align-self: center;
}

.surveyForm .select+.answer_content {
  flex-basis: 280px;
  margin-left: 0;
}

.surveyForm .select+.answer_content::after {
  content: "▼";
  position: absolute;
  top: 15px;
  right: 10px;
  color: var(--mono-color-2);
  font-size: 0.875rem;
}

body[id$="confirmAnswers"] .surveyForm .select+.answer_content::after {
  content: none;
}

.surveyForm .question .body {
  margin: 3em 0 0 -290px;
  font-size: 0.875rem;
  font-weight: 500;
}

.surveyForm .max_length {
  position: absolute;
  left: -290px;
  top: 4.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.surveyForm .note {
  position: absolute;
  top: 50%;
  right: 10px;
  max-width: 90px;
  padding: 0 5px;
  background-color: var(--ac-color-red-1);
  color: var(--mono-color-9);
  font-size: 0.875rem;
  font-weight: normal;
  transform: translate(0, -50%);
}

.surveyForm .submit {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 50px;
  margin-top: 50px;
  text-align: center;
}

.surveyForm .submit input[name="edit_answers"] {
  order: 1;
}

.surveyForm .submit input[name="commit"] {
  order: 2;
}

.surveyForm .question .body ul,
.surveyForm .question .body ol {
  margin-top: 1rem;
  padding-right: 1rem;
  padding-left: 2.75rem;
}

.surveyForm .question .body ul {
  list-style-type: disc;
}

.surveyForm .question .body ol {
  list-style-type: decimal;
}

.surveyForm .question .body li {
  margin-bottom: 0.5rem;
}

.surveyForm .question .body li::marker {
  color: var(--main-color-6);
  line-height: 1;
  font-size: 1.5rem;
}

@media screen and (max-width: 959px) {
  .surveyForm .question {
    flex-wrap: wrap;
    margin: 1rem 0 0;
    padding: 0 0 1rem;
  }

  .surveyForm .question_content,
  .surveyForm .answer_content {
    flex-basis: 100%;
  }

  .surveyForm .question_content {
    margin-bottom: 0.5rem;
  }

  .surveyForm legend.question_content,
  .surveyForm legend.question_content+.answer_content {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    float: none;
  }

  .surveyForm .select+.answer_content {
    flex-basis: 73.72%;
  }

  .surveyForm .select+.answer_content::after {
    top: 14px;
    font-size: 1rem;
  }

  .surveyForm .question .body {
    margin: 0;
    font-size: 0.875rem;
  }

  .surveyForm .max_length {
    position: static;
    font-size: 0.875rem;
  }

  .surveyForm select,
  .surveyForm textarea {
    width: 100%;
    border-width: 2px;
    border-radius: 16px;
  }

  .surveyForm input[type="radio"] {
    width: 25px;
    height: 25px;
    border-width: 2px;
    vertical-align: -6px;
  }

  .surveyForm input[type="radio"]::before {
    top: -4px;
    right: -4px;
    font-size: 27px;
  }

  .surveyForm .answer_content label {
    margin: 0;
  }

  .surveyForm .submit {
    padding: 0 35px;
  }

  .surveyForm .message {
    font-size: 0.875rem;
  }
}

/* captchaForm
---------------------- */
.captchaForm .image {
  margin: 0 0 15px;
}

.captchaForm img {
  padding: 5px;
  border: 1px solid var(--mono-color-3);
}

.captchaForm .reload,
.captchaForm .talk {
  display: inline-block;
  width: 140px;
  margin: 0 0 15px;
  border-radius: 3px;
  background: linear-gradient(to bottom, var(--mono-color-9), var(--mono-color-8));
}

.captchaForm .reload:hover,
.captchaForm .talk:hover {
  background: linear-gradient(to bottom, var(--mono-color-8), var(--mono-color-9));
}

.captchaForm .reload {
  margin-right: 5px;
}

.captchaForm .reload a,
.captchaForm .talk a {
  display: block;
  padding: 6px 0 4px;
  border: 1px solid var(--mono-color-3);
  border-radius: 3px;
  color: var(--mono-color-1);
  font-size: 100%;
  text-align: center;
  text-decoration: none;
}

.captchaForm .field input {
  padding: 5px;
}

/* error
---------------------- */
#errorExplanation {
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid var(--ac-color-red-1);
}

.surveyForm #errorExplanation h2 {
  padding: 0 0 4px 15px;
  border-radius: 4px;
  background-color: var(--mono-color-9);
  color: var(--ac-color-red-1);
}

.surveyForm #errorExplanation p {
  margin-left: 15px;
}

.surveyForm #errorExplanation ul {
  list-style-type: disc;
  margin-left: 30px;
}

.surveyForm #errorExplanation li {
  color: var(--ac-color-red-1);
}

/* message
----------------------------------------------- */
.surveyForm .message {
  margin-bottom: 20px;
  text-align: center;
}

@media screen and (max-width: 959px) {
  .surveyForm .message {
    text-align: left;
  }

  .surveyForm .back {
    width: 100%;
    margin: 20px auto 0;
  }

  .surveyForm .back a {
    padding: 8px 0;
  }
}

/* confirmAnswers
----------------------------------------------- */
body[id$="-confirmAnswers"] .surveyForm .question .body {
  display: none;
}

body[id$="-confirmAnswers"] .surveyForm .question .body+.answer_content {
  margin: 0;
}

.form #pageFooter .pageFooterLower {
  margin-top: 0;
}

@media screen and (max-width: 959px) {

  .surveyForms,
  .surveyForm {
    max-width: 100%;
  }
}