:root {
  --color-bg: #f0f4f6;
  --color-green: #00833e;
  --color-fold: #e1e8eb;
  --color-border: #d7dde0;
  --color-shadow: rgb(76 88 95 / 20%);

  --font-medium: calc(14px + 0.15vw);
}

body {
  letter-spacing: 0.04em;
  line-height: 1.75;
  font-family: var(--font-notosans);
}

#header-inner{
  padding: 0 max(15px, min(2.5vw, 20px));
}

#recruit-header {
  position: sticky;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  margin: 10px auto;
  max-width: 1200px;
}
#recruit-header > nav {
  display: grid;
  align-items: center;
  grid-auto-flow: column;
  justify-content: space-between;
}

#header-logo a {
  font-size: 24px;
  font-family: var(--font-notosans);
  font-weight: 700;
  color: var(--color-yodosha);
  transition: 0.25s;
  text-decoration: none;
}
#header-logo a:hover {
  color: var(--color-hover);
  text-decoration: none;
}

.information-head {
  position: absolute;
  top: 105px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 15px;
  width: 100%;
  background: rgb(0 0 0 / 0.35);
  padding: 8px 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.3);
}
.information-head a {
  color: #fff;
  text-decoration: none;
  transition: all 0.25s;
  display: flex;
  justify-content: center;
}
.information-head a i {
  font-size: 120%;
  position: relative;
  top: 4px;
  margin-right: 4px;
}
.toInfomation-txt {
  padding: 0 4px 2px 4px;
  transition: 0.25s;
  text-decoration: underline;
}
.information-head a:hover .toInfomation-txt {
  text-decoration: none;
}

#recruit-header #header-logo .logo-main {
  margin: 0;
}

.to-detail {
  display: flex;
}
.detail-header-btn {
  line-height: 1.6;
  border: 3px solid var(--color-yodosha);
  height: 86px;
  display: grid;
  align-items: center;
  justify-content: center;
  width: 100px;
  color: var(--color-yodosha);
  font-weight: 700;
  background: #fff;
  transition: all 0.3s;
	margin-right: -3px;
	text-align:center;
}
/*
.detail-header-btn:first-child {
  margin-right: -3px;
}
*/
.detail-header-btn:hover:not(:root) {
  background: var(--color-yodosha);
  color: #fff;
  text-decoration: none;
  border-color: var(--color-yodosha);
  position: relative;
  z-index: 1;
}

#contents {
  margin-top: 0;
}

.contents-wrap p,
.contents-wrap ul,
.contents-wrap ol,
.contents-wrap dl * {
  line-height: 1.9;
  font-size: var(--font-medium);
}

.mainblock,
.mainblock > .col-xs-12 > .row {
  background: #f5f5f5;
}

ol li:not(:root) {
  margin-bottom: 0;
}

ul.normal_list li p {
  margin: 5px 0 0 1.5em;
  padding: 0;
}

.mainblock {
  padding: 0;
}

.breadcrumb {
  margin: 0.5em 0;
  background: transparent;
  font-size: 12px;
  padding: 0;
}
.breadcrumb li a:hover {
  opacity: 0.7;
  border-bottom: none;
  text-decoration: none;
}

.toInfomation {
  font-family: var(--font-notosans);
}
.toInfomation {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  background: var(--color-bg);
  padding: 10px 0;
  margin: 0 calc(50% - 50vw);
}
.toInfomation a {
  display: flex;
  justify-content: center;
  color: inherit;
}
.toInfomation a .glyphicon {
  margin-right: 10px;
  text-decoration: none;
  top: 3px;
}

div#contents {
  padding: 0;
  position: relative;
}

.contents-wrap {
  margin: 0 -15px;
}

.contents-wrap a{
  color: var(--color-yodosha);
  text-decoration: underline;
  transition: all .25s;
}
.contents-wrap a:hover{
  text-decoration: none;
  color: var(--color-hover)
}

.title {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000 url(/recruit/images/back01.jpg) no-repeat 0 0;
  flex-direction: column;
  height: 500px;
  background-size: cover;
  position: relative;
  padding: 20px;
  background-attachment: fixed;
}
.newGrad .title,
.midCareer .title,
.information-wrap .title {
  height: 390px;
}
.title > h1 {
  margin: 0;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-size: 38px;
  text-shadow: 0 0 10px rgb(0 0 0 / 40%);
  font-family: var(--font-notosans);
}
.title > h1::before {
  content: "";
  position: absolute;
  background: #000;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  left: 0;
  top: 0;
}
h1 .fadein {
  animation-name: fadeIn;
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
  animation-delay: 0.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  -webkit-animation-name: fadeIn;
  -webkit-animation-duration: 0.8s;
  -webkit-animation-timing-function: ease-out;
  -webkit-animation-delay: 0.2s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
  opacity: 0;
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
    -moz-transition: rotate(6px);
    -webkit-transition: rotate(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0px);
    -moz-transition: translateY(0px);
    -webkit-transition: translateY(0px);
  }
}

.title h1 p {
  font-family: var(--font-notoserif);
  font-weight: 600;
  line-height: 1.65;
  margin-top: 0;
  font-size: max(16px, min(2.5vw, 24px));
  margin-bottom: 12px;
}
.title h1 p .tag {
  font-size: 70%;
  font-family: var(--font-notosans);
  font-weight: 400;
  color: #fff;
  padding: 0px max(10px, min(1.5vw, 12px));
  background: rgb(229 229 229 / 20%);
  text-shadow: none;
  border-radius: 2px;
  display: block;
  width: fit-content;
  margin-bottom: 4px;
}
.title h1 > span {
  position: relative;
  display: grid;
  justify-content: center;
}
.title h1 .closed {
  position: absolute;
  display: block;
  top: -22px;
  right: 0px;
  background: rgb(37 116 31 / 75%);
  color: #fff;
  font-size: 72%;
  transform: rotate(14deg);
  padding: 4px 14px;
  font-family: var(--font-notoserif);
  font-weight: 900;
  box-shadow: 0 5px 10px 0 rgb(6 25 6 / 40%);
}

.title .updates {
  margin-top: 20px;
  background: rgb(255, 255, 255, 0.85);
  z-index: 1;
  padding: 15px 20px;
  overflow-y: scroll;
  max-height: 150px;
}
.title .updates-head {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 2px;
}
.title .updates-list {
  margin-bottom: 0;
  padding-left: 20px;
  list-style: none;
}

@media (max-width: 1100px) {
  .title {
    height: 400px;
  }
  .newGrad .title,
  .midCareer .title,
  .information-wrap .title {
    height: 350px;
  }
  .title > h1 {
    font-size: 32px;
  }
  .header-menu-list a {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  #header-nav {
    margin-top: 52px;
  }

  #site-logo {
    position: relative;
    padding: 15px 0;
  }

  #search-box.slideUp {
    opacity: 1;
    top: 15px;
  }
  #search-box .input-group {
    width: 100%;
  }

  #header-logo a {
    font-size: 18px;
  }
  .to-detail {
    font-size: 12px;
  }
  .detail-header-btn {
    height: 65px;
    width: 75px;
    line-height: 1.5;
  }

  .information-head {
    position: unset;
    transform: none;
    margin: 0 calc(50% - 50vw);
    width: auto;
    padding: 6px 15px 6px;
    background: rgb(0 0 0 / 0.75);
    font-size: 12px;
  }

  .title {
    height: 260px;
    background-position: 0 top;
    padding: 20px 40px;
    background-attachment: scroll;
  }
  .newGrad .title,
  .midCareer .title,
  .information-wrap .title {
    height: 210px;
  }
  .title > h1 {
    font-size: max(24px, min(5vw, 26px));
  }

  .header-menu-list {
    font-size: 12px;
  }
  .header-menu-list a {
    padding: 10px 20px;
  }
  .toInfomation {
    font-size: 12px;
  }
  .header-menu-list a .header-menu-txt::before {
    top: 55%;
  }
}
@media (max-width: 460px) {
  .title h1 br.visible-xs {
    display: block !important;
  }
  .header-menu-list {
    justify-content: space-between;
  }
}
@media (max-width: 370px) {
  .header-menu-list {
    font-size: 2vw;
  }
  .header-menu-list a {
    padding: 10px 15px;
  }
  .header-menu-list a .header-menu-txt::before {
    left: -15px;
  }
}

.contents-main {
  margin: 80px auto 110px;
}

.menu-wrap {
  display: grid;
  gap: 60px;
}

.menu-item {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 50px;
  align-items: center;
  color: #333;
}
.menu-item .menu-img img {
  border-radius: 6px;
}
.menu-item .menu-inner h2 {
  margin-top: 0;
  font-weight: 700;
  margin-bottom: 30px;
}
.menu-item .menu-inner p {
  font-size: 18px;
  margin-bottom: 0;
}

.intro-txt {
  font-size: calc(14px + 0.1vw);
  padding: 0px 20px;
  margin: max(3.5em, min(5vw, 4em)) auto;
  line-height: 1.9;
  text-align: center;
  max-width: 1000px;
}
.intro-txt p:not(:last-of-type){
  margin-bottom: 1em;
}
.intro-closed{
  text-align: center;
  display: block;
  font-size: 140%;
  margin-bottom: 1em;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .mainblock > .col-xs-12 > .row > .col-xs-12 {
    overflow-x: scroll;
    white-space: nowrap;
  }
  .mainblock > .col-xs-12 > .row {
    position: relative;
    display: flex;
  }

  .contents-main {
    margin: 50px auto 60px;
  }

  .intro-txt {
    text-align: left;
  }
}

.gray-box .postscript {
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  margin-bottom: 10px;
  display: block;
}
.gray-box .postscript::before,
.gray-box .postscript::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 17px;
  height: 2px;
  background-color: #333;
  margin-bottom: 5px;
}
.gray-box .postscript::before {
  left: -15px;
  transform: rotate(50deg);
}
.gray-box .postscript::after {
  right: -13px;
  transform: rotate(-50deg);
}
.gray-box .normal_txt {
  padding: 0 20px;
  font-weight: 700;
  font-size: 18px;
  margin: 0;
  line-height: 1.5;
}
.gray-box a {
  background: var(--color-yodosha);
  color: #fff;
  border: 2px solid var(--color-yodosha);
  padding: 18px 50px 18px 80px;
  border-radius: 50px;
  box-shadow: 0px 4px 8px 0 rgb(213 223 212);
  transition: all 0.3s;
  display: block;
  width: fit-content;
  width: -moz-fit-content;
  margin-inline: auto;
  position: relative;
  text-decoration: none;
}
.gray-box a i {
  top: 22px;
  position: absolute;
  left: 46px;
  font-size: 110%;
}
.gray-box a:hover {
  background: #fff;
  color: var(--color-yodosha);
  text-decoration: none;
}
@media (max-width: 767px) {
  .gray-box .normal_txt {
    font-size: 14px;
  }
  .gray-box a {
    padding: 14px 30px 14px 55px;
    display: block;
  }
  .gray-box a i {
    top: 17px;
    left: 29px;
  }
  .gray-box a br {
    display: none !important;
  }
  .gray-box .postscript {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .gray-box .postscript::before,
  .gray-box .postscript::after {
    width: 14px;
    margin-bottom: 4px;
  }
}
@media (max-width: 640px) {
  .gray-box a br {
    display: block !important;
  }
}
@media (max-width: 319px) {
  .gray-box .normal_txt {
    font-size: 12px;
  }
}

section {
  margin: max(3.6em, min(10vw, 8em)) auto 0;
  max-width: calc(1000px + 20px);
  padding: 0 20px;
}

.info_ttl2:not(:root) {
  /* font-family: "Hahmlet", serif; */
  font-family: var(--font-notoserif);
  text-align: center;
  margin: 0;
  letter-spacing: 0.04em;
  font-size: max(28px, min(4vw, 40px));
}
.info_ttl2 span {
  display: block;
  font-weight: 900;
}
.info_ttl2 .jp {
  font-size: 40%;
  margin-top: 0.8em;
  font-weight: 700;
  line-height: 1.4;
}
.info_ttl2 .jp::before {
  content: "\25CF";
  color: var(--color-yodosha);
  margin-right: 6px;
  font-size: 14px;
}

@media (max-width: 767px) {
  .info_ttl2:not(:root) {
    font-size: 28px;
  }
  .info_ttl2 .jp {
    font-size: 45%;
  }
  .info_ttl2 .jp::before {
    font-size: 88%;
  }
}
@media (max-width: 460px) {
  .flow-num {
    top: -26px;
    width: 55px;
    height: 55px;
    font-size: 20px;
    line-height: 44px;
  }
}

/* Requirements
--------------------------------*/
.requirements-section {
  max-width: none;
  position: relative;
  padding: 90px;
  margin-top: max(3.6em, min(10vw, 6em));
}
.requirements-section::after {
  content: "";
  width: 95%;
  height: 100%;
  background: var(--color-bg);
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  border-radius: 40px 0 0 40px;
}
.requirements-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.saiyo-points {
  display: flex;
  flex-wrap: wrap;
  margin: 2em auto;
}
.saiyo-points dt,
.saiyo-points dd {
  margin: 0;
  padding: 30px 0;
  font-size: var(--font-medium);
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--color-border);
  line-height: 1.7;
}
.saiyo-points dt {
  width: 20%;
  font-family: var(--font-notosans);
}
.saiyo-points dd {
  width: 80%;
}
.saiyo-points ul {
  padding-left: 20px;
  margin-bottom: 0;
}
.saiyo-points li:not(:last-child) {
  margin-bottom: 0.4em;
}
@media (max-width: 1200px) {
  .requirements-section::after {
    width: 100%;
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .requirements-section {
    padding: 46px 20px;
  }
}
@media (max-width: 640px) {
  .saiyo-points {
    display: block;
    margin-top: 0.5em;
    margin-bottom: 0;
  }
  .saiyo-points dt,
  .saiyo-points dd {
    width: 100%;
    padding: 18px 0;
  }
  .saiyo-points dt {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .saiyo-points dd {
    padding-top: 6px;
    font-size: 14px;
  }
}

/* Flow
--------------------------------*/
.flow-section {
  display: grid;
  grid-template-columns: auto auto;
  gap: 40px;
  justify-content: space-evenly;
  max-width: calc(1000px + 200px);
}

.flow-list {
  list-style: none;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  padding-left: 0;
  max-width: 850px;
  margin: auto;
  gap: 1.5em 0;
}
.flow-list > li {
  vertical-align: top;
  margin-top: 2em;
}
.flow-list > li:not(:first-child) {
  padding-left: 48px;
}
.flow-list .flow-box {
  position: relative;
  width: 250px;
  min-height: 250px;
  background: var(--color-bg);
  padding: 60px 30px 20px;
  line-height: 1.75;
}
.flow-list .flow-box::before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  border-width: 0 0 20px 20px;
  border-style: solid;
  border-color: #fff var(--color-fold) #fff;
}
.flow-num {
  position: absolute;
  top: -32px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 68px;
  height: 68px;
  background: #000000;
  border-radius: 40px;
  color: #fff;
  font-size: 30px;
  text-align: center;
  line-height: 55px;
  font-weight: 900;
  border: 5px solid #fff;
  /* font-family: "Hahmlet", serif; */
  font-family: var(--font-notoserif);
}
.flow-num::before {
  content: "";
  width: 36px;
  height: 25px;
  background: url(/recruit/images/step.png) no-repeat center;
  display: block;
  position: absolute;
  top: -14px;
  left: -8px;
  transform: rotate(-3deg);
  background-size: 36px;
}
.flow-list .flow-box p {
  font-size: max(14px, min(2.5vw, 16px));
  font-weight: 700;
  margin-bottom: 0;
}
.flow-arrow {
  width: 15px;
  position: absolute;
  top: calc(50% - 15px);
  right: -34px;
}
.flow-list li ul {
  padding-left: 20px;
  list-style-type: circle;
}
.flow-list li ul li:not(:root) {
  margin-top: 0.8em;
  font-size: max(12px, min(1.5vw, 14px));
  margin-bottom: 0;
  line-height: 1.5;
}

@media (max-width: 1060px) {
  .flow-section {
    display: block;
  }
  .flow-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 40px 30px;
    margin-top: 3em;
  }
  .flow-list li:not(:root) {
    margin-top: 1em;
    width: 100%;
  }
  .flow-list li:not(:first-child) {
    padding-left: 0;
  }
  .flow-list .flow-box {
    width: 100%;
    min-height: 210px;
  }
  .flow-num {
    top: -28px;
    width: 60px;
    height: 60px;
    font-size: 24px;
    line-height: 48px;
  }
}
@media (max-width: 640px) {
  .flow-list {
    gap: 40px 20px;
  }
}
@media (max-width: 460px) {
  .flow-list {
    display: block;
    margin-top: 3.2em;
  }
  .flow-list li:not(:root) {
    margin-top: 3.6em;
  }
  .flow-list .flow-box {
    min-height: auto;
    padding: 40px 20px 25px;
  }
  .flow-num::before {
    background-size: 28px;
    width: 28px;
    height: 22px;
    top: -12px;
  }
  .flow-num {
    top: -26px;
    width: 54px;
    height: 54px;
    font-size: 22px;
    line-height: 44px;
    border-width: 4px;
  }
}

/* How to
--------------------------------*/
.howto-section {
  max-width: none;
  position: relative;
  padding: 90px;
}
.howto-section::after {
  content: "";
  width: 95%;
  height: 100%;
  background: var(--color-bg);
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  border-radius: 0 40px 40px 0;
}
.howto-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.howto-intro:not(:root) {
  text-align: center;
  margin-top: 2em;
  font-size: max(14px, min(3vw, 18px));
}
.howto-section h3 {
  margin: 3.2em 0 1.8em;
  font-weight: 700;
  font-size: 22px;
}
.howto-section h3 span[class*="material"] {
  font-size: 150%;
  position: relative;
  top: 8px;
  margin-left: 10px;
  color: var(--color-yodosha);
  color: #a4aeb4;
}
.howto-section h3 img {
  position: relative;
  top: -2px;
  width: 33px;
  margin-left: 10px;
  color: var(--color-yodosha);
  color: #a4aeb4;
  display: inline-block;
}
span[class*="howto"]{
  /* font-family: "Hahmlet", serif; */
  font-weight: 900;
  background: #333;
  color: #fff;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  margin: 0 10px 0 4px;
  padding-bottom: 2px;
  position: relative;
}
span[class*="howto"]::before{
  content: "";
  position: absolute;
  display: inline-block;
  right: -6px;
  top: 8px;
  border-left: 6px solid #333;
  border-top: 4px solid transparent;
  border-bottom: 5px solid transparent;
  background: transparent;
}
.howto-section h3 span[class*="howto"]{
  width: max(28px, min(4vw, 30px));
  height: max(30px, min(4vw, 32px));
  margin: 0 12px 0 0;
  position: relative;
}
.howto-section h3 span[class*="howto"]::before{
  content: "";
  right: -7px;
  top: 11px;
  border-left: 7px solid #333;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.entry-button a{
  display: inline-grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0px 4px 8px 0 rgb(213 223 212);
}

.howto-section h3 u {
  border-bottom: none;
}
.howto-section u {
  border-bottom: 1px solid var(--color-yodosha);
  text-decoration: none;
  margin: 0 2px;
}
.howto-section .box:first-of-type {
  background: #ffffff;
  padding: 40px 30px 20px;
  margin-top: max(3em, min(5vw, 4em));
  position: relative;
  border-radius: 15px;
  border: 2px solid var(--color-yodosha);
}
.howto-section h3.box-head {
  display: inline-block;
  z-index: 1;
  font-weight: 400;
  position: absolute;
  margin: 0;
  top: 0px;
  left: 0px;
  font-size: 16px;
  padding: 6px 20px 7px;
  border-radius: 12px 0 12px 0;
  background: var(--color-yodosha);
  color: #fff;
  height: 31px;
}
.howto-section h3.box-head::after {
  content: "";
  position: absolute;
  background: var(--color-yodosha);
  width: 26px;
  height: 30px;
  display: inline-block;
  border-radius: 0 0 4px 0;
  top: 0px;
  right: -8px;
  transform: skewX(-40deg);
  z-index: -2;
}

.documents-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.documents-list li:not(:last-child) {
  margin-bottom: 1.8em;
}
.documents-list h4:not(:root) {
  font-weight: 700;
  margin-left: 0;
  display: flex;
  align-items: baseline;
  line-height: 1.5;
}
.documents-list h4 span:not([class]),
.documents-num {
  color: var(--color-yodosha);
  background-color: #ffffff;
  width: 28px;
  height: 28px;
  line-height: 23px;
  border-radius: 50px;
  text-align: center;
  display: inline-block;
  margin-right: 20px;
  font-size: 14px;
  /* font-family: "Hahmlet", serif; */
  position: relative;
  top: -2px;
  border: 2px solid var(--color-yodosha);
  flex-shrink: 0;
}
.documents-num:not(:root) {
  margin: 0 5px;
}
.documents-list h4 .normal_txt{
  font-size: var(--font-medium);
  font-weight: 400;
}
.howto-section ol {
  padding-left: 30px;
  font-size: calc(14px + 0.25vw);
}
.howto-section ol li:not(:last-child) {
  margin-bottom: 2em;
}
.howto-section ol li::marker {
  margin-right: 8px;
}
.howto-section h4,
.howto-section table,
.join-box table {
  line-height: 1.75;
}
.howto-section .box:not(:first-of-type) h4 {
  margin-top: 2em;
}
.howto-section table,
.join-box table {
  margin-top: 1em;
  width: 100%;
  font-size: var(--font-medium);
}
.howto-section tbody,
.join-box tbody {
  border-bottom: 1px solid #ddd;
}
.howto-section td,
.howto-section th,
.join-box td,
.join-box th {
  padding: 17px 0 17px 0;
  border-top: 1px solid var(--color-border);
}
.howto-section .asterisk-txt,
.join-box .asterisk-txt {
  font-size: 14px;
  text-indent: -1.4em;
  margin-left: 1.4em;
}
.howto-section .asterisk-txt:first-of-type,
section .join-box .asterisk-txt:first-of-type {
  margin-top: max(3em, min(6vw, 4em));
}
.deadline {
  font-weight: 700;
  align-items: self-start;
  justify-content: center;
  margin-top: max(3em, min(6vw, 4em));
  font-size: 22px;
  color: var(--color-yodosha);
  text-align: center;
  margin-bottom: 0;
}
.deadline-head {
  padding: 4px 7px;
  background: var(--color-yodosha);
  border-radius: 4px;
  color: #fff;
  margin-right: max(10px, min(2vw, 12px));
  font-size: 80%;
  position: relative;
  top: 0;
  font-weight: 400;
  white-space: nowrap;
  line-height: 1.3;
}
.deadline-txt {
  line-height: 1.4;
}
.deadline-txt u {
  border-width: 3px;
  padding-bottom: 2px;
  border-bottom-style: double;
}
.deadline-txt small {
  color: inherit;
  display: inline-block;
}
@media (max-width: 1200px) {
  .howto-section::after {
    width: 100%;
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .howto-section {
    padding: 46px 20px;
  }
  .howto-section::after {
    width: 100%;
    border-radius: 0;
  }
  .howto-section h3 {
    font-size: 18px;
    margin: 3em 0 1.6em;
  }
  .howto-section h3.box-head {
    padding: 6px 12px 6px 18px;
    font-size: 14px;
    height: 29px;
  }
  .howto-section h3.box-head::after{
    height: 28px;
  }
  .howto-section h4 {
    font-size: 16px;
  }
  .documents-list h4 span:not([class]),
  .documents-num {
    width: 26px;
    height: 26px;
    line-height: 21px;
    text-align: right;
    margin-right: 14px;
    padding-right: 7px;
    font-size: 12px;
  }
  .howto-section ol {
    padding-left: 20px;
  }
  .deadline br {
    display: none !important;
  }
  .deadline-txt {
    /* display: inline-flex; */
  }
}
@media (max-width: 460px) {
  .howto-section .box:first-of-type {
    padding: 30px 20px 25px;
  }
  .howto-section table th,
  .howto-section table td,
  .join-box table th,
  .join-box table td {
    display: block;
    width: 100%;
  }
  .howto-section table th:not(:root),
  .join-box table th {
    padding-bottom: 6px;
  }
  .howto-section table td:not(:root),
  .join-box table td:not(:root) {
    border-top: none;
    padding-top: 0;
  }
  .howto-section .box:not(:first-of-type) h4 {
    font-size: 14px;
  }
  .howto-section ol h4 {
    font-size: 14px;
  }
  .documents-list h4 span:not([class]),
  .documents-num {
    width: 24px;
    height: 24px;
    line-height: 20px;
    margin-right: 10px;
    padding-right: 6px;
  }
  .howto-section .asterisk-txt,
  .join-box .asterisk-txt {
    font-size: 12px;
    text-indent: -1.2em;
    margin-left: 1.2em;
  }
  .deadline{
    display: flex;
    line-height: 1.4;
    text-align: left;
  }
}

/* Contact
--------------------------------*/
.contact-inner {
  margin-top: 3em;
  display: flex;
  align-items: baseline;
  justify-content: space-around;
}
.contact-inner h3 {
  font-size: max(17px, min(2vw, 20px));
  font-weight: 700;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}
.contact-txt {
  border-left: 1px solid var(--color-border);
  padding-left: 4em;
}
.contact-inner p {
  font-size: 16px;
}
.contact-inner p:first-child {
  font-size: max(16px, min(2vw, 18px));
}
.contact-inner p:not(:last-child) {
  margin-bottom: 0.8em;
}
.contact-txt .asterisk-txt {
  color: #999;
  font-size: 14px;
}
.contact-section .panel {
  margin: max(3em, min(10vw, 7em)) 0 max(3em, min(5vw, 4em));
}

@media (max-width: 960px) {
  .contact-inner {
    display: block;
  }
  .contact-txt {
    border-left: none;
    border-top: 1px solid #d2d2d3;
    padding-left: 0;
    padding-top: 2em;
    margin-top: 1em;
  }
}
@media (max-width: 460px) {
  .contact-inner p:not(:root) {
    font-size: 14px;
  }
  .contact-txt .asterisk-txt:not(:root) {
    font-size: 12px;
  }
}

/* .index.html
------------------------------------ */

.news-head,
.movie-head,
.section-voice h3 {
  border-left: 5px solid var(--color-yodosha);
  padding-left: 14px;
  font-weight: 700;
  line-height: 1.5;
  font-family: var(--font-notosans);
}

.news-head {
  margin-bottom: 20px;
}
.news-wrap ul {
  list-style: none;
  padding-left: 0px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.news-wrap li {
  margin: 0;
  font-weight: 700;
}
.news-wrap li:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}
.news-wrap li a {
  padding: 20px 0;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: inherit;
  text-decoration: none;
}
.news-wrap a:hover {
  text-decoration: none;
  color: inherit;
}
.news-date {
  margin-right: 30px;
  padding: 7px 18px;
  font-size: 14px;
  color: #999;
  position: relative;
  top: -1px;
  font-weight: 400;
}
.news-wrap li .news-txt {
  line-height: 1.4;
}
.news-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #fff;
  width: 35px;
  height: 35px;
  border: 1px solid #dee7eb;
  position: relative;
  right: 20px;
  transition: background 0.35s, border 0.35s;
  flex-shrink: 0;
}
.news-arrow-icon {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 8px;
  height: 8px;
  border: 2px solid;
  border-color: #333 #333 transparent transparent;
  transform: translateY(-50%) rotate(45deg);
  -moz-transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
}
.news-wrap a:hover .news-arrow {
  background: var(--color-yodosha);
  border: 1px solid var(--color-yodosha);
}
.news-wrap a:hover .news-arrow-icon {
  -webkit-animation: iconFadeIn 0.35s;
  animation: iconFadeIn 0.35s;
  border-color: #fff #fff transparent transparent;
}
@-webkit-keyframes iconFadeIn {
  0% {
    transform: translate3D(0, 0, 0) translateY(-50%) rotate(45deg);
  }

  49% {
    transform: translate3D(20px, 0, 0) translateY(-50%) rotate(45deg);
    visibility: hidden;
  }

  50% {
    transform: translate3D(-20px, 0, 0) translateY(-50%) rotate(45deg);
    visibility: hidden;
  }

  52% {
    visibility: visible;
  }

  100% {
    transform: translate3D(0, 0, 0) translateY(-50%) rotate(45deg);
  }
}

@keyframes iconFadeIn {
  0% {
    transform: translate3D(0, 0, 0) translateY(-50%) rotate(45deg);
  }

  49% {
    transform: translate3D(20px, 0, 0) translateY(-50%) rotate(45deg);
    visibility: hidden;
  }

  50% {
    transform: translate3D(-20px, 0, 0) translateY(-50%) rotate(45deg);
    visibility: hidden;
  }

  52% {
    visibility: visible;
  }

  100% {
    transform: translate3D(0, 0, 0) translateY(-50%) rotate(45deg);
  }
}

.movie-box {
  margin: 2.5em auto 0;
  display: grid;
  justify-content: center;
}
.movie-box .movie-item:not(:first-child) {
  margin: 3.2em auto 0;
}
.movie-item img {
  width: 1000px;
}
section .movie-subhead {
  margin-bottom: 1em;
  margin-top: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.movie-date {
  margin-top: 1em;
  font-size: 90%;
  display: block;
  text-align: right;
  font-weight: 300;
}

.work-section p {
  margin-bottom: 1.4em;
}
.work-section p:last-of-type {
  margin-bottom: 0;
}
.section-work > section {
  max-width: calc(1350px + 20px);
  background-color: rgba(255, 255, 255, 0.85);
  padding: 10px 120px 100px;
}
.work-subtitle {
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 1.2em;
  font-size: 26px;
  position: relative;
  padding-bottom: 1.2em;
}
.work-subtitle:not(:first-of-type) {
  margin-top: 3em;
}
.work-subtitle::before {
  content: "";
  width: 45px;
  height: 4px;
  background: var(--color-yodosha);
  position: absolute;
  left: 0;
  bottom: 0;
}

.voice-section {
  padding-bottom: max(60px, min(11vw, 110px));
}
.voice-section::after {
  content: "";
  width: 100%;
  border-radius: 0;
}
.voice-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: max(30px, min(5vw, 40px));
  align-items: baseline;
  margin-top: 2.5em;
}
.voice-wrap [class*="voice-0"] {
  display: grid;
  gap: max(30px, min(5vw, 40px));
}
.voice-section h3 {
  margin-top: 0;
  margin-bottom: 1.6em;
}
.member-voice {
  background: #fff;
  position: relative;
  padding: 1.8em 2em;
}
.member-voice::before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  border-width: 0 0 20px 20px;
  border-style: solid;
  border-color: var(--color-bg) var(--color-fold) var(--color-bg);
}
.member-voice img {
  margin: 0 0 10px 15px;
}
.member-voice h4 {
  margin-top: 0;
  margin-bottom: 1em;
  font-weight: 700;
}
.member-voice p {
  margin-bottom: 0;
  border-bottom: 1px dashed var(--color-border);
  display: inline;
  padding-bottom: 4px;
  line-height: 2;
}

.photo-section {
  padding-left: 0;
  padding-right: 0;
}
.work-photo {
  margin: 2em 0 0;
}
.work-photo .item {
  margin-top: 10px;
  margin-bottom: 10px;
}
.work-photo .item img {
  border-radius: 15px;
}
.work-photo .item figcaption {
  font-weight: 300;
  margin-top: 0.5em;
  font-size: 90%;
}

.work-step {
  margin: 2em 0 0;
  font-size: var(--font-medium);
}
.work-step .item {
  background: #fff;
  padding: 30px 40px;
  margin-bottom: 3.5em;
  position: relative;
  box-shadow: 0 10px 30px 0 var(--color-shadow);
}
.work-step .item:last-child {
  margin-bottom: 0;
}

.work-step h3 {
  padding-bottom: 1em;
  font-size: 130%;
  margin: 0;
  color: var(--color-yodosha);
  font-weight: 700;
}
.work-step p {
  margin: 0;
}
.work-step .item:not(:last-of-type)::after {
  content: "▼";
  color: var(--color-yodosha);
  display: block;
  bottom: -2.4em;
  left: 2em;
  font-size: 120%;
  position: absolute;
}

.index-intro {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
  position: relative;
  margin-bottom: 16em;
  left: -110px;
}
.index-intro img {
  border-radius: 20px;
}
.index-intro-txt {
  position: absolute;
  bottom: -135px;
  width: 80%;
  right: -200px;
  background: rgb(255 255 255 / 0.6);
  padding: 40px 90px 40px 50px;
  box-shadow: 0 9px 76px rgba(0, 0, 0, 0.09);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.index-intro-txt p:last-child {
  margin-bottom: 0;
}

.index-wrap .panel {
  margin-bottom: 3em;
}

.work-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  gap: 15px;
}
.work-list > li {
  width: fit-content;
  height: fit-content;
}
.work-list > li img {
  box-shadow: 0 1px 4px 0 rgb(0 0 0 / 0%), 0 6px 10px 0 var(--color-shadow),
    0 2px 2px 0 rgb(76 88 95 / 10%);
}

@media (min-width: 768px) {
  .gray-box-index {
    margin-bottom: -1em;
  }
}

@media (max-width: 1200px) {
  .index-intro {
    left: 0;
  }
  .index-intro-txt {
    right: -1vw;
  }
}

@media (max-width: 900px) {
  .index-intro {
    left: 0;
    grid-template-columns: auto;
    margin-bottom: 0;
    gap: 20px;
  }
  .index-intro-txt {
    position: initial;
    width: 100%;
    padding: 30px 20px;
  }
}

@media (max-width: 767px) {
  .news-arrow {
    right: 0;
  }

  section .movie-subhead {
    font-size: 16px;
  }

  .news-head,
  .movie-head,
  .section-voice h3,
  .work-subtitle {
    font-size: 20px;
  }
  .work-subtitle {
    margin-top: 2em;
  }
  .work-subtitle::before {
    width: 40px;
  }

  .work-list-slider {
    display: flex;
    gap: 15px;
  }

  .work-list {
    animation: slide-animation 60s infinite linear 0.5s both;
    display: flex;
  }
  .work-list li {
    width: calc(100vw / 3.5);
  }
  .work-list li img {
    width: 100%;
  }
  @keyframes slide-animation {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }

  .section-work {
    padding: 0 0 50px;
  }
  .section-work > section {
    padding: 10px 20px 40px;
    margin-top: 4em;
  }
  .work-step .item {
    padding-left: 20px;
    padding-right: 20px;
  }
  .work-step .item:not(:last-of-type)::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .work-photo .item {
    padding-left: 7px;
    padding-right: 7px;
  }

  .voice-wrap {
    grid-template-columns: auto;
  }

  .news-wrap li:not(:last-child) {
    display: block;
  }
  .news-date {
    margin-right: 0;
    padding: 0 0 5px 0;
    display: block;
    font-size: 12px;
  }
  .news-wrap li a {
    font-size: 16px;
    padding: 20px 0;
  }
}

/* .information.html
------------------------------------ */

.information-section {
  margin: 0 auto;
  position: relative;
  max-width: 100%;
  padding: 0 20px max(60px, min(11vw, 100px));
}
.information-section::before {
  content: "";
  background: var(--color-bg);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

.infomation-box {
  padding: 35px 40px;
  border-radius: 20px;
  background: #fff;
  max-width: calc(1000px + 20px);
  box-shadow: 0 10px 30px 0 var(--color-shadow);
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 10.5em;
}
.infomation-box dl {
  margin: 0;
}
.infomation-box dt,
.infomation-box dd,
.infomation-box dd * {
  font-size: max(16px, min(2.5vw, 18px));
  line-height: 1.5;
}
.infomation-box dt {
  float: left;
}
.infomation-box dd {
  margin-left: 3.6em;
}
.infomation-box dd > span {
  display: inline-block;
  line-height: 1.6;
}
.infomation-box dd:not(:last-child) {
  margin-bottom: 1.2em;
}
	

.infomation-box2 {
  padding: 35px 40px;
  border-radius: 20px;
  background: #fff;
  max-width: calc(1000px + 20px);
  box-shadow: 0 10px 30px 0 var(--color-shadow);
  transform: translateY(-25%);
  margin-top: 13.5em;
}

@media screen and (max-width:767px){
.infomation-box2 {
  margin-top: 25em;
}
}


.infomation-box2 dl {
  margin: 0;
}
.infomation-box2 dt,
.infomation-box2 dd,
.infomation-box2 dd * {
  font-size: max(16px, min(2.5vw, 18px));
  line-height: 1.5;
}
.infomation-box2 dt {
  float: left;
}
.infomation-box2 dd {
  margin-left: 6em;
}
.infomation-box2 dd ul{
  padding-left: 1.5em;
}
.infomation-box2 dd ul li{
  margin-left: 0;
}
.infomation-box2 dd > span {
  display: inline-block;
  line-height: 1.6;
}
.infomation-box2 dd:not(:last-child) {
  margin-bottom: 1.2em;
}




.join-box {
  max-width: calc(1000px + 20px);
  margin-inline: auto;
}

.infomation-head {
  border-left: 4px solid var(--color-yodosha);
  padding-left: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.join-box table {
  margin-top: 2em;
  margin-bottom: 2em;
}
.join-box th {
  width: 16%;
}
.join-box table ol {
  margin: 0;
  padding-left: 25px;
}

.join-box2 {
  max-width: calc(1000px + 20px);
		margin-inline: auto;
		position:relative;
		top:-60px;
}
.join-box2 table {
  margin-top: 2em;
  margin-bottom: 2em;
}
.join-box2 th {
  width: 16%;
}
.join-box2 table ol {
  margin: 0;
  padding-left: 25px;
}




@media (max-width: 767px) {
  .infomation-box {
    padding: 25px 20px;
    margin-bottom: -3em;
  }
  .infomation-box dt {
    float: none;
    margin-bottom: 0.2em;
  }
  .infomation-box dd {
    margin-left: 0;
  }

  .infomation-head {
    font-size: 20px;
  }
}



/* エントリーフォーム
--------------------------------*/
.contents-wrap.entry{
  margin: 0 auto 0;
  max-width: 1200px;
  display: grid;
  justify-content: center;
  background: var(--color-bg);
  padding: 3em 1.5em max(4em, min(6vw, 6em));
}
.entry-wrap{
  max-width: 900px;
}

.entry-wrap .description{
  /* margin-inline: auto; */
  margin-bottom: 0;
  line-height: 1.9;
  color: #666;
}
.entry-wrap .description p{
  width: fit-content;
  margin-inline: auto;
}
.entry-wrap .description p:last-of-type{
  margin-bottom: 0;
}
.entry-wrap .description p.asterisk{
  text-indent: -1em;
  padding-left: 1em;
  font-size: 95%;
}

.errmessage-box{
  color: #c90000;
  margin-inline: auto;
  margin-top: 20px;
}

.entry-wrap label{
  margin: 0;
}

.entry-wrap #form-table{
  margin-inline: auto;
  line-height: 1.65;
  width: 100%;
  width: fit-content;
}

.entry-wrap #form-table,
.entry-wrap .description{
  margin-top: 3.6em;
}

.entry-wrap #form-table :where(input,textarea):not(input[type="radio"]){
  block-size: calc(48* .1rem);
  min-inline-size: 100%;
}
.entry-wrap #form-table input::placeholder{
  color: #999;
}

.entry-wrap #form-table tr{
  /* vertical-align: baseline; */
}

.entry-wrap #form-table tr:not(:last-of-type) :where(td,th){
  padding-bottom: 1em;
}
.entry-wrap #form-table :where(td,th){
  font-size: 1.6rem;
}
.entry-wrap #form-table th{
  padding-right: 1.5em;
  text-align: right;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.entry-wrap #form-table th small{
  font-weight: 600;
  line-height: 1.4;
}
.entry-wrap #form-table td{
  width: 400px;
}
.entry-wrap #form-table :where(input,textarea){
  border: var(--color-border) solid 1px;
  padding-inline: 1em;
  font-size: 1.5rem;
}
.entry-wrap #form-table textarea{
  min-height: 100px;
}

.entry-wrap #form-table .scoping-root{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.entry-wrap #form-table .scoping-root:not(:last-of-type){
  margin-right: 15px;
}

.entry-wrap #form-table input[type="radio"]{
  -webkit-appearance: none;
  inline-size: 20px;
  block-size: 20px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  padding-inline: 0;
  padding: 3px;
  background: #fff;
  margin: 0;
}
.entry-wrap #form-table input[type="radio"]:checked{
  border-color: #e4a153;
}
.entry-wrap #form-table input[type="radio"]:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
/* 選択された時の内側のマルの色 */
.entry-wrap #form-table input[type="radio"]:checked:before {
  background: #e4a153;
}

.entry-wrap .required{
  font-size: 85%;
  border: 1px solid;
  border-radius: 2px;
  padding: 0 4px;
  margin-left: 6px;
  display: inline-block;
}

.entry-wrap .join-wrap{
  margin-inline: auto;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: max(40px, min(6vw, 50px));
}
.entry-button,
.entry-button a{
  min-width: 250px;
  height: 50px;
  border: none;
  border-radius: 4px;
  font-size: 1.6rem;
  transition: .25s;
}
.entry-button.sub{
  background: #fff;
}
.entry-button.sub:hover{
  background: var(--color-border);
}
.entry-button.submit,
.entry-button a{
  background: var(--color-yodosha);
  color: #fff;
}
.entry-button.submit:hover,
.entry-button a:hover{
  background: var(--color-hover);
  color: #fff;
}

@media not all and (min-width: 768px){
  .contents-wrap.entry{
    margin: 0 -15px 0;
  }
  .entry-wrap #form-table{
    width: 100%;
  }
  .entry-wrap #form-table :where(td,th){
    display: block;
  }
  .entry-wrap #form-table :where(input,textarea),
  .entry-wrap #form-table td{
    width: 100%;
  }
  .entry-wrap #form-table th:not(:root){
    text-align: left;
    padding-bottom: .6em;
    font-size: 1.5rem;
    grid-template-columns: auto auto;
    justify-content: flex-start;
    padding-right: 0;
  }
  .entry-wrap #form-table tr:not(:last-of-type) td:not(:root){
    padding-bottom: 2em;
  }
  .entry-wrap .join-wrap{
    flex-flow: wrap;
    flex-direction: column-reverse;
    width: 80%;
  }
  .entry-wrap .join-wrap input, .entry-button a{
  }
}


/* ファイルアップロード
--------------------------------*/
/* .upload-area {
  margin: auto;
  width: 100%;
  height: 50px;
  position: relative;
  border: 2px dashed rgba(40 136 58/.6);
  border: 2px dashed rgba(0 0 0/.2);
  background: rgba(255 255 255 / .4);
  color: var(--color-yodosha);
}
.upload-area p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .8;
  line-height: 1.4;
  text-align: center;
}
.upload-area [id*="fileInput"] {
    top: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
} */
.upload.entry-wrap{
  max-width: 800px;
}

.upload h2{
  font-size: max(20px, min(3vw, 24px));
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.upload-area{
  font-size: 15px;
}
.successfully{
  color: var(--color-yodosha);
}
.successfully strong{
  color: var(--color-hover);
}
.disabled{
  color: #999;
}
.successfully span,
.disabled span{
  background: var(--color-yodosha);
  color: #fff;
  width: 23px;
  display: inline-block;
  height: 23px;
  text-align: center;
  line-height: 23px;
  border-radius: 50%;
  margin-right: 8px;
  font-size: 90%;
}
.disabled span{
  background: #999;
}

.reUpload{
  margin: 1.4em 0 .5em;
  color: #777;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
}
.successfully input[id*="fileInput"]{
  color: #333;
  font-size: 14px;
}

.upload-category{
  font-size: max(20px, min(3vw, 21px));
  font-weight: 700;
  margin-top: 2.4em;
  line-height: 1.4;
  text-indent: -1.2em;
  margin-left: 1.2em;
}
.upload-category+.upload-item{
  margin-top: 1.4em;
}
.upload-head{
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 1em;
}
.upload-head small{
  font-weight: 600;
  color: inherit
}

.upload-item{
  background: rgba(255 255 255 / .6);
  padding: 1em;
  margin-top: 1.5em;
  border-radius: 10px;
}

.upload-submit{
  display: block;
  margin-left: auto;
  margin-top: 5px;
}

.upload .upload-submit{
  background: var(--color-yodosha);
  color: #fff;
  border: none;
  padding: 6px 20px;
  border-radius: 4px;
}
.upload .upload-submit:hover{
  background: var(--color-hover);
}

.inquiry-status h4{
  font-weight: 700;
  margin: 2.2em 0 1em;
  font-size: 21px;
}
.inquiry-status h4::before {
  content: "\25CF";
  color: var(--color-yodosha);
  margin-right: 6px;
  font-size: 14px;
  position: relative;
  top: -1px;
}

.inquiry-status .chat-box{
  display: grid;
  gap: 26px;
}

.inquiry-status .comment{
  background: rgb(210 234 242 / 60%);
  border-radius: 10px;
  padding: 1em;
}
.inquiry-status .manager .comment{
  background: #def3db;
}
.chat-box .user-name{
  font-weight: 600;
  line-height: 1;
  margin-bottom: .6em;
}
.inquiry-status pre{
  padding: 0;
  font-size: 16px;
  background: transparent;
  border: none;
  margin: 0;
  border: 0;
  color: #222;
  font-family: var(--font-notosans);
  white-space: pre-wrap;
}
.inquiry-status .item time{
  color: #666;
}

.upload hr{
  border-top: #ccc 1px solid;
  display: block;
  width: 100%;
  margin: 4em 0;
}

.inquiry-section{
  background: rgba(255 255 255 / .6);
  padding: max(1.2em, min(3vw, 2em)) max(1em, min(3vw, 2em));
  margin-top: 4em;
  border-radius: 10px;
}

.ppi-box{
  margin-top: max(40px, min(6vw, 50px));
}
.ppi-box p{
  margin: 0;
  font-size: 14px;
  text-align: center;
  line-height: 1.4;
}


/* その他指定
------------------------------------ */

.mb-0 {
  margin-bottom: 0 !important;
}

ul.comp li{list-style-type: "※";font-size:small;};

